Fix #7418 - radio button set value
[roojs1] / roojs-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @static
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         },
672                 /**
673                  * Find the current bootstrap width Grid size
674                  * Note xs is the default for smaller.. - this is currently used by grids to render correct columns
675                  * @returns {String} (xs|sm|md|lg|xl)
676                  */
677                 
678                 getGridSize : function()
679                 {
680                         var w = Roo.lib.Dom.getViewWidth();
681                         switch(true) {
682                                 case w > 1200:
683                                         return 'xl';
684                                 case w > 992:
685                                         return 'lg';
686                                 case w > 768:
687                                         return 'md';
688                                 case w > 576:
689                                         return 'sm';
690                                 default:
691                                         return 'xs'
692                         }
693                         
694                 } 
695         
696     });
697
698
699 })();
700
701 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
702                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
703                 "Roo.app", "Roo.ux" 
704                );
705 /*
706  * Based on:
707  * Ext JS Library 1.1.1
708  * Copyright(c) 2006-2007, Ext JS, LLC.
709  *
710  * Originally Released Under LGPL - original licence link has changed is not relivant.
711  *
712  * Fork - LGPL
713  * <script type="text/javascript">
714  */
715
716 (function() {    
717     // wrappedn so fnCleanup is not in global scope...
718     if(Roo.isIE) {
719         function fnCleanUp() {
720             var p = Function.prototype;
721             delete p.createSequence;
722             delete p.defer;
723             delete p.createDelegate;
724             delete p.createCallback;
725             delete p.createInterceptor;
726
727             window.detachEvent("onunload", fnCleanUp);
728         }
729         window.attachEvent("onunload", fnCleanUp);
730     }
731 })();
732
733
734 /**
735  * @class Function
736  * These functions are available on every Function object (any JavaScript function).
737  */
738 Roo.apply(Function.prototype, {
739      /**
740      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
741      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
742      * Will create a function that is bound to those 2 args.
743      * @return {Function} The new function
744     */
745     createCallback : function(/*args...*/){
746         // make args available, in function below
747         var args = arguments;
748         var method = this;
749         return function() {
750             return method.apply(window, args);
751         };
752     },
753
754     /**
755      * Creates a delegate (callback) that sets the scope to obj.
756      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
757      * Will create a function that is automatically scoped to this.
758      * @param {Object} obj (optional) The object for which the scope is set
759      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
760      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
761      *                                             if a number the args are inserted at the specified position
762      * @return {Function} The new function
763      */
764     createDelegate : function(obj, args, appendArgs){
765         var method = this;
766         return function() {
767             var callArgs = args || arguments;
768             if(appendArgs === true){
769                 callArgs = Array.prototype.slice.call(arguments, 0);
770                 callArgs = callArgs.concat(args);
771             }else if(typeof appendArgs == "number"){
772                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
773                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
774                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
775             }
776             return method.apply(obj || window, callArgs);
777         };
778     },
779
780     /**
781      * Calls this function after the number of millseconds specified.
782      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
783      * @param {Object} obj (optional) The object for which the scope is set
784      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
785      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
786      *                                             if a number the args are inserted at the specified position
787      * @return {Number} The timeout id that can be used with clearTimeout
788      */
789     defer : function(millis, obj, args, appendArgs){
790         var fn = this.createDelegate(obj, args, appendArgs);
791         if(millis){
792             return setTimeout(fn, millis);
793         }
794         fn();
795         return 0;
796     },
797     /**
798      * Create a combined function call sequence of the original function + the passed function.
799      * The resulting function returns the results of the original function.
800      * The passed fcn is called with the parameters of the original function
801      * @param {Function} fcn The function to sequence
802      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
803      * @return {Function} The new function
804      */
805     createSequence : function(fcn, scope){
806         if(typeof fcn != "function"){
807             return this;
808         }
809         var method = this;
810         return function() {
811             var retval = method.apply(this || window, arguments);
812             fcn.apply(scope || this || window, arguments);
813             return retval;
814         };
815     },
816
817     /**
818      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
819      * The resulting function returns the results of the original function.
820      * The passed fcn is called with the parameters of the original function.
821      * @addon
822      * @param {Function} fcn The function to call before the original
823      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
824      * @return {Function} The new function
825      */
826     createInterceptor : function(fcn, scope){
827         if(typeof fcn != "function"){
828             return this;
829         }
830         var method = this;
831         return function() {
832             fcn.target = this;
833             fcn.method = method;
834             if(fcn.apply(scope || this || window, arguments) === false){
835                 return;
836             }
837             return method.apply(this || window, arguments);
838         };
839     }
840 });
841 /*
842  * Based on:
843  * Ext JS Library 1.1.1
844  * Copyright(c) 2006-2007, Ext JS, LLC.
845  *
846  * Originally Released Under LGPL - original licence link has changed is not relivant.
847  *
848  * Fork - LGPL
849  * <script type="text/javascript">
850  */
851
852 Roo.applyIf(String, {
853     
854     /** @scope String */
855     
856     /**
857      * Escapes the passed string for ' and \
858      * @param {String} string The string to escape
859      * @return {String} The escaped string
860      * @static
861      */
862     escape : function(string) {
863         return string.replace(/('|\\)/g, "\\$1");
864     },
865
866     /**
867      * Pads the left side of a string with a specified character.  This is especially useful
868      * for normalizing number and date strings.  Example usage:
869      * <pre><code>
870 var s = String.leftPad('123', 5, '0');
871 // s now contains the string: '00123'
872 </code></pre>
873      * @param {String} string The original string
874      * @param {Number} size The total length of the output string
875      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
876      * @return {String} The padded string
877      * @static
878      */
879     leftPad : function (val, size, ch) {
880         var result = new String(val);
881         if(ch === null || ch === undefined || ch === '') {
882             ch = " ";
883         }
884         while (result.length < size) {
885             result = ch + result;
886         }
887         return result;
888     },
889
890     /**
891      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
892      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
893      * <pre><code>
894 var cls = 'my-class', text = 'Some text';
895 var s = String.format('<div class="{0}">{1}</div>', cls, text);
896 // s now contains the string: '<div class="my-class">Some text</div>'
897 </code></pre>
898      * @param {String} string The tokenized string to be formatted
899      * @param {String} value1 The value to replace token {0}
900      * @param {String} value2 Etc...
901      * @return {String} The formatted string
902      * @static
903      */
904     format : function(format){
905         var args = Array.prototype.slice.call(arguments, 1);
906         return format.replace(/\{(\d+)\}/g, function(m, i){
907             return Roo.util.Format.htmlEncode(args[i]);
908         });
909     }
910   
911     
912 });
913
914 /**
915  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
916  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
917  * they are already different, the first value passed in is returned.  Note that this method returns the new value
918  * but does not change the current string.
919  * <pre><code>
920 // alternate sort directions
921 sort = sort.toggle('ASC', 'DESC');
922
923 // instead of conditional logic:
924 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
925 </code></pre>
926  * @param {String} value The value to compare to the current string
927  * @param {String} other The new value to use if the string already equals the first value passed in
928  * @return {String} The new value
929  */
930  
931 String.prototype.toggle = function(value, other){
932     return this == value ? other : value;
933 };
934
935
936 /**
937   * Remove invalid unicode characters from a string 
938   *
939   * @return {String} The clean string
940   */
941 String.prototype.unicodeClean = function () {
942     return this.replace(/[\s\S]/g,
943         function(character) {
944             if (character.charCodeAt()< 256) {
945               return character;
946            }
947            try {
948                 encodeURIComponent(character);
949            } catch(e) { 
950               return '';
951            }
952            return character;
953         }
954     );
955 };
956   
957
958 /**
959   * Make the first letter of a string uppercase
960   *
961   * @return {String} The new string.
962   */
963 String.prototype.toUpperCaseFirst = function () {
964     return this.charAt(0).toUpperCase() + this.slice(1);
965 };  
966   
967 /*
968  * Based on:
969  * Ext JS Library 1.1.1
970  * Copyright(c) 2006-2007, Ext JS, LLC.
971  *
972  * Originally Released Under LGPL - original licence link has changed is not relivant.
973  *
974  * Fork - LGPL
975  * <script type="text/javascript">
976  */
977
978  /**
979  * @class Number
980  */
981 Roo.applyIf(Number.prototype, {
982     /**
983      * Checks whether or not the current number is within a desired range.  If the number is already within the
984      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
985      * exceeded.  Note that this method returns the constrained value but does not change the current number.
986      * @param {Number} min The minimum number in the range
987      * @param {Number} max The maximum number in the range
988      * @return {Number} The constrained value if outside the range, otherwise the current value
989      */
990     constrain : function(min, max){
991         return Math.min(Math.max(this, min), max);
992     }
993 });/*
994  * Based on:
995  * Ext JS Library 1.1.1
996  * Copyright(c) 2006-2007, Ext JS, LLC.
997  *
998  * Originally Released Under LGPL - original licence link has changed is not relivant.
999  *
1000  * Fork - LGPL
1001  * <script type="text/javascript">
1002  */
1003  /**
1004  * @class Array
1005  */
1006 Roo.applyIf(Array.prototype, {
1007     /**
1008      * 
1009      * Checks whether or not the specified object exists in the array.
1010      * @param {Object} o The object to check for
1011      * @return {Number} The index of o in the array (or -1 if it is not found)
1012      */
1013     indexOf : function(o){
1014        for (var i = 0, len = this.length; i < len; i++){
1015               if(this[i] == o) { return i; }
1016        }
1017            return -1;
1018     },
1019
1020     /**
1021      * Removes the specified object from the array.  If the object is not found nothing happens.
1022      * @param {Object} o The object to remove
1023      */
1024     remove : function(o){
1025        var index = this.indexOf(o);
1026        if(index != -1){
1027            this.splice(index, 1);
1028        }
1029     },
1030     /**
1031      * Map (JS 1.6 compatibility)
1032      * @param {Function} function  to call
1033      */
1034     map : function(fun )
1035     {
1036         var len = this.length >>> 0;
1037         if (typeof fun != "function") {
1038             throw new TypeError();
1039         }
1040         var res = new Array(len);
1041         var thisp = arguments[1];
1042         for (var i = 0; i < len; i++)
1043         {
1044             if (i in this) {
1045                 res[i] = fun.call(thisp, this[i], i, this);
1046             }
1047         }
1048
1049         return res;
1050     },
1051     /**
1052      * equals
1053      * @param {Array} o The array to compare to
1054      * @returns {Boolean} true if the same
1055      */
1056     equals : function(b)
1057     {
1058             // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1059         if (this === b) {
1060             return true;
1061         }
1062         if (b == null) {
1063             return false;
1064         }
1065         if (this.length !== b.length) {
1066             return false;
1067         }
1068           
1069         // sort?? a.sort().equals(b.sort());
1070           
1071         for (var i = 0; i < this.length; ++i) {
1072             if (this[i] !== b[i]) {
1073             return false;
1074             }
1075         }
1076         return true;
1077     } 
1078     
1079     
1080     
1081     
1082 });
1083
1084 Roo.applyIf(Array, {
1085  /**
1086      * from
1087      * @static
1088      * @param {Array} o Or Array like object (eg. nodelist)
1089      * @returns {Array} 
1090      */
1091     from : function(o)
1092     {
1093         var ret= [];
1094     
1095         for (var i =0; i < o.length; i++) { 
1096             ret[i] = o[i];
1097         }
1098         return ret;
1099       
1100     }
1101 });
1102 /*
1103  * Based on:
1104  * Ext JS Library 1.1.1
1105  * Copyright(c) 2006-2007, Ext JS, LLC.
1106  *
1107  * Originally Released Under LGPL - original licence link has changed is not relivant.
1108  *
1109  * Fork - LGPL
1110  * <script type="text/javascript">
1111  */
1112
1113 /**
1114  * @class Date
1115  *
1116  * The date parsing and format syntax is a subset of
1117  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1118  * supported will provide results equivalent to their PHP versions.
1119  *
1120  * Following is the list of all currently supported formats:
1121  *<pre>
1122 Sample date:
1123 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1124
1125 Format  Output      Description
1126 ------  ----------  --------------------------------------------------------------
1127   d      10         Day of the month, 2 digits with leading zeros
1128   D      Wed        A textual representation of a day, three letters
1129   j      10         Day of the month without leading zeros
1130   l      Wednesday  A full textual representation of the day of the week
1131   S      th         English ordinal day of month suffix, 2 chars (use with j)
1132   w      3          Numeric representation of the day of the week
1133   z      9          The julian date, or day of the year (0-365)
1134   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1135   F      January    A full textual representation of the month
1136   m      01         Numeric representation of a month, with leading zeros
1137   M      Jan        Month name abbreviation, three letters
1138   n      1          Numeric representation of a month, without leading zeros
1139   t      31         Number of days in the given month
1140   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1141   Y      2007       A full numeric representation of a year, 4 digits
1142   y      07         A two digit representation of a year
1143   a      pm         Lowercase Ante meridiem and Post meridiem
1144   A      PM         Uppercase Ante meridiem and Post meridiem
1145   g      3          12-hour format of an hour without leading zeros
1146   G      15         24-hour format of an hour without leading zeros
1147   h      03         12-hour format of an hour with leading zeros
1148   H      15         24-hour format of an hour with leading zeros
1149   i      05         Minutes with leading zeros
1150   s      01         Seconds, with leading zeros
1151   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1152   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1153   T      CST        Timezone setting of the machine running the code
1154   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1155 </pre>
1156  *
1157  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1158  * <pre><code>
1159 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1160 document.write(dt.format('Y-m-d'));                         //2007-01-10
1161 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1162 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1163  </code></pre>
1164  *
1165  * Here are some standard date/time patterns that you might find helpful.  They
1166  * are not part of the source of Date.js, but to use them you can simply copy this
1167  * block of code into any script that is included after Date.js and they will also become
1168  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1169  * <pre><code>
1170 Date.patterns = {
1171     ISO8601Long:"Y-m-d H:i:s",
1172     ISO8601Short:"Y-m-d",
1173     ShortDate: "n/j/Y",
1174     LongDate: "l, F d, Y",
1175     FullDateTime: "l, F d, Y g:i:s A",
1176     MonthDay: "F d",
1177     ShortTime: "g:i A",
1178     LongTime: "g:i:s A",
1179     SortableDateTime: "Y-m-d\\TH:i:s",
1180     UniversalSortableDateTime: "Y-m-d H:i:sO",
1181     YearMonth: "F, Y"
1182 };
1183 </code></pre>
1184  *
1185  * Example usage:
1186  * <pre><code>
1187 var dt = new Date();
1188 document.write(dt.format(Date.patterns.ShortDate));
1189  </code></pre>
1190  */
1191
1192 /*
1193  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1194  * They generate precompiled functions from date formats instead of parsing and
1195  * processing the pattern every time you format a date.  These functions are available
1196  * on every Date object (any javascript function).
1197  *
1198  * The original article and download are here:
1199  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1200  *
1201  */
1202  
1203  
1204  // was in core
1205 /**
1206  Returns the number of milliseconds between this date and date
1207  @param {Date} date (optional) Defaults to now
1208  @param {String} interval (optional) Default Date.MILLI, A valid date interval enum value (eg. Date.DAY) 
1209  @return {Number} The diff in milliseconds or units of interval
1210  @member Date getElapsed
1211  */
1212 Date.prototype.getElapsed = function(date, interval)
1213 {
1214     date = date ||  new Date();
1215     var ret = Math.abs(date.getTime()-this.getTime());
1216     switch (interval) {
1217        
1218         case  Date.SECOND:
1219             return Math.floor(ret / (1000));
1220         case  Date.MINUTE:
1221             return Math.floor(ret / (1000*60));
1222         case  Date.HOUR:
1223             return Math.floor(ret / (1000*60*60));
1224         case  Date.DAY:
1225             return Math.floor(ret / (1000*60*60*24));
1226         case  Date.MONTH: // this does not give exact number...??
1227             return ((date.format("Y") - this.format("Y")) * 12) + (date.format("m") - this.format("m"));
1228         case  Date.YEAR: // this does not give exact number...??
1229             return (date.format("Y") - this.format("Y"));
1230        
1231         case  Date.MILLI:
1232         default:
1233             return ret;
1234     }
1235 };
1236  
1237 // was in date file..
1238
1239
1240 // private
1241 Date.parseFunctions = {count:0};
1242 // private
1243 Date.parseRegexes = [];
1244 // private
1245 Date.formatFunctions = {count:0};
1246
1247 // private
1248 Date.prototype.dateFormat = function(format) {
1249     if (Date.formatFunctions[format] == null) {
1250         Date.createNewFormat(format);
1251     }
1252     var func = Date.formatFunctions[format];
1253     return this[func]();
1254 };
1255
1256
1257 /**
1258  * Formats a date given the supplied format string
1259  * @param {String} format The format string
1260  * @return {String} The formatted date
1261  * @method
1262  */
1263 Date.prototype.format = Date.prototype.dateFormat;
1264
1265 // private
1266 Date.createNewFormat = function(format) {
1267     var funcName = "format" + Date.formatFunctions.count++;
1268     Date.formatFunctions[format] = funcName;
1269     var code = "Date.prototype." + funcName + " = function(){return ";
1270     var special = false;
1271     var ch = '';
1272     for (var i = 0; i < format.length; ++i) {
1273         ch = format.charAt(i);
1274         if (!special && ch == "\\") {
1275             special = true;
1276         }
1277         else if (special) {
1278             special = false;
1279             code += "'" + String.escape(ch) + "' + ";
1280         }
1281         else {
1282             code += Date.getFormatCode(ch);
1283         }
1284     }
1285     /** eval:var:zzzzzzzzzzzzz */
1286     eval(code.substring(0, code.length - 3) + ";}");
1287 };
1288
1289 // private
1290 Date.getFormatCode = function(character) {
1291     switch (character) {
1292     case "d":
1293         return "String.leftPad(this.getDate(), 2, '0') + ";
1294     case "D":
1295         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1296     case "j":
1297         return "this.getDate() + ";
1298     case "l":
1299         return "Date.dayNames[this.getDay()] + ";
1300     case "S":
1301         return "this.getSuffix() + ";
1302     case "w":
1303         return "this.getDay() + ";
1304     case "z":
1305         return "this.getDayOfYear() + ";
1306     case "W":
1307         return "this.getWeekOfYear() + ";
1308     case "F":
1309         return "Date.monthNames[this.getMonth()] + ";
1310     case "m":
1311         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1312     case "M":
1313         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1314     case "n":
1315         return "(this.getMonth() + 1) + ";
1316     case "t":
1317         return "this.getDaysInMonth() + ";
1318     case "L":
1319         return "(this.isLeapYear() ? 1 : 0) + ";
1320     case "Y":
1321         return "this.getFullYear() + ";
1322     case "y":
1323         return "('' + this.getFullYear()).substring(2, 4) + ";
1324     case "a":
1325         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1326     case "A":
1327         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1328     case "g":
1329         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1330     case "G":
1331         return "this.getHours() + ";
1332     case "h":
1333         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1334     case "H":
1335         return "String.leftPad(this.getHours(), 2, '0') + ";
1336     case "i":
1337         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1338     case "s":
1339         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1340     case "O":
1341         return "this.getGMTOffset() + ";
1342     case "P":
1343         return "this.getGMTColonOffset() + ";
1344     case "T":
1345         return "this.getTimezone() + ";
1346     case "Z":
1347         return "(this.getTimezoneOffset() * -60) + ";
1348     default:
1349         return "'" + String.escape(character) + "' + ";
1350     }
1351 };
1352
1353 /**
1354  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1355  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1356  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1357  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1358  * string or the parse operation will fail.
1359  * Example Usage:
1360 <pre><code>
1361 //dt = Fri May 25 2007 (current date)
1362 var dt = new Date();
1363
1364 //dt = Thu May 25 2006 (today's month/day in 2006)
1365 dt = Date.parseDate("2006", "Y");
1366
1367 //dt = Sun Jan 15 2006 (all date parts specified)
1368 dt = Date.parseDate("2006-1-15", "Y-m-d");
1369
1370 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1371 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1372 </code></pre>
1373  * @param {String} input The unparsed date as a string
1374  * @param {String} format The format the date is in
1375  * @return {Date} The parsed date
1376  * @static
1377  */
1378 Date.parseDate = function(input, format) {
1379     if (Date.parseFunctions[format] == null) {
1380         Date.createParser(format);
1381     }
1382     var func = Date.parseFunctions[format];
1383     return Date[func](input);
1384 };
1385 /**
1386  * @private
1387  */
1388
1389 Date.createParser = function(format) {
1390     var funcName = "parse" + Date.parseFunctions.count++;
1391     var regexNum = Date.parseRegexes.length;
1392     var currentGroup = 1;
1393     Date.parseFunctions[format] = funcName;
1394
1395     var code = "Date." + funcName + " = function(input){\n"
1396         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1397         + "var d = new Date();\n"
1398         + "y = d.getFullYear();\n"
1399         + "m = d.getMonth();\n"
1400         + "d = d.getDate();\n"
1401         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1402         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1403         + "if (results && results.length > 0) {";
1404     var regex = "";
1405
1406     var special = false;
1407     var ch = '';
1408     for (var i = 0; i < format.length; ++i) {
1409         ch = format.charAt(i);
1410         if (!special && ch == "\\") {
1411             special = true;
1412         }
1413         else if (special) {
1414             special = false;
1415             regex += String.escape(ch);
1416         }
1417         else {
1418             var obj = Date.formatCodeToRegex(ch, currentGroup);
1419             currentGroup += obj.g;
1420             regex += obj.s;
1421             if (obj.g && obj.c) {
1422                 code += obj.c;
1423             }
1424         }
1425     }
1426
1427     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1428         + "{v = new Date(y, m, d, h, i, s); v.setFullYear(y);}\n"
1429         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1430         + "{v = new Date(y, m, d, h, i); v.setFullYear(y);}\n"
1431         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1432         + "{v = new Date(y, m, d, h); v.setFullYear(y);}\n"
1433         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1434         + "{v = new Date(y, m, d); v.setFullYear(y);}\n"
1435         + "else if (y >= 0 && m >= 0)\n"
1436         + "{v = new Date(y, m); v.setFullYear(y);}\n"
1437         + "else if (y >= 0)\n"
1438         + "{v = new Date(y); v.setFullYear(y);}\n"
1439         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1440         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1441         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1442         + ";}";
1443
1444     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1445     /** eval:var:zzzzzzzzzzzzz */
1446     eval(code);
1447 };
1448
1449 // private
1450 Date.formatCodeToRegex = function(character, currentGroup) {
1451     switch (character) {
1452     case "D":
1453         return {g:0,
1454         c:null,
1455         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1456     case "j":
1457         return {g:1,
1458             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1459             s:"(\\d{1,2})"}; // day of month without leading zeroes
1460     case "d":
1461         return {g:1,
1462             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; // day of month with leading zeroes
1464     case "l":
1465         return {g:0,
1466             c:null,
1467             s:"(?:" + Date.dayNames.join("|") + ")"};
1468     case "S":
1469         return {g:0,
1470             c:null,
1471             s:"(?:st|nd|rd|th)"};
1472     case "w":
1473         return {g:0,
1474             c:null,
1475             s:"\\d"};
1476     case "z":
1477         return {g:0,
1478             c:null,
1479             s:"(?:\\d{1,3})"};
1480     case "W":
1481         return {g:0,
1482             c:null,
1483             s:"(?:\\d{2})"};
1484     case "F":
1485         return {g:1,
1486             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1487             s:"(" + Date.monthNames.join("|") + ")"};
1488     case "M":
1489         return {g:1,
1490             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1491             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1492     case "n":
1493         return {g:1,
1494             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1495             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1496     case "m":
1497         return {g:1,
1498             c:"m = Math.max(0,parseInt(results[" + currentGroup + "], 10) - 1);\n",
1499             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1500     case "t":
1501         return {g:0,
1502             c:null,
1503             s:"\\d{1,2}"};
1504     case "L":
1505         return {g:0,
1506             c:null,
1507             s:"(?:1|0)"};
1508     case "Y":
1509         return {g:1,
1510             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1511             s:"(\\d{4})"};
1512     case "y":
1513         return {g:1,
1514             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1515                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1516             s:"(\\d{1,2})"};
1517     case "a":
1518         return {g:1,
1519             c:"if (results[" + currentGroup + "] == 'am') {\n"
1520                 + "if (h == 12) { h = 0; }\n"
1521                 + "} else { if (h < 12) { h += 12; }}",
1522             s:"(am|pm)"};
1523     case "A":
1524         return {g:1,
1525             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1526                 + "if (h == 12) { h = 0; }\n"
1527                 + "} else { if (h < 12) { h += 12; }}",
1528             s:"(AM|PM)"};
1529     case "g":
1530     case "G":
1531         return {g:1,
1532             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1533             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1534     case "h":
1535     case "H":
1536         return {g:1,
1537             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1538             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1539     case "i":
1540         return {g:1,
1541             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1542             s:"(\\d{2})"};
1543     case "s":
1544         return {g:1,
1545             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1546             s:"(\\d{2})"};
1547     case "O":
1548         return {g:1,
1549             c:[
1550                 "o = results[", currentGroup, "];\n",
1551                 "var sn = o.substring(0,1);\n", // get + / - sign
1552                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1553                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1554                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1555                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1556             ].join(""),
1557             s:"([+\-]\\d{2,4})"};
1558     
1559     
1560     case "P":
1561         return {g:1,
1562                 c:[
1563                    "o = results[", currentGroup, "];\n",
1564                    "var sn = o.substring(0,1);\n",
1565                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1566                    "var mn = o.substring(4,6) % 60;\n",
1567                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1568                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1569             ].join(""),
1570             s:"([+\-]\\d{4})"};
1571     case "T":
1572         return {g:0,
1573             c:null,
1574             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1575     case "Z":
1576         return {g:1,
1577             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1578                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1579             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1580     default:
1581         return {g:0,
1582             c:null,
1583             s:String.escape(character)};
1584     }
1585 };
1586
1587 /**
1588  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1589  * @return {String} The abbreviated timezone name (e.g. 'CST')
1590  */
1591 Date.prototype.getTimezone = function() {
1592     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1593 };
1594
1595 /**
1596  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1597  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1598  */
1599 Date.prototype.getGMTOffset = function() {
1600     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1601         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1602         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1603 };
1604
1605 /**
1606  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1607  * @return {String} 2-characters representing hours and 2-characters representing minutes
1608  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1609  */
1610 Date.prototype.getGMTColonOffset = function() {
1611         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1612                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1613                 + ":"
1614                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1615 }
1616
1617 /**
1618  * Get the numeric day number of the year, adjusted for leap year.
1619  * @return {Number} 0 through 364 (365 in leap years)
1620  */
1621 Date.prototype.getDayOfYear = function() {
1622     var num = 0;
1623     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1624     for (var i = 0; i < this.getMonth(); ++i) {
1625         num += Date.daysInMonth[i];
1626     }
1627     return num + this.getDate() - 1;
1628 };
1629
1630 /**
1631  * Get the string representation of the numeric week number of the year
1632  * (equivalent to the format specifier 'W').
1633  * @return {String} '00' through '52'
1634  */
1635 Date.prototype.getWeekOfYear = function() {
1636     // Skip to Thursday of this week
1637     var now = this.getDayOfYear() + (4 - this.getDay());
1638     // Find the first Thursday of the year
1639     var jan1 = new Date(this.getFullYear(), 0, 1);
1640     var then = (7 - jan1.getDay() + 4);
1641     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1642 };
1643
1644 /**
1645  * Whether or not the current date is in a leap year.
1646  * @return {Boolean} True if the current date is in a leap year, else false
1647  */
1648 Date.prototype.isLeapYear = function() {
1649     var year = this.getFullYear();
1650     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1651 };
1652
1653 /**
1654  * Get the first day of the current month, adjusted for leap year.  The returned value
1655  * is the numeric day index within the week (0-6) which can be used in conjunction with
1656  * the {@link #monthNames} array to retrieve the textual day name.
1657  * Example:
1658  *<pre><code>
1659 var dt = new Date('1/10/2007');
1660 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1661 </code></pre>
1662  * @return {Number} The day number (0-6)
1663  */
1664 Date.prototype.getFirstDayOfMonth = function() {
1665     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1666     return (day < 0) ? (day + 7) : day;
1667 };
1668
1669 /**
1670  * Get the last day of the current month, adjusted for leap year.  The returned value
1671  * is the numeric day index within the week (0-6) which can be used in conjunction with
1672  * the {@link #monthNames} array to retrieve the textual day name.
1673  * Example:
1674  *<pre><code>
1675 var dt = new Date('1/10/2007');
1676 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1677 </code></pre>
1678  * @return {Number} The day number (0-6)
1679  */
1680 Date.prototype.getLastDayOfMonth = function() {
1681     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1682     return (day < 0) ? (day + 7) : day;
1683 };
1684
1685
1686 /**
1687  * Get the first date of this date's month
1688  * @return {Date}
1689  */
1690 Date.prototype.getFirstDateOfMonth = function() {
1691     return new Date(this.getFullYear(), this.getMonth(), 1);
1692 };
1693
1694 /**
1695  * Get the last date of this date's month
1696  * @return {Date}
1697  */
1698 Date.prototype.getLastDateOfMonth = function() {
1699     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1700 };
1701 /**
1702  * Get the number of days in the current month, adjusted for leap year.
1703  * @return {Number} The number of days in the month
1704  */
1705 Date.prototype.getDaysInMonth = function() {
1706     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1707     return Date.daysInMonth[this.getMonth()];
1708 };
1709
1710 /**
1711  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1712  * @return {String} 'st, 'nd', 'rd' or 'th'
1713  */
1714 Date.prototype.getSuffix = function() {
1715     switch (this.getDate()) {
1716         case 1:
1717         case 21:
1718         case 31:
1719             return "st";
1720         case 2:
1721         case 22:
1722             return "nd";
1723         case 3:
1724         case 23:
1725             return "rd";
1726         default:
1727             return "th";
1728     }
1729 };
1730
1731 // private
1732 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1733
1734 /**
1735  * An array of textual month names.
1736  * Override these values for international dates, for example...
1737  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1738  * @type Array
1739  * @static
1740  */
1741 Date.monthNames =
1742    ["January",
1743     "February",
1744     "March",
1745     "April",
1746     "May",
1747     "June",
1748     "July",
1749     "August",
1750     "September",
1751     "October",
1752     "November",
1753     "December"];
1754
1755 /**
1756  * An array of textual day names.
1757  * Override these values for international dates, for example...
1758  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1759  * @type Array
1760  * @static
1761  */
1762 Date.dayNames =
1763    ["Sunday",
1764     "Monday",
1765     "Tuesday",
1766     "Wednesday",
1767     "Thursday",
1768     "Friday",
1769     "Saturday"];
1770
1771 // private
1772 Date.y2kYear = 50;
1773 // private
1774 Date.monthNumbers = {
1775     Jan:0,
1776     Feb:1,
1777     Mar:2,
1778     Apr:3,
1779     May:4,
1780     Jun:5,
1781     Jul:6,
1782     Aug:7,
1783     Sep:8,
1784     Oct:9,
1785     Nov:10,
1786     Dec:11};
1787
1788 /**
1789  * Creates and returns a new Date instance with the exact same date value as the called instance.
1790  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1791  * variable will also be changed.  When the intention is to create a new variable that will not
1792  * modify the original instance, you should create a clone.
1793  *
1794  * Example of correctly cloning a date:
1795  * <pre><code>
1796 //wrong way:
1797 var orig = new Date('10/1/2006');
1798 var copy = orig;
1799 copy.setDate(5);
1800 document.write(orig);  //returns 'Thu Oct 05 2006'!
1801
1802 //correct way:
1803 var orig = new Date('10/1/2006');
1804 var copy = orig.clone();
1805 copy.setDate(5);
1806 document.write(orig);  //returns 'Thu Oct 01 2006'
1807 </code></pre>
1808  * @return {Date} The new Date instance
1809  */
1810 Date.prototype.clone = function() {
1811         return new Date(this.getTime());
1812 };
1813
1814 /**
1815  * Clears any time information from this date
1816  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1817  @return {Date} this or the clone
1818  */
1819 Date.prototype.clearTime = function(clone){
1820     if(clone){
1821         return this.clone().clearTime();
1822     }
1823     this.setHours(0);
1824     this.setMinutes(0);
1825     this.setSeconds(0);
1826     this.setMilliseconds(0);
1827     return this;
1828 };
1829
1830 // private
1831 // safari setMonth is broken -- check that this is only donw once...
1832 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1833     Date.brokenSetMonth = Date.prototype.setMonth;
1834         Date.prototype.setMonth = function(num){
1835                 if(num <= -1){
1836                         var n = Math.ceil(-num);
1837                         var back_year = Math.ceil(n/12);
1838                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1839                         this.setFullYear(this.getFullYear() - back_year);
1840                         return Date.brokenSetMonth.call(this, month);
1841                 } else {
1842                         return Date.brokenSetMonth.apply(this, arguments);
1843                 }
1844         };
1845 }
1846
1847 /** Date interval constant 
1848 * @static 
1849 * @type String */
1850 Date.MILLI = "ms";
1851 /** Date interval constant 
1852 * @static 
1853 * @type String */
1854 Date.SECOND = "s";
1855 /** Date interval constant 
1856 * @static 
1857 * @type String */
1858 Date.MINUTE = "mi";
1859 /** Date interval constant 
1860 * @static 
1861 * @type String */
1862 Date.HOUR = "h";
1863 /** Date interval constant 
1864 * @static 
1865 * @type String */
1866 Date.DAY = "d";
1867 /** Date interval constant 
1868 * @static 
1869 * @type String */
1870 Date.MONTH = "mo";
1871 /** Date interval constant 
1872 * @static 
1873 * @type String */
1874 Date.YEAR = "y";
1875
1876 /**
1877  * Provides a convenient method of performing basic date arithmetic.  This method
1878  * does not modify the Date instance being called - it creates and returns
1879  * a new Date instance containing the resulting date value.
1880  *
1881  * Examples:
1882  * <pre><code>
1883 //Basic usage:
1884 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1885 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1886
1887 //Negative values will subtract correctly:
1888 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1889 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1890
1891 //You can even chain several calls together in one line!
1892 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1893 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1894  </code></pre>
1895  *
1896  * @param {String} interval   A valid date interval enum value
1897  * @param {Number} value      The amount to add to the current date
1898  * @return {Date} The new Date instance
1899  */
1900 Date.prototype.add = function(interval, value){
1901   var d = this.clone();
1902   if (!interval || value === 0) { return d; }
1903   switch(interval.toLowerCase()){
1904     case Date.MILLI:
1905       d.setMilliseconds(this.getMilliseconds() + value);
1906       break;
1907     case Date.SECOND:
1908       d.setSeconds(this.getSeconds() + value);
1909       break;
1910     case Date.MINUTE:
1911       d.setMinutes(this.getMinutes() + value);
1912       break;
1913     case Date.HOUR:
1914       d.setHours(this.getHours() + value);
1915       break;
1916     case Date.DAY:
1917       d.setDate(this.getDate() + value);
1918       break;
1919     case Date.MONTH:
1920       var day = this.getDate();
1921       if(day > 28){
1922           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1923       }
1924       d.setDate(day);
1925       d.setMonth(this.getMonth() + value);
1926       break;
1927     case Date.YEAR:
1928       d.setFullYear(this.getFullYear() + value);
1929       break;
1930   }
1931   return d;
1932 };
1933 /**
1934  * @class Roo.lib.Dom
1935  * @licence LGPL
1936  * @static
1937  * 
1938  * Dom utils (from YIU afaik)
1939  *
1940  * 
1941  **/
1942 Roo.lib.Dom = {
1943     /**
1944      * Get the view width
1945      * @param {Boolean} full True will get the full document, otherwise it's the view width
1946      * @return {Number} The width
1947      */
1948      
1949     getViewWidth : function(full) {
1950         return full ? this.getDocumentWidth() : this.getViewportWidth();
1951     },
1952     /**
1953      * Get the view height
1954      * @param {Boolean} full True will get the full document, otherwise it's the view height
1955      * @return {Number} The height
1956      */
1957     getViewHeight : function(full) {
1958         return full ? this.getDocumentHeight() : this.getViewportHeight();
1959     },
1960     /**
1961      * Get the Full Document height 
1962      * @return {Number} The height
1963      */
1964     getDocumentHeight: function() {
1965         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1966         return Math.max(scrollHeight, this.getViewportHeight());
1967     },
1968     /**
1969      * Get the Full Document width
1970      * @return {Number} The width
1971      */
1972     getDocumentWidth: function() {
1973         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1974         return Math.max(scrollWidth, this.getViewportWidth());
1975     },
1976     /**
1977      * Get the Window Viewport height
1978      * @return {Number} The height
1979      */
1980     getViewportHeight: function() {
1981         var height = self.innerHeight;
1982         var mode = document.compatMode;
1983
1984         if ((mode || Roo.isIE) && !Roo.isOpera) {
1985             height = (mode == "CSS1Compat") ?
1986                      document.documentElement.clientHeight :
1987                      document.body.clientHeight;
1988         }
1989
1990         return height;
1991     },
1992     /**
1993      * Get the Window Viewport width
1994      * @return {Number} The width
1995      */
1996     getViewportWidth: function() {
1997         var width = self.innerWidth;
1998         var mode = document.compatMode;
1999
2000         if (mode || Roo.isIE) {
2001             width = (mode == "CSS1Compat") ?
2002                     document.documentElement.clientWidth :
2003                     document.body.clientWidth;
2004         }
2005         return width;
2006     },
2007
2008     isAncestor : function(p, c) {
2009         p = Roo.getDom(p);
2010         c = Roo.getDom(c);
2011         if (!p || !c) {
2012             return false;
2013         }
2014
2015         if (p.contains && !Roo.isSafari) {
2016             return p.contains(c);
2017         } else if (p.compareDocumentPosition) {
2018             return !!(p.compareDocumentPosition(c) & 16);
2019         } else {
2020             var parent = c.parentNode;
2021             while (parent) {
2022                 if (parent == p) {
2023                     return true;
2024                 }
2025                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
2026                     return false;
2027                 }
2028                 parent = parent.parentNode;
2029             }
2030             return false;
2031         }
2032     },
2033
2034     getRegion : function(el) {
2035         return Roo.lib.Region.getRegion(el);
2036     },
2037
2038     getY : function(el) {
2039         return this.getXY(el)[1];
2040     },
2041
2042     getX : function(el) {
2043         return this.getXY(el)[0];
2044     },
2045
2046     getXY : function(el) {
2047         var p, pe, b, scroll, bd = document.body;
2048         el = Roo.getDom(el);
2049         var fly = Roo.lib.AnimBase.fly;
2050         if (el.getBoundingClientRect) {
2051             b = el.getBoundingClientRect();
2052             scroll = fly(document).getScroll();
2053             return [b.left + scroll.left, b.top + scroll.top];
2054         }
2055         var x = 0, y = 0;
2056
2057         p = el;
2058
2059         var hasAbsolute = fly(el).getStyle("position") == "absolute";
2060
2061         while (p) {
2062
2063             x += p.offsetLeft;
2064             y += p.offsetTop;
2065
2066             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
2067                 hasAbsolute = true;
2068             }
2069
2070             if (Roo.isGecko) {
2071                 pe = fly(p);
2072
2073                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
2074                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
2075
2076
2077                 x += bl;
2078                 y += bt;
2079
2080
2081                 if (p != el && pe.getStyle('overflow') != 'visible') {
2082                     x += bl;
2083                     y += bt;
2084                 }
2085             }
2086             p = p.offsetParent;
2087         }
2088
2089         if (Roo.isSafari && hasAbsolute) {
2090             x -= bd.offsetLeft;
2091             y -= bd.offsetTop;
2092         }
2093
2094         if (Roo.isGecko && !hasAbsolute) {
2095             var dbd = fly(bd);
2096             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2097             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2098         }
2099
2100         p = el.parentNode;
2101         while (p && p != bd) {
2102             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2103                 x -= p.scrollLeft;
2104                 y -= p.scrollTop;
2105             }
2106             p = p.parentNode;
2107         }
2108         return [x, y];
2109     },
2110  
2111   
2112
2113
2114     setXY : function(el, xy) {
2115         el = Roo.fly(el, '_setXY');
2116         el.position();
2117         var pts = el.translatePoints(xy);
2118         if (xy[0] !== false) {
2119             el.dom.style.left = pts.left + "px";
2120         }
2121         if (xy[1] !== false) {
2122             el.dom.style.top = pts.top + "px";
2123         }
2124     },
2125
2126     setX : function(el, x) {
2127         this.setXY(el, [x, false]);
2128     },
2129
2130     setY : function(el, y) {
2131         this.setXY(el, [false, y]);
2132     }
2133 };
2134 /*
2135  * Portions of this file are based on pieces of Yahoo User Interface Library
2136  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2137  * YUI licensed under the BSD License:
2138  * http://developer.yahoo.net/yui/license.txt
2139  * <script type="text/javascript">
2140  *
2141  */
2142
2143 Roo.lib.Event = function() {
2144     var loadComplete = false;
2145     var listeners = [];
2146     var unloadListeners = [];
2147     var retryCount = 0;
2148     var onAvailStack = [];
2149     var counter = 0;
2150     var lastError = null;
2151
2152     return {
2153         POLL_RETRYS: 200,
2154         POLL_INTERVAL: 20,
2155         EL: 0,
2156         TYPE: 1,
2157         FN: 2,
2158         WFN: 3,
2159         OBJ: 3,
2160         ADJ_SCOPE: 4,
2161         _interval: null,
2162
2163         startInterval: function() {
2164             if (!this._interval) {
2165                 var self = this;
2166                 var callback = function() {
2167                     self._tryPreloadAttach();
2168                 };
2169                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2170
2171             }
2172         },
2173
2174         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2175             onAvailStack.push({ id:         p_id,
2176                 fn:         p_fn,
2177                 obj:        p_obj,
2178                 override:   p_override,
2179                 checkReady: false    });
2180
2181             retryCount = this.POLL_RETRYS;
2182             this.startInterval();
2183         },
2184
2185
2186         addListener: function(el, eventName, fn) {
2187             el = Roo.getDom(el);
2188             if (!el || !fn) {
2189                 return false;
2190             }
2191
2192             if ("unload" == eventName) {
2193                 unloadListeners[unloadListeners.length] =
2194                 [el, eventName, fn];
2195                 return true;
2196             }
2197
2198             var wrappedFn = function(e) {
2199                 return fn(Roo.lib.Event.getEvent(e));
2200             };
2201
2202             var li = [el, eventName, fn, wrappedFn];
2203
2204             var index = listeners.length;
2205             listeners[index] = li;
2206
2207             this.doAdd(el, eventName, wrappedFn, false);
2208             return true;
2209
2210         },
2211
2212
2213         removeListener: function(el, eventName, fn) {
2214             var i, len;
2215
2216             el = Roo.getDom(el);
2217
2218             if(!fn) {
2219                 return this.purgeElement(el, false, eventName);
2220             }
2221
2222
2223             if ("unload" == eventName) {
2224
2225                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2226                     var li = unloadListeners[i];
2227                     if (li &&
2228                         li[0] == el &&
2229                         li[1] == eventName &&
2230                         li[2] == fn) {
2231                         unloadListeners.splice(i, 1);
2232                         return true;
2233                     }
2234                 }
2235
2236                 return false;
2237             }
2238
2239             var cacheItem = null;
2240
2241
2242             var index = arguments[3];
2243
2244             if ("undefined" == typeof index) {
2245                 index = this._getCacheIndex(el, eventName, fn);
2246             }
2247
2248             if (index >= 0) {
2249                 cacheItem = listeners[index];
2250             }
2251
2252             if (!el || !cacheItem) {
2253                 return false;
2254             }
2255
2256             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2257
2258             delete listeners[index][this.WFN];
2259             delete listeners[index][this.FN];
2260             listeners.splice(index, 1);
2261
2262             return true;
2263
2264         },
2265
2266
2267         getTarget: function(ev, resolveTextNode) {
2268             ev = ev.browserEvent || ev;
2269             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2270             var t = ev.target || ev.srcElement;
2271             return this.resolveTextNode(t);
2272         },
2273
2274
2275         resolveTextNode: function(node) {
2276             if (Roo.isSafari && node && 3 == node.nodeType) {
2277                 return node.parentNode;
2278             } else {
2279                 return node;
2280             }
2281         },
2282
2283
2284         getPageX: function(ev) {
2285             ev = ev.browserEvent || ev;
2286             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2287             var x = ev.pageX;
2288             if (!x && 0 !== x) {
2289                 x = ev.clientX || 0;
2290
2291                 if (Roo.isIE) {
2292                     x += this.getScroll()[1];
2293                 }
2294             }
2295
2296             return x;
2297         },
2298
2299
2300         getPageY: function(ev) {
2301             ev = ev.browserEvent || ev;
2302             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2303             var y = ev.pageY;
2304             if (!y && 0 !== y) {
2305                 y = ev.clientY || 0;
2306
2307                 if (Roo.isIE) {
2308                     y += this.getScroll()[0];
2309                 }
2310             }
2311
2312
2313             return y;
2314         },
2315
2316
2317         getXY: function(ev) {
2318             ev = ev.browserEvent || ev;
2319             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2320             return [this.getPageX(ev), this.getPageY(ev)];
2321         },
2322
2323
2324         getRelatedTarget: function(ev) {
2325             ev = ev.browserEvent || ev;
2326             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2327             var t = ev.relatedTarget;
2328             if (!t) {
2329                 if (ev.type == "mouseout") {
2330                     t = ev.toElement;
2331                 } else if (ev.type == "mouseover") {
2332                     t = ev.fromElement;
2333                 }
2334             }
2335
2336             return this.resolveTextNode(t);
2337         },
2338
2339
2340         getTime: function(ev) {
2341             ev = ev.browserEvent || ev;
2342             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2343             if (!ev.time) {
2344                 var t = new Date().getTime();
2345                 try {
2346                     ev.time = t;
2347                 } catch(ex) {
2348                     this.lastError = ex;
2349                     return t;
2350                 }
2351             }
2352
2353             return ev.time;
2354         },
2355
2356
2357         stopEvent: function(ev) {
2358             this.stopPropagation(ev);
2359             this.preventDefault(ev);
2360         },
2361
2362
2363         stopPropagation: function(ev) {
2364             ev = ev.browserEvent || ev;
2365             if (ev.stopPropagation) {
2366                 ev.stopPropagation();
2367             } else {
2368                 ev.cancelBubble = true;
2369             }
2370         },
2371
2372
2373         preventDefault: function(ev) {
2374             ev = ev.browserEvent || ev;
2375             if(ev.preventDefault) {
2376                 ev.preventDefault();
2377             } else {
2378                 ev.returnValue = false;
2379             }
2380         },
2381
2382
2383         getEvent: function(e) {
2384             var ev = e || window.event;
2385             if (!ev) {
2386                 var c = this.getEvent.caller;
2387                 while (c) {
2388                     ev = c.arguments[0];
2389                     if (ev && Event == ev.constructor) {
2390                         break;
2391                     }
2392                     c = c.caller;
2393                 }
2394             }
2395             return ev;
2396         },
2397
2398
2399         getCharCode: function(ev) {
2400             ev = ev.browserEvent || ev;
2401             return ev.charCode || ev.keyCode || 0;
2402         },
2403
2404
2405         _getCacheIndex: function(el, eventName, fn) {
2406             for (var i = 0,len = listeners.length; i < len; ++i) {
2407                 var li = listeners[i];
2408                 if (li &&
2409                     li[this.FN] == fn &&
2410                     li[this.EL] == el &&
2411                     li[this.TYPE] == eventName) {
2412                     return i;
2413                 }
2414             }
2415
2416             return -1;
2417         },
2418
2419
2420         elCache: {},
2421
2422
2423         getEl: function(id) {
2424             return document.getElementById(id);
2425         },
2426
2427
2428         clearCache: function() {
2429         },
2430
2431
2432         _load: function(e) {
2433             loadComplete = true;
2434             var EU = Roo.lib.Event;
2435
2436
2437             if (Roo.isIE) {
2438                 EU.doRemove(window, "load", EU._load);
2439             }
2440         },
2441
2442
2443         _tryPreloadAttach: function() {
2444
2445             if (this.locked) {
2446                 return false;
2447             }
2448
2449             this.locked = true;
2450
2451
2452             var tryAgain = !loadComplete;
2453             if (!tryAgain) {
2454                 tryAgain = (retryCount > 0);
2455             }
2456
2457
2458             var notAvail = [];
2459             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2460                 var item = onAvailStack[i];
2461                 if (item) {
2462                     var el = this.getEl(item.id);
2463
2464                     if (el) {
2465                         if (!item.checkReady ||
2466                             loadComplete ||
2467                             el.nextSibling ||
2468                             (document && document.body)) {
2469
2470                             var scope = el;
2471                             if (item.override) {
2472                                 if (item.override === true) {
2473                                     scope = item.obj;
2474                                 } else {
2475                                     scope = item.override;
2476                                 }
2477                             }
2478                             item.fn.call(scope, item.obj);
2479                             onAvailStack[i] = null;
2480                         }
2481                     } else {
2482                         notAvail.push(item);
2483                     }
2484                 }
2485             }
2486
2487             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2488
2489             if (tryAgain) {
2490
2491                 this.startInterval();
2492             } else {
2493                 clearInterval(this._interval);
2494                 this._interval = null;
2495             }
2496
2497             this.locked = false;
2498
2499             return true;
2500
2501         },
2502
2503
2504         purgeElement: function(el, recurse, eventName) {
2505             var elListeners = this.getListeners(el, eventName);
2506             if (elListeners) {
2507                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2508                     var l = elListeners[i];
2509                     this.removeListener(el, l.type, l.fn);
2510                 }
2511             }
2512
2513             if (recurse && el && el.childNodes) {
2514                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2515                     this.purgeElement(el.childNodes[i], recurse, eventName);
2516                 }
2517             }
2518         },
2519
2520
2521         getListeners: function(el, eventName) {
2522             var results = [], searchLists;
2523             if (!eventName) {
2524                 searchLists = [listeners, unloadListeners];
2525             } else if (eventName == "unload") {
2526                 searchLists = [unloadListeners];
2527             } else {
2528                 searchLists = [listeners];
2529             }
2530
2531             for (var j = 0; j < searchLists.length; ++j) {
2532                 var searchList = searchLists[j];
2533                 if (searchList && searchList.length > 0) {
2534                     for (var i = 0,len = searchList.length; i < len; ++i) {
2535                         var l = searchList[i];
2536                         if (l && l[this.EL] === el &&
2537                             (!eventName || eventName === l[this.TYPE])) {
2538                             results.push({
2539                                 type:   l[this.TYPE],
2540                                 fn:     l[this.FN],
2541                                 obj:    l[this.OBJ],
2542                                 adjust: l[this.ADJ_SCOPE],
2543                                 index:  i
2544                             });
2545                         }
2546                     }
2547                 }
2548             }
2549
2550             return (results.length) ? results : null;
2551         },
2552
2553
2554         _unload: function(e) {
2555
2556             var EU = Roo.lib.Event, i, j, l, len, index;
2557
2558             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2559                 l = unloadListeners[i];
2560                 if (l) {
2561                     var scope = window;
2562                     if (l[EU.ADJ_SCOPE]) {
2563                         if (l[EU.ADJ_SCOPE] === true) {
2564                             scope = l[EU.OBJ];
2565                         } else {
2566                             scope = l[EU.ADJ_SCOPE];
2567                         }
2568                     }
2569                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2570                     unloadListeners[i] = null;
2571                     l = null;
2572                     scope = null;
2573                 }
2574             }
2575
2576             unloadListeners = null;
2577
2578             if (listeners && listeners.length > 0) {
2579                 j = listeners.length;
2580                 while (j) {
2581                     index = j - 1;
2582                     l = listeners[index];
2583                     if (l) {
2584                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2585                                 l[EU.FN], index);
2586                     }
2587                     j = j - 1;
2588                 }
2589                 l = null;
2590
2591                 EU.clearCache();
2592             }
2593
2594             EU.doRemove(window, "unload", EU._unload);
2595
2596         },
2597
2598
2599         getScroll: function() {
2600             var dd = document.documentElement, db = document.body;
2601             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2602                 return [dd.scrollTop, dd.scrollLeft];
2603             } else if (db) {
2604                 return [db.scrollTop, db.scrollLeft];
2605             } else {
2606                 return [0, 0];
2607             }
2608         },
2609
2610
2611         doAdd: function () {
2612             if (window.addEventListener) {
2613                 return function(el, eventName, fn, capture) {
2614                     el.addEventListener(eventName, fn, (capture));
2615                 };
2616             } else if (window.attachEvent) {
2617                 return function(el, eventName, fn, capture) {
2618                     el.attachEvent("on" + eventName, fn);
2619                 };
2620             } else {
2621                 return function() {
2622                 };
2623             }
2624         }(),
2625
2626
2627         doRemove: function() {
2628             if (window.removeEventListener) {
2629                 return function (el, eventName, fn, capture) {
2630                     el.removeEventListener(eventName, fn, (capture));
2631                 };
2632             } else if (window.detachEvent) {
2633                 return function (el, eventName, fn) {
2634                     el.detachEvent("on" + eventName, fn);
2635                 };
2636             } else {
2637                 return function() {
2638                 };
2639             }
2640         }()
2641     };
2642     
2643 }();
2644 (function() {     
2645    
2646     var E = Roo.lib.Event;
2647     E.on = E.addListener;
2648     E.un = E.removeListener;
2649
2650     if (document && document.body) {
2651         E._load();
2652     } else {
2653         E.doAdd(window, "load", E._load);
2654     }
2655     E.doAdd(window, "unload", E._unload);
2656     E._tryPreloadAttach();
2657 })();
2658
2659  
2660
2661 (function() {
2662     /**
2663      * @class Roo.lib.Ajax
2664      *
2665      * provide a simple Ajax request utility functions
2666      * 
2667      * Portions of this file are based on pieces of Yahoo User Interface Library
2668     * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2669     * YUI licensed under the BSD License:
2670     * http://developer.yahoo.net/yui/license.txt
2671     * <script type="text/javascript">
2672     *
2673      *
2674      */
2675     Roo.lib.Ajax = {
2676         /**
2677          * @static 
2678          */
2679         request : function(method, uri, cb, data, options) {
2680             if(options){
2681                 var hs = options.headers;
2682                 if(hs){
2683                     for(var h in hs){
2684                         if(hs.hasOwnProperty(h)){
2685                             this.initHeader(h, hs[h], false);
2686                         }
2687                     }
2688                 }
2689                 if(options.xmlData){
2690                     this.initHeader('Content-Type', 'text/xml', false);
2691                     method = 'POST';
2692                     data = options.xmlData;
2693                 }
2694             }
2695
2696             return this.asyncRequest(method, uri, cb, data);
2697         },
2698         /**
2699          * serialize a form
2700          *
2701          * @static
2702          * @param {DomForm} form element
2703          * @return {String} urlencode form output.
2704          */
2705         serializeForm : function(form) {
2706             if(typeof form == 'string') {
2707                 form = (document.getElementById(form) || document.forms[form]);
2708             }
2709
2710             var el, name, val, disabled, data = '', hasSubmit = false;
2711             for (var i = 0; i < form.elements.length; i++) {
2712                 el = form.elements[i];
2713                 disabled = form.elements[i].disabled;
2714                 name = form.elements[i].name;
2715                 val = form.elements[i].value;
2716
2717                 if (!disabled && name){
2718                     switch (el.type)
2719                             {
2720                         case 'select-one':
2721                         case 'select-multiple':
2722                             for (var j = 0; j < el.options.length; j++) {
2723                                 if (el.options[j].selected) {
2724                                     if (Roo.isIE) {
2725                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2726                                     }
2727                                     else {
2728                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2729                                     }
2730                                 }
2731                             }
2732                             break;
2733                         case 'radio':
2734                         case 'checkbox':
2735                             if (el.checked) {
2736                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2737                             }
2738                             break;
2739                         case 'file':
2740
2741                         case undefined:
2742
2743                         case 'reset':
2744
2745                         case 'button':
2746
2747                             break;
2748                         case 'submit':
2749                             if(hasSubmit == false) {
2750                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2751                                 hasSubmit = true;
2752                             }
2753                             break;
2754                         default:
2755                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2756                             break;
2757                     }
2758                 }
2759             }
2760             data = data.substr(0, data.length - 1);
2761             return data;
2762         },
2763
2764         headers:{},
2765
2766         hasHeaders:false,
2767
2768         useDefaultHeader:true,
2769
2770         defaultPostHeader:'application/x-www-form-urlencoded',
2771
2772         useDefaultXhrHeader:true,
2773
2774         defaultXhrHeader:'XMLHttpRequest',
2775
2776         hasDefaultHeaders:true,
2777
2778         defaultHeaders:{},
2779
2780         poll:{},
2781
2782         timeout:{},
2783
2784         pollInterval:50,
2785
2786         transactionId:0,
2787
2788         setProgId:function(id)
2789         {
2790             this.activeX.unshift(id);
2791         },
2792
2793         setDefaultPostHeader:function(b)
2794         {
2795             this.useDefaultHeader = b;
2796         },
2797
2798         setDefaultXhrHeader:function(b)
2799         {
2800             this.useDefaultXhrHeader = b;
2801         },
2802
2803         setPollingInterval:function(i)
2804         {
2805             if (typeof i == 'number' && isFinite(i)) {
2806                 this.pollInterval = i;
2807             }
2808         },
2809
2810         createXhrObject:function(transactionId)
2811         {
2812             var obj,http;
2813             try
2814             {
2815
2816                 http = new XMLHttpRequest();
2817
2818                 obj = { conn:http, tId:transactionId };
2819             }
2820             catch(e)
2821             {
2822                 for (var i = 0; i < this.activeX.length; ++i) {
2823                     try
2824                     {
2825
2826                         http = new ActiveXObject(this.activeX[i]);
2827
2828                         obj = { conn:http, tId:transactionId };
2829                         break;
2830                     }
2831                     catch(e) {
2832                     }
2833                 }
2834             }
2835             finally
2836             {
2837                 return obj;
2838             }
2839         },
2840
2841         getConnectionObject:function()
2842         {
2843             var o;
2844             var tId = this.transactionId;
2845
2846             try
2847             {
2848                 o = this.createXhrObject(tId);
2849                 if (o) {
2850                     this.transactionId++;
2851                 }
2852             }
2853             catch(e) {
2854             }
2855             finally
2856             {
2857                 return o;
2858             }
2859         },
2860
2861         asyncRequest:function(method, uri, callback, postData)
2862         {
2863             var o = this.getConnectionObject();
2864
2865             if (!o) {
2866                 return null;
2867             }
2868             else {
2869                 o.conn.open(method, uri, true);
2870
2871                 if (this.useDefaultXhrHeader) {
2872                     if (!this.defaultHeaders['X-Requested-With']) {
2873                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2874                     }
2875                 }
2876
2877                 if(postData && this.useDefaultHeader){
2878                     this.initHeader('Content-Type', this.defaultPostHeader);
2879                 }
2880
2881                  if (this.hasDefaultHeaders || this.hasHeaders) {
2882                     this.setHeader(o);
2883                 }
2884
2885                 this.handleReadyState(o, callback);
2886                 o.conn.send(postData || null);
2887
2888                 return o;
2889             }
2890         },
2891
2892         handleReadyState:function(o, callback)
2893         {
2894             var oConn = this;
2895
2896             if (callback && callback.timeout) {
2897                 
2898                 this.timeout[o.tId] = window.setTimeout(function() {
2899                     oConn.abort(o, callback, true);
2900                 }, callback.timeout);
2901             }
2902
2903             this.poll[o.tId] = window.setInterval(
2904                     function() {
2905                         if (o.conn && o.conn.readyState == 4) {
2906                             window.clearInterval(oConn.poll[o.tId]);
2907                             delete oConn.poll[o.tId];
2908
2909                             if(callback && callback.timeout) {
2910                                 window.clearTimeout(oConn.timeout[o.tId]);
2911                                 delete oConn.timeout[o.tId];
2912                             }
2913
2914                             oConn.handleTransactionResponse(o, callback);
2915                         }
2916                     }
2917                     , this.pollInterval);
2918         },
2919
2920         handleTransactionResponse:function(o, callback, isAbort)
2921         {
2922
2923             if (!callback) {
2924                 this.releaseObject(o);
2925                 return;
2926             }
2927
2928             var httpStatus, responseObject;
2929
2930             try
2931             {
2932                 if (o.conn.status !== undefined && o.conn.status != 0) {
2933                     httpStatus = o.conn.status;
2934                 }
2935                 else {
2936                     httpStatus = 13030;
2937                 }
2938             }
2939             catch(e) {
2940
2941
2942                 httpStatus = 13030;
2943             }
2944
2945             if (httpStatus >= 200 && httpStatus < 300) {
2946                 responseObject = this.createResponseObject(o, callback.argument);
2947                 if (callback.success) {
2948                     if (!callback.scope) {
2949                         callback.success(responseObject);
2950                     }
2951                     else {
2952
2953
2954                         callback.success.apply(callback.scope, [responseObject]);
2955                     }
2956                 }
2957             }
2958             else {
2959                 switch (httpStatus) {
2960
2961                     case 12002:
2962                     case 12029:
2963                     case 12030:
2964                     case 12031:
2965                     case 12152:
2966                     case 13030:
2967                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2968                         if (callback.failure) {
2969                             if (!callback.scope) {
2970                                 callback.failure(responseObject);
2971                             }
2972                             else {
2973                                 callback.failure.apply(callback.scope, [responseObject]);
2974                             }
2975                         }
2976                         break;
2977                     default:
2978                         responseObject = this.createResponseObject(o, callback.argument);
2979                         if (callback.failure) {
2980                             if (!callback.scope) {
2981                                 callback.failure(responseObject);
2982                             }
2983                             else {
2984                                 callback.failure.apply(callback.scope, [responseObject]);
2985                             }
2986                         }
2987                 }
2988             }
2989
2990             this.releaseObject(o);
2991             responseObject = null;
2992         },
2993
2994         createResponseObject:function(o, callbackArg)
2995         {
2996             var obj = {};
2997             var headerObj = {};
2998
2999             try
3000             {
3001                 var headerStr = o.conn.getAllResponseHeaders();
3002                 var header = headerStr.split('\n');
3003                 for (var i = 0; i < header.length; i++) {
3004                     var delimitPos = header[i].indexOf(':');
3005                     if (delimitPos != -1) {
3006                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
3007                     }
3008                 }
3009             }
3010             catch(e) {
3011             }
3012
3013             obj.tId = o.tId;
3014             obj.status = o.conn.status;
3015             obj.statusText = o.conn.statusText;
3016             obj.getResponseHeader = headerObj;
3017             obj.getAllResponseHeaders = headerStr;
3018             obj.responseText = o.conn.responseText;
3019             obj.responseXML = o.conn.responseXML;
3020
3021             if (typeof callbackArg !== undefined) {
3022                 obj.argument = callbackArg;
3023             }
3024
3025             return obj;
3026         },
3027
3028         createExceptionObject:function(tId, callbackArg, isAbort)
3029         {
3030             var COMM_CODE = 0;
3031             var COMM_ERROR = 'communication failure';
3032             var ABORT_CODE = -1;
3033             var ABORT_ERROR = 'transaction aborted';
3034
3035             var obj = {};
3036
3037             obj.tId = tId;
3038             if (isAbort) {
3039                 obj.status = ABORT_CODE;
3040                 obj.statusText = ABORT_ERROR;
3041             }
3042             else {
3043                 obj.status = COMM_CODE;
3044                 obj.statusText = COMM_ERROR;
3045             }
3046
3047             if (callbackArg) {
3048                 obj.argument = callbackArg;
3049             }
3050
3051             return obj;
3052         },
3053
3054         initHeader:function(label, value, isDefault)
3055         {
3056             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
3057
3058             if (headerObj[label] === undefined) {
3059                 headerObj[label] = value;
3060             }
3061             else {
3062
3063
3064                 headerObj[label] = value + "," + headerObj[label];
3065             }
3066
3067             if (isDefault) {
3068                 this.hasDefaultHeaders = true;
3069             }
3070             else {
3071                 this.hasHeaders = true;
3072             }
3073         },
3074
3075
3076         setHeader:function(o)
3077         {
3078             if (this.hasDefaultHeaders) {
3079                 for (var prop in this.defaultHeaders) {
3080                     if (this.defaultHeaders.hasOwnProperty(prop)) {
3081                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
3082                     }
3083                 }
3084             }
3085
3086             if (this.hasHeaders) {
3087                 for (var prop in this.headers) {
3088                     if (this.headers.hasOwnProperty(prop)) {
3089                         o.conn.setRequestHeader(prop, this.headers[prop]);
3090                     }
3091                 }
3092                 this.headers = {};
3093                 this.hasHeaders = false;
3094             }
3095         },
3096
3097         resetDefaultHeaders:function() {
3098             delete this.defaultHeaders;
3099             this.defaultHeaders = {};
3100             this.hasDefaultHeaders = false;
3101         },
3102
3103         abort:function(o, callback, isTimeout)
3104         {
3105             if(this.isCallInProgress(o)) {
3106                 o.conn.abort();
3107                 window.clearInterval(this.poll[o.tId]);
3108                 delete this.poll[o.tId];
3109                 if (isTimeout) {
3110                     delete this.timeout[o.tId];
3111                 }
3112
3113                 this.handleTransactionResponse(o, callback, true);
3114
3115                 return true;
3116             }
3117             else {
3118                 return false;
3119             }
3120         },
3121
3122
3123         isCallInProgress:function(o)
3124         {
3125             if (o && o.conn) {
3126                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3127             }
3128             else {
3129
3130                 return false;
3131             }
3132         },
3133
3134
3135         releaseObject:function(o)
3136         {
3137
3138             o.conn = null;
3139
3140             o = null;
3141         },
3142
3143         activeX:[
3144         'MSXML2.XMLHTTP.3.0',
3145         'MSXML2.XMLHTTP',
3146         'Microsoft.XMLHTTP'
3147         ]
3148
3149
3150     };
3151 })();/*
3152  * Portions of this file are based on pieces of Yahoo User Interface Library
3153  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3154  * YUI licensed under the BSD License:
3155  * http://developer.yahoo.net/yui/license.txt
3156  * <script type="text/javascript">
3157  *
3158  */
3159
3160 Roo.lib.Region = function(t, r, b, l) {
3161     this.top = t;
3162     this[1] = t;
3163     this.right = r;
3164     this.bottom = b;
3165     this.left = l;
3166     this[0] = l;
3167 };
3168
3169
3170 Roo.lib.Region.prototype = {
3171     contains : function(region) {
3172         return ( region.left >= this.left &&
3173                  region.right <= this.right &&
3174                  region.top >= this.top &&
3175                  region.bottom <= this.bottom    );
3176
3177     },
3178
3179     getArea : function() {
3180         return ( (this.bottom - this.top) * (this.right - this.left) );
3181     },
3182
3183     intersect : function(region) {
3184         var t = Math.max(this.top, region.top);
3185         var r = Math.min(this.right, region.right);
3186         var b = Math.min(this.bottom, region.bottom);
3187         var l = Math.max(this.left, region.left);
3188
3189         if (b >= t && r >= l) {
3190             return new Roo.lib.Region(t, r, b, l);
3191         } else {
3192             return null;
3193         }
3194     },
3195     union : function(region) {
3196         var t = Math.min(this.top, region.top);
3197         var r = Math.max(this.right, region.right);
3198         var b = Math.max(this.bottom, region.bottom);
3199         var l = Math.min(this.left, region.left);
3200
3201         return new Roo.lib.Region(t, r, b, l);
3202     },
3203
3204     adjust : function(t, l, b, r) {
3205         this.top += t;
3206         this.left += l;
3207         this.right += r;
3208         this.bottom += b;
3209         return this;
3210     }
3211 };
3212
3213 Roo.lib.Region.getRegion = function(el) {
3214     var p = Roo.lib.Dom.getXY(el);
3215
3216     var t = p[1];
3217     var r = p[0] + el.offsetWidth;
3218     var b = p[1] + el.offsetHeight;
3219     var l = p[0];
3220
3221     return new Roo.lib.Region(t, r, b, l);
3222 };
3223 /*
3224  * Portions of this file are based on pieces of Yahoo User Interface Library
3225  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3226  * YUI licensed under the BSD License:
3227  * http://developer.yahoo.net/yui/license.txt
3228  * <script type="text/javascript">
3229  *
3230  */
3231 //@@dep Roo.lib.Region
3232
3233
3234 Roo.lib.Point = function(x, y) {
3235     if (x instanceof Array) {
3236         y = x[1];
3237         x = x[0];
3238     }
3239     this.x = this.right = this.left = this[0] = x;
3240     this.y = this.top = this.bottom = this[1] = y;
3241 };
3242
3243 Roo.lib.Point.prototype = new Roo.lib.Region();
3244 /*
3245  * Portions of this file are based on pieces of Yahoo User Interface Library
3246  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3247  * YUI licensed under the BSD License:
3248  * http://developer.yahoo.net/yui/license.txt
3249  * <script type="text/javascript">
3250  *
3251  */
3252  
3253 (function() {   
3254
3255     Roo.lib.Anim = {
3256         scroll : function(el, args, duration, easing, cb, scope) {
3257             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3258         },
3259
3260         motion : function(el, args, duration, easing, cb, scope) {
3261             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3262         },
3263
3264         color : function(el, args, duration, easing, cb, scope) {
3265             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3266         },
3267
3268         run : function(el, args, duration, easing, cb, scope, type) {
3269             type = type || Roo.lib.AnimBase;
3270             if (typeof easing == "string") {
3271                 easing = Roo.lib.Easing[easing];
3272             }
3273             var anim = new type(el, args, duration, easing);
3274             anim.animateX(function() {
3275                 Roo.callback(cb, scope);
3276             });
3277             return anim;
3278         }
3279     };
3280 })();/*
3281  * Portions of this file are based on pieces of Yahoo User Interface Library
3282  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3283  * YUI licensed under the BSD License:
3284  * http://developer.yahoo.net/yui/license.txt
3285  * <script type="text/javascript">
3286  *
3287  */
3288
3289 (function() {    
3290     var libFlyweight;
3291     
3292     function fly(el) {
3293         if (!libFlyweight) {
3294             libFlyweight = new Roo.Element.Flyweight();
3295         }
3296         libFlyweight.dom = el;
3297         return libFlyweight;
3298     }
3299
3300     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3301     
3302    
3303     
3304     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3305         if (el) {
3306             this.init(el, attributes, duration, method);
3307         }
3308     };
3309
3310     Roo.lib.AnimBase.fly = fly;
3311     
3312     
3313     
3314     Roo.lib.AnimBase.prototype = {
3315
3316         toString: function() {
3317             var el = this.getEl();
3318             var id = el.id || el.tagName;
3319             return ("Anim " + id);
3320         },
3321
3322         patterns: {
3323             noNegatives:        /width|height|opacity|padding/i,
3324             offsetAttribute:  /^((width|height)|(top|left))$/,
3325             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3326             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3327         },
3328
3329
3330         doMethod: function(attr, start, end) {
3331             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3332         },
3333
3334
3335         setAttribute: function(attr, val, unit) {
3336             if (this.patterns.noNegatives.test(attr)) {
3337                 val = (val > 0) ? val : 0;
3338             }
3339
3340             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3341         },
3342
3343
3344         getAttribute: function(attr) {
3345             var el = this.getEl();
3346             var val = fly(el).getStyle(attr);
3347
3348             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3349                 return parseFloat(val);
3350             }
3351
3352             var a = this.patterns.offsetAttribute.exec(attr) || [];
3353             var pos = !!( a[3] );
3354             var box = !!( a[2] );
3355
3356
3357             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3358                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3359             } else {
3360                 val = 0;
3361             }
3362
3363             return val;
3364         },
3365
3366
3367         getDefaultUnit: function(attr) {
3368             if (this.patterns.defaultUnit.test(attr)) {
3369                 return 'px';
3370             }
3371
3372             return '';
3373         },
3374
3375         animateX : function(callback, scope) {
3376             var f = function() {
3377                 this.onComplete.removeListener(f);
3378                 if (typeof callback == "function") {
3379                     callback.call(scope || this, this);
3380                 }
3381             };
3382             this.onComplete.addListener(f, this);
3383             this.animate();
3384         },
3385
3386
3387         setRuntimeAttribute: function(attr) {
3388             var start;
3389             var end;
3390             var attributes = this.attributes;
3391
3392             this.runtimeAttributes[attr] = {};
3393
3394             var isset = function(prop) {
3395                 return (typeof prop !== 'undefined');
3396             };
3397
3398             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3399                 return false;
3400             }
3401
3402             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3403
3404
3405             if (isset(attributes[attr]['to'])) {
3406                 end = attributes[attr]['to'];
3407             } else if (isset(attributes[attr]['by'])) {
3408                 if (start.constructor == Array) {
3409                     end = [];
3410                     for (var i = 0, len = start.length; i < len; ++i) {
3411                         end[i] = start[i] + attributes[attr]['by'][i];
3412                     }
3413                 } else {
3414                     end = start + attributes[attr]['by'];
3415                 }
3416             }
3417
3418             this.runtimeAttributes[attr].start = start;
3419             this.runtimeAttributes[attr].end = end;
3420
3421
3422             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3423         },
3424
3425
3426         init: function(el, attributes, duration, method) {
3427
3428             var isAnimated = false;
3429
3430
3431             var startTime = null;
3432
3433
3434             var actualFrames = 0;
3435
3436
3437             el = Roo.getDom(el);
3438
3439
3440             this.attributes = attributes || {};
3441
3442
3443             this.duration = duration || 1;
3444
3445
3446             this.method = method || Roo.lib.Easing.easeNone;
3447
3448
3449             this.useSeconds = true;
3450
3451
3452             this.currentFrame = 0;
3453
3454
3455             this.totalFrames = Roo.lib.AnimMgr.fps;
3456
3457
3458             this.getEl = function() {
3459                 return el;
3460             };
3461
3462
3463             this.isAnimated = function() {
3464                 return isAnimated;
3465             };
3466
3467
3468             this.getStartTime = function() {
3469                 return startTime;
3470             };
3471
3472             this.runtimeAttributes = {};
3473
3474
3475             this.animate = function() {
3476                 if (this.isAnimated()) {
3477                     return false;
3478                 }
3479
3480                 this.currentFrame = 0;
3481
3482                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3483
3484                 Roo.lib.AnimMgr.registerElement(this);
3485             };
3486
3487
3488             this.stop = function(finish) {
3489                 if (finish) {
3490                     this.currentFrame = this.totalFrames;
3491                     this._onTween.fire();
3492                 }
3493                 Roo.lib.AnimMgr.stop(this);
3494             };
3495
3496             var onStart = function() {
3497                 this.onStart.fire();
3498
3499                 this.runtimeAttributes = {};
3500                 for (var attr in this.attributes) {
3501                     this.setRuntimeAttribute(attr);
3502                 }
3503
3504                 isAnimated = true;
3505                 actualFrames = 0;
3506                 startTime = new Date();
3507             };
3508
3509
3510             var onTween = function() {
3511                 var data = {
3512                     duration: new Date() - this.getStartTime(),
3513                     currentFrame: this.currentFrame
3514                 };
3515
3516                 data.toString = function() {
3517                     return (
3518                             'duration: ' + data.duration +
3519                             ', currentFrame: ' + data.currentFrame
3520                             );
3521                 };
3522
3523                 this.onTween.fire(data);
3524
3525                 var runtimeAttributes = this.runtimeAttributes;
3526
3527                 for (var attr in runtimeAttributes) {
3528                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3529                 }
3530
3531                 actualFrames += 1;
3532             };
3533
3534             var onComplete = function() {
3535                 var actual_duration = (new Date() - startTime) / 1000 ;
3536
3537                 var data = {
3538                     duration: actual_duration,
3539                     frames: actualFrames,
3540                     fps: actualFrames / actual_duration
3541                 };
3542
3543                 data.toString = function() {
3544                     return (
3545                             'duration: ' + data.duration +
3546                             ', frames: ' + data.frames +
3547                             ', fps: ' + data.fps
3548                             );
3549                 };
3550
3551                 isAnimated = false;
3552                 actualFrames = 0;
3553                 this.onComplete.fire(data);
3554             };
3555
3556
3557             this._onStart = new Roo.util.Event(this);
3558             this.onStart = new Roo.util.Event(this);
3559             this.onTween = new Roo.util.Event(this);
3560             this._onTween = new Roo.util.Event(this);
3561             this.onComplete = new Roo.util.Event(this);
3562             this._onComplete = new Roo.util.Event(this);
3563             this._onStart.addListener(onStart);
3564             this._onTween.addListener(onTween);
3565             this._onComplete.addListener(onComplete);
3566         }
3567     };
3568 })();
3569 /*
3570  * Portions of this file are based on pieces of Yahoo User Interface Library
3571  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3572  * YUI licensed under the BSD License:
3573  * http://developer.yahoo.net/yui/license.txt
3574  * <script type="text/javascript">
3575  *
3576  */
3577
3578 Roo.lib.AnimMgr = new function() {
3579
3580     var thread = null;
3581
3582
3583     var queue = [];
3584
3585
3586     var tweenCount = 0;
3587
3588
3589     this.fps = 1000;
3590
3591
3592     this.delay = 1;
3593
3594
3595     this.registerElement = function(tween) {
3596         queue[queue.length] = tween;
3597         tweenCount += 1;
3598         tween._onStart.fire();
3599         this.start();
3600     };
3601
3602
3603     this.unRegister = function(tween, index) {
3604         tween._onComplete.fire();
3605         index = index || getIndex(tween);
3606         if (index != -1) {
3607             queue.splice(index, 1);
3608         }
3609
3610         tweenCount -= 1;
3611         if (tweenCount <= 0) {
3612             this.stop();
3613         }
3614     };
3615
3616
3617     this.start = function() {
3618         if (thread === null) {
3619             thread = setInterval(this.run, this.delay);
3620         }
3621     };
3622
3623
3624     this.stop = function(tween) {
3625         if (!tween) {
3626             clearInterval(thread);
3627
3628             for (var i = 0, len = queue.length; i < len; ++i) {
3629                 if (queue[0].isAnimated()) {
3630                     this.unRegister(queue[0], 0);
3631                 }
3632             }
3633
3634             queue = [];
3635             thread = null;
3636             tweenCount = 0;
3637         }
3638         else {
3639             this.unRegister(tween);
3640         }
3641     };
3642
3643
3644     this.run = function() {
3645         for (var i = 0, len = queue.length; i < len; ++i) {
3646             var tween = queue[i];
3647             if (!tween || !tween.isAnimated()) {
3648                 continue;
3649             }
3650
3651             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3652             {
3653                 tween.currentFrame += 1;
3654
3655                 if (tween.useSeconds) {
3656                     correctFrame(tween);
3657                 }
3658                 tween._onTween.fire();
3659             }
3660             else {
3661                 Roo.lib.AnimMgr.stop(tween, i);
3662             }
3663         }
3664     };
3665
3666     var getIndex = function(anim) {
3667         for (var i = 0, len = queue.length; i < len; ++i) {
3668             if (queue[i] == anim) {
3669                 return i;
3670             }
3671         }
3672         return -1;
3673     };
3674
3675
3676     var correctFrame = function(tween) {
3677         var frames = tween.totalFrames;
3678         var frame = tween.currentFrame;
3679         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3680         var elapsed = (new Date() - tween.getStartTime());
3681         var tweak = 0;
3682
3683         if (elapsed < tween.duration * 1000) {
3684             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3685         } else {
3686             tweak = frames - (frame + 1);
3687         }
3688         if (tweak > 0 && isFinite(tweak)) {
3689             if (tween.currentFrame + tweak >= frames) {
3690                 tweak = frames - (frame + 1);
3691             }
3692
3693             tween.currentFrame += tweak;
3694         }
3695     };
3696 };
3697
3698     /*
3699  * Portions of this file are based on pieces of Yahoo User Interface Library
3700  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3701  * YUI licensed under the BSD License:
3702  * http://developer.yahoo.net/yui/license.txt
3703  * <script type="text/javascript">
3704  *
3705  */
3706 Roo.lib.Bezier = new function() {
3707
3708         this.getPosition = function(points, t) {
3709             var n = points.length;
3710             var tmp = [];
3711
3712             for (var i = 0; i < n; ++i) {
3713                 tmp[i] = [points[i][0], points[i][1]];
3714             }
3715
3716             for (var j = 1; j < n; ++j) {
3717                 for (i = 0; i < n - j; ++i) {
3718                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3719                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3720                 }
3721             }
3722
3723             return [ tmp[0][0], tmp[0][1] ];
3724
3725         };
3726     }; 
3727
3728 /**
3729  * @class Roo.lib.Color
3730  * @constructor
3731  * An abstract Color implementation. Concrete Color implementations should use
3732  * an instance of this function as their prototype, and implement the getRGB and
3733  * getHSL functions. getRGB should return an object representing the RGB
3734  * components of this Color, with the red, green, and blue components in the
3735  * range [0,255] and the alpha component in the range [0,100]. getHSL should
3736  * return an object representing the HSL components of this Color, with the hue
3737  * component in the range [0,360), the saturation and lightness components in
3738  * the range [0,100], and the alpha component in the range [0,1].
3739  *
3740  *
3741  * Color.js
3742  *
3743  * Functions for Color handling and processing.
3744  *
3745  * http://www.safalra.com/web-design/javascript/Color-handling-and-processing/
3746  *
3747  * The author of this program, Safalra (Stephen Morley), irrevocably releases all
3748  * rights to this program, with the intention of it becoming part of the public
3749  * domain. Because this program is released into the public domain, it comes with
3750  * no warranty either expressed or implied, to the extent permitted by law.
3751  * 
3752  * For more free and public domain JavaScript code by the same author, visit:
3753  * http://www.safalra.com/web-design/javascript/
3754  * 
3755  */
3756 Roo.lib.Color = function() { }
3757
3758
3759 Roo.apply(Roo.lib.Color.prototype, {
3760   
3761   rgb : null,
3762   hsv : null,
3763   hsl : null,
3764   
3765   /**
3766    * getIntegerRGB
3767    * @return {Object} an object representing the RGBA components of this Color. The red,
3768    * green, and blue components are converted to integers in the range [0,255].
3769    * The alpha is a value in the range [0,1].
3770    */
3771   getIntegerRGB : function(){
3772
3773     // get the RGB components of this Color
3774     var rgb = this.getRGB();
3775
3776     // return the integer components
3777     return {
3778       'r' : Math.round(rgb.r),
3779       'g' : Math.round(rgb.g),
3780       'b' : Math.round(rgb.b),
3781       'a' : rgb.a
3782     };
3783
3784   },
3785
3786   /**
3787    * getPercentageRGB
3788    * @return {Object} an object representing the RGBA components of this Color. The red,
3789    * green, and blue components are converted to numbers in the range [0,100].
3790    * The alpha is a value in the range [0,1].
3791    */
3792   getPercentageRGB : function(){
3793
3794     // get the RGB components of this Color
3795     var rgb = this.getRGB();
3796
3797     // return the percentage components
3798     return {
3799       'r' : 100 * rgb.r / 255,
3800       'g' : 100 * rgb.g / 255,
3801       'b' : 100 * rgb.b / 255,
3802       'a' : rgb.a
3803     };
3804
3805   },
3806
3807   /**
3808    * getCSSHexadecimalRGB
3809    * @return {String} a string representing this Color as a CSS hexadecimal RGB Color
3810    * value - that is, a string of the form #RRGGBB where each of RR, GG, and BB
3811    * are two-digit hexadecimal numbers.
3812    */
3813   getCSSHexadecimalRGB : function()
3814   {
3815
3816     // get the integer RGB components
3817     var rgb = this.getIntegerRGB();
3818
3819     // determine the hexadecimal equivalents
3820     var r16 = rgb.r.toString(16);
3821     var g16 = rgb.g.toString(16);
3822     var b16 = rgb.b.toString(16);
3823
3824     // return the CSS RGB Color value
3825     return '#'
3826         + (r16.length == 2 ? r16 : '0' + r16)
3827         + (g16.length == 2 ? g16 : '0' + g16)
3828         + (b16.length == 2 ? b16 : '0' + b16);
3829
3830   },
3831
3832   /**
3833    * getCSSIntegerRGB
3834    * @return {String} a string representing this Color as a CSS integer RGB Color
3835    * value - that is, a string of the form rgb(r,g,b) where each of r, g, and b
3836    * are integers in the range [0,255].
3837    */
3838   getCSSIntegerRGB : function(){
3839
3840     // get the integer RGB components
3841     var rgb = this.getIntegerRGB();
3842
3843     // return the CSS RGB Color value
3844     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')';
3845
3846   },
3847
3848   /**
3849    * getCSSIntegerRGBA
3850    * @return {String} Returns a string representing this Color as a CSS integer RGBA Color
3851    * value - that is, a string of the form rgba(r,g,b,a) where each of r, g, and
3852    * b are integers in the range [0,255] and a is in the range [0,1].
3853    */
3854   getCSSIntegerRGBA : function(){
3855
3856     // get the integer RGB components
3857     var rgb = this.getIntegerRGB();
3858
3859     // return the CSS integer RGBA Color value
3860     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + rgb.a + ')';
3861
3862   },
3863
3864   /**
3865    * getCSSPercentageRGB
3866    * @return {String} a string representing this Color as a CSS percentage RGB Color
3867    * value - that is, a string of the form rgb(r%,g%,b%) where each of r, g, and
3868    * b are in the range [0,100].
3869    */
3870   getCSSPercentageRGB : function(){
3871
3872     // get the percentage RGB components
3873     var rgb = this.getPercentageRGB();
3874
3875     // return the CSS RGB Color value
3876     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%)';
3877
3878   },
3879
3880   /**
3881    * getCSSPercentageRGBA
3882    * @return {String} a string representing this Color as a CSS percentage RGBA Color
3883    * value - that is, a string of the form rgba(r%,g%,b%,a) where each of r, g,
3884    * and b are in the range [0,100] and a is in the range [0,1].
3885    */
3886   getCSSPercentageRGBA : function(){
3887
3888     // get the percentage RGB components
3889     var rgb = this.getPercentageRGB();
3890
3891     // return the CSS percentage RGBA Color value
3892     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%,' + rgb.a + ')';
3893
3894   },
3895
3896   /**
3897    * getCSSHSL
3898    * @return {String} a string representing this Color as a CSS HSL Color value - that
3899    * is, a string of the form hsl(h,s%,l%) where h is in the range [0,100] and
3900    * s and l are in the range [0,100].
3901    */
3902   getCSSHSL : function(){
3903
3904     // get the HSL components
3905     var hsl = this.getHSL();
3906
3907     // return the CSS HSL Color value
3908     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%)';
3909
3910   },
3911
3912   /**
3913    * getCSSHSLA
3914    * @return {String} a string representing this Color as a CSS HSLA Color value - that
3915    * is, a string of the form hsla(h,s%,l%,a) where h is in the range [0,100],
3916    * s and l are in the range [0,100], and a is in the range [0,1].
3917    */
3918   getCSSHSLA : function(){
3919
3920     // get the HSL components
3921     var hsl = this.getHSL();
3922
3923     // return the CSS HSL Color value
3924     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%,' + hsl.a + ')';
3925
3926   },
3927
3928   /**
3929    * Sets the Color of the specified node to this Color. This functions sets
3930    * the CSS 'color' property for the node. The parameter is:
3931    * 
3932    * @param {DomElement} node - the node whose Color should be set
3933    */
3934   setNodeColor : function(node){
3935
3936     // set the Color of the node
3937     node.style.color = this.getCSSHexadecimalRGB();
3938
3939   },
3940
3941   /**
3942    * Sets the background Color of the specified node to this Color. This
3943    * functions sets the CSS 'background-color' property for the node. The
3944    * parameter is:
3945    *
3946    * @param {DomElement} node - the node whose background Color should be set
3947    */
3948   setNodeBackgroundColor : function(node){
3949
3950     // set the background Color of the node
3951     node.style.backgroundColor = this.getCSSHexadecimalRGB();
3952
3953   },
3954   // convert between formats..
3955   toRGB: function()
3956   {
3957     var r = this.getIntegerRGB();
3958     return new Roo.lib.RGBColor(r.r,r.g,r.b,r.a);
3959     
3960   },
3961   toHSL : function()
3962   {
3963      var hsl = this.getHSL();
3964   // return the CSS HSL Color value
3965     return new Roo.lib.HSLColor(hsl.h,  hsl.s, hsl.l ,  hsl.a );
3966     
3967   },
3968   
3969   toHSV : function()
3970   {
3971     var rgb = this.toRGB();
3972     var hsv = rgb.getHSV();
3973    // return the CSS HSL Color value
3974     return new Roo.lib.HSVColor(hsv.h,  hsv.s, hsv.v ,  hsv.a );
3975     
3976   },
3977   
3978   // modify  v = 0 ... 1 (eg. 0.5)
3979   saturate : function(v)
3980   {
3981       var rgb = this.toRGB();
3982       var hsv = rgb.getHSV();
3983       return new Roo.lib.HSVColor(hsv.h,  hsv.s * v, hsv.v ,  hsv.a );
3984       
3985   
3986   },
3987   
3988    
3989   /**
3990    * getRGB
3991    * @return {Object} the RGB and alpha components of this Color as an object with r,
3992    * g, b, and a properties. r, g, and b are in the range [0,255] and a is in
3993    * the range [0,1].
3994    */
3995   getRGB: function(){
3996    
3997     // return the RGB components
3998     return {
3999       'r' : this.rgb.r,
4000       'g' : this.rgb.g,
4001       'b' : this.rgb.b,
4002       'a' : this.alpha
4003     };
4004
4005   },
4006
4007   /**
4008    * getHSV
4009    * @return {Object} the HSV and alpha components of this Color as an object with h,
4010    * s, v, and a properties. h is in the range [0,360), s and v are in the range
4011    * [0,100], and a is in the range [0,1].
4012    */
4013   getHSV : function()
4014   {
4015     
4016     // calculate the HSV components if necessary
4017     if (this.hsv == null) {
4018       this.calculateHSV();
4019     }
4020
4021     // return the HSV components
4022     return {
4023       'h' : this.hsv.h,
4024       's' : this.hsv.s,
4025       'v' : this.hsv.v,
4026       'a' : this.alpha
4027     };
4028
4029   },
4030
4031   /**
4032    * getHSL
4033    * @return {Object} the HSL and alpha components of this Color as an object with h,
4034    * s, l, and a properties. h is in the range [0,360), s and l are in the range
4035    * [0,100], and a is in the range [0,1].
4036    */
4037   getHSL : function(){
4038     
4039      
4040     // calculate the HSV components if necessary
4041     if (this.hsl == null) { this.calculateHSL(); }
4042
4043     // return the HSL components
4044     return {
4045       'h' : this.hsl.h,
4046       's' : this.hsl.s,
4047       'l' : this.hsl.l,
4048       'a' : this.alpha
4049     };
4050
4051   }
4052   
4053
4054 });
4055
4056
4057 /**
4058  * @class Roo.lib.RGBColor
4059  * @extends Roo.lib.Color
4060  * Creates a Color specified in the RGB Color space, with an optional alpha
4061  * component. The parameters are:
4062  * @constructor
4063  * 
4064
4065  * @param {Number} r - the red component, clipped to the range [0,255]
4066  * @param {Number} g - the green component, clipped to the range [0,255]
4067  * @param {Number} b - the blue component, clipped to the range [0,255]
4068  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4069  *     optional and defaults to 1
4070  */
4071 Roo.lib.RGBColor = function (r, g, b, a){
4072
4073   // store the alpha component after clipping it if necessary
4074   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4075
4076   // store the RGB components after clipping them if necessary
4077   this.rgb =
4078       {
4079         'r' : Math.max(0, Math.min(255, r)),
4080         'g' : Math.max(0, Math.min(255, g)),
4081         'b' : Math.max(0, Math.min(255, b))
4082       };
4083
4084   // initialise the HSV and HSL components to null
4085   
4086
4087   /* 
4088    * //private returns the HSV or HSL hue component of this RGBColor. The hue is in the
4089    * range [0,360). The parameters are:
4090    *
4091    * maximum - the maximum of the RGB component values
4092    * range   - the range of the RGB component values
4093    */
4094    
4095
4096 }
4097 // this does an 'exteds'
4098 Roo.extend(Roo.lib.RGBColor, Roo.lib.Color, {
4099
4100   
4101     getHue  : function(maximum, range)
4102     {
4103       var rgb = this.rgb;
4104        
4105       // check whether the range is zero
4106       if (range == 0){
4107   
4108         // set the hue to zero (any hue is acceptable as the Color is grey)
4109         var hue = 0;
4110   
4111       }else{
4112   
4113         // determine which of the components has the highest value and set the hue
4114         switch (maximum){
4115   
4116           // red has the highest value
4117           case rgb.r:
4118             var hue = (rgb.g - rgb.b) / range * 60;
4119             if (hue < 0) { hue += 360; }
4120             break;
4121   
4122           // green has the highest value
4123           case rgb.g:
4124             var hue = (rgb.b - rgb.r) / range * 60 + 120;
4125             break;
4126   
4127           // blue has the highest value
4128           case rgb.b:
4129             var hue = (rgb.r - rgb.g) / range * 60 + 240;
4130             break;
4131   
4132         }
4133   
4134       }
4135   
4136       // return the hue
4137       return hue;
4138   
4139     },
4140
4141   /* //private Calculates and stores the HSV components of this RGBColor so that they can
4142    * be returned be the getHSV function.
4143    */
4144    calculateHSV : function(){
4145     var rgb = this.rgb;
4146     // get the maximum and range of the RGB component values
4147     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4148     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4149
4150     // store the HSV components
4151     this.hsv =
4152         {
4153           'h' : this.getHue(maximum, range),
4154           's' : (maximum == 0 ? 0 : 100 * range / maximum),
4155           'v' : maximum / 2.55
4156         };
4157
4158   },
4159
4160   /* //private Calculates and stores the HSL components of this RGBColor so that they can
4161    * be returned be the getHSL function.
4162    */
4163    calculateHSL : function(){
4164     var rgb = this.rgb;
4165     // get the maximum and range of the RGB component values
4166     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4167     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4168
4169     // determine the lightness in the range [0,1]
4170     var l = maximum / 255 - range / 510;
4171
4172     // store the HSL components
4173     this.hsl =
4174         {
4175           'h' : this.getHue(maximum, range),
4176           's' : (range == 0 ? 0 : range / 2.55 / (l < 0.5 ? l * 2 : 2 - l * 2)),
4177           'l' : 100 * l
4178         };
4179
4180   }
4181
4182 });
4183
4184 /**
4185  * @class Roo.lib.HSVColor
4186  * @extends Roo.lib.Color
4187  * Creates a Color specified in the HSV Color space, with an optional alpha
4188  * component. The parameters are:
4189  * @constructor
4190  *
4191  * @param {Number} h - the hue component, wrapped to the range [0,360)
4192  * @param {Number} s - the saturation component, clipped to the range [0,100]
4193  * @param {Number} v - the value component, clipped to the range [0,100]
4194  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4195  *     optional and defaults to 1
4196  */
4197 Roo.lib.HSVColor = function (h, s, v, a){
4198
4199   // store the alpha component after clipping it if necessary
4200   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4201
4202   // store the HSV components after clipping or wrapping them if necessary
4203   this.hsv =
4204       {
4205         'h' : (h % 360 + 360) % 360,
4206         's' : Math.max(0, Math.min(100, s)),
4207         'v' : Math.max(0, Math.min(100, v))
4208       };
4209
4210   // initialise the RGB and HSL components to null
4211   this.rgb = null;
4212   this.hsl = null;
4213 }
4214
4215 Roo.extend(Roo.lib.HSVColor, Roo.lib.Color, {
4216   /* Calculates and stores the RGB components of this HSVColor so that they can
4217    * be returned be the getRGB function.
4218    */
4219   calculateRGB: function ()
4220   {
4221     var hsv = this.hsv;
4222     // check whether the saturation is zero
4223     if (hsv.s == 0){
4224
4225       // set the Color to the appropriate shade of grey
4226       var r = hsv.v;
4227       var g = hsv.v;
4228       var b = hsv.v;
4229
4230     }else{
4231
4232       // set some temporary values
4233       var f  = hsv.h / 60 - Math.floor(hsv.h / 60);
4234       var p  = hsv.v * (1 - hsv.s / 100);
4235       var q  = hsv.v * (1 - hsv.s / 100 * f);
4236       var t  = hsv.v * (1 - hsv.s / 100 * (1 - f));
4237
4238       // set the RGB Color components to their temporary values
4239       switch (Math.floor(hsv.h / 60)){
4240         case 0: var r = hsv.v; var g = t; var b = p; break;
4241         case 1: var r = q; var g = hsv.v; var b = p; break;
4242         case 2: var r = p; var g = hsv.v; var b = t; break;
4243         case 3: var r = p; var g = q; var b = hsv.v; break;
4244         case 4: var r = t; var g = p; var b = hsv.v; break;
4245         case 5: var r = hsv.v; var g = p; var b = q; break;
4246       }
4247
4248     }
4249
4250     // store the RGB components
4251     this.rgb =
4252         {
4253           'r' : r * 2.55,
4254           'g' : g * 2.55,
4255           'b' : b * 2.55
4256         };
4257
4258   },
4259
4260   /* Calculates and stores the HSL components of this HSVColor so that they can
4261    * be returned be the getHSL function.
4262    */
4263   calculateHSL : function (){
4264
4265     var hsv = this.hsv;
4266     // determine the lightness in the range [0,100]
4267     var l = (2 - hsv.s / 100) * hsv.v / 2;
4268
4269     // store the HSL components
4270     this.hsl =
4271         {
4272           'h' : hsv.h,
4273           's' : hsv.s * hsv.v / (l < 50 ? l * 2 : 200 - l * 2),
4274           'l' : l
4275         };
4276
4277     // correct a division-by-zero error
4278     if (isNaN(hsl.s)) { hsl.s = 0; }
4279
4280   } 
4281  
4282
4283 });
4284  
4285
4286 /**
4287  * @class Roo.lib.HSLColor
4288  * @extends Roo.lib.Color
4289  *
4290  * @constructor
4291  * Creates a Color specified in the HSL Color space, with an optional alpha
4292  * component. The parameters are:
4293  *
4294  * @param {Number} h - the hue component, wrapped to the range [0,360)
4295  * @param {Number} s - the saturation component, clipped to the range [0,100]
4296  * @param {Number} l - the lightness component, clipped to the range [0,100]
4297  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4298  *     optional and defaults to 1
4299  */
4300
4301 Roo.lib.HSLColor = function(h, s, l, a){
4302
4303   // store the alpha component after clipping it if necessary
4304   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4305
4306   // store the HSL components after clipping or wrapping them if necessary
4307   this.hsl =
4308       {
4309         'h' : (h % 360 + 360) % 360,
4310         's' : Math.max(0, Math.min(100, s)),
4311         'l' : Math.max(0, Math.min(100, l))
4312       };
4313
4314   // initialise the RGB and HSV components to null
4315 }
4316
4317 Roo.extend(Roo.lib.HSLColor, Roo.lib.Color, {
4318
4319   /* Calculates and stores the RGB components of this HSLColor so that they can
4320    * be returned be the getRGB function.
4321    */
4322   calculateRGB: function (){
4323
4324     // check whether the saturation is zero
4325     if (this.hsl.s == 0){
4326
4327       // store the RGB components representing the appropriate shade of grey
4328       this.rgb =
4329           {
4330             'r' : this.hsl.l * 2.55,
4331             'g' : this.hsl.l * 2.55,
4332             'b' : this.hsl.l * 2.55
4333           };
4334
4335     }else{
4336
4337       // set some temporary values
4338       var p = this.hsl.l < 50
4339             ? this.hsl.l * (1 + hsl.s / 100)
4340             : this.hsl.l + hsl.s - hsl.l * hsl.s / 100;
4341       var q = 2 * hsl.l - p;
4342
4343       // initialise the RGB components
4344       this.rgb =
4345           {
4346             'r' : (h + 120) / 60 % 6,
4347             'g' : h / 60,
4348             'b' : (h + 240) / 60 % 6
4349           };
4350
4351       // loop over the RGB components
4352       for (var key in this.rgb){
4353
4354         // ensure that the property is not inherited from the root object
4355         if (this.rgb.hasOwnProperty(key)){
4356
4357           // set the component to its value in the range [0,100]
4358           if (this.rgb[key] < 1){
4359             this.rgb[key] = q + (p - q) * this.rgb[key];
4360           }else if (this.rgb[key] < 3){
4361             this.rgb[key] = p;
4362           }else if (this.rgb[key] < 4){
4363             this.rgb[key] = q + (p - q) * (4 - this.rgb[key]);
4364           }else{
4365             this.rgb[key] = q;
4366           }
4367
4368           // set the component to its value in the range [0,255]
4369           this.rgb[key] *= 2.55;
4370
4371         }
4372
4373       }
4374
4375     }
4376
4377   },
4378
4379   /* Calculates and stores the HSV components of this HSLColor so that they can
4380    * be returned be the getHSL function.
4381    */
4382    calculateHSV : function(){
4383
4384     // set a temporary value
4385     var t = this.hsl.s * (this.hsl.l < 50 ? this.hsl.l : 100 - this.hsl.l) / 100;
4386
4387     // store the HSV components
4388     this.hsv =
4389         {
4390           'h' : this.hsl.h,
4391           's' : 200 * t / (this.hsl.l + t),
4392           'v' : t + this.hsl.l
4393         };
4394
4395     // correct a division-by-zero error
4396     if (isNaN(this.hsv.s)) { this.hsv.s = 0; }
4397
4398   }
4399  
4400
4401 });
4402 /*
4403  * Portions of this file are based on pieces of Yahoo User Interface Library
4404  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4405  * YUI licensed under the BSD License:
4406  * http://developer.yahoo.net/yui/license.txt
4407  * <script type="text/javascript">
4408  *
4409  */
4410 (function() {
4411
4412     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
4413         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
4414     };
4415
4416     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
4417
4418     var fly = Roo.lib.AnimBase.fly;
4419     var Y = Roo.lib;
4420     var superclass = Y.ColorAnim.superclass;
4421     var proto = Y.ColorAnim.prototype;
4422
4423     proto.toString = function() {
4424         var el = this.getEl();
4425         var id = el.id || el.tagName;
4426         return ("ColorAnim " + id);
4427     };
4428
4429     proto.patterns.color = /color$/i;
4430     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
4431     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
4432     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
4433     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
4434
4435
4436     proto.parseColor = function(s) {
4437         if (s.length == 3) {
4438             return s;
4439         }
4440
4441         var c = this.patterns.hex.exec(s);
4442         if (c && c.length == 4) {
4443             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
4444         }
4445
4446         c = this.patterns.rgb.exec(s);
4447         if (c && c.length == 4) {
4448             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
4449         }
4450
4451         c = this.patterns.hex3.exec(s);
4452         if (c && c.length == 4) {
4453             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
4454         }
4455
4456         return null;
4457     };
4458     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
4459     proto.getAttribute = function(attr) {
4460         var el = this.getEl();
4461         if (this.patterns.color.test(attr)) {
4462             var val = fly(el).getStyle(attr);
4463
4464             if (this.patterns.transparent.test(val)) {
4465                 var parent = el.parentNode;
4466                 val = fly(parent).getStyle(attr);
4467
4468                 while (parent && this.patterns.transparent.test(val)) {
4469                     parent = parent.parentNode;
4470                     val = fly(parent).getStyle(attr);
4471                     if (parent.tagName.toUpperCase() == 'HTML') {
4472                         val = '#fff';
4473                     }
4474                 }
4475             }
4476         } else {
4477             val = superclass.getAttribute.call(this, attr);
4478         }
4479
4480         return val;
4481     };
4482     proto.getAttribute = function(attr) {
4483         var el = this.getEl();
4484         if (this.patterns.color.test(attr)) {
4485             var val = fly(el).getStyle(attr);
4486
4487             if (this.patterns.transparent.test(val)) {
4488                 var parent = el.parentNode;
4489                 val = fly(parent).getStyle(attr);
4490
4491                 while (parent && this.patterns.transparent.test(val)) {
4492                     parent = parent.parentNode;
4493                     val = fly(parent).getStyle(attr);
4494                     if (parent.tagName.toUpperCase() == 'HTML') {
4495                         val = '#fff';
4496                     }
4497                 }
4498             }
4499         } else {
4500             val = superclass.getAttribute.call(this, attr);
4501         }
4502
4503         return val;
4504     };
4505
4506     proto.doMethod = function(attr, start, end) {
4507         var val;
4508
4509         if (this.patterns.color.test(attr)) {
4510             val = [];
4511             for (var i = 0, len = start.length; i < len; ++i) {
4512                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
4513             }
4514
4515             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
4516         }
4517         else {
4518             val = superclass.doMethod.call(this, attr, start, end);
4519         }
4520
4521         return val;
4522     };
4523
4524     proto.setRuntimeAttribute = function(attr) {
4525         superclass.setRuntimeAttribute.call(this, attr);
4526
4527         if (this.patterns.color.test(attr)) {
4528             var attributes = this.attributes;
4529             var start = this.parseColor(this.runtimeAttributes[attr].start);
4530             var end = this.parseColor(this.runtimeAttributes[attr].end);
4531
4532             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
4533                 end = this.parseColor(attributes[attr].by);
4534
4535                 for (var i = 0, len = start.length; i < len; ++i) {
4536                     end[i] = start[i] + end[i];
4537                 }
4538             }
4539
4540             this.runtimeAttributes[attr].start = start;
4541             this.runtimeAttributes[attr].end = end;
4542         }
4543     };
4544 })();
4545
4546 /*
4547  * Portions of this file are based on pieces of Yahoo User Interface Library
4548  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4549  * YUI licensed under the BSD License:
4550  * http://developer.yahoo.net/yui/license.txt
4551  * <script type="text/javascript">
4552  *
4553  */
4554 Roo.lib.Easing = {
4555
4556
4557     easeNone: function (t, b, c, d) {
4558         return c * t / d + b;
4559     },
4560
4561
4562     easeIn: function (t, b, c, d) {
4563         return c * (t /= d) * t + b;
4564     },
4565
4566
4567     easeOut: function (t, b, c, d) {
4568         return -c * (t /= d) * (t - 2) + b;
4569     },
4570
4571
4572     easeBoth: function (t, b, c, d) {
4573         if ((t /= d / 2) < 1) {
4574             return c / 2 * t * t + b;
4575         }
4576
4577         return -c / 2 * ((--t) * (t - 2) - 1) + b;
4578     },
4579
4580
4581     easeInStrong: function (t, b, c, d) {
4582         return c * (t /= d) * t * t * t + b;
4583     },
4584
4585
4586     easeOutStrong: function (t, b, c, d) {
4587         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
4588     },
4589
4590
4591     easeBothStrong: function (t, b, c, d) {
4592         if ((t /= d / 2) < 1) {
4593             return c / 2 * t * t * t * t + b;
4594         }
4595
4596         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
4597     },
4598
4599
4600
4601     elasticIn: function (t, b, c, d, a, p) {
4602         if (t == 0) {
4603             return b;
4604         }
4605         if ((t /= d) == 1) {
4606             return b + c;
4607         }
4608         if (!p) {
4609             p = d * .3;
4610         }
4611
4612         if (!a || a < Math.abs(c)) {
4613             a = c;
4614             var s = p / 4;
4615         }
4616         else {
4617             var s = p / (2 * Math.PI) * Math.asin(c / a);
4618         }
4619
4620         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4621     },
4622
4623
4624     elasticOut: function (t, b, c, d, a, p) {
4625         if (t == 0) {
4626             return b;
4627         }
4628         if ((t /= d) == 1) {
4629             return b + c;
4630         }
4631         if (!p) {
4632             p = d * .3;
4633         }
4634
4635         if (!a || a < Math.abs(c)) {
4636             a = c;
4637             var s = p / 4;
4638         }
4639         else {
4640             var s = p / (2 * Math.PI) * Math.asin(c / a);
4641         }
4642
4643         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
4644     },
4645
4646
4647     elasticBoth: function (t, b, c, d, a, p) {
4648         if (t == 0) {
4649             return b;
4650         }
4651
4652         if ((t /= d / 2) == 2) {
4653             return b + c;
4654         }
4655
4656         if (!p) {
4657             p = d * (.3 * 1.5);
4658         }
4659
4660         if (!a || a < Math.abs(c)) {
4661             a = c;
4662             var s = p / 4;
4663         }
4664         else {
4665             var s = p / (2 * Math.PI) * Math.asin(c / a);
4666         }
4667
4668         if (t < 1) {
4669             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
4670                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4671         }
4672         return a * Math.pow(2, -10 * (t -= 1)) *
4673                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
4674     },
4675
4676
4677
4678     backIn: function (t, b, c, d, s) {
4679         if (typeof s == 'undefined') {
4680             s = 1.70158;
4681         }
4682         return c * (t /= d) * t * ((s + 1) * t - s) + b;
4683     },
4684
4685
4686     backOut: function (t, b, c, d, s) {
4687         if (typeof s == 'undefined') {
4688             s = 1.70158;
4689         }
4690         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
4691     },
4692
4693
4694     backBoth: function (t, b, c, d, s) {
4695         if (typeof s == 'undefined') {
4696             s = 1.70158;
4697         }
4698
4699         if ((t /= d / 2 ) < 1) {
4700             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
4701         }
4702         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
4703     },
4704
4705
4706     bounceIn: function (t, b, c, d) {
4707         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
4708     },
4709
4710
4711     bounceOut: function (t, b, c, d) {
4712         if ((t /= d) < (1 / 2.75)) {
4713             return c * (7.5625 * t * t) + b;
4714         } else if (t < (2 / 2.75)) {
4715             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
4716         } else if (t < (2.5 / 2.75)) {
4717             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
4718         }
4719         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
4720     },
4721
4722
4723     bounceBoth: function (t, b, c, d) {
4724         if (t < d / 2) {
4725             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
4726         }
4727         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
4728     }
4729 };/*
4730  * Portions of this file are based on pieces of Yahoo User Interface Library
4731  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4732  * YUI licensed under the BSD License:
4733  * http://developer.yahoo.net/yui/license.txt
4734  * <script type="text/javascript">
4735  *
4736  */
4737     (function() {
4738         Roo.lib.Motion = function(el, attributes, duration, method) {
4739             if (el) {
4740                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
4741             }
4742         };
4743
4744         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
4745
4746
4747         var Y = Roo.lib;
4748         var superclass = Y.Motion.superclass;
4749         var proto = Y.Motion.prototype;
4750
4751         proto.toString = function() {
4752             var el = this.getEl();
4753             var id = el.id || el.tagName;
4754             return ("Motion " + id);
4755         };
4756
4757         proto.patterns.points = /^points$/i;
4758
4759         proto.setAttribute = function(attr, val, unit) {
4760             if (this.patterns.points.test(attr)) {
4761                 unit = unit || 'px';
4762                 superclass.setAttribute.call(this, 'left', val[0], unit);
4763                 superclass.setAttribute.call(this, 'top', val[1], unit);
4764             } else {
4765                 superclass.setAttribute.call(this, attr, val, unit);
4766             }
4767         };
4768
4769         proto.getAttribute = function(attr) {
4770             if (this.patterns.points.test(attr)) {
4771                 var val = [
4772                         superclass.getAttribute.call(this, 'left'),
4773                         superclass.getAttribute.call(this, 'top')
4774                         ];
4775             } else {
4776                 val = superclass.getAttribute.call(this, attr);
4777             }
4778
4779             return val;
4780         };
4781
4782         proto.doMethod = function(attr, start, end) {
4783             var val = null;
4784
4785             if (this.patterns.points.test(attr)) {
4786                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4787                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4788             } else {
4789                 val = superclass.doMethod.call(this, attr, start, end);
4790             }
4791             return val;
4792         };
4793
4794         proto.setRuntimeAttribute = function(attr) {
4795             if (this.patterns.points.test(attr)) {
4796                 var el = this.getEl();
4797                 var attributes = this.attributes;
4798                 var start;
4799                 var control = attributes['points']['control'] || [];
4800                 var end;
4801                 var i, len;
4802
4803                 if (control.length > 0 && !(control[0] instanceof Array)) {
4804                     control = [control];
4805                 } else {
4806                     var tmp = [];
4807                     for (i = 0,len = control.length; i < len; ++i) {
4808                         tmp[i] = control[i];
4809                     }
4810                     control = tmp;
4811                 }
4812
4813                 Roo.fly(el).position();
4814
4815                 if (isset(attributes['points']['from'])) {
4816                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4817                 }
4818                 else {
4819                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4820                 }
4821
4822                 start = this.getAttribute('points');
4823
4824
4825                 if (isset(attributes['points']['to'])) {
4826                     end = translateValues.call(this, attributes['points']['to'], start);
4827
4828                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4829                     for (i = 0,len = control.length; i < len; ++i) {
4830                         control[i] = translateValues.call(this, control[i], start);
4831                     }
4832
4833
4834                 } else if (isset(attributes['points']['by'])) {
4835                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4836
4837                     for (i = 0,len = control.length; i < len; ++i) {
4838                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4839                     }
4840                 }
4841
4842                 this.runtimeAttributes[attr] = [start];
4843
4844                 if (control.length > 0) {
4845                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4846                 }
4847
4848                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4849             }
4850             else {
4851                 superclass.setRuntimeAttribute.call(this, attr);
4852             }
4853         };
4854
4855         var translateValues = function(val, start) {
4856             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4857             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4858
4859             return val;
4860         };
4861
4862         var isset = function(prop) {
4863             return (typeof prop !== 'undefined');
4864         };
4865     })();
4866 /*
4867  * Portions of this file are based on pieces of Yahoo User Interface Library
4868  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4869  * YUI licensed under the BSD License:
4870  * http://developer.yahoo.net/yui/license.txt
4871  * <script type="text/javascript">
4872  *
4873  */
4874     (function() {
4875         Roo.lib.Scroll = function(el, attributes, duration, method) {
4876             if (el) {
4877                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4878             }
4879         };
4880
4881         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4882
4883
4884         var Y = Roo.lib;
4885         var superclass = Y.Scroll.superclass;
4886         var proto = Y.Scroll.prototype;
4887
4888         proto.toString = function() {
4889             var el = this.getEl();
4890             var id = el.id || el.tagName;
4891             return ("Scroll " + id);
4892         };
4893
4894         proto.doMethod = function(attr, start, end) {
4895             var val = null;
4896
4897             if (attr == 'scroll') {
4898                 val = [
4899                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4900                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4901                         ];
4902
4903             } else {
4904                 val = superclass.doMethod.call(this, attr, start, end);
4905             }
4906             return val;
4907         };
4908
4909         proto.getAttribute = function(attr) {
4910             var val = null;
4911             var el = this.getEl();
4912
4913             if (attr == 'scroll') {
4914                 val = [ el.scrollLeft, el.scrollTop ];
4915             } else {
4916                 val = superclass.getAttribute.call(this, attr);
4917             }
4918
4919             return val;
4920         };
4921
4922         proto.setAttribute = function(attr, val, unit) {
4923             var el = this.getEl();
4924
4925             if (attr == 'scroll') {
4926                 el.scrollLeft = val[0];
4927                 el.scrollTop = val[1];
4928             } else {
4929                 superclass.setAttribute.call(this, attr, val, unit);
4930             }
4931         };
4932     })();
4933 /**
4934  * Originally based of this code... - refactored for Roo...
4935  * https://github.com/aaalsaleh/undo-manager
4936  
4937  * undo-manager.js
4938  * @author  Abdulrahman Alsaleh 
4939  * @copyright 2015 Abdulrahman Alsaleh 
4940  * @license  MIT License (c) 
4941  *
4942  * Hackily modifyed by alan@roojs.com
4943  *
4944  *
4945  *  
4946  *
4947  *  TOTALLY UNTESTED...
4948  *
4949  *  Documentation to be done....
4950  */
4951  
4952
4953 /**
4954 * @class Roo.lib.UndoManager
4955 * An undo manager implementation in JavaScript. It follows the W3C UndoManager and DOM Transaction
4956 * Draft and the undocumented and disabled Mozilla Firefox's UndoManager implementation.
4957
4958  * Usage:
4959  * <pre><code>
4960
4961
4962 editor.undoManager = new Roo.lib.UndoManager(1000, editor);
4963  
4964 </code></pre>
4965
4966 * For more information see this blog post with examples:
4967 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4968      - Create Elements using DOM, HTML fragments and Templates</a>. 
4969 * @constructor
4970 * @param {Number} limit how far back to go ... use 1000?
4971 * @param {Object} scope usually use document..
4972 */
4973
4974 Roo.lib.UndoManager = function (limit, undoScopeHost)
4975 {
4976     this.stack = [];
4977     this.limit = limit;
4978     this.scope = undoScopeHost;
4979     this.fireEvent = typeof CustomEvent != 'undefined' && undoScopeHost && undoScopeHost.dispatchEvent;
4980     if (this.fireEvent) {
4981         this.bindEvents();
4982     }
4983     this.reset();
4984     
4985 };
4986         
4987 Roo.lib.UndoManager.prototype = {
4988     
4989     limit : false,
4990     stack : false,
4991     scope :  false,
4992     fireEvent : false,
4993     position : 0,
4994     length : 0,
4995     
4996     
4997      /**
4998      * To push and execute a transaction, the method undoManager.transact
4999      * must be called by passing a transaction object as the first argument, and a merge
5000      * flag as the second argument. A transaction object has the following properties:
5001      *
5002      * Usage:
5003 <pre><code>
5004 undoManager.transact({
5005     label: 'Typing',
5006     execute: function() { ... },
5007     undo: function() { ... },
5008     // redo same as execute
5009     redo: function() { this.execute(); }
5010 }, false);
5011
5012 // merge transaction
5013 undoManager.transact({
5014     label: 'Typing',
5015     execute: function() { ... },  // this will be run...
5016     undo: function() { ... }, // what to do when undo is run.
5017     // redo same as execute
5018     redo: function() { this.execute(); }
5019 }, true); 
5020 </code></pre> 
5021      *
5022      * 
5023      * @param {Object} transaction The transaction to add to the stack.
5024      * @return {String} The HTML fragment
5025      */
5026     
5027     
5028     transact : function (transaction, merge)
5029     {
5030         if (arguments.length < 2) {
5031             throw new TypeError('Not enough arguments to UndoManager.transact.');
5032         }
5033
5034         transaction.execute();
5035
5036         this.stack.splice(0, this.position);
5037         if (merge && this.length) {
5038             this.stack[0].push(transaction);
5039         } else {
5040             this.stack.unshift([transaction]);
5041         }
5042     
5043         this.position = 0;
5044
5045         if (this.limit && this.stack.length > this.limit) {
5046             this.length = this.stack.length = this.limit;
5047         } else {
5048             this.length = this.stack.length;
5049         }
5050
5051         if (this.fireEvent) {
5052             this.scope.dispatchEvent(
5053                 new CustomEvent('DOMTransaction', {
5054                     detail: {
5055                         transactions: this.stack[0].slice()
5056                     },
5057                     bubbles: true,
5058                     cancelable: false
5059                 })
5060             );
5061         }
5062         
5063         //Roo.log("transaction: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5064       
5065         
5066     },
5067
5068     undo : function ()
5069     {
5070         //Roo.log("undo: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5071         
5072         if (this.position < this.length) {
5073             for (var i = this.stack[this.position].length - 1; i >= 0; i--) {
5074                 this.stack[this.position][i].undo();
5075             }
5076             this.position++;
5077
5078             if (this.fireEvent) {
5079                 this.scope.dispatchEvent(
5080                     new CustomEvent('undo', {
5081                         detail: {
5082                             transactions: this.stack[this.position - 1].slice()
5083                         },
5084                         bubbles: true,
5085                         cancelable: false
5086                     })
5087                 );
5088             }
5089         }
5090     },
5091
5092     redo : function ()
5093     {
5094         if (this.position > 0) {
5095             for (var i = 0, n = this.stack[this.position - 1].length; i < n; i++) {
5096                 this.stack[this.position - 1][i].redo();
5097             }
5098             this.position--;
5099
5100             if (this.fireEvent) {
5101                 this.scope.dispatchEvent(
5102                     new CustomEvent('redo', {
5103                         detail: {
5104                             transactions: this.stack[this.position].slice()
5105                         },
5106                         bubbles: true,
5107                         cancelable: false
5108                     })
5109                 );
5110             }
5111         }
5112     },
5113
5114     item : function (index)
5115     {
5116         if (index >= 0 && index < this.length) {
5117             return this.stack[index].slice();
5118         }
5119         return null;
5120     },
5121
5122     clearUndo : function () {
5123         this.stack.length = this.length = this.position;
5124     },
5125
5126     clearRedo : function () {
5127         this.stack.splice(0, this.position);
5128         this.position = 0;
5129         this.length = this.stack.length;
5130     },
5131     /**
5132      * Reset the undo - probaly done on load to clear all history.
5133      */
5134     reset : function()
5135     {
5136         this.stack = [];
5137         this.position = 0;
5138         this.length = 0;
5139         this.current_html = this.scope.innerHTML;
5140         if (this.timer !== false) {
5141             clearTimeout(this.timer);
5142         }
5143         this.timer = false;
5144         this.merge = false;
5145         this.addEvent();
5146         
5147     },
5148     current_html : '',
5149     timer : false,
5150     merge : false,
5151     
5152     
5153     // this will handle the undo/redo on the element.?
5154     bindEvents : function()
5155     {
5156         var el  = this.scope;
5157         el.undoManager = this;
5158         
5159         
5160         this.scope.addEventListener('keydown', function(e) {
5161             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5162                 if (e.shiftKey) {
5163                     el.undoManager.redo(); // Ctrl/Command + Shift + Z
5164                 } else {
5165                     el.undoManager.undo(); // Ctrl/Command + Z
5166                 }
5167         
5168                 e.preventDefault();
5169             }
5170         });
5171         /// ignore keyup..
5172         this.scope.addEventListener('keyup', function(e) {
5173             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5174                 e.preventDefault();
5175             }
5176         });
5177         
5178         
5179         
5180         var t = this;
5181         
5182         el.addEventListener('input', function(e) {
5183             if(el.innerHTML == t.current_html) {
5184                 return;
5185             }
5186             // only record events every second.
5187             if (t.timer !== false) {
5188                clearTimeout(t.timer);
5189                t.timer = false;
5190             }
5191             t.timer = setTimeout(function() { t.merge = false; }, 1000);
5192             
5193             t.addEvent(t.merge);
5194             t.merge = true; // ignore changes happening every second..
5195         });
5196         },
5197     /**
5198      * Manually add an event.
5199      * Normall called without arguements - and it will just get added to the stack.
5200      * 
5201      */
5202     
5203     addEvent : function(merge)
5204     {
5205         //Roo.log("undomanager +" + (merge ? 'Y':'n'));
5206         // not sure if this should clear the timer 
5207         merge = typeof(merge) == 'undefined' ? false : merge; 
5208         
5209         this.scope.undoManager.transact({
5210             scope : this.scope,
5211             oldHTML: this.current_html,
5212             newHTML: this.scope.innerHTML,
5213             // nothing to execute (content already changed when input is fired)
5214             execute: function() { },
5215             undo: function() {
5216                 this.scope.innerHTML = this.current_html = this.oldHTML;
5217             },
5218             redo: function() {
5219                 this.scope.innerHTML = this.current_html = this.newHTML;
5220             }
5221         }, false); //merge);
5222         
5223         this.merge = merge;
5224         
5225         this.current_html = this.scope.innerHTML;
5226     }
5227     
5228     
5229      
5230     
5231     
5232     
5233 };
5234 /**
5235  * @class Roo.lib.Range
5236  * @constructor
5237  * This is a toolkit, normally used to copy features into a Dom Range element
5238  * Roo.lib.Range.wrap(x);
5239  *
5240  *
5241  *
5242  */
5243 Roo.lib.Range = function() { };
5244
5245 /**
5246  * Wrap a Dom Range object, to give it new features...
5247  * @static
5248  * @param {Range} the range to wrap
5249  */
5250 Roo.lib.Range.wrap = function(r) {
5251     return Roo.apply(r, Roo.lib.Range.prototype);
5252 };
5253 /**
5254  * find a parent node eg. LI / OL
5255  * @param {string|Array} node name or array of nodenames
5256  * @return {DomElement|false}
5257  */
5258 Roo.apply(Roo.lib.Range.prototype,
5259 {
5260     
5261     closest : function(str)
5262     {
5263         if (typeof(str) != 'string') {
5264             // assume it's a array.
5265             for(var i = 0;i < str.length;i++) {
5266                 var r = this.closest(str[i]);
5267                 if (r !== false) {
5268                     return r;
5269                 }
5270                 
5271             }
5272             return false;
5273         }
5274         str = str.toLowerCase();
5275         var n = this.commonAncestorContainer; // might not be a node
5276         while (n.nodeType != 1) {
5277             n = n.parentNode;
5278         }
5279         
5280         if (n.nodeName.toLowerCase() == str ) {
5281             return n;
5282         }
5283         if (n.nodeName.toLowerCase() == 'body') {
5284             return false;
5285         }
5286             
5287         return n.closest(str) || false;
5288         
5289     },
5290     cloneRange : function()
5291     {
5292         return Roo.lib.Range.wrap(Range.prototype.cloneRange.call(this));
5293     }
5294 });/**
5295  * @class Roo.lib.Selection
5296  * @constructor
5297  * This is a toolkit, normally used to copy features into a Dom Selection element
5298  * Roo.lib.Selection.wrap(x);
5299  *
5300  *
5301  *
5302  */
5303 Roo.lib.Selection = function() { };
5304
5305 /**
5306  * Wrap a Dom Range object, to give it new features...
5307  * @static
5308  * @param {Range} the range to wrap
5309  */
5310 Roo.lib.Selection.wrap = function(r, doc) {
5311     Roo.apply(r, Roo.lib.Selection.prototype);
5312     r.ownerDocument = doc; // usefull so we dont have to keep referening to it.
5313     return r;
5314 };
5315 /**
5316  * find a parent node eg. LI / OL
5317  * @param {string|Array} node name or array of nodenames
5318  * @return {DomElement|false}
5319  */
5320 Roo.apply(Roo.lib.Selection.prototype,
5321 {
5322     /**
5323      * the owner document
5324      */
5325     ownerDocument : false,
5326     
5327     getRangeAt : function(n)
5328     {
5329         return Roo.lib.Range.wrap(Selection.prototype.getRangeAt.call(this,n));
5330     },
5331     
5332     /**
5333      * insert node at selection 
5334      * @param {DomElement|string} node
5335      * @param {string} cursor (after|in|none) where to place the cursor after inserting.
5336      */
5337     insertNode: function(node, cursor)
5338     {
5339         if (typeof(node) == 'string') {
5340             node = this.ownerDocument.createElement(node);
5341             if (cursor == 'in') {
5342                 node.innerHTML = '&nbsp;';
5343             }
5344         }
5345         
5346         var range = this.getRangeAt(0);
5347         
5348         if (this.type != 'Caret') {
5349             range.deleteContents();
5350         }
5351         var sn = node.childNodes[0]; // select the contents.
5352
5353         
5354         
5355         range.insertNode(node);
5356         if (cursor == 'after') {
5357             node.insertAdjacentHTML('afterend', '&nbsp;');
5358             sn = node.nextSibling;
5359         }
5360         
5361         if (cursor == 'none') {
5362             return;
5363         }
5364         
5365         this.cursorText(sn);
5366     },
5367     
5368     cursorText : function(n)
5369     {
5370        
5371         //var range = this.getRangeAt(0);
5372         range = Roo.lib.Range.wrap(new Range());
5373         //range.selectNode(n);
5374         
5375         var ix = Array.from(n.parentNode.childNodes).indexOf(n);
5376         range.setStart(n.parentNode,ix);
5377         range.setEnd(n.parentNode,ix+1);
5378         //range.collapse(false);
5379          
5380         this.removeAllRanges();
5381         this.addRange(range);
5382         
5383         Roo.log([n, range, this,this.baseOffset,this.extentOffset, this.type]);
5384     },
5385     cursorAfter : function(n)
5386     {
5387         if (!n.nextSibling || n.nextSibling.nodeValue != '&nbsp;') {
5388             n.insertAdjacentHTML('afterend', '&nbsp;');
5389         }
5390         this.cursorText (n.nextSibling);
5391     }
5392         
5393     
5394 });/*
5395  * Based on:
5396  * Ext JS Library 1.1.1
5397  * Copyright(c) 2006-2007, Ext JS, LLC.
5398  *
5399  * Originally Released Under LGPL - original licence link has changed is not relivant.
5400  *
5401  * Fork - LGPL
5402  * <script type="text/javascript">
5403  */
5404
5405
5406 // nasty IE9 hack - what a pile of crap that is..
5407
5408  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
5409     Range.prototype.createContextualFragment = function (html) {
5410         var doc = window.document;
5411         var container = doc.createElement("div");
5412         container.innerHTML = html;
5413         var frag = doc.createDocumentFragment(), n;
5414         while ((n = container.firstChild)) {
5415             frag.appendChild(n);
5416         }
5417         return frag;
5418     };
5419 }
5420
5421 /**
5422  * @class Roo.DomHelper
5423  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
5424  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
5425  * @static
5426  */
5427 Roo.DomHelper = function(){
5428     var tempTableEl = null;
5429     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
5430     var tableRe = /^table|tbody|tr|td$/i;
5431     var xmlns = {};
5432     // build as innerHTML where available
5433     /** @ignore */
5434     var createHtml = function(o){
5435         if(typeof o == 'string'){
5436             return o;
5437         }
5438         var b = "";
5439         if(!o.tag){
5440             o.tag = "div";
5441         }
5442         b += "<" + o.tag;
5443         for(var attr in o){
5444             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
5445             if(attr == "style"){
5446                 var s = o["style"];
5447                 if(typeof s == "function"){
5448                     s = s.call();
5449                 }
5450                 if(typeof s == "string"){
5451                     b += ' style="' + s + '"';
5452                 }else if(typeof s == "object"){
5453                     b += ' style="';
5454                     for(var key in s){
5455                         if(typeof s[key] != "function"){
5456                             b += key + ":" + s[key] + ";";
5457                         }
5458                     }
5459                     b += '"';
5460                 }
5461             }else{
5462                 if(attr == "cls"){
5463                     b += ' class="' + o["cls"] + '"';
5464                 }else if(attr == "htmlFor"){
5465                     b += ' for="' + o["htmlFor"] + '"';
5466                 }else{
5467                     b += " " + attr + '="' + o[attr] + '"';
5468                 }
5469             }
5470         }
5471         if(emptyTags.test(o.tag)){
5472             b += "/>";
5473         }else{
5474             b += ">";
5475             var cn = o.children || o.cn;
5476             if(cn){
5477                 //http://bugs.kde.org/show_bug.cgi?id=71506
5478                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5479                     for(var i = 0, len = cn.length; i < len; i++) {
5480                         b += createHtml(cn[i], b);
5481                     }
5482                 }else{
5483                     b += createHtml(cn, b);
5484                 }
5485             }
5486             if(o.html){
5487                 b += o.html;
5488             }
5489             b += "</" + o.tag + ">";
5490         }
5491         return b;
5492     };
5493
5494     // build as dom
5495     /** @ignore */
5496     var createDom = function(o, parentNode){
5497          
5498         // defininition craeted..
5499         var ns = false;
5500         if (o.ns && o.ns != 'html') {
5501                
5502             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
5503                 xmlns[o.ns] = o.xmlns;
5504                 ns = o.xmlns;
5505             }
5506             if (typeof(xmlns[o.ns]) == 'undefined') {
5507                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
5508             }
5509             ns = xmlns[o.ns];
5510         }
5511         
5512         
5513         if (typeof(o) == 'string') {
5514             return parentNode.appendChild(document.createTextNode(o));
5515         }
5516         o.tag = o.tag || 'div';
5517         if (o.ns && Roo.isIE) {
5518             ns = false;
5519             o.tag = o.ns + ':' + o.tag;
5520             
5521         }
5522         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
5523         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
5524         for(var attr in o){
5525             
5526             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
5527                     attr == "style" || typeof o[attr] == "function") { continue; }
5528                     
5529             if(attr=="cls" && Roo.isIE){
5530                 el.className = o["cls"];
5531             }else{
5532                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
5533                 else { 
5534                     el[attr] = o[attr];
5535                 }
5536             }
5537         }
5538         Roo.DomHelper.applyStyles(el, o.style);
5539         var cn = o.children || o.cn;
5540         if(cn){
5541             //http://bugs.kde.org/show_bug.cgi?id=71506
5542              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5543                 for(var i = 0, len = cn.length; i < len; i++) {
5544                     createDom(cn[i], el);
5545                 }
5546             }else{
5547                 createDom(cn, el);
5548             }
5549         }
5550         if(o.html){
5551             el.innerHTML = o.html;
5552         }
5553         if(parentNode){
5554            parentNode.appendChild(el);
5555         }
5556         return el;
5557     };
5558
5559     var ieTable = function(depth, s, h, e){
5560         tempTableEl.innerHTML = [s, h, e].join('');
5561         var i = -1, el = tempTableEl;
5562         while(++i < depth && el.firstChild){
5563             el = el.firstChild;
5564         }
5565         return el;
5566     };
5567
5568     // kill repeat to save bytes
5569     var ts = '<table>',
5570         te = '</table>',
5571         tbs = ts+'<tbody>',
5572         tbe = '</tbody>'+te,
5573         trs = tbs + '<tr>',
5574         tre = '</tr>'+tbe;
5575
5576     /**
5577      * @ignore
5578      * Nasty code for IE's broken table implementation
5579      */
5580     var insertIntoTable = function(tag, where, el, html){
5581         if(!tempTableEl){
5582             tempTableEl = document.createElement('div');
5583         }
5584         var node;
5585         var before = null;
5586         if(tag == 'td'){
5587             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
5588                 return;
5589             }
5590             if(where == 'beforebegin'){
5591                 before = el;
5592                 el = el.parentNode;
5593             } else{
5594                 before = el.nextSibling;
5595                 el = el.parentNode;
5596             }
5597             node = ieTable(4, trs, html, tre);
5598         }
5599         else if(tag == 'tr'){
5600             if(where == 'beforebegin'){
5601                 before = el;
5602                 el = el.parentNode;
5603                 node = ieTable(3, tbs, html, tbe);
5604             } else if(where == 'afterend'){
5605                 before = el.nextSibling;
5606                 el = el.parentNode;
5607                 node = ieTable(3, tbs, html, tbe);
5608             } else{ // INTO a TR
5609                 if(where == 'afterbegin'){
5610                     before = el.firstChild;
5611                 }
5612                 node = ieTable(4, trs, html, tre);
5613             }
5614         } else if(tag == 'tbody'){
5615             if(where == 'beforebegin'){
5616                 before = el;
5617                 el = el.parentNode;
5618                 node = ieTable(2, ts, html, te);
5619             } else if(where == 'afterend'){
5620                 before = el.nextSibling;
5621                 el = el.parentNode;
5622                 node = ieTable(2, ts, html, te);
5623             } else{
5624                 if(where == 'afterbegin'){
5625                     before = el.firstChild;
5626                 }
5627                 node = ieTable(3, tbs, html, tbe);
5628             }
5629         } else{ // TABLE
5630             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
5631                 return;
5632             }
5633             if(where == 'afterbegin'){
5634                 before = el.firstChild;
5635             }
5636             node = ieTable(2, ts, html, te);
5637         }
5638         el.insertBefore(node, before);
5639         return node;
5640     };
5641     
5642     // this is a bit like the react update code...
5643     // 
5644     
5645     var updateNode = function(from, to)
5646     {
5647         // should we handle non-standard elements?
5648         Roo.log(["UpdateNode" , from, to]);
5649         if (from.nodeType != to.nodeType) {
5650             Roo.log(["ReplaceChild - mismatch notType" , to, from ]);
5651             from.parentNode.replaceChild(to, from);
5652         }
5653         
5654         if (from.nodeType == 3) {
5655             // assume it's text?!
5656             if (from.data == to.data) {
5657                 return;
5658             }
5659             from.data = to.data;
5660             return;
5661         }
5662         if (!from.parentNode) {
5663             // not sure why this is happening?
5664             return;
5665         }
5666         // assume 'to' doesnt have '1/3 nodetypes!
5667         // not sure why, by from, parent node might not exist?
5668         if (from.nodeType !=1 || from.tagName != to.tagName) {
5669             Roo.log(["ReplaceChild" , from, to ]);
5670             
5671             from.parentNode.replaceChild(to, from);
5672             return;
5673         }
5674         // compare attributes
5675         var ar = Array.from(from.attributes);
5676         for(var i = 0; i< ar.length;i++) {
5677             if (to.hasAttribute(ar[i].name)) {
5678                 continue;
5679             }
5680             if (ar[i].name == 'id') { // always keep ids?
5681                continue;
5682             }
5683             //if (ar[i].name == 'style') {
5684             //   throw "style removed?";
5685             //}
5686             Roo.log("removeAttribute" + ar[i].name);
5687             from.removeAttribute(ar[i].name);
5688         }
5689         ar = to.attributes;
5690         for(var i = 0; i< ar.length;i++) {
5691             if (from.getAttribute(ar[i].name) == to.getAttribute(ar[i].name)) {
5692                 Roo.log("skipAttribute " + ar[i].name  + '=' + to.getAttribute(ar[i].name));
5693                 continue;
5694             }
5695             Roo.log("updateAttribute " + ar[i].name + '=>' + to.getAttribute(ar[i].name));
5696             from.setAttribute(ar[i].name, to.getAttribute(ar[i].name));
5697         }
5698         // children
5699         var far = Array.from(from.childNodes);
5700         var tar = Array.from(to.childNodes);
5701         // if the lengths are different.. then it's probably a editable content change, rather than
5702         // a change of the block definition..
5703         
5704         // this did notwork , as our rebuilt nodes did not include ID's so did not match at all.
5705          /*if (from.innerHTML == to.innerHTML) {
5706             return;
5707         }
5708         if (far.length != tar.length) {
5709             from.innerHTML = to.innerHTML;
5710             return;
5711         }
5712         */
5713         
5714         for(var i = 0; i < Math.max(tar.length, far.length); i++) {
5715             if (i >= far.length) {
5716                 from.appendChild(tar[i]);
5717                 Roo.log(["add", tar[i]]);
5718                 
5719             } else if ( i  >= tar.length) {
5720                 from.removeChild(far[i]);
5721                 Roo.log(["remove", far[i]]);
5722             } else {
5723                 
5724                 updateNode(far[i], tar[i]);
5725             }    
5726         }
5727         
5728         
5729         
5730         
5731     };
5732     
5733     
5734
5735     return {
5736         /** True to force the use of DOM instead of html fragments @type Boolean */
5737         useDom : false,
5738     
5739         /**
5740          * Returns the markup for the passed Element(s) config
5741          * @param {Object} o The Dom object spec (and children)
5742          * @return {String}
5743          */
5744         markup : function(o){
5745             return createHtml(o);
5746         },
5747     
5748         /**
5749          * Applies a style specification to an element
5750          * @param {String/HTMLElement} el The element to apply styles to
5751          * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
5752          * a function which returns such a specification.
5753          */
5754         applyStyles : function(el, styles){
5755             if(styles){
5756                el = Roo.fly(el);
5757                if(typeof styles == "string"){
5758                    var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
5759                    var matches;
5760                    while ((matches = re.exec(styles)) != null){
5761                        el.setStyle(matches[1], matches[2]);
5762                    }
5763                }else if (typeof styles == "object"){
5764                    for (var style in styles){
5765                       el.setStyle(style, styles[style]);
5766                    }
5767                }else if (typeof styles == "function"){
5768                     Roo.DomHelper.applyStyles(el, styles.call());
5769                }
5770             }
5771         },
5772     
5773         /**
5774          * Inserts an HTML fragment into the Dom
5775          * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
5776          * @param {HTMLElement} el The context element
5777          * @param {String} html The HTML fragmenet
5778          * @return {HTMLElement} The new node
5779          */
5780         insertHtml : function(where, el, html){
5781             where = where.toLowerCase();
5782             if(el.insertAdjacentHTML){
5783                 if(tableRe.test(el.tagName)){
5784                     var rs;
5785                     if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
5786                         return rs;
5787                     }
5788                 }
5789                 switch(where){
5790                     case "beforebegin":
5791                         el.insertAdjacentHTML('BeforeBegin', html);
5792                         return el.previousSibling;
5793                     case "afterbegin":
5794                         el.insertAdjacentHTML('AfterBegin', html);
5795                         return el.firstChild;
5796                     case "beforeend":
5797                         el.insertAdjacentHTML('BeforeEnd', html);
5798                         return el.lastChild;
5799                     case "afterend":
5800                         el.insertAdjacentHTML('AfterEnd', html);
5801                         return el.nextSibling;
5802                 }
5803                 throw 'Illegal insertion point -> "' + where + '"';
5804             }
5805             var range = el.ownerDocument.createRange();
5806             var frag;
5807             switch(where){
5808                  case "beforebegin":
5809                     range.setStartBefore(el);
5810                     frag = range.createContextualFragment(html);
5811                     el.parentNode.insertBefore(frag, el);
5812                     return el.previousSibling;
5813                  case "afterbegin":
5814                     if(el.firstChild){
5815                         range.setStartBefore(el.firstChild);
5816                         frag = range.createContextualFragment(html);
5817                         el.insertBefore(frag, el.firstChild);
5818                         return el.firstChild;
5819                     }else{
5820                         el.innerHTML = html;
5821                         return el.firstChild;
5822                     }
5823                 case "beforeend":
5824                     if(el.lastChild){
5825                         range.setStartAfter(el.lastChild);
5826                         frag = range.createContextualFragment(html);
5827                         el.appendChild(frag);
5828                         return el.lastChild;
5829                     }else{
5830                         el.innerHTML = html;
5831                         return el.lastChild;
5832                     }
5833                 case "afterend":
5834                     range.setStartAfter(el);
5835                     frag = range.createContextualFragment(html);
5836                     el.parentNode.insertBefore(frag, el.nextSibling);
5837                     return el.nextSibling;
5838                 }
5839                 throw 'Illegal insertion point -> "' + where + '"';
5840         },
5841     
5842         /**
5843          * Creates new Dom element(s) and inserts them before el
5844          * @param {String/HTMLElement/Element} el The context element
5845          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5846          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5847          * @return {HTMLElement/Roo.Element} The new node
5848          */
5849         insertBefore : function(el, o, returnElement){
5850             return this.doInsert(el, o, returnElement, "beforeBegin");
5851         },
5852     
5853         /**
5854          * Creates new Dom element(s) and inserts them after el
5855          * @param {String/HTMLElement/Element} el The context element
5856          * @param {Object} o The Dom object spec (and children)
5857          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5858          * @return {HTMLElement/Roo.Element} The new node
5859          */
5860         insertAfter : function(el, o, returnElement){
5861             return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
5862         },
5863     
5864         /**
5865          * Creates new Dom element(s) and inserts them as the first child of el
5866          * @param {String/HTMLElement/Element} el The context element
5867          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5868          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5869          * @return {HTMLElement/Roo.Element} The new node
5870          */
5871         insertFirst : function(el, o, returnElement){
5872             return this.doInsert(el, o, returnElement, "afterBegin");
5873         },
5874     
5875         // private
5876         doInsert : function(el, o, returnElement, pos, sibling){
5877             el = Roo.getDom(el);
5878             var newNode;
5879             if(this.useDom || o.ns){
5880                 newNode = createDom(o, null);
5881                 el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
5882             }else{
5883                 var html = createHtml(o);
5884                 newNode = this.insertHtml(pos, el, html);
5885             }
5886             return returnElement ? Roo.get(newNode, true) : newNode;
5887         },
5888     
5889         /**
5890          * Creates new Dom element(s) and appends them to el
5891          * @param {String/HTMLElement/Element} el The context element
5892          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5893          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5894          * @return {HTMLElement/Roo.Element} The new node
5895          */
5896         append : function(el, o, returnElement){
5897             el = Roo.getDom(el);
5898             var newNode;
5899             if(this.useDom || o.ns){
5900                 newNode = createDom(o, null);
5901                 el.appendChild(newNode);
5902             }else{
5903                 var html = createHtml(o);
5904                 newNode = this.insertHtml("beforeEnd", el, html);
5905             }
5906             return returnElement ? Roo.get(newNode, true) : newNode;
5907         },
5908     
5909         /**
5910          * Creates new Dom element(s) and overwrites the contents of el with them
5911          * @param {String/HTMLElement/Element} el The context element
5912          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5913          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5914          * @return {HTMLElement/Roo.Element} The new node
5915          */
5916         overwrite : function(el, o, returnElement)
5917         {
5918             el = Roo.getDom(el);
5919             if (o.ns) {
5920               
5921                 while (el.childNodes.length) {
5922                     el.removeChild(el.firstChild);
5923                 }
5924                 createDom(o, el);
5925             } else {
5926                 el.innerHTML = createHtml(o);   
5927             }
5928             
5929             return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
5930         },
5931     
5932         /**
5933          * Creates a new Roo.DomHelper.Template from the Dom object spec
5934          * @param {Object} o The Dom object spec (and children)
5935          * @return {Roo.DomHelper.Template} The new template
5936          */
5937         createTemplate : function(o){
5938             var html = createHtml(o);
5939             return new Roo.Template(html);
5940         },
5941          /**
5942          * Updates the first element with the spec from the o (replacing if necessary)
5943          * This iterates through the children, and updates attributes / children etc..
5944          * @param {String/HTMLElement/Element} el The context element
5945          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5946          */
5947         
5948         update : function(el, o)
5949         {
5950             updateNode(Roo.getDom(el), createDom(o));
5951             
5952         }
5953         
5954         
5955     };
5956 }();
5957 /*
5958  * Based on:
5959  * Ext JS Library 1.1.1
5960  * Copyright(c) 2006-2007, Ext JS, LLC.
5961  *
5962  * Originally Released Under LGPL - original licence link has changed is not relivant.
5963  *
5964  * Fork - LGPL
5965  * <script type="text/javascript">
5966  */
5967  
5968 /**
5969 * @class Roo.Template
5970 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
5971 * For a list of available format functions, see {@link Roo.util.Format}.<br />
5972 * Usage:
5973 <pre><code>
5974 var t = new Roo.Template({
5975     html :  '&lt;div name="{id}"&gt;' + 
5976         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
5977         '&lt;/div&gt;',
5978     myformat: function (value, allValues) {
5979         return 'XX' + value;
5980     }
5981 });
5982 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
5983 </code></pre>
5984 * For more information see this blog post with examples:
5985 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
5986      - Create Elements using DOM, HTML fragments and Templates</a>. 
5987 * @constructor
5988 * @param {Object} cfg - Configuration object.
5989 */
5990 Roo.Template = function(cfg){
5991     // BC!
5992     if(cfg instanceof Array){
5993         cfg = cfg.join("");
5994     }else if(arguments.length > 1){
5995         cfg = Array.prototype.join.call(arguments, "");
5996     }
5997     
5998     
5999     if (typeof(cfg) == 'object') {
6000         Roo.apply(this,cfg)
6001     } else {
6002         // bc
6003         this.html = cfg;
6004     }
6005     if (this.url) {
6006         this.load();
6007     }
6008     
6009 };
6010 Roo.Template.prototype = {
6011     
6012     /**
6013      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
6014      */
6015     onLoad : false,
6016     
6017     
6018     /**
6019      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
6020      *                    it should be fixed so that template is observable...
6021      */
6022     url : false,
6023     /**
6024      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
6025      */
6026     html : '',
6027     
6028     
6029     compiled : false,
6030     loaded : false,
6031     /**
6032      * Returns an HTML fragment of this template with the specified values applied.
6033      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6034      * @return {String} The HTML fragment
6035      */
6036     
6037    
6038     
6039     applyTemplate : function(values){
6040         //Roo.log(["applyTemplate", values]);
6041         try {
6042            
6043             if(this.compiled){
6044                 return this.compiled(values);
6045             }
6046             var useF = this.disableFormats !== true;
6047             var fm = Roo.util.Format, tpl = this;
6048             var fn = function(m, name, format, args){
6049                 if(format && useF){
6050                     if(format.substr(0, 5) == "this."){
6051                         return tpl.call(format.substr(5), values[name], values);
6052                     }else{
6053                         if(args){
6054                             // quoted values are required for strings in compiled templates, 
6055                             // but for non compiled we need to strip them
6056                             // quoted reversed for jsmin
6057                             var re = /^\s*['"](.*)["']\s*$/;
6058                             args = args.split(',');
6059                             for(var i = 0, len = args.length; i < len; i++){
6060                                 args[i] = args[i].replace(re, "$1");
6061                             }
6062                             args = [values[name]].concat(args);
6063                         }else{
6064                             args = [values[name]];
6065                         }
6066                         return fm[format].apply(fm, args);
6067                     }
6068                 }else{
6069                     return values[name] !== undefined ? values[name] : "";
6070                 }
6071             };
6072             return this.html.replace(this.re, fn);
6073         } catch (e) {
6074             Roo.log(e);
6075             throw e;
6076         }
6077          
6078     },
6079     
6080     loading : false,
6081       
6082     load : function ()
6083     {
6084          
6085         if (this.loading) {
6086             return;
6087         }
6088         var _t = this;
6089         
6090         this.loading = true;
6091         this.compiled = false;
6092         
6093         var cx = new Roo.data.Connection();
6094         cx.request({
6095             url : this.url,
6096             method : 'GET',
6097             success : function (response) {
6098                 _t.loading = false;
6099                 _t.url = false;
6100                 
6101                 _t.set(response.responseText,true);
6102                 _t.loaded = true;
6103                 if (_t.onLoad) {
6104                     _t.onLoad();
6105                 }
6106              },
6107             failure : function(response) {
6108                 Roo.log("Template failed to load from " + _t.url);
6109                 _t.loading = false;
6110             }
6111         });
6112     },
6113
6114     /**
6115      * Sets the HTML used as the template and optionally compiles it.
6116      * @param {String} html
6117      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
6118      * @return {Roo.Template} this
6119      */
6120     set : function(html, compile){
6121         this.html = html;
6122         this.compiled = false;
6123         if(compile){
6124             this.compile();
6125         }
6126         return this;
6127     },
6128     
6129     /**
6130      * True to disable format functions (defaults to false)
6131      * @type Boolean
6132      */
6133     disableFormats : false,
6134     
6135     /**
6136     * The regular expression used to match template variables 
6137     * @type RegExp
6138     * @property 
6139     */
6140     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
6141     
6142     /**
6143      * Compiles the template into an internal function, eliminating the RegEx overhead.
6144      * @return {Roo.Template} this
6145      */
6146     compile : function(){
6147         var fm = Roo.util.Format;
6148         var useF = this.disableFormats !== true;
6149         var sep = Roo.isGecko ? "+" : ",";
6150         var fn = function(m, name, format, args){
6151             if(format && useF){
6152                 args = args ? ',' + args : "";
6153                 if(format.substr(0, 5) != "this."){
6154                     format = "fm." + format + '(';
6155                 }else{
6156                     format = 'this.call("'+ format.substr(5) + '", ';
6157                     args = ", values";
6158                 }
6159             }else{
6160                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
6161             }
6162             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
6163         };
6164         var body;
6165         // branched to use + in gecko and [].join() in others
6166         if(Roo.isGecko){
6167             body = "this.compiled = function(values){ return '" +
6168                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
6169                     "';};";
6170         }else{
6171             body = ["this.compiled = function(values){ return ['"];
6172             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
6173             body.push("'].join('');};");
6174             body = body.join('');
6175         }
6176         /**
6177          * eval:var:values
6178          * eval:var:fm
6179          */
6180         eval(body);
6181         return this;
6182     },
6183     
6184     // private function used to call members
6185     call : function(fnName, value, allValues){
6186         return this[fnName](value, allValues);
6187     },
6188     
6189     /**
6190      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
6191      * @param {String/HTMLElement/Roo.Element} el The context element
6192      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6193      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6194      * @return {HTMLElement/Roo.Element} The new node or Element
6195      */
6196     insertFirst: function(el, values, returnElement){
6197         return this.doInsert('afterBegin', el, values, returnElement);
6198     },
6199
6200     /**
6201      * Applies the supplied values to the template and inserts the new node(s) before el.
6202      * @param {String/HTMLElement/Roo.Element} el The context element
6203      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6204      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6205      * @return {HTMLElement/Roo.Element} The new node or Element
6206      */
6207     insertBefore: function(el, values, returnElement){
6208         return this.doInsert('beforeBegin', el, values, returnElement);
6209     },
6210
6211     /**
6212      * Applies the supplied values to the template and inserts the new node(s) after el.
6213      * @param {String/HTMLElement/Roo.Element} el The context element
6214      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6215      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6216      * @return {HTMLElement/Roo.Element} The new node or Element
6217      */
6218     insertAfter : function(el, values, returnElement){
6219         return this.doInsert('afterEnd', el, values, returnElement);
6220     },
6221     
6222     /**
6223      * Applies the supplied values to the template and appends the new node(s) to el.
6224      * @param {String/HTMLElement/Roo.Element} el The context element
6225      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6226      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6227      * @return {HTMLElement/Roo.Element} The new node or Element
6228      */
6229     append : function(el, values, returnElement){
6230         return this.doInsert('beforeEnd', el, values, returnElement);
6231     },
6232
6233     doInsert : function(where, el, values, returnEl){
6234         el = Roo.getDom(el);
6235         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
6236         return returnEl ? Roo.get(newNode, true) : newNode;
6237     },
6238
6239     /**
6240      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
6241      * @param {String/HTMLElement/Roo.Element} el The context element
6242      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6243      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6244      * @return {HTMLElement/Roo.Element} The new node or Element
6245      */
6246     overwrite : function(el, values, returnElement){
6247         el = Roo.getDom(el);
6248         el.innerHTML = this.applyTemplate(values);
6249         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
6250     }
6251 };
6252 /**
6253  * Alias for {@link #applyTemplate}
6254  * @method
6255  */
6256 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
6257
6258 // backwards compat
6259 Roo.DomHelper.Template = Roo.Template;
6260
6261 /**
6262  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
6263  * @param {String/HTMLElement} el A DOM element or its id
6264  * @returns {Roo.Template} The created template
6265  * @static
6266  */
6267 Roo.Template.from = function(el){
6268     el = Roo.getDom(el);
6269     return new Roo.Template(el.value || el.innerHTML);
6270 };/*
6271  * Based on:
6272  * Ext JS Library 1.1.1
6273  * Copyright(c) 2006-2007, Ext JS, LLC.
6274  *
6275  * Originally Released Under LGPL - original licence link has changed is not relivant.
6276  *
6277  * Fork - LGPL
6278  * <script type="text/javascript">
6279  */
6280  
6281
6282 /*
6283  * This is code is also distributed under MIT license for use
6284  * with jQuery and prototype JavaScript libraries.
6285  */
6286 /**
6287  * @class Roo.DomQuery
6288 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
6289 <p>
6290 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
6291
6292 <p>
6293 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
6294 </p>
6295 <h4>Element Selectors:</h4>
6296 <ul class="list">
6297     <li> <b>*</b> any element</li>
6298     <li> <b>E</b> an element with the tag E</li>
6299     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
6300     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
6301     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
6302     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
6303 </ul>
6304 <h4>Attribute Selectors:</h4>
6305 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
6306 <ul class="list">
6307     <li> <b>E[foo]</b> has an attribute "foo"</li>
6308     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
6309     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
6310     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
6311     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
6312     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
6313     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
6314 </ul>
6315 <h4>Pseudo Classes:</h4>
6316 <ul class="list">
6317     <li> <b>E:first-child</b> E is the first child of its parent</li>
6318     <li> <b>E:last-child</b> E is the last child of its parent</li>
6319     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
6320     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
6321     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
6322     <li> <b>E:only-child</b> E is the only child of its parent</li>
6323     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
6324     <li> <b>E:first</b> the first E in the resultset</li>
6325     <li> <b>E:last</b> the last E in the resultset</li>
6326     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
6327     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
6328     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
6329     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
6330     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
6331     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
6332     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
6333     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
6334     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
6335 </ul>
6336 <h4>CSS Value Selectors:</h4>
6337 <ul class="list">
6338     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
6339     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
6340     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
6341     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
6342     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
6343     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
6344 </ul>
6345  * @static
6346  */
6347 Roo.DomQuery = function(){
6348     var cache = {}, simpleCache = {}, valueCache = {};
6349     var nonSpace = /\S/;
6350     var trimRe = /^\s+|\s+$/g;
6351     var tplRe = /\{(\d+)\}/g;
6352     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
6353     var tagTokenRe = /^(#)?([\w-\*]+)/;
6354     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
6355
6356     function child(p, index){
6357         var i = 0;
6358         var n = p.firstChild;
6359         while(n){
6360             if(n.nodeType == 1){
6361                if(++i == index){
6362                    return n;
6363                }
6364             }
6365             n = n.nextSibling;
6366         }
6367         return null;
6368     };
6369
6370     function next(n){
6371         while((n = n.nextSibling) && n.nodeType != 1);
6372         return n;
6373     };
6374
6375     function prev(n){
6376         while((n = n.previousSibling) && n.nodeType != 1);
6377         return n;
6378     };
6379
6380     function children(d){
6381         var n = d.firstChild, ni = -1;
6382             while(n){
6383                 var nx = n.nextSibling;
6384                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
6385                     d.removeChild(n);
6386                 }else{
6387                     n.nodeIndex = ++ni;
6388                 }
6389                 n = nx;
6390             }
6391             return this;
6392         };
6393
6394     function byClassName(c, a, v){
6395         if(!v){
6396             return c;
6397         }
6398         var r = [], ri = -1, cn;
6399         for(var i = 0, ci; ci = c[i]; i++){
6400             
6401             
6402             if((' '+
6403                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
6404                  +' ').indexOf(v) != -1){
6405                 r[++ri] = ci;
6406             }
6407         }
6408         return r;
6409     };
6410
6411     function attrValue(n, attr){
6412         if(!n.tagName && typeof n.length != "undefined"){
6413             n = n[0];
6414         }
6415         if(!n){
6416             return null;
6417         }
6418         if(attr == "for"){
6419             return n.htmlFor;
6420         }
6421         if(attr == "class" || attr == "className"){
6422             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
6423         }
6424         return n.getAttribute(attr) || n[attr];
6425
6426     };
6427
6428     function getNodes(ns, mode, tagName){
6429         var result = [], ri = -1, cs;
6430         if(!ns){
6431             return result;
6432         }
6433         tagName = tagName || "*";
6434         if(typeof ns.getElementsByTagName != "undefined"){
6435             ns = [ns];
6436         }
6437         if(!mode){
6438             for(var i = 0, ni; ni = ns[i]; i++){
6439                 cs = ni.getElementsByTagName(tagName);
6440                 for(var j = 0, ci; ci = cs[j]; j++){
6441                     result[++ri] = ci;
6442                 }
6443             }
6444         }else if(mode == "/" || mode == ">"){
6445             var utag = tagName.toUpperCase();
6446             for(var i = 0, ni, cn; ni = ns[i]; i++){
6447                 cn = ni.children || ni.childNodes;
6448                 for(var j = 0, cj; cj = cn[j]; j++){
6449                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
6450                         result[++ri] = cj;
6451                     }
6452                 }
6453             }
6454         }else if(mode == "+"){
6455             var utag = tagName.toUpperCase();
6456             for(var i = 0, n; n = ns[i]; i++){
6457                 while((n = n.nextSibling) && n.nodeType != 1);
6458                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
6459                     result[++ri] = n;
6460                 }
6461             }
6462         }else if(mode == "~"){
6463             for(var i = 0, n; n = ns[i]; i++){
6464                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
6465                 if(n){
6466                     result[++ri] = n;
6467                 }
6468             }
6469         }
6470         return result;
6471     };
6472
6473     function concat(a, b){
6474         if(b.slice){
6475             return a.concat(b);
6476         }
6477         for(var i = 0, l = b.length; i < l; i++){
6478             a[a.length] = b[i];
6479         }
6480         return a;
6481     }
6482
6483     function byTag(cs, tagName){
6484         if(cs.tagName || cs == document){
6485             cs = [cs];
6486         }
6487         if(!tagName){
6488             return cs;
6489         }
6490         var r = [], ri = -1;
6491         tagName = tagName.toLowerCase();
6492         for(var i = 0, ci; ci = cs[i]; i++){
6493             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
6494                 r[++ri] = ci;
6495             }
6496         }
6497         return r;
6498     };
6499
6500     function byId(cs, attr, id){
6501         if(cs.tagName || cs == document){
6502             cs = [cs];
6503         }
6504         if(!id){
6505             return cs;
6506         }
6507         var r = [], ri = -1;
6508         for(var i = 0,ci; ci = cs[i]; i++){
6509             if(ci && ci.id == id){
6510                 r[++ri] = ci;
6511                 return r;
6512             }
6513         }
6514         return r;
6515     };
6516
6517     function byAttribute(cs, attr, value, op, custom){
6518         var r = [], ri = -1, st = custom=="{";
6519         var f = Roo.DomQuery.operators[op];
6520         for(var i = 0, ci; ci = cs[i]; i++){
6521             var a;
6522             if(st){
6523                 a = Roo.DomQuery.getStyle(ci, attr);
6524             }
6525             else if(attr == "class" || attr == "className"){
6526                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
6527             }else if(attr == "for"){
6528                 a = ci.htmlFor;
6529             }else if(attr == "href"){
6530                 a = ci.getAttribute("href", 2);
6531             }else{
6532                 a = ci.getAttribute(attr);
6533             }
6534             if((f && f(a, value)) || (!f && a)){
6535                 r[++ri] = ci;
6536             }
6537         }
6538         return r;
6539     };
6540
6541     function byPseudo(cs, name, value){
6542         return Roo.DomQuery.pseudos[name](cs, value);
6543     };
6544
6545     // This is for IE MSXML which does not support expandos.
6546     // IE runs the same speed using setAttribute, however FF slows way down
6547     // and Safari completely fails so they need to continue to use expandos.
6548     var isIE = window.ActiveXObject ? true : false;
6549
6550     // this eval is stop the compressor from
6551     // renaming the variable to something shorter
6552     
6553     /** eval:var:batch */
6554     var batch = 30803; 
6555
6556     var key = 30803;
6557
6558     function nodupIEXml(cs){
6559         var d = ++key;
6560         cs[0].setAttribute("_nodup", d);
6561         var r = [cs[0]];
6562         for(var i = 1, len = cs.length; i < len; i++){
6563             var c = cs[i];
6564             if(!c.getAttribute("_nodup") != d){
6565                 c.setAttribute("_nodup", d);
6566                 r[r.length] = c;
6567             }
6568         }
6569         for(var i = 0, len = cs.length; i < len; i++){
6570             cs[i].removeAttribute("_nodup");
6571         }
6572         return r;
6573     }
6574
6575     function nodup(cs){
6576         if(!cs){
6577             return [];
6578         }
6579         var len = cs.length, c, i, r = cs, cj, ri = -1;
6580         if(!len || typeof cs.nodeType != "undefined" || len == 1){
6581             return cs;
6582         }
6583         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
6584             return nodupIEXml(cs);
6585         }
6586         var d = ++key;
6587         cs[0]._nodup = d;
6588         for(i = 1; c = cs[i]; i++){
6589             if(c._nodup != d){
6590                 c._nodup = d;
6591             }else{
6592                 r = [];
6593                 for(var j = 0; j < i; j++){
6594                     r[++ri] = cs[j];
6595                 }
6596                 for(j = i+1; cj = cs[j]; j++){
6597                     if(cj._nodup != d){
6598                         cj._nodup = d;
6599                         r[++ri] = cj;
6600                     }
6601                 }
6602                 return r;
6603             }
6604         }
6605         return r;
6606     }
6607
6608     function quickDiffIEXml(c1, c2){
6609         var d = ++key;
6610         for(var i = 0, len = c1.length; i < len; i++){
6611             c1[i].setAttribute("_qdiff", d);
6612         }
6613         var r = [];
6614         for(var i = 0, len = c2.length; i < len; i++){
6615             if(c2[i].getAttribute("_qdiff") != d){
6616                 r[r.length] = c2[i];
6617             }
6618         }
6619         for(var i = 0, len = c1.length; i < len; i++){
6620            c1[i].removeAttribute("_qdiff");
6621         }
6622         return r;
6623     }
6624
6625     function quickDiff(c1, c2){
6626         var len1 = c1.length;
6627         if(!len1){
6628             return c2;
6629         }
6630         if(isIE && c1[0].selectSingleNode){
6631             return quickDiffIEXml(c1, c2);
6632         }
6633         var d = ++key;
6634         for(var i = 0; i < len1; i++){
6635             c1[i]._qdiff = d;
6636         }
6637         var r = [];
6638         for(var i = 0, len = c2.length; i < len; i++){
6639             if(c2[i]._qdiff != d){
6640                 r[r.length] = c2[i];
6641             }
6642         }
6643         return r;
6644     }
6645
6646     function quickId(ns, mode, root, id){
6647         if(ns == root){
6648            var d = root.ownerDocument || root;
6649            return d.getElementById(id);
6650         }
6651         ns = getNodes(ns, mode, "*");
6652         return byId(ns, null, id);
6653     }
6654
6655     return {
6656         getStyle : function(el, name){
6657             return Roo.fly(el).getStyle(name);
6658         },
6659         /**
6660          * Compiles a selector/xpath query into a reusable function. The returned function
6661          * takes one parameter "root" (optional), which is the context node from where the query should start.
6662          * @param {String} selector The selector/xpath query
6663          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
6664          * @return {Function}
6665          */
6666         compile : function(path, type){
6667             type = type || "select";
6668             
6669             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
6670             var q = path, mode, lq;
6671             var tk = Roo.DomQuery.matchers;
6672             var tklen = tk.length;
6673             var mm;
6674
6675             // accept leading mode switch
6676             var lmode = q.match(modeRe);
6677             if(lmode && lmode[1]){
6678                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
6679                 q = q.replace(lmode[1], "");
6680             }
6681             // strip leading slashes
6682             while(path.substr(0, 1)=="/"){
6683                 path = path.substr(1);
6684             }
6685
6686             while(q && lq != q){
6687                 lq = q;
6688                 var tm = q.match(tagTokenRe);
6689                 if(type == "select"){
6690                     if(tm){
6691                         if(tm[1] == "#"){
6692                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
6693                         }else{
6694                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
6695                         }
6696                         q = q.replace(tm[0], "");
6697                     }else if(q.substr(0, 1) != '@'){
6698                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
6699                     }
6700                 }else{
6701                     if(tm){
6702                         if(tm[1] == "#"){
6703                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
6704                         }else{
6705                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
6706                         }
6707                         q = q.replace(tm[0], "");
6708                     }
6709                 }
6710                 while(!(mm = q.match(modeRe))){
6711                     var matched = false;
6712                     for(var j = 0; j < tklen; j++){
6713                         var t = tk[j];
6714                         var m = q.match(t.re);
6715                         if(m){
6716                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
6717                                                     return m[i];
6718                                                 });
6719                             q = q.replace(m[0], "");
6720                             matched = true;
6721                             break;
6722                         }
6723                     }
6724                     // prevent infinite loop on bad selector
6725                     if(!matched){
6726                         throw 'Error parsing selector, parsing failed at "' + q + '"';
6727                     }
6728                 }
6729                 if(mm[1]){
6730                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
6731                     q = q.replace(mm[1], "");
6732                 }
6733             }
6734             fn[fn.length] = "return nodup(n);\n}";
6735             
6736              /** 
6737               * list of variables that need from compression as they are used by eval.
6738              *  eval:var:batch 
6739              *  eval:var:nodup
6740              *  eval:var:byTag
6741              *  eval:var:ById
6742              *  eval:var:getNodes
6743              *  eval:var:quickId
6744              *  eval:var:mode
6745              *  eval:var:root
6746              *  eval:var:n
6747              *  eval:var:byClassName
6748              *  eval:var:byPseudo
6749              *  eval:var:byAttribute
6750              *  eval:var:attrValue
6751              * 
6752              **/ 
6753             eval(fn.join(""));
6754             return f;
6755         },
6756
6757         /**
6758          * Selects a group of elements.
6759          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
6760          * @param {Node} root (optional) The start of the query (defaults to document).
6761          * @return {Array}
6762          */
6763         select : function(path, root, type){
6764             if(!root || root == document){
6765                 root = document;
6766             }
6767             if(typeof root == "string"){
6768                 root = document.getElementById(root);
6769             }
6770             var paths = path.split(",");
6771             var results = [];
6772             for(var i = 0, len = paths.length; i < len; i++){
6773                 var p = paths[i].replace(trimRe, "");
6774                 if(!cache[p]){
6775                     cache[p] = Roo.DomQuery.compile(p);
6776                     if(!cache[p]){
6777                         throw p + " is not a valid selector";
6778                     }
6779                 }
6780                 var result = cache[p](root);
6781                 if(result && result != document){
6782                     results = results.concat(result);
6783                 }
6784             }
6785             if(paths.length > 1){
6786                 return nodup(results);
6787             }
6788             return results;
6789         },
6790
6791         /**
6792          * Selects a single element.
6793          * @param {String} selector The selector/xpath query
6794          * @param {Node} root (optional) The start of the query (defaults to document).
6795          * @return {Element}
6796          */
6797         selectNode : function(path, root){
6798             return Roo.DomQuery.select(path, root)[0];
6799         },
6800
6801         /**
6802          * Selects the value of a node, optionally replacing null with the defaultValue.
6803          * @param {String} selector The selector/xpath query
6804          * @param {Node} root (optional) The start of the query (defaults to document).
6805          * @param {String} defaultValue
6806          */
6807         selectValue : function(path, root, defaultValue){
6808             path = path.replace(trimRe, "");
6809             if(!valueCache[path]){
6810                 valueCache[path] = Roo.DomQuery.compile(path, "select");
6811             }
6812             var n = valueCache[path](root);
6813             n = n[0] ? n[0] : n;
6814             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
6815             return ((v === null||v === undefined||v==='') ? defaultValue : v);
6816         },
6817
6818         /**
6819          * Selects the value of a node, parsing integers and floats.
6820          * @param {String} selector The selector/xpath query
6821          * @param {Node} root (optional) The start of the query (defaults to document).
6822          * @param {Number} defaultValue
6823          * @return {Number}
6824          */
6825         selectNumber : function(path, root, defaultValue){
6826             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
6827             return parseFloat(v);
6828         },
6829
6830         /**
6831          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
6832          * @param {String/HTMLElement/Array} el An element id, element or array of elements
6833          * @param {String} selector The simple selector to test
6834          * @return {Boolean}
6835          */
6836         is : function(el, ss){
6837             if(typeof el == "string"){
6838                 el = document.getElementById(el);
6839             }
6840             var isArray = (el instanceof Array);
6841             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
6842             return isArray ? (result.length == el.length) : (result.length > 0);
6843         },
6844
6845         /**
6846          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
6847          * @param {Array} el An array of elements to filter
6848          * @param {String} selector The simple selector to test
6849          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
6850          * the selector instead of the ones that match
6851          * @return {Array}
6852          */
6853         filter : function(els, ss, nonMatches){
6854             ss = ss.replace(trimRe, "");
6855             if(!simpleCache[ss]){
6856                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
6857             }
6858             var result = simpleCache[ss](els);
6859             return nonMatches ? quickDiff(result, els) : result;
6860         },
6861
6862         /**
6863          * Collection of matching regular expressions and code snippets.
6864          */
6865         matchers : [{
6866                 re: /^\.([\w-]+)/,
6867                 select: 'n = byClassName(n, null, " {1} ");'
6868             }, {
6869                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
6870                 select: 'n = byPseudo(n, "{1}", "{2}");'
6871             },{
6872                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
6873                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
6874             }, {
6875                 re: /^#([\w-]+)/,
6876                 select: 'n = byId(n, null, "{1}");'
6877             },{
6878                 re: /^@([\w-]+)/,
6879                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
6880             }
6881         ],
6882
6883         /**
6884          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
6885          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
6886          */
6887         operators : {
6888             "=" : function(a, v){
6889                 return a == v;
6890             },
6891             "!=" : function(a, v){
6892                 return a != v;
6893             },
6894             "^=" : function(a, v){
6895                 return a && a.substr(0, v.length) == v;
6896             },
6897             "$=" : function(a, v){
6898                 return a && a.substr(a.length-v.length) == v;
6899             },
6900             "*=" : function(a, v){
6901                 return a && a.indexOf(v) !== -1;
6902             },
6903             "%=" : function(a, v){
6904                 return (a % v) == 0;
6905             },
6906             "|=" : function(a, v){
6907                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
6908             },
6909             "~=" : function(a, v){
6910                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
6911             }
6912         },
6913
6914         /**
6915          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
6916          * and the argument (if any) supplied in the selector.
6917          */
6918         pseudos : {
6919             "first-child" : function(c){
6920                 var r = [], ri = -1, n;
6921                 for(var i = 0, ci; ci = n = c[i]; i++){
6922                     while((n = n.previousSibling) && n.nodeType != 1);
6923                     if(!n){
6924                         r[++ri] = ci;
6925                     }
6926                 }
6927                 return r;
6928             },
6929
6930             "last-child" : function(c){
6931                 var r = [], ri = -1, n;
6932                 for(var i = 0, ci; ci = n = c[i]; i++){
6933                     while((n = n.nextSibling) && n.nodeType != 1);
6934                     if(!n){
6935                         r[++ri] = ci;
6936                     }
6937                 }
6938                 return r;
6939             },
6940
6941             "nth-child" : function(c, a) {
6942                 var r = [], ri = -1;
6943                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
6944                 var f = (m[1] || 1) - 0, l = m[2] - 0;
6945                 for(var i = 0, n; n = c[i]; i++){
6946                     var pn = n.parentNode;
6947                     if (batch != pn._batch) {
6948                         var j = 0;
6949                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
6950                             if(cn.nodeType == 1){
6951                                cn.nodeIndex = ++j;
6952                             }
6953                         }
6954                         pn._batch = batch;
6955                     }
6956                     if (f == 1) {
6957                         if (l == 0 || n.nodeIndex == l){
6958                             r[++ri] = n;
6959                         }
6960                     } else if ((n.nodeIndex + l) % f == 0){
6961                         r[++ri] = n;
6962                     }
6963                 }
6964
6965                 return r;
6966             },
6967
6968             "only-child" : function(c){
6969                 var r = [], ri = -1;;
6970                 for(var i = 0, ci; ci = c[i]; i++){
6971                     if(!prev(ci) && !next(ci)){
6972                         r[++ri] = ci;
6973                     }
6974                 }
6975                 return r;
6976             },
6977
6978             "empty" : function(c){
6979                 var r = [], ri = -1;
6980                 for(var i = 0, ci; ci = c[i]; i++){
6981                     var cns = ci.childNodes, j = 0, cn, empty = true;
6982                     while(cn = cns[j]){
6983                         ++j;
6984                         if(cn.nodeType == 1 || cn.nodeType == 3){
6985                             empty = false;
6986                             break;
6987                         }
6988                     }
6989                     if(empty){
6990                         r[++ri] = ci;
6991                     }
6992                 }
6993                 return r;
6994             },
6995
6996             "contains" : function(c, v){
6997                 var r = [], ri = -1;
6998                 for(var i = 0, ci; ci = c[i]; i++){
6999                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
7000                         r[++ri] = ci;
7001                     }
7002                 }
7003                 return r;
7004             },
7005
7006             "nodeValue" : function(c, v){
7007                 var r = [], ri = -1;
7008                 for(var i = 0, ci; ci = c[i]; i++){
7009                     if(ci.firstChild && ci.firstChild.nodeValue == v){
7010                         r[++ri] = ci;
7011                     }
7012                 }
7013                 return r;
7014             },
7015
7016             "checked" : function(c){
7017                 var r = [], ri = -1;
7018                 for(var i = 0, ci; ci = c[i]; i++){
7019                     if(ci.checked == true){
7020                         r[++ri] = ci;
7021                     }
7022                 }
7023                 return r;
7024             },
7025
7026             "not" : function(c, ss){
7027                 return Roo.DomQuery.filter(c, ss, true);
7028             },
7029
7030             "odd" : function(c){
7031                 return this["nth-child"](c, "odd");
7032             },
7033
7034             "even" : function(c){
7035                 return this["nth-child"](c, "even");
7036             },
7037
7038             "nth" : function(c, a){
7039                 return c[a-1] || [];
7040             },
7041
7042             "first" : function(c){
7043                 return c[0] || [];
7044             },
7045
7046             "last" : function(c){
7047                 return c[c.length-1] || [];
7048             },
7049
7050             "has" : function(c, ss){
7051                 var s = Roo.DomQuery.select;
7052                 var r = [], ri = -1;
7053                 for(var i = 0, ci; ci = c[i]; i++){
7054                     if(s(ss, ci).length > 0){
7055                         r[++ri] = ci;
7056                     }
7057                 }
7058                 return r;
7059             },
7060
7061             "next" : function(c, ss){
7062                 var is = Roo.DomQuery.is;
7063                 var r = [], ri = -1;
7064                 for(var i = 0, ci; ci = c[i]; i++){
7065                     var n = next(ci);
7066                     if(n && is(n, ss)){
7067                         r[++ri] = ci;
7068                     }
7069                 }
7070                 return r;
7071             },
7072
7073             "prev" : function(c, ss){
7074                 var is = Roo.DomQuery.is;
7075                 var r = [], ri = -1;
7076                 for(var i = 0, ci; ci = c[i]; i++){
7077                     var n = prev(ci);
7078                     if(n && is(n, ss)){
7079                         r[++ri] = ci;
7080                     }
7081                 }
7082                 return r;
7083             }
7084         }
7085     };
7086 }();
7087
7088 /**
7089  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
7090  * @param {String} path The selector/xpath query
7091  * @param {Node} root (optional) The start of the query (defaults to document).
7092  * @return {Array}
7093  * @member Roo
7094  * @method query
7095  */
7096 Roo.query = Roo.DomQuery.select;
7097 /*
7098  * Based on:
7099  * Ext JS Library 1.1.1
7100  * Copyright(c) 2006-2007, Ext JS, LLC.
7101  *
7102  * Originally Released Under LGPL - original licence link has changed is not relivant.
7103  *
7104  * Fork - LGPL
7105  * <script type="text/javascript">
7106  */
7107
7108 /**
7109  * @class Roo.util.Observable
7110  * Base class that provides a common interface for publishing events. Subclasses are expected to
7111  * to have a property "events" with all the events defined.<br>
7112  * For example:
7113  * <pre><code>
7114  Employee = function(name){
7115     this.name = name;
7116     this.addEvents({
7117         "fired" : true,
7118         "quit" : true
7119     });
7120  }
7121  Roo.extend(Employee, Roo.util.Observable);
7122 </code></pre>
7123  * @param {Object} config properties to use (incuding events / listeners)
7124  */
7125
7126 Roo.util.Observable = function(cfg){
7127     
7128     cfg = cfg|| {};
7129     this.addEvents(cfg.events || {});
7130     if (cfg.events) {
7131         delete cfg.events; // make sure
7132     }
7133      
7134     Roo.apply(this, cfg);
7135     
7136     if(this.listeners){
7137         this.on(this.listeners);
7138         delete this.listeners;
7139     }
7140 };
7141 Roo.util.Observable.prototype = {
7142     /** 
7143  * @cfg {Object} listeners  list of events and functions to call for this object, 
7144  * For example :
7145  * <pre><code>
7146     listeners :  { 
7147        'click' : function(e) {
7148            ..... 
7149         } ,
7150         .... 
7151     } 
7152   </code></pre>
7153  */
7154     
7155     
7156     /**
7157      * Fires the specified event with the passed parameters (minus the event name).
7158      * @param {String} eventName
7159      * @param {Object...} args Variable number of parameters are passed to handlers
7160      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
7161      */
7162     fireEvent : function(){
7163         var ce = this.events[arguments[0].toLowerCase()];
7164         if(typeof ce == "object"){
7165             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
7166         }else{
7167             return true;
7168         }
7169     },
7170
7171     // private
7172     filterOptRe : /^(?:scope|delay|buffer|single)$/,
7173
7174     /**
7175      * Appends an event handler to this component
7176      * @param {String}   eventName The type of event to listen for
7177      * @param {Function} handler The method the event invokes
7178      * @param {Object}   scope (optional) The scope in which to execute the handler
7179      * function. The handler function's "this" context.
7180      * @param {Object}   options (optional) An object containing handler configuration
7181      * properties. This may contain any of the following properties:<ul>
7182      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7183      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7184      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7185      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7186      * by the specified number of milliseconds. If the event fires again within that time, the original
7187      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7188      * </ul><br>
7189      * <p>
7190      * <b>Combining Options</b><br>
7191      * Using the options argument, it is possible to combine different types of listeners:<br>
7192      * <br>
7193      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
7194                 <pre><code>
7195                 el.on('click', this.onClick, this, {
7196                         single: true,
7197                 delay: 100,
7198                 forumId: 4
7199                 });
7200                 </code></pre>
7201      * <p>
7202      * <b>Attaching multiple handlers in 1 call</b><br>
7203      * The method also allows for a single argument to be passed which is a config object containing properties
7204      * which specify multiple handlers.
7205      * <pre><code>
7206                 el.on({
7207                         'click': {
7208                         fn: this.onClick,
7209                         scope: this,
7210                         delay: 100
7211                 }, 
7212                 'mouseover': {
7213                         fn: this.onMouseOver,
7214                         scope: this
7215                 },
7216                 'mouseout': {
7217                         fn: this.onMouseOut,
7218                         scope: this
7219                 }
7220                 });
7221                 </code></pre>
7222      * <p>
7223      * Or a shorthand syntax which passes the same scope object to all handlers:
7224         <pre><code>
7225                 el.on({
7226                         'click': this.onClick,
7227                 'mouseover': this.onMouseOver,
7228                 'mouseout': this.onMouseOut,
7229                 scope: this
7230                 });
7231                 </code></pre>
7232      */
7233     addListener : function(eventName, fn, scope, o){
7234         if(typeof eventName == "object"){
7235             o = eventName;
7236             for(var e in o){
7237                 if(this.filterOptRe.test(e)){
7238                     continue;
7239                 }
7240                 if(typeof o[e] == "function"){
7241                     // shared options
7242                     this.addListener(e, o[e], o.scope,  o);
7243                 }else{
7244                     // individual options
7245                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
7246                 }
7247             }
7248             return;
7249         }
7250         o = (!o || typeof o == "boolean") ? {} : o;
7251         eventName = eventName.toLowerCase();
7252         var ce = this.events[eventName] || true;
7253         if(typeof ce == "boolean"){
7254             ce = new Roo.util.Event(this, eventName);
7255             this.events[eventName] = ce;
7256         }
7257         ce.addListener(fn, scope, o);
7258     },
7259
7260     /**
7261      * Removes a listener
7262      * @param {String}   eventName     The type of event to listen for
7263      * @param {Function} handler        The handler to remove
7264      * @param {Object}   scope  (optional) The scope (this object) for the handler
7265      */
7266     removeListener : function(eventName, fn, scope){
7267         var ce = this.events[eventName.toLowerCase()];
7268         if(typeof ce == "object"){
7269             ce.removeListener(fn, scope);
7270         }
7271     },
7272
7273     /**
7274      * Removes all listeners for this object
7275      */
7276     purgeListeners : function(){
7277         for(var evt in this.events){
7278             if(typeof this.events[evt] == "object"){
7279                  this.events[evt].clearListeners();
7280             }
7281         }
7282     },
7283
7284     relayEvents : function(o, events){
7285         var createHandler = function(ename){
7286             return function(){
7287                  
7288                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
7289             };
7290         };
7291         for(var i = 0, len = events.length; i < len; i++){
7292             var ename = events[i];
7293             if(!this.events[ename]){
7294                 this.events[ename] = true;
7295             };
7296             o.on(ename, createHandler(ename), this);
7297         }
7298     },
7299
7300     /**
7301      * Used to define events on this Observable
7302      * @param {Object} object The object with the events defined
7303      */
7304     addEvents : function(o){
7305         if(!this.events){
7306             this.events = {};
7307         }
7308         Roo.applyIf(this.events, o);
7309     },
7310
7311     /**
7312      * Checks to see if this object has any listeners for a specified event
7313      * @param {String} eventName The name of the event to check for
7314      * @return {Boolean} True if the event is being listened for, else false
7315      */
7316     hasListener : function(eventName){
7317         var e = this.events[eventName];
7318         return typeof e == "object" && e.listeners.length > 0;
7319     }
7320 };
7321 /**
7322  * Appends an event handler to this element (shorthand for addListener)
7323  * @param {String}   eventName     The type of event to listen for
7324  * @param {Function} handler        The method the event invokes
7325  * @param {Object}   scope (optional) The scope in which to execute the handler
7326  * function. The handler function's "this" context.
7327  * @param {Object}   options  (optional)
7328  * @method
7329  */
7330 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
7331 /**
7332  * Removes a listener (shorthand for removeListener)
7333  * @param {String}   eventName     The type of event to listen for
7334  * @param {Function} handler        The handler to remove
7335  * @param {Object}   scope  (optional) The scope (this object) for the handler
7336  * @method
7337  */
7338 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
7339
7340 /**
7341  * Starts capture on the specified Observable. All events will be passed
7342  * to the supplied function with the event name + standard signature of the event
7343  * <b>before</b> the event is fired. If the supplied function returns false,
7344  * the event will not fire.
7345  * @param {Observable} o The Observable to capture
7346  * @param {Function} fn The function to call
7347  * @param {Object} scope (optional) The scope (this object) for the fn
7348  * @static
7349  */
7350 Roo.util.Observable.capture = function(o, fn, scope){
7351     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
7352 };
7353
7354 /**
7355  * Removes <b>all</b> added captures from the Observable.
7356  * @param {Observable} o The Observable to release
7357  * @static
7358  */
7359 Roo.util.Observable.releaseCapture = function(o){
7360     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
7361 };
7362
7363 (function(){
7364
7365     var createBuffered = function(h, o, scope){
7366         var task = new Roo.util.DelayedTask();
7367         return function(){
7368             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
7369         };
7370     };
7371
7372     var createSingle = function(h, e, fn, scope){
7373         return function(){
7374             e.removeListener(fn, scope);
7375             return h.apply(scope, arguments);
7376         };
7377     };
7378
7379     var createDelayed = function(h, o, scope){
7380         return function(){
7381             var args = Array.prototype.slice.call(arguments, 0);
7382             setTimeout(function(){
7383                 h.apply(scope, args);
7384             }, o.delay || 10);
7385         };
7386     };
7387
7388     Roo.util.Event = function(obj, name){
7389         this.name = name;
7390         this.obj = obj;
7391         this.listeners = [];
7392     };
7393
7394     Roo.util.Event.prototype = {
7395         addListener : function(fn, scope, options){
7396             var o = options || {};
7397             scope = scope || this.obj;
7398             if(!this.isListening(fn, scope)){
7399                 var l = {fn: fn, scope: scope, options: o};
7400                 var h = fn;
7401                 if(o.delay){
7402                     h = createDelayed(h, o, scope);
7403                 }
7404                 if(o.single){
7405                     h = createSingle(h, this, fn, scope);
7406                 }
7407                 if(o.buffer){
7408                     h = createBuffered(h, o, scope);
7409                 }
7410                 l.fireFn = h;
7411                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
7412                     this.listeners.push(l);
7413                 }else{
7414                     this.listeners = this.listeners.slice(0);
7415                     this.listeners.push(l);
7416                 }
7417             }
7418         },
7419
7420         findListener : function(fn, scope){
7421             scope = scope || this.obj;
7422             var ls = this.listeners;
7423             for(var i = 0, len = ls.length; i < len; i++){
7424                 var l = ls[i];
7425                 if(l.fn == fn && l.scope == scope){
7426                     return i;
7427                 }
7428             }
7429             return -1;
7430         },
7431
7432         isListening : function(fn, scope){
7433             return this.findListener(fn, scope) != -1;
7434         },
7435
7436         removeListener : function(fn, scope){
7437             var index;
7438             if((index = this.findListener(fn, scope)) != -1){
7439                 if(!this.firing){
7440                     this.listeners.splice(index, 1);
7441                 }else{
7442                     this.listeners = this.listeners.slice(0);
7443                     this.listeners.splice(index, 1);
7444                 }
7445                 return true;
7446             }
7447             return false;
7448         },
7449
7450         clearListeners : function(){
7451             this.listeners = [];
7452         },
7453
7454         fire : function(){
7455             var ls = this.listeners, scope, len = ls.length;
7456             if(len > 0){
7457                 this.firing = true;
7458                 var args = Array.prototype.slice.call(arguments, 0);                
7459                 for(var i = 0; i < len; i++){
7460                     var l = ls[i];
7461                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
7462                         this.firing = false;
7463                         return false;
7464                     }
7465                 }
7466                 this.firing = false;
7467             }
7468             return true;
7469         }
7470     };
7471 })();/*
7472  * RooJS Library 
7473  * Copyright(c) 2007-2017, Roo J Solutions Ltd
7474  *
7475  * Licence LGPL 
7476  *
7477  */
7478  
7479 /**
7480  * @class Roo.Document
7481  * @extends Roo.util.Observable
7482  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
7483  * 
7484  * @param {Object} config the methods and properties of the 'base' class for the application.
7485  * 
7486  *  Generic Page handler - implement this to start your app..
7487  * 
7488  * eg.
7489  *  MyProject = new Roo.Document({
7490         events : {
7491             'load' : true // your events..
7492         },
7493         listeners : {
7494             'ready' : function() {
7495                 // fired on Roo.onReady()
7496             }
7497         }
7498  * 
7499  */
7500 Roo.Document = function(cfg) {
7501      
7502     this.addEvents({ 
7503         'ready' : true
7504     });
7505     Roo.util.Observable.call(this,cfg);
7506     
7507     var _this = this;
7508     
7509     Roo.onReady(function() {
7510         _this.fireEvent('ready');
7511     },null,false);
7512     
7513     
7514 }
7515
7516 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
7517  * Based on:
7518  * Ext JS Library 1.1.1
7519  * Copyright(c) 2006-2007, Ext JS, LLC.
7520  *
7521  * Originally Released Under LGPL - original licence link has changed is not relivant.
7522  *
7523  * Fork - LGPL
7524  * <script type="text/javascript">
7525  */
7526
7527 /**
7528  * @class Roo.EventManager
7529  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
7530  * several useful events directly.
7531  * See {@link Roo.EventObject} for more details on normalized event objects.
7532  * @static
7533  */
7534 Roo.EventManager = function(){
7535     var docReadyEvent, docReadyProcId, docReadyState = false;
7536     var resizeEvent, resizeTask, textEvent, textSize;
7537     var E = Roo.lib.Event;
7538     var D = Roo.lib.Dom;
7539
7540     
7541     
7542
7543     var fireDocReady = function(){
7544         if(!docReadyState){
7545             docReadyState = true;
7546             Roo.isReady = true;
7547             if(docReadyProcId){
7548                 clearInterval(docReadyProcId);
7549             }
7550             if(Roo.isGecko || Roo.isOpera) {
7551                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
7552             }
7553             if(Roo.isIE){
7554                 var defer = document.getElementById("ie-deferred-loader");
7555                 if(defer){
7556                     defer.onreadystatechange = null;
7557                     defer.parentNode.removeChild(defer);
7558                 }
7559             }
7560             if(docReadyEvent){
7561                 docReadyEvent.fire();
7562                 docReadyEvent.clearListeners();
7563             }
7564         }
7565     };
7566     
7567     var initDocReady = function(){
7568         docReadyEvent = new Roo.util.Event();
7569         if(Roo.isGecko || Roo.isOpera) {
7570             document.addEventListener("DOMContentLoaded", fireDocReady, false);
7571         }else if(Roo.isIE){
7572             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
7573             var defer = document.getElementById("ie-deferred-loader");
7574             defer.onreadystatechange = function(){
7575                 if(this.readyState == "complete"){
7576                     fireDocReady();
7577                 }
7578             };
7579         }else if(Roo.isSafari){ 
7580             docReadyProcId = setInterval(function(){
7581                 var rs = document.readyState;
7582                 if(rs == "complete") {
7583                     fireDocReady();     
7584                  }
7585             }, 10);
7586         }
7587         // no matter what, make sure it fires on load
7588         E.on(window, "load", fireDocReady);
7589     };
7590
7591     var createBuffered = function(h, o){
7592         var task = new Roo.util.DelayedTask(h);
7593         return function(e){
7594             // create new event object impl so new events don't wipe out properties
7595             e = new Roo.EventObjectImpl(e);
7596             task.delay(o.buffer, h, null, [e]);
7597         };
7598     };
7599
7600     var createSingle = function(h, el, ename, fn){
7601         return function(e){
7602             Roo.EventManager.removeListener(el, ename, fn);
7603             h(e);
7604         };
7605     };
7606
7607     var createDelayed = function(h, o){
7608         return function(e){
7609             // create new event object impl so new events don't wipe out properties
7610             e = new Roo.EventObjectImpl(e);
7611             setTimeout(function(){
7612                 h(e);
7613             }, o.delay || 10);
7614         };
7615     };
7616     var transitionEndVal = false;
7617     
7618     var transitionEnd = function()
7619     {
7620         if (transitionEndVal) {
7621             return transitionEndVal;
7622         }
7623         var el = document.createElement('div');
7624
7625         var transEndEventNames = {
7626             WebkitTransition : 'webkitTransitionEnd',
7627             MozTransition    : 'transitionend',
7628             OTransition      : 'oTransitionEnd otransitionend',
7629             transition       : 'transitionend'
7630         };
7631     
7632         for (var name in transEndEventNames) {
7633             if (el.style[name] !== undefined) {
7634                 transitionEndVal = transEndEventNames[name];
7635                 return  transitionEndVal ;
7636             }
7637         }
7638     }
7639     
7640   
7641
7642     var listen = function(element, ename, opt, fn, scope)
7643     {
7644         var o = (!opt || typeof opt == "boolean") ? {} : opt;
7645         fn = fn || o.fn; scope = scope || o.scope;
7646         var el = Roo.getDom(element);
7647         
7648         
7649         if(!el){
7650             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
7651         }
7652         
7653         if (ename == 'transitionend') {
7654             ename = transitionEnd();
7655         }
7656         var h = function(e){
7657             e = Roo.EventObject.setEvent(e);
7658             var t;
7659             if(o.delegate){
7660                 t = e.getTarget(o.delegate, el);
7661                 if(!t){
7662                     return;
7663                 }
7664             }else{
7665                 t = e.target;
7666             }
7667             if(o.stopEvent === true){
7668                 e.stopEvent();
7669             }
7670             if(o.preventDefault === true){
7671                e.preventDefault();
7672             }
7673             if(o.stopPropagation === true){
7674                 e.stopPropagation();
7675             }
7676
7677             if(o.normalized === false){
7678                 e = e.browserEvent;
7679             }
7680
7681             fn.call(scope || el, e, t, o);
7682         };
7683         if(o.delay){
7684             h = createDelayed(h, o);
7685         }
7686         if(o.single){
7687             h = createSingle(h, el, ename, fn);
7688         }
7689         if(o.buffer){
7690             h = createBuffered(h, o);
7691         }
7692         
7693         fn._handlers = fn._handlers || [];
7694         
7695         
7696         fn._handlers.push([Roo.id(el), ename, h]);
7697         
7698         
7699          
7700         E.on(el, ename, h); // this adds the actuall listener to the object..
7701         
7702         
7703         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
7704             el.addEventListener("DOMMouseScroll", h, false);
7705             E.on(window, 'unload', function(){
7706                 el.removeEventListener("DOMMouseScroll", h, false);
7707             });
7708         }
7709         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7710             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
7711         }
7712         return h;
7713     };
7714
7715     var stopListening = function(el, ename, fn){
7716         var id = Roo.id(el), hds = fn._handlers, hd = fn;
7717         if(hds){
7718             for(var i = 0, len = hds.length; i < len; i++){
7719                 var h = hds[i];
7720                 if(h[0] == id && h[1] == ename){
7721                     hd = h[2];
7722                     hds.splice(i, 1);
7723                     break;
7724                 }
7725             }
7726         }
7727         E.un(el, ename, hd);
7728         el = Roo.getDom(el);
7729         if(ename == "mousewheel" && el.addEventListener){
7730             el.removeEventListener("DOMMouseScroll", hd, false);
7731         }
7732         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7733             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
7734         }
7735     };
7736
7737     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
7738     
7739     var pub = {
7740         
7741         
7742         /** 
7743          * Fix for doc tools
7744          * @scope Roo.EventManager
7745          */
7746         
7747         
7748         /** 
7749          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
7750          * object with a Roo.EventObject
7751          * @param {Function} fn        The method the event invokes
7752          * @param {Object}   scope    An object that becomes the scope of the handler
7753          * @param {boolean}  override If true, the obj passed in becomes
7754          *                             the execution scope of the listener
7755          * @return {Function} The wrapped function
7756          * @deprecated
7757          */
7758         wrap : function(fn, scope, override){
7759             return function(e){
7760                 Roo.EventObject.setEvent(e);
7761                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
7762             };
7763         },
7764         
7765         /**
7766      * Appends an event handler to an element (shorthand for addListener)
7767      * @param {String/HTMLElement}   element        The html element or id to assign the
7768      * @param {String}   eventName The type of event to listen for
7769      * @param {Function} handler The method the event invokes
7770      * @param {Object}   scope (optional) The scope in which to execute the handler
7771      * function. The handler function's "this" context.
7772      * @param {Object}   options (optional) An object containing handler configuration
7773      * properties. This may contain any of the following properties:<ul>
7774      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7775      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7776      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7777      * <li>preventDefault {Boolean} True to prevent the default action</li>
7778      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7779      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7780      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7781      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7782      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7783      * by the specified number of milliseconds. If the event fires again within that time, the original
7784      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7785      * </ul><br>
7786      * <p>
7787      * <b>Combining Options</b><br>
7788      * Using the options argument, it is possible to combine different types of listeners:<br>
7789      * <br>
7790      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7791      * Code:<pre><code>
7792 el.on('click', this.onClick, this, {
7793     single: true,
7794     delay: 100,
7795     stopEvent : true,
7796     forumId: 4
7797 });</code></pre>
7798      * <p>
7799      * <b>Attaching multiple handlers in 1 call</b><br>
7800       * The method also allows for a single argument to be passed which is a config object containing properties
7801      * which specify multiple handlers.
7802      * <p>
7803      * Code:<pre><code>
7804 el.on({
7805     'click' : {
7806         fn: this.onClick
7807         scope: this,
7808         delay: 100
7809     },
7810     'mouseover' : {
7811         fn: this.onMouseOver
7812         scope: this
7813     },
7814     'mouseout' : {
7815         fn: this.onMouseOut
7816         scope: this
7817     }
7818 });</code></pre>
7819      * <p>
7820      * Or a shorthand syntax:<br>
7821      * Code:<pre><code>
7822 el.on({
7823     'click' : this.onClick,
7824     'mouseover' : this.onMouseOver,
7825     'mouseout' : this.onMouseOut
7826     scope: this
7827 });</code></pre>
7828      */
7829         addListener : function(element, eventName, fn, scope, options){
7830             if(typeof eventName == "object"){
7831                 var o = eventName;
7832                 for(var e in o){
7833                     if(propRe.test(e)){
7834                         continue;
7835                     }
7836                     if(typeof o[e] == "function"){
7837                         // shared options
7838                         listen(element, e, o, o[e], o.scope);
7839                     }else{
7840                         // individual options
7841                         listen(element, e, o[e]);
7842                     }
7843                 }
7844                 return;
7845             }
7846             return listen(element, eventName, options, fn, scope);
7847         },
7848         
7849         /**
7850          * Removes an event handler
7851          *
7852          * @param {String/HTMLElement}   element        The id or html element to remove the 
7853          *                             event from
7854          * @param {String}   eventName     The type of event
7855          * @param {Function} fn
7856          * @return {Boolean} True if a listener was actually removed
7857          */
7858         removeListener : function(element, eventName, fn){
7859             return stopListening(element, eventName, fn);
7860         },
7861         
7862         /**
7863          * Fires when the document is ready (before onload and before images are loaded). Can be 
7864          * accessed shorthanded Roo.onReady().
7865          * @param {Function} fn        The method the event invokes
7866          * @param {Object}   scope    An  object that becomes the scope of the handler
7867          * @param {boolean}  options
7868          */
7869         onDocumentReady : function(fn, scope, options){
7870             if(docReadyState){ // if it already fired
7871                 docReadyEvent.addListener(fn, scope, options);
7872                 docReadyEvent.fire();
7873                 docReadyEvent.clearListeners();
7874                 return;
7875             }
7876             if(!docReadyEvent){
7877                 initDocReady();
7878             }
7879             docReadyEvent.addListener(fn, scope, options);
7880         },
7881         
7882         /**
7883          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
7884          * @param {Function} fn        The method the event invokes
7885          * @param {Object}   scope    An object that becomes the scope of the handler
7886          * @param {boolean}  options
7887          */
7888         onWindowResize : function(fn, scope, options)
7889         {
7890             if(!resizeEvent){
7891                 resizeEvent = new Roo.util.Event();
7892                 resizeTask = new Roo.util.DelayedTask(function(){
7893                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7894                 });
7895                 E.on(window, "resize", function()
7896                 {
7897                     if (Roo.isIE) {
7898                         resizeTask.delay(50);
7899                     } else {
7900                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7901                     }
7902                 });
7903             }
7904             resizeEvent.addListener(fn, scope, options);
7905         },
7906
7907         /**
7908          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
7909          * @param {Function} fn        The method the event invokes
7910          * @param {Object}   scope    An object that becomes the scope of the handler
7911          * @param {boolean}  options
7912          */
7913         onTextResize : function(fn, scope, options){
7914             if(!textEvent){
7915                 textEvent = new Roo.util.Event();
7916                 var textEl = new Roo.Element(document.createElement('div'));
7917                 textEl.dom.className = 'x-text-resize';
7918                 textEl.dom.innerHTML = 'X';
7919                 textEl.appendTo(document.body);
7920                 textSize = textEl.dom.offsetHeight;
7921                 setInterval(function(){
7922                     if(textEl.dom.offsetHeight != textSize){
7923                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
7924                     }
7925                 }, this.textResizeInterval);
7926             }
7927             textEvent.addListener(fn, scope, options);
7928         },
7929
7930         /**
7931          * Removes the passed window resize listener.
7932          * @param {Function} fn        The method the event invokes
7933          * @param {Object}   scope    The scope of handler
7934          */
7935         removeResizeListener : function(fn, scope){
7936             if(resizeEvent){
7937                 resizeEvent.removeListener(fn, scope);
7938             }
7939         },
7940
7941         // private
7942         fireResize : function(){
7943             if(resizeEvent){
7944                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7945             }   
7946         },
7947         /**
7948          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
7949          */
7950         ieDeferSrc : false,
7951         /**
7952          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
7953          */
7954         textResizeInterval : 50
7955     };
7956     
7957     /**
7958      * Fix for doc tools
7959      * @scopeAlias pub=Roo.EventManager
7960      */
7961     
7962      /**
7963      * Appends an event handler to an element (shorthand for addListener)
7964      * @param {String/HTMLElement}   element        The html element or id to assign the
7965      * @param {String}   eventName The type of event to listen for
7966      * @param {Function} handler The method the event invokes
7967      * @param {Object}   scope (optional) The scope in which to execute the handler
7968      * function. The handler function's "this" context.
7969      * @param {Object}   options (optional) An object containing handler configuration
7970      * properties. This may contain any of the following properties:<ul>
7971      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7972      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7973      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7974      * <li>preventDefault {Boolean} True to prevent the default action</li>
7975      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7976      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7977      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7978      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7979      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7980      * by the specified number of milliseconds. If the event fires again within that time, the original
7981      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7982      * </ul><br>
7983      * <p>
7984      * <b>Combining Options</b><br>
7985      * Using the options argument, it is possible to combine different types of listeners:<br>
7986      * <br>
7987      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7988      * Code:<pre><code>
7989 el.on('click', this.onClick, this, {
7990     single: true,
7991     delay: 100,
7992     stopEvent : true,
7993     forumId: 4
7994 });</code></pre>
7995      * <p>
7996      * <b>Attaching multiple handlers in 1 call</b><br>
7997       * The method also allows for a single argument to be passed which is a config object containing properties
7998      * which specify multiple handlers.
7999      * <p>
8000      * Code:<pre><code>
8001 el.on({
8002     'click' : {
8003         fn: this.onClick
8004         scope: this,
8005         delay: 100
8006     },
8007     'mouseover' : {
8008         fn: this.onMouseOver
8009         scope: this
8010     },
8011     'mouseout' : {
8012         fn: this.onMouseOut
8013         scope: this
8014     }
8015 });</code></pre>
8016      * <p>
8017      * Or a shorthand syntax:<br>
8018      * Code:<pre><code>
8019 el.on({
8020     'click' : this.onClick,
8021     'mouseover' : this.onMouseOver,
8022     'mouseout' : this.onMouseOut
8023     scope: this
8024 });</code></pre>
8025      */
8026     pub.on = pub.addListener;
8027     pub.un = pub.removeListener;
8028
8029     pub.stoppedMouseDownEvent = new Roo.util.Event();
8030     return pub;
8031 }();
8032 /**
8033   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
8034   * @param {Function} fn        The method the event invokes
8035   * @param {Object}   scope    An  object that becomes the scope of the handler
8036   * @param {boolean}  override If true, the obj passed in becomes
8037   *                             the execution scope of the listener
8038   * @member Roo
8039   * @method onReady
8040  */
8041 Roo.onReady = Roo.EventManager.onDocumentReady;
8042
8043 Roo.onReady(function(){
8044     var bd = Roo.get(document.body);
8045     if(!bd){ return; }
8046
8047     var cls = [
8048             Roo.isIE ? "roo-ie"
8049             : Roo.isIE11 ? "roo-ie11"
8050             : Roo.isEdge ? "roo-edge"
8051             : Roo.isGecko ? "roo-gecko"
8052             : Roo.isOpera ? "roo-opera"
8053             : Roo.isSafari ? "roo-safari" : ""];
8054
8055     if(Roo.isMac){
8056         cls.push("roo-mac");
8057     }
8058     if(Roo.isLinux){
8059         cls.push("roo-linux");
8060     }
8061     if(Roo.isIOS){
8062         cls.push("roo-ios");
8063     }
8064     if(Roo.isTouch){
8065         cls.push("roo-touch");
8066     }
8067     if(Roo.isBorderBox){
8068         cls.push('roo-border-box');
8069     }
8070     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
8071         var p = bd.dom.parentNode;
8072         if(p){
8073             p.className += ' roo-strict';
8074         }
8075     }
8076     bd.addClass(cls.join(' '));
8077 });
8078
8079 /**
8080  * @class Roo.EventObject
8081  * EventObject exposes the Yahoo! UI Event functionality directly on the object
8082  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
8083  * Example:
8084  * <pre><code>
8085  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
8086     e.preventDefault();
8087     var target = e.getTarget();
8088     ...
8089  }
8090  var myDiv = Roo.get("myDiv");
8091  myDiv.on("click", handleClick);
8092  //or
8093  Roo.EventManager.on("myDiv", 'click', handleClick);
8094  Roo.EventManager.addListener("myDiv", 'click', handleClick);
8095  </code></pre>
8096  * @static
8097  */
8098 Roo.EventObject = function(){
8099     
8100     var E = Roo.lib.Event;
8101     
8102     // safari keypress events for special keys return bad keycodes
8103     var safariKeys = {
8104         63234 : 37, // left
8105         63235 : 39, // right
8106         63232 : 38, // up
8107         63233 : 40, // down
8108         63276 : 33, // page up
8109         63277 : 34, // page down
8110         63272 : 46, // delete
8111         63273 : 36, // home
8112         63275 : 35  // end
8113     };
8114
8115     // normalize button clicks
8116     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
8117                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
8118
8119     Roo.EventObjectImpl = function(e){
8120         if(e){
8121             this.setEvent(e.browserEvent || e);
8122         }
8123     };
8124     Roo.EventObjectImpl.prototype = {
8125         /**
8126          * Used to fix doc tools.
8127          * @scope Roo.EventObject.prototype
8128          */
8129             
8130
8131         
8132         
8133         /** The normal browser event */
8134         browserEvent : null,
8135         /** The button pressed in a mouse event */
8136         button : -1,
8137         /** True if the shift key was down during the event */
8138         shiftKey : false,
8139         /** True if the control key was down during the event */
8140         ctrlKey : false,
8141         /** True if the alt key was down during the event */
8142         altKey : false,
8143
8144         /** Key constant 
8145         * @type Number */
8146         BACKSPACE : 8,
8147         /** Key constant 
8148         * @type Number */
8149         TAB : 9,
8150         /** Key constant 
8151         * @type Number */
8152         RETURN : 13,
8153         /** Key constant 
8154         * @type Number */
8155         ENTER : 13,
8156         /** Key constant 
8157         * @type Number */
8158         SHIFT : 16,
8159         /** Key constant 
8160         * @type Number */
8161         CONTROL : 17,
8162         /** Key constant 
8163         * @type Number */
8164         ESC : 27,
8165         /** Key constant 
8166         * @type Number */
8167         SPACE : 32,
8168         /** Key constant 
8169         * @type Number */
8170         PAGEUP : 33,
8171         /** Key constant 
8172         * @type Number */
8173         PAGEDOWN : 34,
8174         /** Key constant 
8175         * @type Number */
8176         END : 35,
8177         /** Key constant 
8178         * @type Number */
8179         HOME : 36,
8180         /** Key constant 
8181         * @type Number */
8182         LEFT : 37,
8183         /** Key constant 
8184         * @type Number */
8185         UP : 38,
8186         /** Key constant 
8187         * @type Number */
8188         RIGHT : 39,
8189         /** Key constant 
8190         * @type Number */
8191         DOWN : 40,
8192         /** Key constant 
8193         * @type Number */
8194         DELETE : 46,
8195         /** Key constant 
8196         * @type Number */
8197         F5 : 116,
8198
8199            /** @private */
8200         setEvent : function(e){
8201             if(e == this || (e && e.browserEvent)){ // already wrapped
8202                 return e;
8203             }
8204             this.browserEvent = e;
8205             if(e){
8206                 // normalize buttons
8207                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
8208                 if(e.type == 'click' && this.button == -1){
8209                     this.button = 0;
8210                 }
8211                 this.type = e.type;
8212                 this.shiftKey = e.shiftKey;
8213                 // mac metaKey behaves like ctrlKey
8214                 this.ctrlKey = e.ctrlKey || e.metaKey;
8215                 this.altKey = e.altKey;
8216                 // in getKey these will be normalized for the mac
8217                 this.keyCode = e.keyCode;
8218                 // keyup warnings on firefox.
8219                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
8220                 // cache the target for the delayed and or buffered events
8221                 this.target = E.getTarget(e);
8222                 // same for XY
8223                 this.xy = E.getXY(e);
8224             }else{
8225                 this.button = -1;
8226                 this.shiftKey = false;
8227                 this.ctrlKey = false;
8228                 this.altKey = false;
8229                 this.keyCode = 0;
8230                 this.charCode =0;
8231                 this.target = null;
8232                 this.xy = [0, 0];
8233             }
8234             return this;
8235         },
8236
8237         /**
8238          * Stop the event (preventDefault and stopPropagation)
8239          */
8240         stopEvent : function(){
8241             if(this.browserEvent){
8242                 if(this.browserEvent.type == 'mousedown'){
8243                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8244                 }
8245                 E.stopEvent(this.browserEvent);
8246             }
8247         },
8248
8249         /**
8250          * Prevents the browsers default handling of the event.
8251          */
8252         preventDefault : function(){
8253             if(this.browserEvent){
8254                 E.preventDefault(this.browserEvent);
8255             }
8256         },
8257
8258         /** @private */
8259         isNavKeyPress : function(){
8260             var k = this.keyCode;
8261             k = Roo.isSafari ? (safariKeys[k] || k) : k;
8262             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
8263         },
8264
8265         isSpecialKey : function(){
8266             var k = this.keyCode;
8267             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
8268             (k == 16) || (k == 17) ||
8269             (k >= 18 && k <= 20) ||
8270             (k >= 33 && k <= 35) ||
8271             (k >= 36 && k <= 39) ||
8272             (k >= 44 && k <= 45);
8273         },
8274         /**
8275          * Cancels bubbling of the event.
8276          */
8277         stopPropagation : function(){
8278             if(this.browserEvent){
8279                 if(this.type == 'mousedown'){
8280                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8281                 }
8282                 E.stopPropagation(this.browserEvent);
8283             }
8284         },
8285
8286         /**
8287          * Gets the key code for the event.
8288          * @return {Number}
8289          */
8290         getCharCode : function(){
8291             return this.charCode || this.keyCode;
8292         },
8293
8294         /**
8295          * Returns a normalized keyCode for the event.
8296          * @return {Number} The key code
8297          */
8298         getKey : function(){
8299             var k = this.keyCode || this.charCode;
8300             return Roo.isSafari ? (safariKeys[k] || k) : k;
8301         },
8302
8303         /**
8304          * Gets the x coordinate of the event.
8305          * @return {Number}
8306          */
8307         getPageX : function(){
8308             return this.xy[0];
8309         },
8310
8311         /**
8312          * Gets the y coordinate of the event.
8313          * @return {Number}
8314          */
8315         getPageY : function(){
8316             return this.xy[1];
8317         },
8318
8319         /**
8320          * Gets the time of the event.
8321          * @return {Number}
8322          */
8323         getTime : function(){
8324             if(this.browserEvent){
8325                 return E.getTime(this.browserEvent);
8326             }
8327             return null;
8328         },
8329
8330         /**
8331          * Gets the page coordinates of the event.
8332          * @return {Array} The xy values like [x, y]
8333          */
8334         getXY : function(){
8335             return this.xy;
8336         },
8337
8338         /**
8339          * Gets the target for the event.
8340          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
8341          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8342                 search as a number or element (defaults to 10 || document.body)
8343          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8344          * @return {HTMLelement}
8345          */
8346         getTarget : function(selector, maxDepth, returnEl){
8347             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
8348         },
8349         /**
8350          * Gets the related target.
8351          * @return {HTMLElement}
8352          */
8353         getRelatedTarget : function(){
8354             if(this.browserEvent){
8355                 return E.getRelatedTarget(this.browserEvent);
8356             }
8357             return null;
8358         },
8359
8360         /**
8361          * Normalizes mouse wheel delta across browsers
8362          * @return {Number} The delta
8363          */
8364         getWheelDelta : function(){
8365             var e = this.browserEvent;
8366             var delta = 0;
8367             if(e.wheelDelta){ /* IE/Opera. */
8368                 delta = e.wheelDelta/120;
8369             }else if(e.detail){ /* Mozilla case. */
8370                 delta = -e.detail/3;
8371             }
8372             return delta;
8373         },
8374
8375         /**
8376          * Returns true if the control, meta, shift or alt key was pressed during this event.
8377          * @return {Boolean}
8378          */
8379         hasModifier : function(){
8380             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
8381         },
8382
8383         /**
8384          * Returns true if the target of this event equals el or is a child of el
8385          * @param {String/HTMLElement/Element} el
8386          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
8387          * @return {Boolean}
8388          */
8389         within : function(el, related){
8390             var t = this[related ? "getRelatedTarget" : "getTarget"]();
8391             return t && Roo.fly(el).contains(t);
8392         },
8393
8394         getPoint : function(){
8395             return new Roo.lib.Point(this.xy[0], this.xy[1]);
8396         }
8397     };
8398
8399     return new Roo.EventObjectImpl();
8400 }();
8401             
8402     /*
8403  * Based on:
8404  * Ext JS Library 1.1.1
8405  * Copyright(c) 2006-2007, Ext JS, LLC.
8406  *
8407  * Originally Released Under LGPL - original licence link has changed is not relivant.
8408  *
8409  * Fork - LGPL
8410  * <script type="text/javascript">
8411  */
8412
8413  
8414 // was in Composite Element!??!?!
8415  
8416 (function(){
8417     var D = Roo.lib.Dom;
8418     var E = Roo.lib.Event;
8419     var A = Roo.lib.Anim;
8420
8421     // local style camelizing for speed
8422     var propCache = {};
8423     var camelRe = /(-[a-z])/gi;
8424     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
8425     var view = document.defaultView;
8426
8427 /**
8428  * @class Roo.Element
8429  * Represents an Element in the DOM.<br><br>
8430  * Usage:<br>
8431 <pre><code>
8432 var el = Roo.get("my-div");
8433
8434 // or with getEl
8435 var el = getEl("my-div");
8436
8437 // or with a DOM element
8438 var el = Roo.get(myDivElement);
8439 </code></pre>
8440  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
8441  * each call instead of constructing a new one.<br><br>
8442  * <b>Animations</b><br />
8443  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
8444  * should either be a boolean (true) or an object literal with animation options. The animation options are:
8445 <pre>
8446 Option    Default   Description
8447 --------- --------  ---------------------------------------------
8448 duration  .35       The duration of the animation in seconds
8449 easing    easeOut   The YUI easing method
8450 callback  none      A function to execute when the anim completes
8451 scope     this      The scope (this) of the callback function
8452 </pre>
8453 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
8454 * manipulate the animation. Here's an example:
8455 <pre><code>
8456 var el = Roo.get("my-div");
8457
8458 // no animation
8459 el.setWidth(100);
8460
8461 // default animation
8462 el.setWidth(100, true);
8463
8464 // animation with some options set
8465 el.setWidth(100, {
8466     duration: 1,
8467     callback: this.foo,
8468     scope: this
8469 });
8470
8471 // using the "anim" property to get the Anim object
8472 var opt = {
8473     duration: 1,
8474     callback: this.foo,
8475     scope: this
8476 };
8477 el.setWidth(100, opt);
8478 ...
8479 if(opt.anim.isAnimated()){
8480     opt.anim.stop();
8481 }
8482 </code></pre>
8483 * <b> Composite (Collections of) Elements</b><br />
8484  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
8485  * @constructor Create a new Element directly.
8486  * @param {String/HTMLElement} element
8487  * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class).
8488  */
8489     Roo.Element = function(element, forceNew)
8490     {
8491         var dom = typeof element == "string" ?
8492                 document.getElementById(element) : element;
8493         
8494         this.listeners = {};
8495         
8496         if(!dom){ // invalid id/element
8497             return null;
8498         }
8499         var id = dom.id;
8500         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
8501             return Roo.Element.cache[id];
8502         }
8503
8504         /**
8505          * The DOM element
8506          * @type HTMLElement
8507          */
8508         this.dom = dom;
8509
8510         /**
8511          * The DOM element ID
8512          * @type String
8513          */
8514         this.id = id || Roo.id(dom);
8515         
8516         return this; // assumed for cctor?
8517     };
8518
8519     var El = Roo.Element;
8520
8521     El.prototype = {
8522         /**
8523          * The element's default display mode  (defaults to "") 
8524          * @type String
8525          */
8526         originalDisplay : "",
8527
8528         
8529         // note this is overridden in BS version..
8530         visibilityMode : 1, 
8531         /**
8532          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
8533          * @type String
8534          */
8535         defaultUnit : "px",
8536         
8537         /**
8538          * Sets the element's visibility mode. When setVisible() is called it
8539          * will use this to determine whether to set the visibility or the display property.
8540          * @param visMode Element.VISIBILITY or Element.DISPLAY
8541          * @return {Roo.Element} this
8542          */
8543         setVisibilityMode : function(visMode){
8544             this.visibilityMode = visMode;
8545             return this;
8546         },
8547         /**
8548          * Convenience method for setVisibilityMode(Element.DISPLAY)
8549          * @param {String} display (optional) What to set display to when visible
8550          * @return {Roo.Element} this
8551          */
8552         enableDisplayMode : function(display){
8553             this.setVisibilityMode(El.DISPLAY);
8554             if(typeof display != "undefined") { this.originalDisplay = display; }
8555             return this;
8556         },
8557
8558         /**
8559          * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
8560          * @param {String} selector The simple selector to test
8561          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8562                 search as a number or element (defaults to 10 || document.body)
8563          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8564          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8565          */
8566         findParent : function(simpleSelector, maxDepth, returnEl){
8567             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
8568             maxDepth = maxDepth || 50;
8569             if(typeof maxDepth != "number"){
8570                 stopEl = Roo.getDom(maxDepth);
8571                 maxDepth = 10;
8572             }
8573             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
8574                 if(dq.is(p, simpleSelector)){
8575                     return returnEl ? Roo.get(p) : p;
8576                 }
8577                 depth++;
8578                 p = p.parentNode;
8579             }
8580             return null;
8581         },
8582
8583
8584         /**
8585          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
8586          * @param {String} selector The simple selector to test
8587          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8588                 search as a number or element (defaults to 10 || document.body)
8589          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8590          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8591          */
8592         findParentNode : function(simpleSelector, maxDepth, returnEl){
8593             var p = Roo.fly(this.dom.parentNode, '_internal');
8594             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
8595         },
8596         
8597         /**
8598          * Looks at  the scrollable parent element
8599          */
8600         findScrollableParent : function()
8601         {
8602             var overflowRegex = /(auto|scroll)/;
8603             
8604             if(this.getStyle('position') === 'fixed'){
8605                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8606             }
8607             
8608             var excludeStaticParent = this.getStyle('position') === "absolute";
8609             
8610             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
8611                 
8612                 if (excludeStaticParent && parent.getStyle('position') === "static") {
8613                     continue;
8614                 }
8615                 
8616                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
8617                     return parent;
8618                 }
8619                 
8620                 if(parent.dom.nodeName.toLowerCase() == 'body'){
8621                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8622                 }
8623             }
8624             
8625             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8626         },
8627
8628         /**
8629          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
8630          * This is a shortcut for findParentNode() that always returns an Roo.Element.
8631          * @param {String} selector The simple selector to test
8632          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8633                 search as a number or element (defaults to 10 || document.body)
8634          * @return {Roo.Element} The matching DOM node (or null if no match was found)
8635          */
8636         up : function(simpleSelector, maxDepth){
8637             return this.findParentNode(simpleSelector, maxDepth, true);
8638         },
8639
8640
8641
8642         /**
8643          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
8644          * @param {String} selector The simple selector to test
8645          * @return {Boolean} True if this element matches the selector, else false
8646          */
8647         is : function(simpleSelector){
8648             return Roo.DomQuery.is(this.dom, simpleSelector);
8649         },
8650
8651         /**
8652          * Perform animation on this element.
8653          * @param {Object} args The YUI animation control args
8654          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
8655          * @param {Function} onComplete (optional) Function to call when animation completes
8656          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
8657          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
8658          * @return {Roo.Element} this
8659          */
8660         animate : function(args, duration, onComplete, easing, animType){
8661             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
8662             return this;
8663         },
8664
8665         /*
8666          * @private Internal animation call
8667          */
8668         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
8669             animType = animType || 'run';
8670             opt = opt || {};
8671             var anim = Roo.lib.Anim[animType](
8672                 this.dom, args,
8673                 (opt.duration || defaultDur) || .35,
8674                 (opt.easing || defaultEase) || 'easeOut',
8675                 function(){
8676                     Roo.callback(cb, this);
8677                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
8678                 },
8679                 this
8680             );
8681             opt.anim = anim;
8682             return anim;
8683         },
8684
8685         // private legacy anim prep
8686         preanim : function(a, i){
8687             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
8688         },
8689
8690         /**
8691          * Removes worthless text nodes
8692          * @param {Boolean} forceReclean (optional) By default the element
8693          * keeps track if it has been cleaned already so
8694          * you can call this over and over. However, if you update the element and
8695          * need to force a reclean, you can pass true.
8696          */
8697         clean : function(forceReclean){
8698             if(this.isCleaned && forceReclean !== true){
8699                 return this;
8700             }
8701             var ns = /\S/;
8702             var d = this.dom, n = d.firstChild, ni = -1;
8703             while(n){
8704                 var nx = n.nextSibling;
8705                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
8706                     d.removeChild(n);
8707                 }else{
8708                     n.nodeIndex = ++ni;
8709                 }
8710                 n = nx;
8711             }
8712             this.isCleaned = true;
8713             return this;
8714         },
8715
8716         // private
8717         calcOffsetsTo : function(el){
8718             el = Roo.get(el);
8719             var d = el.dom;
8720             var restorePos = false;
8721             if(el.getStyle('position') == 'static'){
8722                 el.position('relative');
8723                 restorePos = true;
8724             }
8725             var x = 0, y =0;
8726             var op = this.dom;
8727             while(op && op != d && op.tagName != 'HTML'){
8728                 x+= op.offsetLeft;
8729                 y+= op.offsetTop;
8730                 op = op.offsetParent;
8731             }
8732             if(restorePos){
8733                 el.position('static');
8734             }
8735             return [x, y];
8736         },
8737
8738         /**
8739          * Scrolls this element into view within the passed container.
8740          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
8741          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
8742          * @return {Roo.Element} this
8743          */
8744         scrollIntoView : function(container, hscroll){
8745             var c = Roo.getDom(container) || document.body;
8746             var el = this.dom;
8747
8748             var o = this.calcOffsetsTo(c),
8749                 l = o[0],
8750                 t = o[1],
8751                 b = t+el.offsetHeight,
8752                 r = l+el.offsetWidth;
8753
8754             var ch = c.clientHeight;
8755             var ct = parseInt(c.scrollTop, 10);
8756             var cl = parseInt(c.scrollLeft, 10);
8757             var cb = ct + ch;
8758             var cr = cl + c.clientWidth;
8759
8760             if(t < ct){
8761                 c.scrollTop = t;
8762             }else if(b > cb){
8763                 c.scrollTop = b-ch;
8764             }
8765
8766             if(hscroll !== false){
8767                 if(l < cl){
8768                     c.scrollLeft = l;
8769                 }else if(r > cr){
8770                     c.scrollLeft = r-c.clientWidth;
8771                 }
8772             }
8773             return this;
8774         },
8775
8776         // private
8777         scrollChildIntoView : function(child, hscroll){
8778             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
8779         },
8780
8781         /**
8782          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
8783          * the new height may not be available immediately.
8784          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
8785          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
8786          * @param {Function} onComplete (optional) Function to call when animation completes
8787          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
8788          * @return {Roo.Element} this
8789          */
8790         autoHeight : function(animate, duration, onComplete, easing){
8791             var oldHeight = this.getHeight();
8792             this.clip();
8793             this.setHeight(1); // force clipping
8794             setTimeout(function(){
8795                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
8796                 if(!animate){
8797                     this.setHeight(height);
8798                     this.unclip();
8799                     if(typeof onComplete == "function"){
8800                         onComplete();
8801                     }
8802                 }else{
8803                     this.setHeight(oldHeight); // restore original height
8804                     this.setHeight(height, animate, duration, function(){
8805                         this.unclip();
8806                         if(typeof onComplete == "function") { onComplete(); }
8807                     }.createDelegate(this), easing);
8808                 }
8809             }.createDelegate(this), 0);
8810             return this;
8811         },
8812
8813         /**
8814          * Returns true if this element is an ancestor of the passed element
8815          * @param {HTMLElement/String} el The element to check
8816          * @return {Boolean} True if this element is an ancestor of el, else false
8817          */
8818         contains : function(el){
8819             if(!el){return false;}
8820             return D.isAncestor(this.dom, el.dom ? el.dom : el);
8821         },
8822
8823         /**
8824          * Checks whether the element is currently visible using both visibility and display properties.
8825          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
8826          * @return {Boolean} True if the element is currently visible, else false
8827          */
8828         isVisible : function(deep) {
8829             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
8830             if(deep !== true || !vis){
8831                 return vis;
8832             }
8833             var p = this.dom.parentNode;
8834             while(p && p.tagName.toLowerCase() != "body"){
8835                 if(!Roo.fly(p, '_isVisible').isVisible()){
8836                     return false;
8837                 }
8838                 p = p.parentNode;
8839             }
8840             return true;
8841         },
8842
8843         /**
8844          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
8845          * @param {String} selector The CSS selector
8846          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
8847          * @return {CompositeElement/CompositeElementLite} The composite element
8848          */
8849         select : function(selector, unique){
8850             return El.select(selector, unique, this.dom);
8851         },
8852
8853         /**
8854          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
8855          * @param {String} selector The CSS selector
8856          * @return {Array} An array of the matched nodes
8857          */
8858         query : function(selector, unique){
8859             return Roo.DomQuery.select(selector, this.dom);
8860         },
8861
8862         /**
8863          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
8864          * @param {String} selector The CSS selector
8865          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8866          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8867          */
8868         child : function(selector, returnDom){
8869             var n = Roo.DomQuery.selectNode(selector, this.dom);
8870             return returnDom ? n : Roo.get(n);
8871         },
8872
8873         /**
8874          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
8875          * @param {String} selector The CSS selector
8876          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8877          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8878          */
8879         down : function(selector, returnDom){
8880             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
8881             return returnDom ? n : Roo.get(n);
8882         },
8883
8884         /**
8885          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
8886          * @param {String} group The group the DD object is member of
8887          * @param {Object} config The DD config object
8888          * @param {Object} overrides An object containing methods to override/implement on the DD object
8889          * @return {Roo.dd.DD} The DD object
8890          */
8891         initDD : function(group, config, overrides){
8892             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
8893             return Roo.apply(dd, overrides);
8894         },
8895
8896         /**
8897          * Initializes a {@link Roo.dd.DDProxy} object for this element.
8898          * @param {String} group The group the DDProxy object is member of
8899          * @param {Object} config The DDProxy config object
8900          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
8901          * @return {Roo.dd.DDProxy} The DDProxy object
8902          */
8903         initDDProxy : function(group, config, overrides){
8904             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
8905             return Roo.apply(dd, overrides);
8906         },
8907
8908         /**
8909          * Initializes a {@link Roo.dd.DDTarget} object for this element.
8910          * @param {String} group The group the DDTarget object is member of
8911          * @param {Object} config The DDTarget config object
8912          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
8913          * @return {Roo.dd.DDTarget} The DDTarget object
8914          */
8915         initDDTarget : function(group, config, overrides){
8916             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
8917             return Roo.apply(dd, overrides);
8918         },
8919
8920         /**
8921          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
8922          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
8923          * @param {Boolean} visible Whether the element is visible
8924          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8925          * @return {Roo.Element} this
8926          */
8927          setVisible : function(visible, animate){
8928             if(!animate || !A){
8929                 if(this.visibilityMode == El.DISPLAY){
8930                     this.setDisplayed(visible);
8931                 }else{
8932                     this.fixDisplay();
8933                     this.dom.style.visibility = visible ? "visible" : "hidden";
8934                 }
8935             }else{
8936                 // closure for composites
8937                 var dom = this.dom;
8938                 var visMode = this.visibilityMode;
8939                 if(visible){
8940                     this.setOpacity(.01);
8941                     this.setVisible(true);
8942                 }
8943                 this.anim({opacity: { to: (visible?1:0) }},
8944                       this.preanim(arguments, 1),
8945                       null, .35, 'easeIn', function(){
8946                          if(!visible){
8947                              if(visMode == El.DISPLAY){
8948                                  dom.style.display = "none";
8949                              }else{
8950                                  dom.style.visibility = "hidden";
8951                              }
8952                              Roo.get(dom).setOpacity(1);
8953                          }
8954                      });
8955             }
8956             return this;
8957         },
8958
8959         /**
8960          * Returns true if display is not "none"
8961          * @return {Boolean}
8962          */
8963         isDisplayed : function() {
8964             return this.getStyle("display") != "none";
8965         },
8966
8967         /**
8968          * Toggles the element's visibility or display, depending on visibility mode.
8969          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8970          * @return {Roo.Element} this
8971          */
8972         toggle : function(animate){
8973             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
8974             return this;
8975         },
8976
8977         /**
8978          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
8979          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
8980          * @return {Roo.Element} this
8981          */
8982         setDisplayed : function(value) {
8983             if(typeof value == "boolean"){
8984                value = value ? this.originalDisplay : "none";
8985             }
8986             this.setStyle("display", value);
8987             return this;
8988         },
8989
8990         /**
8991          * Tries to focus the element. Any exceptions are caught and ignored.
8992          * @return {Roo.Element} this
8993          */
8994         focus : function() {
8995             try{
8996                 this.dom.focus();
8997             }catch(e){}
8998             return this;
8999         },
9000
9001         /**
9002          * Tries to blur the element. Any exceptions are caught and ignored.
9003          * @return {Roo.Element} this
9004          */
9005         blur : function() {
9006             try{
9007                 this.dom.blur();
9008             }catch(e){}
9009             return this;
9010         },
9011
9012         /**
9013          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
9014          * @param {String/Array} className The CSS class to add, or an array of classes
9015          * @return {Roo.Element} this
9016          */
9017         addClass : function(className){
9018             if(className instanceof Array){
9019                 for(var i = 0, len = className.length; i < len; i++) {
9020                     this.addClass(className[i]);
9021                 }
9022             }else{
9023                 if(className && !this.hasClass(className)){
9024                     if (this.dom instanceof SVGElement) {
9025                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
9026                     } else {
9027                         this.dom.className = this.dom.className + " " + className;
9028                     }
9029                 }
9030             }
9031             return this;
9032         },
9033
9034         /**
9035          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
9036          * @param {String/Array} className The CSS class to add, or an array of classes
9037          * @return {Roo.Element} this
9038          */
9039         radioClass : function(className){
9040             var siblings = this.dom.parentNode.childNodes;
9041             for(var i = 0; i < siblings.length; i++) {
9042                 var s = siblings[i];
9043                 if(s.nodeType == 1){
9044                     Roo.get(s).removeClass(className);
9045                 }
9046             }
9047             this.addClass(className);
9048             return this;
9049         },
9050
9051         /**
9052          * Removes one or more CSS classes from the element.
9053          * @param {String/Array} className The CSS class to remove, or an array of classes
9054          * @return {Roo.Element} this
9055          */
9056         removeClass : function(className){
9057             
9058             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
9059             if(!className || !cn){
9060                 return this;
9061             }
9062             if(className instanceof Array){
9063                 for(var i = 0, len = className.length; i < len; i++) {
9064                     this.removeClass(className[i]);
9065                 }
9066             }else{
9067                 if(this.hasClass(className)){
9068                     var re = this.classReCache[className];
9069                     if (!re) {
9070                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
9071                        this.classReCache[className] = re;
9072                     }
9073                     if (this.dom instanceof SVGElement) {
9074                         this.dom.className.baseVal = cn.replace(re, " ");
9075                     } else {
9076                         this.dom.className = cn.replace(re, " ");
9077                     }
9078                 }
9079             }
9080             return this;
9081         },
9082
9083         // private
9084         classReCache: {},
9085
9086         /**
9087          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
9088          * @param {String} className The CSS class to toggle
9089          * @return {Roo.Element} this
9090          */
9091         toggleClass : function(className){
9092             if(this.hasClass(className)){
9093                 this.removeClass(className);
9094             }else{
9095                 this.addClass(className);
9096             }
9097             return this;
9098         },
9099
9100         /**
9101          * Checks if the specified CSS class exists on this element's DOM node.
9102          * @param {String} className The CSS class to check for
9103          * @return {Boolean} True if the class exists, else false
9104          */
9105         hasClass : function(className){
9106             if (this.dom instanceof SVGElement) {
9107                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
9108             } 
9109             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
9110         },
9111
9112         /**
9113          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
9114          * @param {String} oldClassName The CSS class to replace
9115          * @param {String} newClassName The replacement CSS class
9116          * @return {Roo.Element} this
9117          */
9118         replaceClass : function(oldClassName, newClassName){
9119             this.removeClass(oldClassName);
9120             this.addClass(newClassName);
9121             return this;
9122         },
9123
9124         /**
9125          * Returns an object with properties matching the styles requested.
9126          * For example, el.getStyles('color', 'font-size', 'width') might return
9127          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
9128          * @param {String} style1 A style name
9129          * @param {String} style2 A style name
9130          * @param {String} etc.
9131          * @return {Object} The style object
9132          */
9133         getStyles : function(){
9134             var a = arguments, len = a.length, r = {};
9135             for(var i = 0; i < len; i++){
9136                 r[a[i]] = this.getStyle(a[i]);
9137             }
9138             return r;
9139         },
9140
9141         /**
9142          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
9143          * @param {String} property The style property whose value is returned.
9144          * @return {String} The current value of the style property for this element.
9145          */
9146         getStyle : function(){
9147             return view && view.getComputedStyle ?
9148                 function(prop){
9149                     var el = this.dom, v, cs, camel;
9150                     if(prop == 'float'){
9151                         prop = "cssFloat";
9152                     }
9153                     if(el.style && (v = el.style[prop])){
9154                         return v;
9155                     }
9156                     if(cs = view.getComputedStyle(el, "")){
9157                         if(!(camel = propCache[prop])){
9158                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
9159                         }
9160                         return cs[camel];
9161                     }
9162                     return null;
9163                 } :
9164                 function(prop){
9165                     var el = this.dom, v, cs, camel;
9166                     if(prop == 'opacity'){
9167                         if(typeof el.style.filter == 'string'){
9168                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
9169                             if(m){
9170                                 var fv = parseFloat(m[1]);
9171                                 if(!isNaN(fv)){
9172                                     return fv ? fv / 100 : 0;
9173                                 }
9174                             }
9175                         }
9176                         return 1;
9177                     }else if(prop == 'float'){
9178                         prop = "styleFloat";
9179                     }
9180                     if(!(camel = propCache[prop])){
9181                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
9182                     }
9183                     if(v = el.style[camel]){
9184                         return v;
9185                     }
9186                     if(cs = el.currentStyle){
9187                         return cs[camel];
9188                     }
9189                     return null;
9190                 };
9191         }(),
9192
9193         /**
9194          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
9195          * @param {String/Object} property The style property to be set, or an object of multiple styles.
9196          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
9197          * @return {Roo.Element} this
9198          */
9199         setStyle : function(prop, value){
9200             if(typeof prop == "string"){
9201                 
9202                 if (prop == 'float') {
9203                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
9204                     return this;
9205                 }
9206                 
9207                 var camel;
9208                 if(!(camel = propCache[prop])){
9209                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
9210                 }
9211                 
9212                 if(camel == 'opacity') {
9213                     this.setOpacity(value);
9214                 }else{
9215                     this.dom.style[camel] = value;
9216                 }
9217             }else{
9218                 for(var style in prop){
9219                     if(typeof prop[style] != "function"){
9220                        this.setStyle(style, prop[style]);
9221                     }
9222                 }
9223             }
9224             return this;
9225         },
9226
9227         /**
9228          * More flexible version of {@link #setStyle} for setting style properties.
9229          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
9230          * a function which returns such a specification.
9231          * @return {Roo.Element} this
9232          */
9233         applyStyles : function(style){
9234             Roo.DomHelper.applyStyles(this.dom, style);
9235             return this;
9236         },
9237
9238         /**
9239           * Gets the current X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9240           * @return {Number} The X position of the element
9241           */
9242         getX : function(){
9243             return D.getX(this.dom);
9244         },
9245
9246         /**
9247           * Gets the current Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9248           * @return {Number} The Y position of the element
9249           */
9250         getY : function(){
9251             return D.getY(this.dom);
9252         },
9253
9254         /**
9255           * Gets the current position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9256           * @return {Array} The XY position of the element
9257           */
9258         getXY : function(){
9259             return D.getXY(this.dom);
9260         },
9261
9262         /**
9263          * Sets the X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9264          * @param {Number} The X position of the element
9265          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9266          * @return {Roo.Element} this
9267          */
9268         setX : function(x, animate){
9269             if(!animate || !A){
9270                 D.setX(this.dom, x);
9271             }else{
9272                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
9273             }
9274             return this;
9275         },
9276
9277         /**
9278          * Sets the Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9279          * @param {Number} The Y position of the element
9280          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9281          * @return {Roo.Element} this
9282          */
9283         setY : function(y, animate){
9284             if(!animate || !A){
9285                 D.setY(this.dom, y);
9286             }else{
9287                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
9288             }
9289             return this;
9290         },
9291
9292         /**
9293          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
9294          * @param {String} left The left CSS property value
9295          * @return {Roo.Element} this
9296          */
9297         setLeft : function(left){
9298             this.setStyle("left", this.addUnits(left));
9299             return this;
9300         },
9301
9302         /**
9303          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
9304          * @param {String} top The top CSS property value
9305          * @return {Roo.Element} this
9306          */
9307         setTop : function(top){
9308             this.setStyle("top", this.addUnits(top));
9309             return this;
9310         },
9311
9312         /**
9313          * Sets the element's CSS right style.
9314          * @param {String} right The right CSS property value
9315          * @return {Roo.Element} this
9316          */
9317         setRight : function(right){
9318             this.setStyle("right", this.addUnits(right));
9319             return this;
9320         },
9321
9322         /**
9323          * Sets the element's CSS bottom style.
9324          * @param {String} bottom The bottom CSS property value
9325          * @return {Roo.Element} this
9326          */
9327         setBottom : function(bottom){
9328             this.setStyle("bottom", this.addUnits(bottom));
9329             return this;
9330         },
9331
9332         /**
9333          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9334          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9335          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
9336          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9337          * @return {Roo.Element} this
9338          */
9339         setXY : function(pos, animate){
9340             if(!animate || !A){
9341                 D.setXY(this.dom, pos);
9342             }else{
9343                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
9344             }
9345             return this;
9346         },
9347
9348         /**
9349          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9350          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9351          * @param {Number} x X value for new position (coordinates are page-based)
9352          * @param {Number} y Y value for new position (coordinates are page-based)
9353          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9354          * @return {Roo.Element} this
9355          */
9356         setLocation : function(x, y, animate){
9357             this.setXY([x, y], this.preanim(arguments, 2));
9358             return this;
9359         },
9360
9361         /**
9362          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9363          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9364          * @param {Number} x X value for new position (coordinates are page-based)
9365          * @param {Number} y Y value for new position (coordinates are page-based)
9366          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9367          * @return {Roo.Element} this
9368          */
9369         moveTo : function(x, y, animate){
9370             this.setXY([x, y], this.preanim(arguments, 2));
9371             return this;
9372         },
9373
9374         /**
9375          * Returns the region of the given element.
9376          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
9377          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
9378          */
9379         getRegion : function(){
9380             return D.getRegion(this.dom);
9381         },
9382
9383         /**
9384          * Returns the offset height of the element
9385          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
9386          * @return {Number} The element's height
9387          */
9388         getHeight : function(contentHeight){
9389             var h = this.dom.offsetHeight || 0;
9390             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
9391         },
9392
9393         /**
9394          * Returns the offset width of the element
9395          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
9396          * @return {Number} The element's width
9397          */
9398         getWidth : function(contentWidth){
9399             var w = this.dom.offsetWidth || 0;
9400             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
9401         },
9402
9403         /**
9404          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
9405          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
9406          * if a height has not been set using CSS.
9407          * @return {Number}
9408          */
9409         getComputedHeight : function(){
9410             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
9411             if(!h){
9412                 h = parseInt(this.getStyle('height'), 10) || 0;
9413                 if(!this.isBorderBox()){
9414                     h += this.getFrameWidth('tb');
9415                 }
9416             }
9417             return h;
9418         },
9419
9420         /**
9421          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
9422          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
9423          * if a width has not been set using CSS.
9424          * @return {Number}
9425          */
9426         getComputedWidth : function(){
9427             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
9428             if(!w){
9429                 w = parseInt(this.getStyle('width'), 10) || 0;
9430                 if(!this.isBorderBox()){
9431                     w += this.getFrameWidth('lr');
9432                 }
9433             }
9434             return w;
9435         },
9436
9437         /**
9438          * Returns the size of the element.
9439          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
9440          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
9441          */
9442         getSize : function(contentSize){
9443             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
9444         },
9445
9446         /**
9447          * Returns the width and height of the viewport.
9448          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
9449          */
9450         getViewSize : function(){
9451             var d = this.dom, doc = document, aw = 0, ah = 0;
9452             if(d == doc || d == doc.body){
9453                 return {width : D.getViewWidth(), height: D.getViewHeight()};
9454             }else{
9455                 return {
9456                     width : d.clientWidth,
9457                     height: d.clientHeight
9458                 };
9459             }
9460         },
9461
9462         /**
9463          * Returns the value of the "value" attribute
9464          * @param {Boolean} asNumber true to parse the value as a number
9465          * @return {String/Number}
9466          */
9467         getValue : function(asNumber){
9468             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
9469         },
9470
9471         // private
9472         adjustWidth : function(width){
9473             if(typeof width == "number"){
9474                 if(this.autoBoxAdjust && !this.isBorderBox()){
9475                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9476                 }
9477                 if(width < 0){
9478                     width = 0;
9479                 }
9480             }
9481             return width;
9482         },
9483
9484         // private
9485         adjustHeight : function(height){
9486             if(typeof height == "number"){
9487                if(this.autoBoxAdjust && !this.isBorderBox()){
9488                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9489                }
9490                if(height < 0){
9491                    height = 0;
9492                }
9493             }
9494             return height;
9495         },
9496
9497         /**
9498          * Set the width of the element
9499          * @param {Number} width The new width
9500          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9501          * @return {Roo.Element} this
9502          */
9503         setWidth : function(width, animate){
9504             width = this.adjustWidth(width);
9505             if(!animate || !A){
9506                 this.dom.style.width = this.addUnits(width);
9507             }else{
9508                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
9509             }
9510             return this;
9511         },
9512
9513         /**
9514          * Set the height of the element
9515          * @param {Number} height The new height
9516          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9517          * @return {Roo.Element} this
9518          */
9519          setHeight : function(height, animate){
9520             height = this.adjustHeight(height);
9521             if(!animate || !A){
9522                 this.dom.style.height = this.addUnits(height);
9523             }else{
9524                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
9525             }
9526             return this;
9527         },
9528
9529         /**
9530          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
9531          * @param {Number} width The new width
9532          * @param {Number} height The new height
9533          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9534          * @return {Roo.Element} this
9535          */
9536          setSize : function(width, height, animate){
9537             if(typeof width == "object"){ // in case of object from getSize()
9538                 height = width.height; width = width.width;
9539             }
9540             width = this.adjustWidth(width); height = this.adjustHeight(height);
9541             if(!animate || !A){
9542                 this.dom.style.width = this.addUnits(width);
9543                 this.dom.style.height = this.addUnits(height);
9544             }else{
9545                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
9546             }
9547             return this;
9548         },
9549
9550         /**
9551          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
9552          * @param {Number} x X value for new position (coordinates are page-based)
9553          * @param {Number} y Y value for new position (coordinates are page-based)
9554          * @param {Number} width The new width
9555          * @param {Number} height The new height
9556          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9557          * @return {Roo.Element} this
9558          */
9559         setBounds : function(x, y, width, height, animate){
9560             if(!animate || !A){
9561                 this.setSize(width, height);
9562                 this.setLocation(x, y);
9563             }else{
9564                 width = this.adjustWidth(width); height = this.adjustHeight(height);
9565                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
9566                               this.preanim(arguments, 4), 'motion');
9567             }
9568             return this;
9569         },
9570
9571         /**
9572          * Sets the element's position and size the the specified region. If animation is true then width, height, x and y will be animated concurrently.
9573          * @param {Roo.lib.Region} region The region to fill
9574          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9575          * @return {Roo.Element} this
9576          */
9577         setRegion : function(region, animate){
9578             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
9579             return this;
9580         },
9581
9582         /**
9583          * Appends an event handler
9584          *
9585          * @param {String}   eventName     The type of event to append
9586          * @param {Function} fn        The method the event invokes
9587          * @param {Object} scope       (optional) The scope (this object) of the fn
9588          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9589          */
9590         addListener : function(eventName, fn, scope, options)
9591         {
9592             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
9593                 this.addListener('touchstart', this.onTapHandler, this);
9594             }
9595             
9596             // we need to handle a special case where dom element is a svg element.
9597             // in this case we do not actua
9598             if (!this.dom) {
9599                 return;
9600             }
9601             
9602             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
9603                 if (typeof(this.listeners[eventName]) == 'undefined') {
9604                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
9605                 }
9606                 this.listeners[eventName].addListener(fn, scope, options);
9607                 return;
9608             }
9609             
9610                 
9611             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
9612             
9613             
9614         },
9615         tapedTwice : false,
9616         onTapHandler : function(event)
9617         {
9618             if(!this.tapedTwice) {
9619                 this.tapedTwice = true;
9620                 var s = this;
9621                 setTimeout( function() {
9622                     s.tapedTwice = false;
9623                 }, 300 );
9624                 return;
9625             }
9626             event.preventDefault();
9627             var revent = new MouseEvent('dblclick',  {
9628                 view: window,
9629                 bubbles: true,
9630                 cancelable: true
9631             });
9632              
9633             this.dom.dispatchEvent(revent);
9634             //action on double tap goes below
9635              
9636         }, 
9637  
9638         /**
9639          * Removes an event handler from this element
9640          * @param {String} eventName the type of event to remove
9641          * @param {Function} fn the method the event invokes
9642          * @param {Function} scope (needed for svg fake listeners)
9643          * @return {Roo.Element} this
9644          */
9645         removeListener : function(eventName, fn, scope){
9646             Roo.EventManager.removeListener(this.dom,  eventName, fn);
9647             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
9648                 return this;
9649             }
9650             this.listeners[eventName].removeListener(fn, scope);
9651             return this;
9652         },
9653
9654         /**
9655          * Removes all previous added listeners from this element
9656          * @return {Roo.Element} this
9657          */
9658         removeAllListeners : function(){
9659             E.purgeElement(this.dom);
9660             this.listeners = {};
9661             return this;
9662         },
9663
9664         relayEvent : function(eventName, observable){
9665             this.on(eventName, function(e){
9666                 observable.fireEvent(eventName, e);
9667             });
9668         },
9669
9670         
9671         /**
9672          * Set the opacity of the element
9673          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
9674          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9675          * @return {Roo.Element} this
9676          */
9677          setOpacity : function(opacity, animate){
9678             if(!animate || !A){
9679                 var s = this.dom.style;
9680                 if(Roo.isIE){
9681                     s.zoom = 1;
9682                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
9683                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
9684                 }else{
9685                     s.opacity = opacity;
9686                 }
9687             }else{
9688                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
9689             }
9690             return this;
9691         },
9692
9693         /**
9694          * Gets the left X coordinate
9695          * @param {Boolean} local True to get the local css position instead of page coordinate
9696          * @return {Number}
9697          */
9698         getLeft : function(local){
9699             if(!local){
9700                 return this.getX();
9701             }else{
9702                 return parseInt(this.getStyle("left"), 10) || 0;
9703             }
9704         },
9705
9706         /**
9707          * Gets the right X coordinate of the element (element X position + element width)
9708          * @param {Boolean} local True to get the local css position instead of page coordinate
9709          * @return {Number}
9710          */
9711         getRight : function(local){
9712             if(!local){
9713                 return this.getX() + this.getWidth();
9714             }else{
9715                 return (this.getLeft(true) + this.getWidth()) || 0;
9716             }
9717         },
9718
9719         /**
9720          * Gets the top Y coordinate
9721          * @param {Boolean} local True to get the local css position instead of page coordinate
9722          * @return {Number}
9723          */
9724         getTop : function(local) {
9725             if(!local){
9726                 return this.getY();
9727             }else{
9728                 return parseInt(this.getStyle("top"), 10) || 0;
9729             }
9730         },
9731
9732         /**
9733          * Gets the bottom Y coordinate of the element (element Y position + element height)
9734          * @param {Boolean} local True to get the local css position instead of page coordinate
9735          * @return {Number}
9736          */
9737         getBottom : function(local){
9738             if(!local){
9739                 return this.getY() + this.getHeight();
9740             }else{
9741                 return (this.getTop(true) + this.getHeight()) || 0;
9742             }
9743         },
9744
9745         /**
9746         * Initializes positioning on this element. If a desired position is not passed, it will make the
9747         * the element positioned relative IF it is not already positioned.
9748         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
9749         * @param {Number} zIndex (optional) The zIndex to apply
9750         * @param {Number} x (optional) Set the page X position
9751         * @param {Number} y (optional) Set the page Y position
9752         */
9753         position : function(pos, zIndex, x, y){
9754             if(!pos){
9755                if(this.getStyle('position') == 'static'){
9756                    this.setStyle('position', 'relative');
9757                }
9758             }else{
9759                 this.setStyle("position", pos);
9760             }
9761             if(zIndex){
9762                 this.setStyle("z-index", zIndex);
9763             }
9764             if(x !== undefined && y !== undefined){
9765                 this.setXY([x, y]);
9766             }else if(x !== undefined){
9767                 this.setX(x);
9768             }else if(y !== undefined){
9769                 this.setY(y);
9770             }
9771         },
9772
9773         /**
9774         * Clear positioning back to the default when the document was loaded
9775         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
9776         * @return {Roo.Element} this
9777          */
9778         clearPositioning : function(value){
9779             value = value ||'';
9780             this.setStyle({
9781                 "left": value,
9782                 "right": value,
9783                 "top": value,
9784                 "bottom": value,
9785                 "z-index": "",
9786                 "position" : "static"
9787             });
9788             return this;
9789         },
9790
9791         /**
9792         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
9793         * snapshot before performing an update and then restoring the element.
9794         * @return {Object}
9795         */
9796         getPositioning : function(){
9797             var l = this.getStyle("left");
9798             var t = this.getStyle("top");
9799             return {
9800                 "position" : this.getStyle("position"),
9801                 "left" : l,
9802                 "right" : l ? "" : this.getStyle("right"),
9803                 "top" : t,
9804                 "bottom" : t ? "" : this.getStyle("bottom"),
9805                 "z-index" : this.getStyle("z-index")
9806             };
9807         },
9808
9809         /**
9810          * Gets the width of the border(s) for the specified side(s)
9811          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9812          * passing lr would get the border (l)eft width + the border (r)ight width.
9813          * @return {Number} The width of the sides passed added together
9814          */
9815         getBorderWidth : function(side){
9816             return this.addStyles(side, El.borders);
9817         },
9818
9819         /**
9820          * Gets the width of the padding(s) for the specified side(s)
9821          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9822          * passing lr would get the padding (l)eft + the padding (r)ight.
9823          * @return {Number} The padding of the sides passed added together
9824          */
9825         getPadding : function(side){
9826             return this.addStyles(side, El.paddings);
9827         },
9828
9829         /**
9830         * Set positioning with an object returned by getPositioning().
9831         * @param {Object} posCfg
9832         * @return {Roo.Element} this
9833          */
9834         setPositioning : function(pc){
9835             this.applyStyles(pc);
9836             if(pc.right == "auto"){
9837                 this.dom.style.right = "";
9838             }
9839             if(pc.bottom == "auto"){
9840                 this.dom.style.bottom = "";
9841             }
9842             return this;
9843         },
9844
9845         // private
9846         fixDisplay : function(){
9847             if(this.getStyle("display") == "none"){
9848                 this.setStyle("visibility", "hidden");
9849                 this.setStyle("display", this.originalDisplay); // first try reverting to default
9850                 if(this.getStyle("display") == "none"){ // if that fails, default to block
9851                     this.setStyle("display", "block");
9852                 }
9853             }
9854         },
9855
9856         /**
9857          * Quick set left and top adding default units
9858          * @param {String} left The left CSS property value
9859          * @param {String} top The top CSS property value
9860          * @return {Roo.Element} this
9861          */
9862          setLeftTop : function(left, top){
9863             this.dom.style.left = this.addUnits(left);
9864             this.dom.style.top = this.addUnits(top);
9865             return this;
9866         },
9867
9868         /**
9869          * Move this element relative to its current position.
9870          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9871          * @param {Number} distance How far to move the element in pixels
9872          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9873          * @return {Roo.Element} this
9874          */
9875          move : function(direction, distance, animate){
9876             var xy = this.getXY();
9877             direction = direction.toLowerCase();
9878             switch(direction){
9879                 case "l":
9880                 case "left":
9881                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
9882                     break;
9883                case "r":
9884                case "right":
9885                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
9886                     break;
9887                case "t":
9888                case "top":
9889                case "up":
9890                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
9891                     break;
9892                case "b":
9893                case "bottom":
9894                case "down":
9895                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
9896                     break;
9897             }
9898             return this;
9899         },
9900
9901         /**
9902          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
9903          * @return {Roo.Element} this
9904          */
9905         clip : function(){
9906             if(!this.isClipped){
9907                this.isClipped = true;
9908                this.originalClip = {
9909                    "o": this.getStyle("overflow"),
9910                    "x": this.getStyle("overflow-x"),
9911                    "y": this.getStyle("overflow-y")
9912                };
9913                this.setStyle("overflow", "hidden");
9914                this.setStyle("overflow-x", "hidden");
9915                this.setStyle("overflow-y", "hidden");
9916             }
9917             return this;
9918         },
9919
9920         /**
9921          *  Return clipping (overflow) to original clipping before clip() was called
9922          * @return {Roo.Element} this
9923          */
9924         unclip : function(){
9925             if(this.isClipped){
9926                 this.isClipped = false;
9927                 var o = this.originalClip;
9928                 if(o.o){this.setStyle("overflow", o.o);}
9929                 if(o.x){this.setStyle("overflow-x", o.x);}
9930                 if(o.y){this.setStyle("overflow-y", o.y);}
9931             }
9932             return this;
9933         },
9934
9935
9936         /**
9937          * Gets the x,y coordinates specified by the anchor position on the element.
9938          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
9939          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
9940          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
9941          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
9942          * @return {Array} [x, y] An array containing the element's x and y coordinates
9943          */
9944         getAnchorXY : function(anchor, local, s){
9945             //Passing a different size is useful for pre-calculating anchors,
9946             //especially for anchored animations that change the el size.
9947
9948             var w, h, vp = false;
9949             if(!s){
9950                 var d = this.dom;
9951                 if(d == document.body || d == document){
9952                     vp = true;
9953                     w = D.getViewWidth(); h = D.getViewHeight();
9954                 }else{
9955                     w = this.getWidth(); h = this.getHeight();
9956                 }
9957             }else{
9958                 w = s.width;  h = s.height;
9959             }
9960             var x = 0, y = 0, r = Math.round;
9961             switch((anchor || "tl").toLowerCase()){
9962                 case "c":
9963                     x = r(w*.5);
9964                     y = r(h*.5);
9965                 break;
9966                 case "t":
9967                     x = r(w*.5);
9968                     y = 0;
9969                 break;
9970                 case "l":
9971                     x = 0;
9972                     y = r(h*.5);
9973                 break;
9974                 case "r":
9975                     x = w;
9976                     y = r(h*.5);
9977                 break;
9978                 case "b":
9979                     x = r(w*.5);
9980                     y = h;
9981                 break;
9982                 case "tl":
9983                     x = 0;
9984                     y = 0;
9985                 break;
9986                 case "bl":
9987                     x = 0;
9988                     y = h;
9989                 break;
9990                 case "br":
9991                     x = w;
9992                     y = h;
9993                 break;
9994                 case "tr":
9995                     x = w;
9996                     y = 0;
9997                 break;
9998             }
9999             if(local === true){
10000                 return [x, y];
10001             }
10002             if(vp){
10003                 var sc = this.getScroll();
10004                 return [x + sc.left, y + sc.top];
10005             }
10006             //Add the element's offset xy
10007             var o = this.getXY();
10008             return [x+o[0], y+o[1]];
10009         },
10010
10011         /**
10012          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
10013          * supported position values.
10014          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10015          * @param {String} position The position to align to.
10016          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10017          * @return {Array} [x, y]
10018          */
10019         getAlignToXY : function(el, p, o)
10020         {
10021             el = Roo.get(el);
10022             var d = this.dom;
10023             if(!el.dom){
10024                 throw "Element.alignTo with an element that doesn't exist";
10025             }
10026             var c = false; //constrain to viewport
10027             var p1 = "", p2 = "";
10028             o = o || [0,0];
10029
10030             if(!p){
10031                 p = "tl-bl";
10032             }else if(p == "?"){
10033                 p = "tl-bl?";
10034             }else if(p.indexOf("-") == -1){
10035                 p = "tl-" + p;
10036             }
10037             p = p.toLowerCase();
10038             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
10039             if(!m){
10040                throw "Element.alignTo with an invalid alignment " + p;
10041             }
10042             p1 = m[1]; p2 = m[2]; c = !!m[3];
10043
10044             //Subtract the aligned el's internal xy from the target's offset xy
10045             //plus custom offset to get the aligned el's new offset xy
10046             var a1 = this.getAnchorXY(p1, true);
10047             var a2 = el.getAnchorXY(p2, false);
10048             var x = a2[0] - a1[0] + o[0];
10049             var y = a2[1] - a1[1] + o[1];
10050             if(c){
10051                 //constrain the aligned el to viewport if necessary
10052                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
10053                 // 5px of margin for ie
10054                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
10055
10056                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
10057                 //perpendicular to the vp border, allow the aligned el to slide on that border,
10058                 //otherwise swap the aligned el to the opposite border of the target.
10059                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
10060                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
10061                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
10062                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
10063
10064                var doc = document;
10065                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
10066                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
10067
10068                if((x+w) > dw + scrollX){
10069                     x = swapX ? r.left-w : dw+scrollX-w;
10070                 }
10071                if(x < scrollX){
10072                    x = swapX ? r.right : scrollX;
10073                }
10074                if((y+h) > dh + scrollY){
10075                     y = swapY ? r.top-h : dh+scrollY-h;
10076                 }
10077                if (y < scrollY){
10078                    y = swapY ? r.bottom : scrollY;
10079                }
10080             }
10081             return [x,y];
10082         },
10083
10084         // private
10085         getConstrainToXY : function(){
10086             var os = {top:0, left:0, bottom:0, right: 0};
10087
10088             return function(el, local, offsets, proposedXY){
10089                 el = Roo.get(el);
10090                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
10091
10092                 var vw, vh, vx = 0, vy = 0;
10093                 if(el.dom == document.body || el.dom == document){
10094                     vw = Roo.lib.Dom.getViewWidth();
10095                     vh = Roo.lib.Dom.getViewHeight();
10096                 }else{
10097                     vw = el.dom.clientWidth;
10098                     vh = el.dom.clientHeight;
10099                     if(!local){
10100                         var vxy = el.getXY();
10101                         vx = vxy[0];
10102                         vy = vxy[1];
10103                     }
10104                 }
10105
10106                 var s = el.getScroll();
10107
10108                 vx += offsets.left + s.left;
10109                 vy += offsets.top + s.top;
10110
10111                 vw -= offsets.right;
10112                 vh -= offsets.bottom;
10113
10114                 var vr = vx+vw;
10115                 var vb = vy+vh;
10116
10117                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
10118                 var x = xy[0], y = xy[1];
10119                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
10120
10121                 // only move it if it needs it
10122                 var moved = false;
10123
10124                 // first validate right/bottom
10125                 if((x + w) > vr){
10126                     x = vr - w;
10127                     moved = true;
10128                 }
10129                 if((y + h) > vb){
10130                     y = vb - h;
10131                     moved = true;
10132                 }
10133                 // then make sure top/left isn't negative
10134                 if(x < vx){
10135                     x = vx;
10136                     moved = true;
10137                 }
10138                 if(y < vy){
10139                     y = vy;
10140                     moved = true;
10141                 }
10142                 return moved ? [x, y] : false;
10143             };
10144         }(),
10145
10146         // private
10147         adjustForConstraints : function(xy, parent, offsets){
10148             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
10149         },
10150
10151         /**
10152          * Aligns this element with another element relative to the specified anchor points. If the other element is the
10153          * document it aligns it to the viewport.
10154          * The position parameter is optional, and can be specified in any one of the following formats:
10155          * <ul>
10156          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
10157          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
10158          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
10159          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
10160          *   <li><b>Two anchors</b>: If two values from the table below are passed separated by a dash, the first value is used as the
10161          *       element's anchor point, and the second value is used as the target's anchor point.</li>
10162          * </ul>
10163          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
10164          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
10165          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
10166          * that specified in order to enforce the viewport constraints.
10167          * Following are all of the supported anchor positions:
10168     <pre>
10169     Value  Description
10170     -----  -----------------------------
10171     tl     The top left corner (default)
10172     t      The center of the top edge
10173     tr     The top right corner
10174     l      The center of the left edge
10175     c      In the center of the element
10176     r      The center of the right edge
10177     bl     The bottom left corner
10178     b      The center of the bottom edge
10179     br     The bottom right corner
10180     </pre>
10181     Example Usage:
10182     <pre><code>
10183     // align el to other-el using the default positioning ("tl-bl", non-constrained)
10184     el.alignTo("other-el");
10185
10186     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
10187     el.alignTo("other-el", "tr?");
10188
10189     // align the bottom right corner of el with the center left edge of other-el
10190     el.alignTo("other-el", "br-l?");
10191
10192     // align the center of el with the bottom left corner of other-el and
10193     // adjust the x position by -6 pixels (and the y position by 0)
10194     el.alignTo("other-el", "c-bl", [-6, 0]);
10195     </code></pre>
10196          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10197          * @param {String} position The position to align to.
10198          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10199          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10200          * @return {Roo.Element} this
10201          */
10202         alignTo : function(element, position, offsets, animate){
10203             var xy = this.getAlignToXY(element, position, offsets);
10204             this.setXY(xy, this.preanim(arguments, 3));
10205             return this;
10206         },
10207
10208         /**
10209          * Anchors an element to another element and realigns it when the window is resized.
10210          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10211          * @param {String} position The position to align to.
10212          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10213          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
10214          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
10215          * is a number, it is used as the buffer delay (defaults to 50ms).
10216          * @param {Function} callback The function to call after the animation finishes
10217          * @return {Roo.Element} this
10218          */
10219         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
10220             var action = function(){
10221                 this.alignTo(el, alignment, offsets, animate);
10222                 Roo.callback(callback, this);
10223             };
10224             Roo.EventManager.onWindowResize(action, this);
10225             var tm = typeof monitorScroll;
10226             if(tm != 'undefined'){
10227                 Roo.EventManager.on(window, 'scroll', action, this,
10228                     {buffer: tm == 'number' ? monitorScroll : 50});
10229             }
10230             action.call(this); // align immediately
10231             return this;
10232         },
10233         /**
10234          * Clears any opacity settings from this element. Required in some cases for IE.
10235          * @return {Roo.Element} this
10236          */
10237         clearOpacity : function(){
10238             if (window.ActiveXObject) {
10239                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
10240                     this.dom.style.filter = "";
10241                 }
10242             } else {
10243                 this.dom.style.opacity = "";
10244                 this.dom.style["-moz-opacity"] = "";
10245                 this.dom.style["-khtml-opacity"] = "";
10246             }
10247             return this;
10248         },
10249
10250         /**
10251          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10252          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10253          * @return {Roo.Element} this
10254          */
10255         hide : function(animate){
10256             this.setVisible(false, this.preanim(arguments, 0));
10257             return this;
10258         },
10259
10260         /**
10261         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10262         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10263          * @return {Roo.Element} this
10264          */
10265         show : function(animate){
10266             this.setVisible(true, this.preanim(arguments, 0));
10267             return this;
10268         },
10269
10270         /**
10271          * @private Test if size has a unit, otherwise appends the default
10272          */
10273         addUnits : function(size){
10274             return Roo.Element.addUnits(size, this.defaultUnit);
10275         },
10276
10277         /**
10278          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
10279          * @return {Roo.Element} this
10280          */
10281         beginMeasure : function(){
10282             var el = this.dom;
10283             if(el.offsetWidth || el.offsetHeight){
10284                 return this; // offsets work already
10285             }
10286             var changed = [];
10287             var p = this.dom, b = document.body; // start with this element
10288             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
10289                 var pe = Roo.get(p);
10290                 if(pe.getStyle('display') == 'none'){
10291                     changed.push({el: p, visibility: pe.getStyle("visibility")});
10292                     p.style.visibility = "hidden";
10293                     p.style.display = "block";
10294                 }
10295                 p = p.parentNode;
10296             }
10297             this._measureChanged = changed;
10298             return this;
10299
10300         },
10301
10302         /**
10303          * Restores displays to before beginMeasure was called
10304          * @return {Roo.Element} this
10305          */
10306         endMeasure : function(){
10307             var changed = this._measureChanged;
10308             if(changed){
10309                 for(var i = 0, len = changed.length; i < len; i++) {
10310                     var r = changed[i];
10311                     r.el.style.visibility = r.visibility;
10312                     r.el.style.display = "none";
10313                 }
10314                 this._measureChanged = null;
10315             }
10316             return this;
10317         },
10318
10319         /**
10320         * Update the innerHTML of this element, optionally searching for and processing scripts
10321         * @param {String} html The new HTML
10322         * @param {Boolean} loadScripts (optional) true to look for and process scripts
10323         * @param {Function} callback For async script loading you can be noticed when the update completes
10324         * @return {Roo.Element} this
10325          */
10326         update : function(html, loadScripts, callback){
10327             if(typeof html == "undefined"){
10328                 html = "";
10329             }
10330             if(loadScripts !== true){
10331                 this.dom.innerHTML = html;
10332                 if(typeof callback == "function"){
10333                     callback();
10334                 }
10335                 return this;
10336             }
10337             var id = Roo.id();
10338             var dom = this.dom;
10339
10340             html += '<span id="' + id + '"></span>';
10341
10342             E.onAvailable(id, function(){
10343                 var hd = document.getElementsByTagName("head")[0];
10344                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
10345                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
10346                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
10347
10348                 var match;
10349                 while(match = re.exec(html)){
10350                     var attrs = match[1];
10351                     var srcMatch = attrs ? attrs.match(srcRe) : false;
10352                     if(srcMatch && srcMatch[2]){
10353                        var s = document.createElement("script");
10354                        s.src = srcMatch[2];
10355                        var typeMatch = attrs.match(typeRe);
10356                        if(typeMatch && typeMatch[2]){
10357                            s.type = typeMatch[2];
10358                        }
10359                        hd.appendChild(s);
10360                     }else if(match[2] && match[2].length > 0){
10361                         if(window.execScript) {
10362                            window.execScript(match[2]);
10363                         } else {
10364                             /**
10365                              * eval:var:id
10366                              * eval:var:dom
10367                              * eval:var:html
10368                              * 
10369                              */
10370                            window.eval(match[2]);
10371                         }
10372                     }
10373                 }
10374                 var el = document.getElementById(id);
10375                 if(el){el.parentNode.removeChild(el);}
10376                 if(typeof callback == "function"){
10377                     callback();
10378                 }
10379             });
10380             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
10381             return this;
10382         },
10383
10384         /**
10385          * Direct access to the UpdateManager update() method (takes the same parameters).
10386          * @param {String/Function} url The url for this request or a function to call to get the url
10387          * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
10388          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
10389          * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
10390          * @return {Roo.Element} this
10391          */
10392         load : function(){
10393             var um = this.getUpdateManager();
10394             um.update.apply(um, arguments);
10395             return this;
10396         },
10397
10398         /**
10399         * Gets this element's UpdateManager
10400         * @return {Roo.UpdateManager} The UpdateManager
10401         */
10402         getUpdateManager : function(){
10403             if(!this.updateManager){
10404                 this.updateManager = new Roo.UpdateManager(this);
10405             }
10406             return this.updateManager;
10407         },
10408
10409         /**
10410          * Disables text selection for this element (normalized across browsers)
10411          * @return {Roo.Element} this
10412          */
10413         unselectable : function(){
10414             this.dom.unselectable = "on";
10415             this.swallowEvent("selectstart", true);
10416             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
10417             this.addClass("x-unselectable");
10418             return this;
10419         },
10420
10421         /**
10422         * Calculates the x, y to center this element on the screen
10423         * @return {Array} The x, y values [x, y]
10424         */
10425         getCenterXY : function(){
10426             return this.getAlignToXY(document, 'c-c');
10427         },
10428
10429         /**
10430         * Centers the Element in either the viewport, or another Element.
10431         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
10432         */
10433         center : function(centerIn){
10434             this.alignTo(centerIn || document, 'c-c');
10435             return this;
10436         },
10437
10438         /**
10439          * Tests various css rules/browsers to determine if this element uses a border box
10440          * @return {Boolean}
10441          */
10442         isBorderBox : function(){
10443             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
10444         },
10445
10446         /**
10447          * Return a box {x, y, width, height} that can be used to set another elements
10448          * size/location to match this element.
10449          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
10450          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
10451          * @return {Object} box An object in the format {x, y, width, height}
10452          */
10453         getBox : function(contentBox, local){
10454             var xy;
10455             if(!local){
10456                 xy = this.getXY();
10457             }else{
10458                 var left = parseInt(this.getStyle("left"), 10) || 0;
10459                 var top = parseInt(this.getStyle("top"), 10) || 0;
10460                 xy = [left, top];
10461             }
10462             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
10463             if(!contentBox){
10464                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
10465             }else{
10466                 var l = this.getBorderWidth("l")+this.getPadding("l");
10467                 var r = this.getBorderWidth("r")+this.getPadding("r");
10468                 var t = this.getBorderWidth("t")+this.getPadding("t");
10469                 var b = this.getBorderWidth("b")+this.getPadding("b");
10470                 bx = {x: xy[0]+l, y: xy[1]+t, 0: xy[0]+l, 1: xy[1]+t, width: w-(l+r), height: h-(t+b)};
10471             }
10472             bx.right = bx.x + bx.width;
10473             bx.bottom = bx.y + bx.height;
10474             return bx;
10475         },
10476
10477         /**
10478          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
10479          for more information about the sides.
10480          * @param {String} sides
10481          * @return {Number}
10482          */
10483         getFrameWidth : function(sides, onlyContentBox){
10484             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
10485         },
10486
10487         /**
10488          * Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
10489          * @param {Object} box The box to fill {x, y, width, height}
10490          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
10491          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10492          * @return {Roo.Element} this
10493          */
10494         setBox : function(box, adjust, animate){
10495             var w = box.width, h = box.height;
10496             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
10497                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
10498                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
10499             }
10500             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
10501             return this;
10502         },
10503
10504         /**
10505          * Forces the browser to repaint this element
10506          * @return {Roo.Element} this
10507          */
10508          repaint : function(){
10509             var dom = this.dom;
10510             this.addClass("x-repaint");
10511             setTimeout(function(){
10512                 Roo.get(dom).removeClass("x-repaint");
10513             }, 1);
10514             return this;
10515         },
10516
10517         /**
10518          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
10519          * then it returns the calculated width of the sides (see getPadding)
10520          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
10521          * @return {Object/Number}
10522          */
10523         getMargins : function(side){
10524             if(!side){
10525                 return {
10526                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
10527                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
10528                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
10529                     right: parseInt(this.getStyle("margin-right"), 10) || 0
10530                 };
10531             }else{
10532                 return this.addStyles(side, El.margins);
10533              }
10534         },
10535
10536         // private
10537         addStyles : function(sides, styles){
10538             var val = 0, v, w;
10539             for(var i = 0, len = sides.length; i < len; i++){
10540                 v = this.getStyle(styles[sides.charAt(i)]);
10541                 if(v){
10542                      w = parseInt(v, 10);
10543                      if(w){ val += w; }
10544                 }
10545             }
10546             return val;
10547         },
10548
10549         /**
10550          * Creates a proxy element of this element
10551          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
10552          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
10553          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
10554          * @return {Roo.Element} The new proxy element
10555          */
10556         createProxy : function(config, renderTo, matchBox){
10557             if(renderTo){
10558                 renderTo = Roo.getDom(renderTo);
10559             }else{
10560                 renderTo = document.body;
10561             }
10562             config = typeof config == "object" ?
10563                 config : {tag : "div", cls: config};
10564             var proxy = Roo.DomHelper.append(renderTo, config, true);
10565             if(matchBox){
10566                proxy.setBox(this.getBox());
10567             }
10568             return proxy;
10569         },
10570
10571         /**
10572          * Puts a mask over this element to disable user interaction. Requires core.css.
10573          * This method can only be applied to elements which accept child nodes.
10574          * @param {String} msg (optional) A message to display in the mask
10575          * @param {String} msgCls (optional) A css class to apply to the msg element - use no-spinner to hide the spinner on bootstrap
10576          * @return {Element} The mask  element
10577          */
10578         mask : function(msg, msgCls)
10579         {
10580             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
10581                 this.setStyle("position", "relative");
10582             }
10583             if(!this._mask){
10584                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
10585             }
10586             
10587             this.addClass("x-masked");
10588             this._mask.setDisplayed(true);
10589             
10590             // we wander
10591             var z = 0;
10592             var dom = this.dom;
10593             while (dom && dom.style) {
10594                 if (!isNaN(parseInt(dom.style.zIndex))) {
10595                     z = Math.max(z, parseInt(dom.style.zIndex));
10596                 }
10597                 dom = dom.parentNode;
10598             }
10599             // if we are masking the body - then it hides everything..
10600             if (this.dom == document.body) {
10601                 z = 1000000;
10602                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
10603                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
10604             }
10605            
10606             if(typeof msg == 'string'){
10607                 if(!this._maskMsg){
10608                     this._maskMsg = Roo.DomHelper.append(this.dom, {
10609                         cls: "roo-el-mask-msg", 
10610                         cn: [
10611                             {
10612                                 tag: 'i',
10613                                 cls: 'fa fa-spinner fa-spin'
10614                             },
10615                             {
10616                                 tag: 'div'
10617                             }   
10618                         ]
10619                     }, true);
10620                 }
10621                 var mm = this._maskMsg;
10622                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
10623                 if (mm.dom.lastChild) { // weird IE issue?
10624                     mm.dom.lastChild.innerHTML = msg;
10625                 }
10626                 mm.setDisplayed(true);
10627                 mm.center(this);
10628                 mm.setStyle('z-index', z + 102);
10629             }
10630             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
10631                 this._mask.setHeight(this.getHeight());
10632             }
10633             this._mask.setStyle('z-index', z + 100);
10634             
10635             return this._mask;
10636         },
10637
10638         /**
10639          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
10640          * it is cached for reuse.
10641          */
10642         unmask : function(removeEl){
10643             if(this._mask){
10644                 if(removeEl === true){
10645                     this._mask.remove();
10646                     delete this._mask;
10647                     if(this._maskMsg){
10648                         this._maskMsg.remove();
10649                         delete this._maskMsg;
10650                     }
10651                 }else{
10652                     this._mask.setDisplayed(false);
10653                     if(this._maskMsg){
10654                         this._maskMsg.setDisplayed(false);
10655                     }
10656                 }
10657             }
10658             this.removeClass("x-masked");
10659         },
10660
10661         /**
10662          * Returns true if this element is masked
10663          * @return {Boolean}
10664          */
10665         isMasked : function(){
10666             return this._mask && this._mask.isVisible();
10667         },
10668
10669         /**
10670          * Creates an iframe shim for this element to keep selects and other windowed objects from
10671          * showing through.
10672          * @return {Roo.Element} The new shim element
10673          */
10674         createShim : function(){
10675             var el = document.createElement('iframe');
10676             el.frameBorder = 'no';
10677             el.className = 'roo-shim';
10678             if(Roo.isIE && Roo.isSecure){
10679                 el.src = Roo.SSL_SECURE_URL;
10680             }
10681             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
10682             shim.autoBoxAdjust = false;
10683             return shim;
10684         },
10685
10686         /**
10687          * Removes this element from the DOM and deletes it from the cache
10688          */
10689         remove : function(){
10690             if(this.dom.parentNode){
10691                 this.dom.parentNode.removeChild(this.dom);
10692             }
10693             delete El.cache[this.dom.id];
10694         },
10695
10696         /**
10697          * Sets up event handlers to add and remove a css class when the mouse is over this element
10698          * @param {String} className
10699          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
10700          * mouseout events for children elements
10701          * @return {Roo.Element} this
10702          */
10703         addClassOnOver : function(className, preventFlicker){
10704             this.on("mouseover", function(){
10705                 Roo.fly(this, '_internal').addClass(className);
10706             }, this.dom);
10707             var removeFn = function(e){
10708                 if(preventFlicker !== true || !e.within(this, true)){
10709                     Roo.fly(this, '_internal').removeClass(className);
10710                 }
10711             };
10712             this.on("mouseout", removeFn, this.dom);
10713             return this;
10714         },
10715
10716         /**
10717          * Sets up event handlers to add and remove a css class when this element has the focus
10718          * @param {String} className
10719          * @return {Roo.Element} this
10720          */
10721         addClassOnFocus : function(className){
10722             this.on("focus", function(){
10723                 Roo.fly(this, '_internal').addClass(className);
10724             }, this.dom);
10725             this.on("blur", function(){
10726                 Roo.fly(this, '_internal').removeClass(className);
10727             }, this.dom);
10728             return this;
10729         },
10730         /**
10731          * Sets up event handlers to add and remove a css class when the mouse is down and then up on this element (a click effect)
10732          * @param {String} className
10733          * @return {Roo.Element} this
10734          */
10735         addClassOnClick : function(className){
10736             var dom = this.dom;
10737             this.on("mousedown", function(){
10738                 Roo.fly(dom, '_internal').addClass(className);
10739                 var d = Roo.get(document);
10740                 var fn = function(){
10741                     Roo.fly(dom, '_internal').removeClass(className);
10742                     d.removeListener("mouseup", fn);
10743                 };
10744                 d.on("mouseup", fn);
10745             });
10746             return this;
10747         },
10748
10749         /**
10750          * Stops the specified event from bubbling and optionally prevents the default action
10751          * @param {String} eventName
10752          * @param {Boolean} preventDefault (optional) true to prevent the default action too
10753          * @return {Roo.Element} this
10754          */
10755         swallowEvent : function(eventName, preventDefault){
10756             var fn = function(e){
10757                 e.stopPropagation();
10758                 if(preventDefault){
10759                     e.preventDefault();
10760                 }
10761             };
10762             if(eventName instanceof Array){
10763                 for(var i = 0, len = eventName.length; i < len; i++){
10764                      this.on(eventName[i], fn);
10765                 }
10766                 return this;
10767             }
10768             this.on(eventName, fn);
10769             return this;
10770         },
10771
10772         /**
10773          * @private
10774          */
10775         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
10776
10777         /**
10778          * Sizes this element to its parent element's dimensions performing
10779          * neccessary box adjustments.
10780          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
10781          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
10782          * @return {Roo.Element} this
10783          */
10784         fitToParent : function(monitorResize, targetParent) {
10785           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
10786           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
10787           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
10788             return this;
10789           }
10790           var p = Roo.get(targetParent || this.dom.parentNode);
10791           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
10792           if (monitorResize === true) {
10793             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
10794             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
10795           }
10796           return this;
10797         },
10798
10799         /**
10800          * Gets the next sibling, skipping text nodes
10801          * @return {HTMLElement} The next sibling or null
10802          */
10803         getNextSibling : function(){
10804             var n = this.dom.nextSibling;
10805             while(n && n.nodeType != 1){
10806                 n = n.nextSibling;
10807             }
10808             return n;
10809         },
10810
10811         /**
10812          * Gets the previous sibling, skipping text nodes
10813          * @return {HTMLElement} The previous sibling or null
10814          */
10815         getPrevSibling : function(){
10816             var n = this.dom.previousSibling;
10817             while(n && n.nodeType != 1){
10818                 n = n.previousSibling;
10819             }
10820             return n;
10821         },
10822
10823
10824         /**
10825          * Appends the passed element(s) to this element
10826          * @param {String/HTMLElement/Array/Element/CompositeElement} el
10827          * @return {Roo.Element} this
10828          */
10829         appendChild: function(el){
10830             el = Roo.get(el);
10831             el.appendTo(this);
10832             return this;
10833         },
10834
10835         /**
10836          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
10837          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
10838          * automatically generated with the specified attributes.
10839          * @param {HTMLElement} insertBefore (optional) a child element of this element
10840          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
10841          * @return {Roo.Element} The new child element
10842          */
10843         createChild: function(config, insertBefore, returnDom){
10844             config = config || {tag:'div'};
10845             if(insertBefore){
10846                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
10847             }
10848             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
10849         },
10850
10851         /**
10852          * Appends this element to the passed element
10853          * @param {String/HTMLElement/Element} el The new parent element
10854          * @return {Roo.Element} this
10855          */
10856         appendTo: function(el){
10857             el = Roo.getDom(el);
10858             el.appendChild(this.dom);
10859             return this;
10860         },
10861
10862         /**
10863          * Inserts this element before the passed element in the DOM
10864          * @param {String/HTMLElement/Element} el The element to insert before
10865          * @return {Roo.Element} this
10866          */
10867         insertBefore: function(el){
10868             el = Roo.getDom(el);
10869             el.parentNode.insertBefore(this.dom, el);
10870             return this;
10871         },
10872
10873         /**
10874          * Inserts this element after the passed element in the DOM
10875          * @param {String/HTMLElement/Element} el The element to insert after
10876          * @return {Roo.Element} this
10877          */
10878         insertAfter: function(el){
10879             el = Roo.getDom(el);
10880             el.parentNode.insertBefore(this.dom, el.nextSibling);
10881             return this;
10882         },
10883
10884         /**
10885          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
10886          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10887          * @return {Roo.Element} The new child
10888          */
10889         insertFirst: function(el, returnDom){
10890             el = el || {};
10891             if(typeof el == 'object' && !el.nodeType){ // dh config
10892                 return this.createChild(el, this.dom.firstChild, returnDom);
10893             }else{
10894                 el = Roo.getDom(el);
10895                 this.dom.insertBefore(el, this.dom.firstChild);
10896                 return !returnDom ? Roo.get(el) : el;
10897             }
10898         },
10899
10900         /**
10901          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
10902          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10903          * @param {String} where (optional) 'before' or 'after' defaults to before
10904          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10905          * @return {Roo.Element} the inserted Element
10906          */
10907         insertSibling: function(el, where, returnDom){
10908             where = where ? where.toLowerCase() : 'before';
10909             el = el || {};
10910             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
10911
10912             if(typeof el == 'object' && !el.nodeType){ // dh config
10913                 if(where == 'after' && !this.dom.nextSibling){
10914                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
10915                 }else{
10916                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
10917                 }
10918
10919             }else{
10920                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
10921                             where == 'before' ? this.dom : this.dom.nextSibling);
10922                 if(!returnDom){
10923                     rt = Roo.get(rt);
10924                 }
10925             }
10926             return rt;
10927         },
10928
10929         /**
10930          * Creates and wraps this element with another element
10931          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
10932          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10933          * @return {HTMLElement/Element} The newly created wrapper element
10934          */
10935         wrap: function(config, returnDom){
10936             if(!config){
10937                 config = {tag: "div"};
10938             }
10939             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
10940             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
10941             return newEl;
10942         },
10943
10944         /**
10945          * Replaces the passed element with this element
10946          * @param {String/HTMLElement/Element} el The element to replace
10947          * @return {Roo.Element} this
10948          */
10949         replace: function(el){
10950             el = Roo.get(el);
10951             this.insertBefore(el);
10952             el.remove();
10953             return this;
10954         },
10955
10956         /**
10957          * Inserts an html fragment into this element
10958          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
10959          * @param {String} html The HTML fragment
10960          * @param {Boolean} returnEl True to return an Roo.Element
10961          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
10962          */
10963         insertHtml : function(where, html, returnEl){
10964             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
10965             return returnEl ? Roo.get(el) : el;
10966         },
10967
10968         /**
10969          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
10970          * @param {Object} o The object with the attributes
10971          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
10972          * @return {Roo.Element} this
10973          */
10974         set : function(o, useSet){
10975             var el = this.dom;
10976             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
10977             for(var attr in o){
10978                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
10979                 if(attr=="cls"){
10980                     el.className = o["cls"];
10981                 }else{
10982                     if(useSet) {
10983                         el.setAttribute(attr, o[attr]);
10984                     } else {
10985                         el[attr] = o[attr];
10986                     }
10987                 }
10988             }
10989             if(o.style){
10990                 Roo.DomHelper.applyStyles(el, o.style);
10991             }
10992             return this;
10993         },
10994
10995         /**
10996          * Convenience method for constructing a KeyMap
10997          * @param {Number/Array/Object/String} key Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:
10998          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
10999          * @param {Function} fn The function to call
11000          * @param {Object} scope (optional) The scope of the function
11001          * @return {Roo.KeyMap} The KeyMap created
11002          */
11003         addKeyListener : function(key, fn, scope){
11004             var config;
11005             if(typeof key != "object" || key instanceof Array){
11006                 config = {
11007                     key: key,
11008                     fn: fn,
11009                     scope: scope
11010                 };
11011             }else{
11012                 config = {
11013                     key : key.key,
11014                     shift : key.shift,
11015                     ctrl : key.ctrl,
11016                     alt : key.alt,
11017                     fn: fn,
11018                     scope: scope
11019                 };
11020             }
11021             return new Roo.KeyMap(this, config);
11022         },
11023
11024         /**
11025          * Creates a KeyMap for this element
11026          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
11027          * @return {Roo.KeyMap} The KeyMap created
11028          */
11029         addKeyMap : function(config){
11030             return new Roo.KeyMap(this, config);
11031         },
11032
11033         /**
11034          * Returns true if this element is scrollable.
11035          * @return {Boolean}
11036          */
11037          isScrollable : function(){
11038             var dom = this.dom;
11039             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
11040         },
11041
11042         /**
11043          * Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
11044          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
11045          * @param {Number} value The new scroll value
11046          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11047          * @return {Element} this
11048          */
11049
11050         scrollTo : function(side, value, animate){
11051             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
11052             if(!animate || !A){
11053                 this.dom[prop] = value;
11054             }else{
11055                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
11056                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
11057             }
11058             return this;
11059         },
11060
11061         /**
11062          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
11063          * within this element's scrollable range.
11064          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
11065          * @param {Number} distance How far to scroll the element in pixels
11066          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11067          * @return {Boolean} Returns true if a scroll was triggered or false if the element
11068          * was scrolled as far as it could go.
11069          */
11070          scroll : function(direction, distance, animate){
11071              if(!this.isScrollable()){
11072                  return;
11073              }
11074              var el = this.dom;
11075              var l = el.scrollLeft, t = el.scrollTop;
11076              var w = el.scrollWidth, h = el.scrollHeight;
11077              var cw = el.clientWidth, ch = el.clientHeight;
11078              direction = direction.toLowerCase();
11079              var scrolled = false;
11080              var a = this.preanim(arguments, 2);
11081              switch(direction){
11082                  case "l":
11083                  case "left":
11084                      if(w - l > cw){
11085                          var v = Math.min(l + distance, w-cw);
11086                          this.scrollTo("left", v, a);
11087                          scrolled = true;
11088                      }
11089                      break;
11090                 case "r":
11091                 case "right":
11092                      if(l > 0){
11093                          var v = Math.max(l - distance, 0);
11094                          this.scrollTo("left", v, a);
11095                          scrolled = true;
11096                      }
11097                      break;
11098                 case "t":
11099                 case "top":
11100                 case "up":
11101                      if(t > 0){
11102                          var v = Math.max(t - distance, 0);
11103                          this.scrollTo("top", v, a);
11104                          scrolled = true;
11105                      }
11106                      break;
11107                 case "b":
11108                 case "bottom":
11109                 case "down":
11110                      if(h - t > ch){
11111                          var v = Math.min(t + distance, h-ch);
11112                          this.scrollTo("top", v, a);
11113                          scrolled = true;
11114                      }
11115                      break;
11116              }
11117              return scrolled;
11118         },
11119
11120         /**
11121          * Translates the passed page coordinates into left/top css values for this element
11122          * @param {Number/Array} x The page x or an array containing [x, y]
11123          * @param {Number} y The page y
11124          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
11125          */
11126         translatePoints : function(x, y){
11127             if(typeof x == 'object' || x instanceof Array){
11128                 y = x[1]; x = x[0];
11129             }
11130             var p = this.getStyle('position');
11131             var o = this.getXY();
11132
11133             var l = parseInt(this.getStyle('left'), 10);
11134             var t = parseInt(this.getStyle('top'), 10);
11135
11136             if(isNaN(l)){
11137                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
11138             }
11139             if(isNaN(t)){
11140                 t = (p == "relative") ? 0 : this.dom.offsetTop;
11141             }
11142
11143             return {left: (x - o[0] + l), top: (y - o[1] + t)};
11144         },
11145
11146         /**
11147          * Returns the current scroll position of the element.
11148          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
11149          */
11150         getScroll : function(){
11151             var d = this.dom, doc = document;
11152             if(d == doc || d == doc.body){
11153                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
11154                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
11155                 return {left: l, top: t};
11156             }else{
11157                 return {left: d.scrollLeft, top: d.scrollTop};
11158             }
11159         },
11160
11161         /**
11162          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
11163          * are convert to standard 6 digit hex color.
11164          * @param {String} attr The css attribute
11165          * @param {String} defaultValue The default value to use when a valid color isn't found
11166          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
11167          * YUI color anims.
11168          */
11169         getColor : function(attr, defaultValue, prefix){
11170             var v = this.getStyle(attr);
11171             if(!v || v == "transparent" || v == "inherit") {
11172                 return defaultValue;
11173             }
11174             var color = typeof prefix == "undefined" ? "#" : prefix;
11175             if(v.substr(0, 4) == "rgb("){
11176                 var rvs = v.slice(4, v.length -1).split(",");
11177                 for(var i = 0; i < 3; i++){
11178                     var h = parseInt(rvs[i]).toString(16);
11179                     if(h < 16){
11180                         h = "0" + h;
11181                     }
11182                     color += h;
11183                 }
11184             } else {
11185                 if(v.substr(0, 1) == "#"){
11186                     if(v.length == 4) {
11187                         for(var i = 1; i < 4; i++){
11188                             var c = v.charAt(i);
11189                             color +=  c + c;
11190                         }
11191                     }else if(v.length == 7){
11192                         color += v.substr(1);
11193                     }
11194                 }
11195             }
11196             return(color.length > 5 ? color.toLowerCase() : defaultValue);
11197         },
11198
11199         /**
11200          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
11201          * gradient background, rounded corners and a 4-way shadow.
11202          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
11203          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
11204          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
11205          * @return {Roo.Element} this
11206          */
11207         boxWrap : function(cls){
11208             cls = cls || 'x-box';
11209             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
11210             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
11211             return el;
11212         },
11213
11214         /**
11215          * Returns the value of a namespaced attribute from the element's underlying DOM node.
11216          * @param {String} namespace The namespace in which to look for the attribute
11217          * @param {String} name The attribute name
11218          * @return {String} The attribute value
11219          */
11220         getAttributeNS : Roo.isIE ? function(ns, name){
11221             var d = this.dom;
11222             var type = typeof d[ns+":"+name];
11223             if(type != 'undefined' && type != 'unknown'){
11224                 return d[ns+":"+name];
11225             }
11226             return d[name];
11227         } : function(ns, name){
11228             var d = this.dom;
11229             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
11230         },
11231         
11232         
11233         /**
11234          * Sets or Returns the value the dom attribute value
11235          * @param {String|Object} name The attribute name (or object to set multiple attributes)
11236          * @param {String} value (optional) The value to set the attribute to
11237          * @return {String} The attribute value
11238          */
11239         attr : function(name){
11240             if (arguments.length > 1) {
11241                 this.dom.setAttribute(name, arguments[1]);
11242                 return arguments[1];
11243             }
11244             if (typeof(name) == 'object') {
11245                 for(var i in name) {
11246                     this.attr(i, name[i]);
11247                 }
11248                 return name;
11249             }
11250             
11251             
11252             if (!this.dom.hasAttribute(name)) {
11253                 return undefined;
11254             }
11255             return this.dom.getAttribute(name);
11256         }
11257         
11258         
11259         
11260     };
11261
11262     var ep = El.prototype;
11263
11264     /**
11265      * Appends an event handler (Shorthand for addListener)
11266      * @param {String}   eventName     The type of event to append
11267      * @param {Function} fn        The method the event invokes
11268      * @param {Object} scope       (optional) The scope (this object) of the fn
11269      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
11270      * @method
11271      */
11272     ep.on = ep.addListener;
11273         // backwards compat
11274     ep.mon = ep.addListener;
11275
11276     /**
11277      * Removes an event handler from this element (shorthand for removeListener)
11278      * @param {String} eventName the type of event to remove
11279      * @param {Function} fn the method the event invokes
11280      * @return {Roo.Element} this
11281      * @method
11282      */
11283     ep.un = ep.removeListener;
11284
11285     /**
11286      * true to automatically adjust width and height settings for box-model issues (default to true)
11287      */
11288     ep.autoBoxAdjust = true;
11289
11290     // private
11291     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
11292
11293     // private
11294     El.addUnits = function(v, defaultUnit){
11295         if(v === "" || v == "auto"){
11296             return v;
11297         }
11298         if(v === undefined){
11299             return '';
11300         }
11301         if(typeof v == "number" || !El.unitPattern.test(v)){
11302             return v + (defaultUnit || 'px');
11303         }
11304         return v;
11305     };
11306
11307     // special markup used throughout Roo when box wrapping elements
11308     El.boxMarkup = '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div><div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div><div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
11309     /**
11310      * Visibility mode constant - Use visibility to hide element
11311      * @static
11312      * @type Number
11313      */
11314     El.VISIBILITY = 1;
11315     /**
11316      * Visibility mode constant - Use display to hide element
11317      * @static
11318      * @type Number
11319      */
11320     El.DISPLAY = 2;
11321
11322     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
11323     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
11324     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
11325
11326
11327
11328     /**
11329      * @private
11330      */
11331     El.cache = {};
11332
11333     var docEl;
11334
11335     /**
11336      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11337      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11338      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11339      * @return {Element} The Element object
11340      * @static
11341      */
11342     El.get = function(el){
11343         var ex, elm, id;
11344         if(!el){ return null; }
11345         if(typeof el == "string"){ // element id
11346             if(!(elm = document.getElementById(el))){
11347                 return null;
11348             }
11349             if(ex = El.cache[el]){
11350                 ex.dom = elm;
11351             }else{
11352                 ex = El.cache[el] = new El(elm);
11353             }
11354             return ex;
11355         }else if(el.tagName){ // dom element
11356             if(!(id = el.id)){
11357                 id = Roo.id(el);
11358             }
11359             if(ex = El.cache[id]){
11360                 ex.dom = el;
11361             }else{
11362                 ex = El.cache[id] = new El(el);
11363             }
11364             return ex;
11365         }else if(el instanceof El){
11366             if(el != docEl){
11367                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
11368                                                               // catch case where it hasn't been appended
11369                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
11370             }
11371             return el;
11372         }else if(el.isComposite){
11373             return el;
11374         }else if(el instanceof Array){
11375             return El.select(el);
11376         }else if(el == document){
11377             // create a bogus element object representing the document object
11378             if(!docEl){
11379                 var f = function(){};
11380                 f.prototype = El.prototype;
11381                 docEl = new f();
11382                 docEl.dom = document;
11383             }
11384             return docEl;
11385         }
11386         return null;
11387     };
11388
11389     // private
11390     El.uncache = function(el){
11391         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
11392             if(a[i]){
11393                 delete El.cache[a[i].id || a[i]];
11394             }
11395         }
11396     };
11397
11398     // private
11399     // Garbage collection - uncache elements/purge listeners on orphaned elements
11400     // so we don't hold a reference and cause the browser to retain them
11401     El.garbageCollect = function(){
11402         if(!Roo.enableGarbageCollector){
11403             clearInterval(El.collectorThread);
11404             return;
11405         }
11406         for(var eid in El.cache){
11407             var el = El.cache[eid], d = el.dom;
11408             // -------------------------------------------------------
11409             // Determining what is garbage:
11410             // -------------------------------------------------------
11411             // !d
11412             // dom node is null, definitely garbage
11413             // -------------------------------------------------------
11414             // !d.parentNode
11415             // no parentNode == direct orphan, definitely garbage
11416             // -------------------------------------------------------
11417             // !d.offsetParent && !document.getElementById(eid)
11418             // display none elements have no offsetParent so we will
11419             // also try to look it up by it's id. However, check
11420             // offsetParent first so we don't do unneeded lookups.
11421             // This enables collection of elements that are not orphans
11422             // directly, but somewhere up the line they have an orphan
11423             // parent.
11424             // -------------------------------------------------------
11425             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
11426                 delete El.cache[eid];
11427                 if(d && Roo.enableListenerCollection){
11428                     E.purgeElement(d);
11429                 }
11430             }
11431         }
11432     }
11433     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
11434
11435
11436     // dom is optional
11437     El.Flyweight = function(dom){
11438         this.dom = dom;
11439     };
11440     El.Flyweight.prototype = El.prototype;
11441
11442     El._flyweights = {};
11443     /**
11444      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11445      * the dom node can be overwritten by other code.
11446      * @param {String/HTMLElement} el The dom node or id
11447      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11448      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11449      * @static
11450      * @return {Element} The shared Element object
11451      */
11452     El.fly = function(el, named){
11453         named = named || '_global';
11454         el = Roo.getDom(el);
11455         if(!el){
11456             return null;
11457         }
11458         if(!El._flyweights[named]){
11459             El._flyweights[named] = new El.Flyweight();
11460         }
11461         El._flyweights[named].dom = el;
11462         return El._flyweights[named];
11463     };
11464
11465     /**
11466      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11467      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11468      * Shorthand of {@link Roo.Element#get}
11469      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11470      * @return {Element} The Element object
11471      * @member Roo
11472      * @method get
11473      */
11474     Roo.get = El.get;
11475     /**
11476      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11477      * the dom node can be overwritten by other code.
11478      * Shorthand of {@link Roo.Element#fly}
11479      * @param {String/HTMLElement} el The dom node or id
11480      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11481      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11482      * @static
11483      * @return {Element} The shared Element object
11484      * @member Roo
11485      * @method fly
11486      */
11487     Roo.fly = El.fly;
11488
11489     // speedy lookup for elements never to box adjust
11490     var noBoxAdjust = Roo.isStrict ? {
11491         select:1
11492     } : {
11493         input:1, select:1, textarea:1
11494     };
11495     if(Roo.isIE || Roo.isGecko){
11496         noBoxAdjust['button'] = 1;
11497     }
11498
11499
11500     Roo.EventManager.on(window, 'unload', function(){
11501         delete El.cache;
11502         delete El._flyweights;
11503     });
11504 })();
11505
11506
11507
11508
11509 if(Roo.DomQuery){
11510     Roo.Element.selectorFunction = Roo.DomQuery.select;
11511 }
11512
11513 Roo.Element.select = function(selector, unique, root){
11514     var els;
11515     if(typeof selector == "string"){
11516         els = Roo.Element.selectorFunction(selector, root);
11517     }else if(selector.length !== undefined){
11518         els = selector;
11519     }else{
11520         throw "Invalid selector";
11521     }
11522     if(unique === true){
11523         return new Roo.CompositeElement(els);
11524     }else{
11525         return new Roo.CompositeElementLite(els);
11526     }
11527 };
11528 /**
11529  * Selects elements based on the passed CSS selector to enable working on them as 1.
11530  * @param {String/Array} selector The CSS selector or an array of elements
11531  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
11532  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
11533  * @return {CompositeElementLite/CompositeElement}
11534  * @member Roo
11535  * @method select
11536  */
11537 Roo.select = Roo.Element.select;
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552 /*
11553  * Based on:
11554  * Ext JS Library 1.1.1
11555  * Copyright(c) 2006-2007, Ext JS, LLC.
11556  *
11557  * Originally Released Under LGPL - original licence link has changed is not relivant.
11558  *
11559  * Fork - LGPL
11560  * <script type="text/javascript">
11561  */
11562
11563
11564
11565 //Notifies Element that fx methods are available
11566 Roo.enableFx = true;
11567
11568 /**
11569  * @class Roo.Fx
11570  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
11571  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
11572  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
11573  * Element effects to work.</p><br/>
11574  *
11575  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
11576  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
11577  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
11578  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
11579  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
11580  * expected results and should be done with care.</p><br/>
11581  *
11582  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
11583  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
11584 <pre>
11585 Value  Description
11586 -----  -----------------------------
11587 tl     The top left corner
11588 t      The center of the top edge
11589 tr     The top right corner
11590 l      The center of the left edge
11591 r      The center of the right edge
11592 bl     The bottom left corner
11593 b      The center of the bottom edge
11594 br     The bottom right corner
11595 </pre>
11596  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
11597  * below are common options that can be passed to any Fx method.</b>
11598  * @cfg {Function} callback A function called when the effect is finished
11599  * @cfg {Object} scope The scope of the effect function
11600  * @cfg {String} easing A valid Easing value for the effect
11601  * @cfg {String} afterCls A css class to apply after the effect
11602  * @cfg {Number} duration The length of time (in seconds) that the effect should last
11603  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
11604  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
11605  * effects that end with the element being visually hidden, ignored otherwise)
11606  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
11607  * a function which returns such a specification that will be applied to the Element after the effect finishes
11608  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
11609  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
11610  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
11611  */
11612 Roo.Fx = {
11613         /**
11614          * Slides the element into view.  An anchor point can be optionally passed to set the point of
11615          * origin for the slide effect.  This function automatically handles wrapping the element with
11616          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11617          * Usage:
11618          *<pre><code>
11619 // default: slide the element in from the top
11620 el.slideIn();
11621
11622 // custom: slide the element in from the right with a 2-second duration
11623 el.slideIn('r', { duration: 2 });
11624
11625 // common config options shown with default values
11626 el.slideIn('t', {
11627     easing: 'easeOut',
11628     duration: .5
11629 });
11630 </code></pre>
11631          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11632          * @param {Object} options (optional) Object literal with any of the Fx config options
11633          * @return {Roo.Element} The Element
11634          */
11635     slideIn : function(anchor, o){
11636         var el = this.getFxEl();
11637         o = o || {};
11638
11639         el.queueFx(o, function(){
11640
11641             anchor = anchor || "t";
11642
11643             // fix display to visibility
11644             this.fixDisplay();
11645
11646             // restore values after effect
11647             var r = this.getFxRestore();
11648             var b = this.getBox();
11649             // fixed size for slide
11650             this.setSize(b);
11651
11652             // wrap if needed
11653             var wrap = this.fxWrap(r.pos, o, "hidden");
11654
11655             var st = this.dom.style;
11656             st.visibility = "visible";
11657             st.position = "absolute";
11658
11659             // clear out temp styles after slide and unwrap
11660             var after = function(){
11661                 el.fxUnwrap(wrap, r.pos, o);
11662                 st.width = r.width;
11663                 st.height = r.height;
11664                 el.afterFx(o);
11665             };
11666             // time to calc the positions
11667             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
11668
11669             switch(anchor.toLowerCase()){
11670                 case "t":
11671                     wrap.setSize(b.width, 0);
11672                     st.left = st.bottom = "0";
11673                     a = {height: bh};
11674                 break;
11675                 case "l":
11676                     wrap.setSize(0, b.height);
11677                     st.right = st.top = "0";
11678                     a = {width: bw};
11679                 break;
11680                 case "r":
11681                     wrap.setSize(0, b.height);
11682                     wrap.setX(b.right);
11683                     st.left = st.top = "0";
11684                     a = {width: bw, points: pt};
11685                 break;
11686                 case "b":
11687                     wrap.setSize(b.width, 0);
11688                     wrap.setY(b.bottom);
11689                     st.left = st.top = "0";
11690                     a = {height: bh, points: pt};
11691                 break;
11692                 case "tl":
11693                     wrap.setSize(0, 0);
11694                     st.right = st.bottom = "0";
11695                     a = {width: bw, height: bh};
11696                 break;
11697                 case "bl":
11698                     wrap.setSize(0, 0);
11699                     wrap.setY(b.y+b.height);
11700                     st.right = st.top = "0";
11701                     a = {width: bw, height: bh, points: pt};
11702                 break;
11703                 case "br":
11704                     wrap.setSize(0, 0);
11705                     wrap.setXY([b.right, b.bottom]);
11706                     st.left = st.top = "0";
11707                     a = {width: bw, height: bh, points: pt};
11708                 break;
11709                 case "tr":
11710                     wrap.setSize(0, 0);
11711                     wrap.setX(b.x+b.width);
11712                     st.left = st.bottom = "0";
11713                     a = {width: bw, height: bh, points: pt};
11714                 break;
11715             }
11716             this.dom.style.visibility = "visible";
11717             wrap.show();
11718
11719             arguments.callee.anim = wrap.fxanim(a,
11720                 o,
11721                 'motion',
11722                 .5,
11723                 'easeOut', after);
11724         });
11725         return this;
11726     },
11727     
11728         /**
11729          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
11730          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
11731          * 'hidden') but block elements will still take up space in the document.  The element must be removed
11732          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
11733          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11734          * Usage:
11735          *<pre><code>
11736 // default: slide the element out to the top
11737 el.slideOut();
11738
11739 // custom: slide the element out to the right with a 2-second duration
11740 el.slideOut('r', { duration: 2 });
11741
11742 // common config options shown with default values
11743 el.slideOut('t', {
11744     easing: 'easeOut',
11745     duration: .5,
11746     remove: false,
11747     useDisplay: false
11748 });
11749 </code></pre>
11750          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11751          * @param {Object} options (optional) Object literal with any of the Fx config options
11752          * @return {Roo.Element} The Element
11753          */
11754     slideOut : function(anchor, o){
11755         var el = this.getFxEl();
11756         o = o || {};
11757
11758         el.queueFx(o, function(){
11759
11760             anchor = anchor || "t";
11761
11762             // restore values after effect
11763             var r = this.getFxRestore();
11764             
11765             var b = this.getBox();
11766             // fixed size for slide
11767             this.setSize(b);
11768
11769             // wrap if needed
11770             var wrap = this.fxWrap(r.pos, o, "visible");
11771
11772             var st = this.dom.style;
11773             st.visibility = "visible";
11774             st.position = "absolute";
11775
11776             wrap.setSize(b);
11777
11778             var after = function(){
11779                 if(o.useDisplay){
11780                     el.setDisplayed(false);
11781                 }else{
11782                     el.hide();
11783                 }
11784
11785                 el.fxUnwrap(wrap, r.pos, o);
11786
11787                 st.width = r.width;
11788                 st.height = r.height;
11789
11790                 el.afterFx(o);
11791             };
11792
11793             var a, zero = {to: 0};
11794             switch(anchor.toLowerCase()){
11795                 case "t":
11796                     st.left = st.bottom = "0";
11797                     a = {height: zero};
11798                 break;
11799                 case "l":
11800                     st.right = st.top = "0";
11801                     a = {width: zero};
11802                 break;
11803                 case "r":
11804                     st.left = st.top = "0";
11805                     a = {width: zero, points: {to:[b.right, b.y]}};
11806                 break;
11807                 case "b":
11808                     st.left = st.top = "0";
11809                     a = {height: zero, points: {to:[b.x, b.bottom]}};
11810                 break;
11811                 case "tl":
11812                     st.right = st.bottom = "0";
11813                     a = {width: zero, height: zero};
11814                 break;
11815                 case "bl":
11816                     st.right = st.top = "0";
11817                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
11818                 break;
11819                 case "br":
11820                     st.left = st.top = "0";
11821                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
11822                 break;
11823                 case "tr":
11824                     st.left = st.bottom = "0";
11825                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
11826                 break;
11827             }
11828
11829             arguments.callee.anim = wrap.fxanim(a,
11830                 o,
11831                 'motion',
11832                 .5,
11833                 "easeOut", after);
11834         });
11835         return this;
11836     },
11837
11838         /**
11839          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
11840          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
11841          * The element must be removed from the DOM using the 'remove' config option if desired.
11842          * Usage:
11843          *<pre><code>
11844 // default
11845 el.puff();
11846
11847 // common config options shown with default values
11848 el.puff({
11849     easing: 'easeOut',
11850     duration: .5,
11851     remove: false,
11852     useDisplay: false
11853 });
11854 </code></pre>
11855          * @param {Object} options (optional) Object literal with any of the Fx config options
11856          * @return {Roo.Element} The Element
11857          */
11858     puff : function(o){
11859         var el = this.getFxEl();
11860         o = o || {};
11861
11862         el.queueFx(o, function(){
11863             this.clearOpacity();
11864             this.show();
11865
11866             // restore values after effect
11867             var r = this.getFxRestore();
11868             var st = this.dom.style;
11869
11870             var after = function(){
11871                 if(o.useDisplay){
11872                     el.setDisplayed(false);
11873                 }else{
11874                     el.hide();
11875                 }
11876
11877                 el.clearOpacity();
11878
11879                 el.setPositioning(r.pos);
11880                 st.width = r.width;
11881                 st.height = r.height;
11882                 st.fontSize = '';
11883                 el.afterFx(o);
11884             };
11885
11886             var width = this.getWidth();
11887             var height = this.getHeight();
11888
11889             arguments.callee.anim = this.fxanim({
11890                     width : {to: this.adjustWidth(width * 2)},
11891                     height : {to: this.adjustHeight(height * 2)},
11892                     points : {by: [-(width * .5), -(height * .5)]},
11893                     opacity : {to: 0},
11894                     fontSize: {to:200, unit: "%"}
11895                 },
11896                 o,
11897                 'motion',
11898                 .5,
11899                 "easeOut", after);
11900         });
11901         return this;
11902     },
11903
11904         /**
11905          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
11906          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
11907          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
11908          * Usage:
11909          *<pre><code>
11910 // default
11911 el.switchOff();
11912
11913 // all config options shown with default values
11914 el.switchOff({
11915     easing: 'easeIn',
11916     duration: .3,
11917     remove: false,
11918     useDisplay: false
11919 });
11920 </code></pre>
11921          * @param {Object} options (optional) Object literal with any of the Fx config options
11922          * @return {Roo.Element} The Element
11923          */
11924     switchOff : function(o){
11925         var el = this.getFxEl();
11926         o = o || {};
11927
11928         el.queueFx(o, function(){
11929             this.clearOpacity();
11930             this.clip();
11931
11932             // restore values after effect
11933             var r = this.getFxRestore();
11934             var st = this.dom.style;
11935
11936             var after = function(){
11937                 if(o.useDisplay){
11938                     el.setDisplayed(false);
11939                 }else{
11940                     el.hide();
11941                 }
11942
11943                 el.clearOpacity();
11944                 el.setPositioning(r.pos);
11945                 st.width = r.width;
11946                 st.height = r.height;
11947
11948                 el.afterFx(o);
11949             };
11950
11951             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
11952                 this.clearOpacity();
11953                 (function(){
11954                     this.fxanim({
11955                         height:{to:1},
11956                         points:{by:[0, this.getHeight() * .5]}
11957                     }, o, 'motion', 0.3, 'easeIn', after);
11958                 }).defer(100, this);
11959             });
11960         });
11961         return this;
11962     },
11963
11964     /**
11965      * Highlights the Element by setting a color (applies to the background-color by default, but can be
11966      * changed using the "attr" config option) and then fading back to the original color. If no original
11967      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
11968      * Usage:
11969 <pre><code>
11970 // default: highlight background to yellow
11971 el.highlight();
11972
11973 // custom: highlight foreground text to blue for 2 seconds
11974 el.highlight("0000ff", { attr: 'color', duration: 2 });
11975
11976 // common config options shown with default values
11977 el.highlight("ffff9c", {
11978     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
11979     endColor: (current color) or "ffffff",
11980     easing: 'easeIn',
11981     duration: 1
11982 });
11983 </code></pre>
11984      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
11985      * @param {Object} options (optional) Object literal with any of the Fx config options
11986      * @return {Roo.Element} The Element
11987      */ 
11988     highlight : function(color, o){
11989         var el = this.getFxEl();
11990         o = o || {};
11991
11992         el.queueFx(o, function(){
11993             color = color || "ffff9c";
11994             attr = o.attr || "backgroundColor";
11995
11996             this.clearOpacity();
11997             this.show();
11998
11999             var origColor = this.getColor(attr);
12000             var restoreColor = this.dom.style[attr];
12001             endColor = (o.endColor || origColor) || "ffffff";
12002
12003             var after = function(){
12004                 el.dom.style[attr] = restoreColor;
12005                 el.afterFx(o);
12006             };
12007
12008             var a = {};
12009             a[attr] = {from: color, to: endColor};
12010             arguments.callee.anim = this.fxanim(a,
12011                 o,
12012                 'color',
12013                 1,
12014                 'easeIn', after);
12015         });
12016         return this;
12017     },
12018
12019    /**
12020     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
12021     * Usage:
12022 <pre><code>
12023 // default: a single light blue ripple
12024 el.frame();
12025
12026 // custom: 3 red ripples lasting 3 seconds total
12027 el.frame("ff0000", 3, { duration: 3 });
12028
12029 // common config options shown with default values
12030 el.frame("C3DAF9", 1, {
12031     duration: 1 //duration of entire animation (not each individual ripple)
12032     // Note: Easing is not configurable and will be ignored if included
12033 });
12034 </code></pre>
12035     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
12036     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
12037     * @param {Object} options (optional) Object literal with any of the Fx config options
12038     * @return {Roo.Element} The Element
12039     */
12040     frame : function(color, count, o){
12041         var el = this.getFxEl();
12042         o = o || {};
12043
12044         el.queueFx(o, function(){
12045             color = color || "#C3DAF9";
12046             if(color.length == 6){
12047                 color = "#" + color;
12048             }
12049             count = count || 1;
12050             duration = o.duration || 1;
12051             this.show();
12052
12053             var b = this.getBox();
12054             var animFn = function(){
12055                 var proxy = this.createProxy({
12056
12057                      style:{
12058                         visbility:"hidden",
12059                         position:"absolute",
12060                         "z-index":"35000", // yee haw
12061                         border:"0px solid " + color
12062                      }
12063                   });
12064                 var scale = Roo.isBorderBox ? 2 : 1;
12065                 proxy.animate({
12066                     top:{from:b.y, to:b.y - 20},
12067                     left:{from:b.x, to:b.x - 20},
12068                     borderWidth:{from:0, to:10},
12069                     opacity:{from:1, to:0},
12070                     height:{from:b.height, to:(b.height + (20*scale))},
12071                     width:{from:b.width, to:(b.width + (20*scale))}
12072                 }, duration, function(){
12073                     proxy.remove();
12074                 });
12075                 if(--count > 0){
12076                      animFn.defer((duration/2)*1000, this);
12077                 }else{
12078                     el.afterFx(o);
12079                 }
12080             };
12081             animFn.call(this);
12082         });
12083         return this;
12084     },
12085
12086    /**
12087     * Creates a pause before any subsequent queued effects begin.  If there are
12088     * no effects queued after the pause it will have no effect.
12089     * Usage:
12090 <pre><code>
12091 el.pause(1);
12092 </code></pre>
12093     * @param {Number} seconds The length of time to pause (in seconds)
12094     * @return {Roo.Element} The Element
12095     */
12096     pause : function(seconds){
12097         var el = this.getFxEl();
12098         var o = {};
12099
12100         el.queueFx(o, function(){
12101             setTimeout(function(){
12102                 el.afterFx(o);
12103             }, seconds * 1000);
12104         });
12105         return this;
12106     },
12107
12108    /**
12109     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
12110     * using the "endOpacity" config option.
12111     * Usage:
12112 <pre><code>
12113 // default: fade in from opacity 0 to 100%
12114 el.fadeIn();
12115
12116 // custom: fade in from opacity 0 to 75% over 2 seconds
12117 el.fadeIn({ endOpacity: .75, duration: 2});
12118
12119 // common config options shown with default values
12120 el.fadeIn({
12121     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
12122     easing: 'easeOut',
12123     duration: .5
12124 });
12125 </code></pre>
12126     * @param {Object} options (optional) Object literal with any of the Fx config options
12127     * @return {Roo.Element} The Element
12128     */
12129     fadeIn : function(o){
12130         var el = this.getFxEl();
12131         o = o || {};
12132         el.queueFx(o, function(){
12133             this.setOpacity(0);
12134             this.fixDisplay();
12135             this.dom.style.visibility = 'visible';
12136             var to = o.endOpacity || 1;
12137             arguments.callee.anim = this.fxanim({opacity:{to:to}},
12138                 o, null, .5, "easeOut", function(){
12139                 if(to == 1){
12140                     this.clearOpacity();
12141                 }
12142                 el.afterFx(o);
12143             });
12144         });
12145         return this;
12146     },
12147
12148    /**
12149     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
12150     * using the "endOpacity" config option.
12151     * Usage:
12152 <pre><code>
12153 // default: fade out from the element's current opacity to 0
12154 el.fadeOut();
12155
12156 // custom: fade out from the element's current opacity to 25% over 2 seconds
12157 el.fadeOut({ endOpacity: .25, duration: 2});
12158
12159 // common config options shown with default values
12160 el.fadeOut({
12161     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
12162     easing: 'easeOut',
12163     duration: .5
12164     remove: false,
12165     useDisplay: false
12166 });
12167 </code></pre>
12168     * @param {Object} options (optional) Object literal with any of the Fx config options
12169     * @return {Roo.Element} The Element
12170     */
12171     fadeOut : function(o){
12172         var el = this.getFxEl();
12173         o = o || {};
12174         el.queueFx(o, function(){
12175             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
12176                 o, null, .5, "easeOut", function(){
12177                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
12178                      this.dom.style.display = "none";
12179                 }else{
12180                      this.dom.style.visibility = "hidden";
12181                 }
12182                 this.clearOpacity();
12183                 el.afterFx(o);
12184             });
12185         });
12186         return this;
12187     },
12188
12189    /**
12190     * Animates the transition of an element's dimensions from a starting height/width
12191     * to an ending height/width.
12192     * Usage:
12193 <pre><code>
12194 // change height and width to 100x100 pixels
12195 el.scale(100, 100);
12196
12197 // common config options shown with default values.  The height and width will default to
12198 // the element's existing values if passed as null.
12199 el.scale(
12200     [element's width],
12201     [element's height], {
12202     easing: 'easeOut',
12203     duration: .35
12204 });
12205 </code></pre>
12206     * @param {Number} width  The new width (pass undefined to keep the original width)
12207     * @param {Number} height  The new height (pass undefined to keep the original height)
12208     * @param {Object} options (optional) Object literal with any of the Fx config options
12209     * @return {Roo.Element} The Element
12210     */
12211     scale : function(w, h, o){
12212         this.shift(Roo.apply({}, o, {
12213             width: w,
12214             height: h
12215         }));
12216         return this;
12217     },
12218
12219    /**
12220     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
12221     * Any of these properties not specified in the config object will not be changed.  This effect 
12222     * requires that at least one new dimension, position or opacity setting must be passed in on
12223     * the config object in order for the function to have any effect.
12224     * Usage:
12225 <pre><code>
12226 // slide the element horizontally to x position 200 while changing the height and opacity
12227 el.shift({ x: 200, height: 50, opacity: .8 });
12228
12229 // common config options shown with default values.
12230 el.shift({
12231     width: [element's width],
12232     height: [element's height],
12233     x: [element's x position],
12234     y: [element's y position],
12235     opacity: [element's opacity],
12236     easing: 'easeOut',
12237     duration: .35
12238 });
12239 </code></pre>
12240     * @param {Object} options  Object literal with any of the Fx config options
12241     * @return {Roo.Element} The Element
12242     */
12243     shift : function(o){
12244         var el = this.getFxEl();
12245         o = o || {};
12246         el.queueFx(o, function(){
12247             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
12248             if(w !== undefined){
12249                 a.width = {to: this.adjustWidth(w)};
12250             }
12251             if(h !== undefined){
12252                 a.height = {to: this.adjustHeight(h)};
12253             }
12254             if(x !== undefined || y !== undefined){
12255                 a.points = {to: [
12256                     x !== undefined ? x : this.getX(),
12257                     y !== undefined ? y : this.getY()
12258                 ]};
12259             }
12260             if(op !== undefined){
12261                 a.opacity = {to: op};
12262             }
12263             if(o.xy !== undefined){
12264                 a.points = {to: o.xy};
12265             }
12266             arguments.callee.anim = this.fxanim(a,
12267                 o, 'motion', .35, "easeOut", function(){
12268                 el.afterFx(o);
12269             });
12270         });
12271         return this;
12272     },
12273
12274         /**
12275          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
12276          * ending point of the effect.
12277          * Usage:
12278          *<pre><code>
12279 // default: slide the element downward while fading out
12280 el.ghost();
12281
12282 // custom: slide the element out to the right with a 2-second duration
12283 el.ghost('r', { duration: 2 });
12284
12285 // common config options shown with default values
12286 el.ghost('b', {
12287     easing: 'easeOut',
12288     duration: .5
12289     remove: false,
12290     useDisplay: false
12291 });
12292 </code></pre>
12293          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
12294          * @param {Object} options (optional) Object literal with any of the Fx config options
12295          * @return {Roo.Element} The Element
12296          */
12297     ghost : function(anchor, o){
12298         var el = this.getFxEl();
12299         o = o || {};
12300
12301         el.queueFx(o, function(){
12302             anchor = anchor || "b";
12303
12304             // restore values after effect
12305             var r = this.getFxRestore();
12306             var w = this.getWidth(),
12307                 h = this.getHeight();
12308
12309             var st = this.dom.style;
12310
12311             var after = function(){
12312                 if(o.useDisplay){
12313                     el.setDisplayed(false);
12314                 }else{
12315                     el.hide();
12316                 }
12317
12318                 el.clearOpacity();
12319                 el.setPositioning(r.pos);
12320                 st.width = r.width;
12321                 st.height = r.height;
12322
12323                 el.afterFx(o);
12324             };
12325
12326             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
12327             switch(anchor.toLowerCase()){
12328                 case "t":
12329                     pt.by = [0, -h];
12330                 break;
12331                 case "l":
12332                     pt.by = [-w, 0];
12333                 break;
12334                 case "r":
12335                     pt.by = [w, 0];
12336                 break;
12337                 case "b":
12338                     pt.by = [0, h];
12339                 break;
12340                 case "tl":
12341                     pt.by = [-w, -h];
12342                 break;
12343                 case "bl":
12344                     pt.by = [-w, h];
12345                 break;
12346                 case "br":
12347                     pt.by = [w, h];
12348                 break;
12349                 case "tr":
12350                     pt.by = [w, -h];
12351                 break;
12352             }
12353
12354             arguments.callee.anim = this.fxanim(a,
12355                 o,
12356                 'motion',
12357                 .5,
12358                 "easeOut", after);
12359         });
12360         return this;
12361     },
12362
12363         /**
12364          * Ensures that all effects queued after syncFx is called on the element are
12365          * run concurrently.  This is the opposite of {@link #sequenceFx}.
12366          * @return {Roo.Element} The Element
12367          */
12368     syncFx : function(){
12369         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12370             block : false,
12371             concurrent : true,
12372             stopFx : false
12373         });
12374         return this;
12375     },
12376
12377         /**
12378          * Ensures that all effects queued after sequenceFx is called on the element are
12379          * run in sequence.  This is the opposite of {@link #syncFx}.
12380          * @return {Roo.Element} The Element
12381          */
12382     sequenceFx : function(){
12383         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12384             block : false,
12385             concurrent : false,
12386             stopFx : false
12387         });
12388         return this;
12389     },
12390
12391         /* @private */
12392     nextFx : function(){
12393         var ef = this.fxQueue[0];
12394         if(ef){
12395             ef.call(this);
12396         }
12397     },
12398
12399         /**
12400          * Returns true if the element has any effects actively running or queued, else returns false.
12401          * @return {Boolean} True if element has active effects, else false
12402          */
12403     hasActiveFx : function(){
12404         return this.fxQueue && this.fxQueue[0];
12405     },
12406
12407         /**
12408          * Stops any running effects and clears the element's internal effects queue if it contains
12409          * any additional effects that haven't started yet.
12410          * @return {Roo.Element} The Element
12411          */
12412     stopFx : function(){
12413         if(this.hasActiveFx()){
12414             var cur = this.fxQueue[0];
12415             if(cur && cur.anim && cur.anim.isAnimated()){
12416                 this.fxQueue = [cur]; // clear out others
12417                 cur.anim.stop(true);
12418             }
12419         }
12420         return this;
12421     },
12422
12423         /* @private */
12424     beforeFx : function(o){
12425         if(this.hasActiveFx() && !o.concurrent){
12426            if(o.stopFx){
12427                this.stopFx();
12428                return true;
12429            }
12430            return false;
12431         }
12432         return true;
12433     },
12434
12435         /**
12436          * Returns true if the element is currently blocking so that no other effect can be queued
12437          * until this effect is finished, else returns false if blocking is not set.  This is commonly
12438          * used to ensure that an effect initiated by a user action runs to completion prior to the
12439          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
12440          * @return {Boolean} True if blocking, else false
12441          */
12442     hasFxBlock : function(){
12443         var q = this.fxQueue;
12444         return q && q[0] && q[0].block;
12445     },
12446
12447         /* @private */
12448     queueFx : function(o, fn){
12449         if(!this.fxQueue){
12450             this.fxQueue = [];
12451         }
12452         if(!this.hasFxBlock()){
12453             Roo.applyIf(o, this.fxDefaults);
12454             if(!o.concurrent){
12455                 var run = this.beforeFx(o);
12456                 fn.block = o.block;
12457                 this.fxQueue.push(fn);
12458                 if(run){
12459                     this.nextFx();
12460                 }
12461             }else{
12462                 fn.call(this);
12463             }
12464         }
12465         return this;
12466     },
12467
12468         /* @private */
12469     fxWrap : function(pos, o, vis){
12470         var wrap;
12471         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
12472             var wrapXY;
12473             if(o.fixPosition){
12474                 wrapXY = this.getXY();
12475             }
12476             var div = document.createElement("div");
12477             div.style.visibility = vis;
12478             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
12479             wrap.setPositioning(pos);
12480             if(wrap.getStyle("position") == "static"){
12481                 wrap.position("relative");
12482             }
12483             this.clearPositioning('auto');
12484             wrap.clip();
12485             wrap.dom.appendChild(this.dom);
12486             if(wrapXY){
12487                 wrap.setXY(wrapXY);
12488             }
12489         }
12490         return wrap;
12491     },
12492
12493         /* @private */
12494     fxUnwrap : function(wrap, pos, o){
12495         this.clearPositioning();
12496         this.setPositioning(pos);
12497         if(!o.wrap){
12498             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
12499             wrap.remove();
12500         }
12501     },
12502
12503         /* @private */
12504     getFxRestore : function(){
12505         var st = this.dom.style;
12506         return {pos: this.getPositioning(), width: st.width, height : st.height};
12507     },
12508
12509         /* @private */
12510     afterFx : function(o){
12511         if(o.afterStyle){
12512             this.applyStyles(o.afterStyle);
12513         }
12514         if(o.afterCls){
12515             this.addClass(o.afterCls);
12516         }
12517         if(o.remove === true){
12518             this.remove();
12519         }
12520         Roo.callback(o.callback, o.scope, [this]);
12521         if(!o.concurrent){
12522             this.fxQueue.shift();
12523             this.nextFx();
12524         }
12525     },
12526
12527         /* @private */
12528     getFxEl : function(){ // support for composite element fx
12529         return Roo.get(this.dom);
12530     },
12531
12532         /* @private */
12533     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
12534         animType = animType || 'run';
12535         opt = opt || {};
12536         var anim = Roo.lib.Anim[animType](
12537             this.dom, args,
12538             (opt.duration || defaultDur) || .35,
12539             (opt.easing || defaultEase) || 'easeOut',
12540             function(){
12541                 Roo.callback(cb, this);
12542             },
12543             this
12544         );
12545         opt.anim = anim;
12546         return anim;
12547     }
12548 };
12549
12550 // backwords compat
12551 Roo.Fx.resize = Roo.Fx.scale;
12552
12553 //When included, Roo.Fx is automatically applied to Element so that all basic
12554 //effects are available directly via the Element API
12555 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
12556  * Based on:
12557  * Ext JS Library 1.1.1
12558  * Copyright(c) 2006-2007, Ext JS, LLC.
12559  *
12560  * Originally Released Under LGPL - original licence link has changed is not relivant.
12561  *
12562  * Fork - LGPL
12563  * <script type="text/javascript">
12564  */
12565
12566
12567 /**
12568  * @class Roo.CompositeElement
12569  * Standard composite class. Creates a Roo.Element for every element in the collection.
12570  * <br><br>
12571  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12572  * actions will be performed on all the elements in this collection.</b>
12573  * <br><br>
12574  * All methods return <i>this</i> and can be chained.
12575  <pre><code>
12576  var els = Roo.select("#some-el div.some-class", true);
12577  // or select directly from an existing element
12578  var el = Roo.get('some-el');
12579  el.select('div.some-class', true);
12580
12581  els.setWidth(100); // all elements become 100 width
12582  els.hide(true); // all elements fade out and hide
12583  // or
12584  els.setWidth(100).hide(true);
12585  </code></pre>
12586  */
12587 Roo.CompositeElement = function(els){
12588     this.elements = [];
12589     this.addElements(els);
12590 };
12591 Roo.CompositeElement.prototype = {
12592     isComposite: true,
12593     addElements : function(els){
12594         if(!els) {
12595             return this;
12596         }
12597         if(typeof els == "string"){
12598             els = Roo.Element.selectorFunction(els);
12599         }
12600         var yels = this.elements;
12601         var index = yels.length-1;
12602         for(var i = 0, len = els.length; i < len; i++) {
12603                 yels[++index] = Roo.get(els[i]);
12604         }
12605         return this;
12606     },
12607
12608     /**
12609     * Clears this composite and adds the elements returned by the passed selector.
12610     * @param {String/Array} els A string CSS selector, an array of elements or an element
12611     * @return {CompositeElement} this
12612     */
12613     fill : function(els){
12614         this.elements = [];
12615         this.add(els);
12616         return this;
12617     },
12618
12619     /**
12620     * Filters this composite to only elements that match the passed selector.
12621     * @param {String} selector A string CSS selector
12622     * @param {Boolean} inverse return inverse filter (not matches)
12623     * @return {CompositeElement} this
12624     */
12625     filter : function(selector, inverse){
12626         var els = [];
12627         inverse = inverse || false;
12628         this.each(function(el){
12629             var match = inverse ? !el.is(selector) : el.is(selector);
12630             if(match){
12631                 els[els.length] = el.dom;
12632             }
12633         });
12634         this.fill(els);
12635         return this;
12636     },
12637
12638     invoke : function(fn, args){
12639         var els = this.elements;
12640         for(var i = 0, len = els.length; i < len; i++) {
12641                 Roo.Element.prototype[fn].apply(els[i], args);
12642         }
12643         return this;
12644     },
12645     /**
12646     * Adds elements to this composite.
12647     * @param {String/Array} els A string CSS selector, an array of elements or an element
12648     * @return {CompositeElement} this
12649     */
12650     add : function(els){
12651         if(typeof els == "string"){
12652             this.addElements(Roo.Element.selectorFunction(els));
12653         }else if(els.length !== undefined){
12654             this.addElements(els);
12655         }else{
12656             this.addElements([els]);
12657         }
12658         return this;
12659     },
12660     /**
12661     * Calls the passed function passing (el, this, index) for each element in this composite.
12662     * @param {Function} fn The function to call
12663     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12664     * @return {CompositeElement} this
12665     */
12666     each : function(fn, scope){
12667         var els = this.elements;
12668         for(var i = 0, len = els.length; i < len; i++){
12669             if(fn.call(scope || els[i], els[i], this, i) === false) {
12670                 break;
12671             }
12672         }
12673         return this;
12674     },
12675
12676     /**
12677      * Returns the Element object at the specified index
12678      * @param {Number} index
12679      * @return {Roo.Element}
12680      */
12681     item : function(index){
12682         return this.elements[index] || null;
12683     },
12684
12685     /**
12686      * Returns the first Element
12687      * @return {Roo.Element}
12688      */
12689     first : function(){
12690         return this.item(0);
12691     },
12692
12693     /**
12694      * Returns the last Element
12695      * @return {Roo.Element}
12696      */
12697     last : function(){
12698         return this.item(this.elements.length-1);
12699     },
12700
12701     /**
12702      * Returns the number of elements in this composite
12703      * @return Number
12704      */
12705     getCount : function(){
12706         return this.elements.length;
12707     },
12708
12709     /**
12710      * Returns true if this composite contains the passed element
12711      * @return Boolean
12712      */
12713     contains : function(el){
12714         return this.indexOf(el) !== -1;
12715     },
12716
12717     /**
12718      * Returns true if this composite contains the passed element
12719      * @return Boolean
12720      */
12721     indexOf : function(el){
12722         return this.elements.indexOf(Roo.get(el));
12723     },
12724
12725
12726     /**
12727     * Removes the specified element(s).
12728     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
12729     * or an array of any of those.
12730     * @param {Boolean} removeDom (optional) True to also remove the element from the document
12731     * @return {CompositeElement} this
12732     */
12733     removeElement : function(el, removeDom){
12734         if(el instanceof Array){
12735             for(var i = 0, len = el.length; i < len; i++){
12736                 this.removeElement(el[i]);
12737             }
12738             return this;
12739         }
12740         var index = typeof el == 'number' ? el : this.indexOf(el);
12741         if(index !== -1){
12742             if(removeDom){
12743                 var d = this.elements[index];
12744                 if(d.dom){
12745                     d.remove();
12746                 }else{
12747                     d.parentNode.removeChild(d);
12748                 }
12749             }
12750             this.elements.splice(index, 1);
12751         }
12752         return this;
12753     },
12754
12755     /**
12756     * Replaces the specified element with the passed element.
12757     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
12758     * to replace.
12759     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
12760     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
12761     * @return {CompositeElement} this
12762     */
12763     replaceElement : function(el, replacement, domReplace){
12764         var index = typeof el == 'number' ? el : this.indexOf(el);
12765         if(index !== -1){
12766             if(domReplace){
12767                 this.elements[index].replaceWith(replacement);
12768             }else{
12769                 this.elements.splice(index, 1, Roo.get(replacement))
12770             }
12771         }
12772         return this;
12773     },
12774
12775     /**
12776      * Removes all elements.
12777      */
12778     clear : function(){
12779         this.elements = [];
12780     }
12781 };
12782 (function(){
12783     Roo.CompositeElement.createCall = function(proto, fnName){
12784         if(!proto[fnName]){
12785             proto[fnName] = function(){
12786                 return this.invoke(fnName, arguments);
12787             };
12788         }
12789     };
12790     for(var fnName in Roo.Element.prototype){
12791         if(typeof Roo.Element.prototype[fnName] == "function"){
12792             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
12793         }
12794     };
12795 })();
12796 /*
12797  * Based on:
12798  * Ext JS Library 1.1.1
12799  * Copyright(c) 2006-2007, Ext JS, LLC.
12800  *
12801  * Originally Released Under LGPL - original licence link has changed is not relivant.
12802  *
12803  * Fork - LGPL
12804  * <script type="text/javascript">
12805  */
12806
12807 /**
12808  * @class Roo.CompositeElementLite
12809  * @extends Roo.CompositeElement
12810  * Flyweight composite class. Reuses the same Roo.Element for element operations.
12811  <pre><code>
12812  var els = Roo.select("#some-el div.some-class");
12813  // or select directly from an existing element
12814  var el = Roo.get('some-el');
12815  el.select('div.some-class');
12816
12817  els.setWidth(100); // all elements become 100 width
12818  els.hide(true); // all elements fade out and hide
12819  // or
12820  els.setWidth(100).hide(true);
12821  </code></pre><br><br>
12822  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12823  * actions will be performed on all the elements in this collection.</b>
12824  */
12825 Roo.CompositeElementLite = function(els){
12826     Roo.CompositeElementLite.superclass.constructor.call(this, els);
12827     this.el = new Roo.Element.Flyweight();
12828 };
12829 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
12830     addElements : function(els){
12831         if(els){
12832             if(els instanceof Array){
12833                 this.elements = this.elements.concat(els);
12834             }else{
12835                 var yels = this.elements;
12836                 var index = yels.length-1;
12837                 for(var i = 0, len = els.length; i < len; i++) {
12838                     yels[++index] = els[i];
12839                 }
12840             }
12841         }
12842         return this;
12843     },
12844     invoke : function(fn, args){
12845         var els = this.elements;
12846         var el = this.el;
12847         for(var i = 0, len = els.length; i < len; i++) {
12848             el.dom = els[i];
12849                 Roo.Element.prototype[fn].apply(el, args);
12850         }
12851         return this;
12852     },
12853     /**
12854      * Returns a flyweight Element of the dom element object at the specified index
12855      * @param {Number} index
12856      * @return {Roo.Element}
12857      */
12858     item : function(index){
12859         if(!this.elements[index]){
12860             return null;
12861         }
12862         this.el.dom = this.elements[index];
12863         return this.el;
12864     },
12865
12866     // fixes scope with flyweight
12867     addListener : function(eventName, handler, scope, opt){
12868         var els = this.elements;
12869         for(var i = 0, len = els.length; i < len; i++) {
12870             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
12871         }
12872         return this;
12873     },
12874
12875     /**
12876     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
12877     * passed is the flyweight (shared) Roo.Element instance, so if you require a
12878     * a reference to the dom node, use el.dom.</b>
12879     * @param {Function} fn The function to call
12880     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12881     * @return {CompositeElement} this
12882     */
12883     each : function(fn, scope){
12884         var els = this.elements;
12885         var el = this.el;
12886         for(var i = 0, len = els.length; i < len; i++){
12887             el.dom = els[i];
12888                 if(fn.call(scope || el, el, this, i) === false){
12889                 break;
12890             }
12891         }
12892         return this;
12893     },
12894
12895     indexOf : function(el){
12896         return this.elements.indexOf(Roo.getDom(el));
12897     },
12898
12899     replaceElement : function(el, replacement, domReplace){
12900         var index = typeof el == 'number' ? el : this.indexOf(el);
12901         if(index !== -1){
12902             replacement = Roo.getDom(replacement);
12903             if(domReplace){
12904                 var d = this.elements[index];
12905                 d.parentNode.insertBefore(replacement, d);
12906                 d.parentNode.removeChild(d);
12907             }
12908             this.elements.splice(index, 1, replacement);
12909         }
12910         return this;
12911     }
12912 });
12913 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
12914
12915 /*
12916  * Based on:
12917  * Ext JS Library 1.1.1
12918  * Copyright(c) 2006-2007, Ext JS, LLC.
12919  *
12920  * Originally Released Under LGPL - original licence link has changed is not relivant.
12921  *
12922  * Fork - LGPL
12923  * <script type="text/javascript">
12924  */
12925
12926  
12927
12928 /**
12929  * @class Roo.data.Connection
12930  * @extends Roo.util.Observable
12931  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
12932  * either to a configured URL, or to a URL specified at request time. 
12933  * 
12934  * Requests made by this class are asynchronous, and will return immediately. No data from
12935  * the server will be available to the statement immediately following the {@link #request} call.
12936  * To process returned data, use a callback in the request options object, or an event listener.
12937  * 
12938  * Note: If you are doing a file upload, you will not get a normal response object sent back to
12939  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
12940  * The response object is created using the innerHTML of the IFRAME's document as the responseText
12941  * property and, if present, the IFRAME's XML document as the responseXML property.
12942  * 
12943  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
12944  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
12945  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
12946  * standard DOM methods.
12947  * @constructor
12948  * @param {Object} config a configuration object.
12949  */
12950 Roo.data.Connection = function(config){
12951     Roo.apply(this, config);
12952     this.addEvents({
12953         /**
12954          * @event beforerequest
12955          * Fires before a network request is made to retrieve a data object.
12956          * @param {Connection} conn This Connection object.
12957          * @param {Object} options The options config object passed to the {@link #request} method.
12958          */
12959         "beforerequest" : true,
12960         /**
12961          * @event requestcomplete
12962          * Fires if the request was successfully completed.
12963          * @param {Connection} conn This Connection object.
12964          * @param {Object} response The XHR object containing the response data.
12965          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12966          * @param {Object} options The options config object passed to the {@link #request} method.
12967          */
12968         "requestcomplete" : true,
12969         /**
12970          * @event requestexception
12971          * Fires if an error HTTP status was returned from the server.
12972          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
12973          * @param {Connection} conn This Connection object.
12974          * @param {Object} response The XHR object containing the response data.
12975          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12976          * @param {Object} options The options config object passed to the {@link #request} method.
12977          */
12978         "requestexception" : true
12979     });
12980     Roo.data.Connection.superclass.constructor.call(this);
12981 };
12982
12983 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
12984     /**
12985      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12986      */
12987     /**
12988      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12989      * extra parameters to each request made by this object. (defaults to undefined)
12990      */
12991     /**
12992      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12993      *  to each request made by this object. (defaults to undefined)
12994      */
12995     /**
12996      * @cfg {String} method (Optional) The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
12997      */
12998     /**
12999      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13000      */
13001     timeout : 30000,
13002     /**
13003      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
13004      * @type Boolean
13005      */
13006     autoAbort:false,
13007
13008     /**
13009      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
13010      * @type Boolean
13011      */
13012     disableCaching: true,
13013
13014     /**
13015      * Sends an HTTP request to a remote server.
13016      * @param {Object} options An object which may contain the following properties:<ul>
13017      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
13018      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
13019      * request, a url encoded string or a function to call to get either.</li>
13020      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
13021      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
13022      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
13023      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
13024      * <li>options {Object} The parameter to the request call.</li>
13025      * <li>success {Boolean} True if the request succeeded.</li>
13026      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13027      * </ul></li>
13028      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
13029      * The callback is passed the following parameters:<ul>
13030      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13031      * <li>options {Object} The parameter to the request call.</li>
13032      * </ul></li>
13033      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
13034      * The callback is passed the following parameters:<ul>
13035      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13036      * <li>options {Object} The parameter to the request call.</li>
13037      * </ul></li>
13038      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
13039      * for the callback function. Defaults to the browser window.</li>
13040      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
13041      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
13042      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
13043      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
13044      * params for the post data. Any params will be appended to the URL.</li>
13045      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
13046      * </ul>
13047      * @return {Number} transactionId
13048      */
13049     request : function(o){
13050         if(this.fireEvent("beforerequest", this, o) !== false){
13051             var p = o.params;
13052
13053             if(typeof p == "function"){
13054                 p = p.call(o.scope||window, o);
13055             }
13056             if(typeof p == "object"){
13057                 p = Roo.urlEncode(o.params);
13058             }
13059             if(this.extraParams){
13060                 var extras = Roo.urlEncode(this.extraParams);
13061                 p = p ? (p + '&' + extras) : extras;
13062             }
13063
13064             var url = o.url || this.url;
13065             if(typeof url == 'function'){
13066                 url = url.call(o.scope||window, o);
13067             }
13068
13069             if(o.form){
13070                 var form = Roo.getDom(o.form);
13071                 url = url || form.action;
13072
13073                 var enctype = form.getAttribute("enctype");
13074                 
13075                 if (o.formData) {
13076                     return this.doFormDataUpload(o, url);
13077                 }
13078                 
13079                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
13080                     return this.doFormUpload(o, p, url);
13081                 }
13082                 var f = Roo.lib.Ajax.serializeForm(form);
13083                 p = p ? (p + '&' + f) : f;
13084             }
13085             
13086             if (!o.form && o.formData) {
13087                 o.formData = o.formData === true ? new FormData() : o.formData;
13088                 for (var k in o.params) {
13089                     o.formData.append(k,o.params[k]);
13090                 }
13091                     
13092                 return this.doFormDataUpload(o, url);
13093             }
13094             
13095
13096             var hs = o.headers;
13097             if(this.defaultHeaders){
13098                 hs = Roo.apply(hs || {}, this.defaultHeaders);
13099                 if(!o.headers){
13100                     o.headers = hs;
13101                 }
13102             }
13103
13104             var cb = {
13105                 success: this.handleResponse,
13106                 failure: this.handleFailure,
13107                 scope: this,
13108                 argument: {options: o},
13109                 timeout : o.timeout || this.timeout
13110             };
13111
13112             var method = o.method||this.method||(p ? "POST" : "GET");
13113
13114             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
13115                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
13116             }
13117
13118             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13119                 if(o.autoAbort){
13120                     this.abort();
13121                 }
13122             }else if(this.autoAbort !== false){
13123                 this.abort();
13124             }
13125
13126             if((method == 'GET' && p) || o.xmlData){
13127                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
13128                 p = '';
13129             }
13130             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
13131             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
13132             Roo.lib.Ajax.useDefaultHeader == true;
13133             return this.transId;
13134         }else{
13135             Roo.callback(o.callback, o.scope, [o, null, null]);
13136             return null;
13137         }
13138     },
13139
13140     /**
13141      * Determine whether this object has a request outstanding.
13142      * @param {Number} transactionId (Optional) defaults to the last transaction
13143      * @return {Boolean} True if there is an outstanding request.
13144      */
13145     isLoading : function(transId){
13146         if(transId){
13147             return Roo.lib.Ajax.isCallInProgress(transId);
13148         }else{
13149             return this.transId ? true : false;
13150         }
13151     },
13152
13153     /**
13154      * Aborts any outstanding request.
13155      * @param {Number} transactionId (Optional) defaults to the last transaction
13156      */
13157     abort : function(transId){
13158         if(transId || this.isLoading()){
13159             Roo.lib.Ajax.abort(transId || this.transId);
13160         }
13161     },
13162
13163     // private
13164     handleResponse : function(response){
13165         this.transId = false;
13166         var options = response.argument.options;
13167         response.argument = options ? options.argument : null;
13168         this.fireEvent("requestcomplete", this, response, options);
13169         Roo.callback(options.success, options.scope, [response, options]);
13170         Roo.callback(options.callback, options.scope, [options, true, response]);
13171     },
13172
13173     // private
13174     handleFailure : function(response, e){
13175         this.transId = false;
13176         var options = response.argument.options;
13177         response.argument = options ? options.argument : null;
13178         this.fireEvent("requestexception", this, response, options, e);
13179         Roo.callback(options.failure, options.scope, [response, options]);
13180         Roo.callback(options.callback, options.scope, [options, false, response]);
13181     },
13182
13183     // private
13184     doFormUpload : function(o, ps, url){
13185         var id = Roo.id();
13186         var frame = document.createElement('iframe');
13187         frame.id = id;
13188         frame.name = id;
13189         frame.className = 'x-hidden';
13190         if(Roo.isIE){
13191             frame.src = Roo.SSL_SECURE_URL;
13192         }
13193         document.body.appendChild(frame);
13194
13195         if(Roo.isIE){
13196            document.frames[id].name = id;
13197         }
13198
13199         var form = Roo.getDom(o.form);
13200         form.target = id;
13201         form.method = 'POST';
13202         form.enctype = form.encoding = 'multipart/form-data';
13203         if(url){
13204             form.action = url;
13205         }
13206
13207         var hiddens, hd;
13208         if(ps){ // add dynamic params
13209             hiddens = [];
13210             ps = Roo.urlDecode(ps, false);
13211             for(var k in ps){
13212                 if(ps.hasOwnProperty(k)){
13213                     hd = document.createElement('input');
13214                     hd.type = 'hidden';
13215                     hd.name = k;
13216                     hd.value = ps[k];
13217                     form.appendChild(hd);
13218                     hiddens.push(hd);
13219                 }
13220             }
13221         }
13222
13223         function cb(){
13224             var r = {  // bogus response object
13225                 responseText : '',
13226                 responseXML : null
13227             };
13228
13229             r.argument = o ? o.argument : null;
13230
13231             try { //
13232                 var doc;
13233                 if(Roo.isIE){
13234                     doc = frame.contentWindow.document;
13235                 }else {
13236                     doc = (frame.contentDocument || window.frames[id].document);
13237                 }
13238                 if(doc && doc.body){
13239                     r.responseText = doc.body.innerHTML;
13240                 }
13241                 if(doc && doc.XMLDocument){
13242                     r.responseXML = doc.XMLDocument;
13243                 }else {
13244                     r.responseXML = doc;
13245                 }
13246             }
13247             catch(e) {
13248                 // ignore
13249             }
13250
13251             Roo.EventManager.removeListener(frame, 'load', cb, this);
13252
13253             this.fireEvent("requestcomplete", this, r, o);
13254             Roo.callback(o.success, o.scope, [r, o]);
13255             Roo.callback(o.callback, o.scope, [o, true, r]);
13256
13257             setTimeout(function(){document.body.removeChild(frame);}, 100);
13258         }
13259
13260         Roo.EventManager.on(frame, 'load', cb, this);
13261         form.submit();
13262
13263         if(hiddens){ // remove dynamic params
13264             for(var i = 0, len = hiddens.length; i < len; i++){
13265                 form.removeChild(hiddens[i]);
13266             }
13267         }
13268     },
13269     // this is a 'formdata version???'
13270     
13271     
13272     doFormDataUpload : function(o,  url)
13273     {
13274         var formData;
13275         if (o.form) {
13276             var form =  Roo.getDom(o.form);
13277             form.enctype = form.encoding = 'multipart/form-data';
13278             formData = o.formData === true ? new FormData(form) : o.formData;
13279         } else {
13280             formData = o.formData === true ? new FormData() : o.formData;
13281         }
13282         
13283       
13284         var cb = {
13285             success: this.handleResponse,
13286             failure: this.handleFailure,
13287             scope: this,
13288             argument: {options: o},
13289             timeout : o.timeout || this.timeout
13290         };
13291  
13292         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13293             if(o.autoAbort){
13294                 this.abort();
13295             }
13296         }else if(this.autoAbort !== false){
13297             this.abort();
13298         }
13299
13300         //Roo.lib.Ajax.defaultPostHeader = null;
13301         Roo.lib.Ajax.useDefaultHeader = false;
13302         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
13303         Roo.lib.Ajax.useDefaultHeader = true;
13304  
13305          
13306     }
13307     
13308 });
13309 /*
13310  * Based on:
13311  * Ext JS Library 1.1.1
13312  * Copyright(c) 2006-2007, Ext JS, LLC.
13313  *
13314  * Originally Released Under LGPL - original licence link has changed is not relivant.
13315  *
13316  * Fork - LGPL
13317  * <script type="text/javascript">
13318  */
13319  
13320 /**
13321  * Global Ajax request class.
13322  * 
13323  * @class Roo.Ajax
13324  * @extends Roo.data.Connection
13325  * @static
13326  * 
13327  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
13328  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
13329  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
13330  * @cfg {String} method (Optional)  The default HTTP method to be used for requests. (defaults to undefined; if not set but parms are present will use POST, otherwise GET)
13331  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13332  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
13333  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
13334  */
13335 Roo.Ajax = new Roo.data.Connection({
13336     // fix up the docs
13337     /**
13338      * @scope Roo.Ajax
13339      * @type {Boolear} 
13340      */
13341     autoAbort : false,
13342
13343     /**
13344      * Serialize the passed form into a url encoded string
13345      * @scope Roo.Ajax
13346      * @param {String/HTMLElement} form
13347      * @return {String}
13348      */
13349     serializeForm : function(form){
13350         return Roo.lib.Ajax.serializeForm(form);
13351     }
13352 });/*
13353  * Based on:
13354  * Ext JS Library 1.1.1
13355  * Copyright(c) 2006-2007, Ext JS, LLC.
13356  *
13357  * Originally Released Under LGPL - original licence link has changed is not relivant.
13358  *
13359  * Fork - LGPL
13360  * <script type="text/javascript">
13361  */
13362
13363  
13364 /**
13365  * @class Roo.UpdateManager
13366  * @extends Roo.util.Observable
13367  * Provides AJAX-style update for Element object.<br><br>
13368  * Usage:<br>
13369  * <pre><code>
13370  * // Get it from a Roo.Element object
13371  * var el = Roo.get("foo");
13372  * var mgr = el.getUpdateManager();
13373  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
13374  * ...
13375  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
13376  * <br>
13377  * // or directly (returns the same UpdateManager instance)
13378  * var mgr = new Roo.UpdateManager("myElementId");
13379  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
13380  * mgr.on("update", myFcnNeedsToKnow);
13381  * <br>
13382    // short handed call directly from the element object
13383    Roo.get("foo").load({
13384         url: "bar.php",
13385         scripts:true,
13386         params: "for=bar",
13387         text: "Loading Foo..."
13388    });
13389  * </code></pre>
13390  * @constructor
13391  * Create new UpdateManager directly.
13392  * @param {String/HTMLElement/Roo.Element} el The element to update
13393  * @param {Boolean} forceNew (optional) By default the constructor checks to see if the passed element already has an UpdateManager and if it does it returns the same instance. This will skip that check (useful for extending this class).
13394  */
13395 Roo.UpdateManager = function(el, forceNew){
13396     el = Roo.get(el);
13397     if(!forceNew && el.updateManager){
13398         return el.updateManager;
13399     }
13400     /**
13401      * The Element object
13402      * @type Roo.Element
13403      */
13404     this.el = el;
13405     /**
13406      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
13407      * @type String
13408      */
13409     this.defaultUrl = null;
13410
13411     this.addEvents({
13412         /**
13413          * @event beforeupdate
13414          * Fired before an update is made, return false from your handler and the update is cancelled.
13415          * @param {Roo.Element} el
13416          * @param {String/Object/Function} url
13417          * @param {String/Object} params
13418          */
13419         "beforeupdate": true,
13420         /**
13421          * @event update
13422          * Fired after successful update is made.
13423          * @param {Roo.Element} el
13424          * @param {Object} oResponseObject The response Object
13425          */
13426         "update": true,
13427         /**
13428          * @event failure
13429          * Fired on update failure.
13430          * @param {Roo.Element} el
13431          * @param {Object} oResponseObject The response Object
13432          */
13433         "failure": true
13434     });
13435     var d = Roo.UpdateManager.defaults;
13436     /**
13437      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
13438      * @type String
13439      */
13440     this.sslBlankUrl = d.sslBlankUrl;
13441     /**
13442      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
13443      * @type Boolean
13444      */
13445     this.disableCaching = d.disableCaching;
13446     /**
13447      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13448      * @type String
13449      */
13450     this.indicatorText = d.indicatorText;
13451     /**
13452      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
13453      * @type String
13454      */
13455     this.showLoadIndicator = d.showLoadIndicator;
13456     /**
13457      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
13458      * @type Number
13459      */
13460     this.timeout = d.timeout;
13461
13462     /**
13463      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
13464      * @type Boolean
13465      */
13466     this.loadScripts = d.loadScripts;
13467
13468     /**
13469      * Transaction object of current executing transaction
13470      */
13471     this.transaction = null;
13472
13473     /**
13474      * @private
13475      */
13476     this.autoRefreshProcId = null;
13477     /**
13478      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
13479      * @type Function
13480      */
13481     this.refreshDelegate = this.refresh.createDelegate(this);
13482     /**
13483      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
13484      * @type Function
13485      */
13486     this.updateDelegate = this.update.createDelegate(this);
13487     /**
13488      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
13489      * @type Function
13490      */
13491     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
13492     /**
13493      * @private
13494      */
13495     this.successDelegate = this.processSuccess.createDelegate(this);
13496     /**
13497      * @private
13498      */
13499     this.failureDelegate = this.processFailure.createDelegate(this);
13500
13501     if(!this.renderer){
13502      /**
13503       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
13504       */
13505     this.renderer = new Roo.UpdateManager.BasicRenderer();
13506     }
13507     
13508     Roo.UpdateManager.superclass.constructor.call(this);
13509 };
13510
13511 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
13512     /**
13513      * Get the Element this UpdateManager is bound to
13514      * @return {Roo.Element} The element
13515      */
13516     getEl : function(){
13517         return this.el;
13518     },
13519     /**
13520      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
13521      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
13522 <pre><code>
13523 um.update({<br/>
13524     url: "your-url.php",<br/>
13525     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
13526     callback: yourFunction,<br/>
13527     scope: yourObject, //(optional scope)  <br/>
13528     discardUrl: false, <br/>
13529     nocache: false,<br/>
13530     text: "Loading...",<br/>
13531     timeout: 30,<br/>
13532     scripts: false<br/>
13533 });
13534 </code></pre>
13535      * The only required property is url. The optional properties nocache, text and scripts
13536      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
13537      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
13538      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13539      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
13540      */
13541     update : function(url, params, callback, discardUrl){
13542         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
13543             var method = this.method,
13544                 cfg;
13545             if(typeof url == "object"){ // must be config object
13546                 cfg = url;
13547                 url = cfg.url;
13548                 params = params || cfg.params;
13549                 callback = callback || cfg.callback;
13550                 discardUrl = discardUrl || cfg.discardUrl;
13551                 if(callback && cfg.scope){
13552                     callback = callback.createDelegate(cfg.scope);
13553                 }
13554                 if(typeof cfg.method != "undefined"){method = cfg.method;};
13555                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
13556                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
13557                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
13558                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
13559             }
13560             this.showLoading();
13561             if(!discardUrl){
13562                 this.defaultUrl = url;
13563             }
13564             if(typeof url == "function"){
13565                 url = url.call(this);
13566             }
13567
13568             method = method || (params ? "POST" : "GET");
13569             if(method == "GET"){
13570                 url = this.prepareUrl(url);
13571             }
13572
13573             var o = Roo.apply(cfg ||{}, {
13574                 url : url,
13575                 params: params,
13576                 success: this.successDelegate,
13577                 failure: this.failureDelegate,
13578                 callback: undefined,
13579                 timeout: (this.timeout*1000),
13580                 argument: {"url": url, "form": null, "callback": callback, "params": params}
13581             });
13582             Roo.log("updated manager called with timeout of " + o.timeout);
13583             this.transaction = Roo.Ajax.request(o);
13584         }
13585     },
13586
13587     /**
13588      * Performs an async form post, updating this element with the response. If the form has the attribute enctype="multipart/form-data", it assumes it's a file upload.
13589      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
13590      * @param {String/HTMLElement} form The form Id or form element
13591      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
13592      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
13593      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13594      */
13595     formUpdate : function(form, url, reset, callback){
13596         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
13597             if(typeof url == "function"){
13598                 url = url.call(this);
13599             }
13600             form = Roo.getDom(form);
13601             this.transaction = Roo.Ajax.request({
13602                 form: form,
13603                 url:url,
13604                 success: this.successDelegate,
13605                 failure: this.failureDelegate,
13606                 timeout: (this.timeout*1000),
13607                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
13608             });
13609             this.showLoading.defer(1, this);
13610         }
13611     },
13612
13613     /**
13614      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
13615      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13616      */
13617     refresh : function(callback){
13618         if(this.defaultUrl == null){
13619             return;
13620         }
13621         this.update(this.defaultUrl, null, callback, true);
13622     },
13623
13624     /**
13625      * Set this element to auto refresh.
13626      * @param {Number} interval How often to update (in seconds).
13627      * @param {String/Function} url (optional) The url for this request or a function to call to get the url (Defaults to the last used url)
13628      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "&param1=1&param2=2" or as an object {param1: 1, param2: 2}
13629      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13630      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
13631      */
13632     startAutoRefresh : function(interval, url, params, callback, refreshNow){
13633         if(refreshNow){
13634             this.update(url || this.defaultUrl, params, callback, true);
13635         }
13636         if(this.autoRefreshProcId){
13637             clearInterval(this.autoRefreshProcId);
13638         }
13639         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
13640     },
13641
13642     /**
13643      * Stop auto refresh on this element.
13644      */
13645      stopAutoRefresh : function(){
13646         if(this.autoRefreshProcId){
13647             clearInterval(this.autoRefreshProcId);
13648             delete this.autoRefreshProcId;
13649         }
13650     },
13651
13652     isAutoRefreshing : function(){
13653        return this.autoRefreshProcId ? true : false;
13654     },
13655     /**
13656      * Called to update the element to "Loading" state. Override to perform custom action.
13657      */
13658     showLoading : function(){
13659         if(this.showLoadIndicator){
13660             this.el.update(this.indicatorText);
13661         }
13662     },
13663
13664     /**
13665      * Adds unique parameter to query string if disableCaching = true
13666      * @private
13667      */
13668     prepareUrl : function(url){
13669         if(this.disableCaching){
13670             var append = "_dc=" + (new Date().getTime());
13671             if(url.indexOf("?") !== -1){
13672                 url += "&" + append;
13673             }else{
13674                 url += "?" + append;
13675             }
13676         }
13677         return url;
13678     },
13679
13680     /**
13681      * @private
13682      */
13683     processSuccess : function(response){
13684         this.transaction = null;
13685         if(response.argument.form && response.argument.reset){
13686             try{ // put in try/catch since some older FF releases had problems with this
13687                 response.argument.form.reset();
13688             }catch(e){}
13689         }
13690         if(this.loadScripts){
13691             this.renderer.render(this.el, response, this,
13692                 this.updateComplete.createDelegate(this, [response]));
13693         }else{
13694             this.renderer.render(this.el, response, this);
13695             this.updateComplete(response);
13696         }
13697     },
13698
13699     updateComplete : function(response){
13700         this.fireEvent("update", this.el, response);
13701         if(typeof response.argument.callback == "function"){
13702             response.argument.callback(this.el, true, response);
13703         }
13704     },
13705
13706     /**
13707      * @private
13708      */
13709     processFailure : function(response){
13710         this.transaction = null;
13711         this.fireEvent("failure", this.el, response);
13712         if(typeof response.argument.callback == "function"){
13713             response.argument.callback(this.el, false, response);
13714         }
13715     },
13716
13717     /**
13718      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
13719      * @param {Object} renderer The object implementing the render() method
13720      */
13721     setRenderer : function(renderer){
13722         this.renderer = renderer;
13723     },
13724
13725     getRenderer : function(){
13726        return this.renderer;
13727     },
13728
13729     /**
13730      * Set the defaultUrl used for updates
13731      * @param {String/Function} defaultUrl The url or a function to call to get the url
13732      */
13733     setDefaultUrl : function(defaultUrl){
13734         this.defaultUrl = defaultUrl;
13735     },
13736
13737     /**
13738      * Aborts the executing transaction
13739      */
13740     abort : function(){
13741         if(this.transaction){
13742             Roo.Ajax.abort(this.transaction);
13743         }
13744     },
13745
13746     /**
13747      * Returns true if an update is in progress
13748      * @return {Boolean}
13749      */
13750     isUpdating : function(){
13751         if(this.transaction){
13752             return Roo.Ajax.isLoading(this.transaction);
13753         }
13754         return false;
13755     }
13756 });
13757
13758 /**
13759  * @class Roo.UpdateManager.defaults
13760  * @static (not really - but it helps the doc tool)
13761  * The defaults collection enables customizing the default properties of UpdateManager
13762  */
13763    Roo.UpdateManager.defaults = {
13764        /**
13765          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
13766          * @type Number
13767          */
13768          timeout : 30,
13769
13770          /**
13771          * True to process scripts by default (Defaults to false).
13772          * @type Boolean
13773          */
13774         loadScripts : false,
13775
13776         /**
13777         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
13778         * @type String
13779         */
13780         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
13781         /**
13782          * Whether to append unique parameter on get request to disable caching (Defaults to false).
13783          * @type Boolean
13784          */
13785         disableCaching : false,
13786         /**
13787          * Whether to show indicatorText when loading (Defaults to true).
13788          * @type Boolean
13789          */
13790         showLoadIndicator : true,
13791         /**
13792          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13793          * @type String
13794          */
13795         indicatorText : '<div class="loading-indicator">Loading...</div>'
13796    };
13797
13798 /**
13799  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
13800  *Usage:
13801  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
13802  * @param {String/HTMLElement/Roo.Element} el The element to update
13803  * @param {String} url The url
13804  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
13805  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
13806  * @static
13807  * @deprecated
13808  * @member Roo.UpdateManager
13809  */
13810 Roo.UpdateManager.updateElement = function(el, url, params, options){
13811     var um = Roo.get(el, true).getUpdateManager();
13812     Roo.apply(um, options);
13813     um.update(url, params, options ? options.callback : null);
13814 };
13815 // alias for backwards compat
13816 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
13817 /**
13818  * @class Roo.UpdateManager.BasicRenderer
13819  * Default Content renderer. Updates the elements innerHTML with the responseText.
13820  */
13821 Roo.UpdateManager.BasicRenderer = function(){};
13822
13823 Roo.UpdateManager.BasicRenderer.prototype = {
13824     /**
13825      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
13826      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
13827      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
13828      * @param {Roo.Element} el The element being rendered
13829      * @param {Object} response The YUI Connect response object
13830      * @param {UpdateManager} updateManager The calling update manager
13831      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
13832      */
13833      render : function(el, response, updateManager, callback){
13834         el.update(response.responseText, updateManager.loadScripts, callback);
13835     }
13836 };
13837 /*
13838  * Based on:
13839  * Roo JS
13840  * (c)) Alan Knowles
13841  * Licence : LGPL
13842  */
13843
13844
13845 /**
13846  * @class Roo.DomTemplate
13847  * @extends Roo.Template
13848  * An effort at a dom based template engine..
13849  *
13850  * Similar to XTemplate, except it uses dom parsing to create the template..
13851  *
13852  * Supported features:
13853  *
13854  *  Tags:
13855
13856 <pre><code>
13857       {a_variable} - output encoded.
13858       {a_variable.format:("Y-m-d")} - call a method on the variable
13859       {a_variable:raw} - unencoded output
13860       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
13861       {a_variable:this.method_on_template(...)} - call a method on the template object.
13862  
13863 </code></pre>
13864  *  The tpl tag:
13865 <pre><code>
13866         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
13867         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
13868         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
13869         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
13870   
13871 </code></pre>
13872  *      
13873  */
13874 Roo.DomTemplate = function()
13875 {
13876      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
13877      if (this.html) {
13878         this.compile();
13879      }
13880 };
13881
13882
13883 Roo.extend(Roo.DomTemplate, Roo.Template, {
13884     /**
13885      * id counter for sub templates.
13886      */
13887     id : 0,
13888     /**
13889      * flag to indicate if dom parser is inside a pre,
13890      * it will strip whitespace if not.
13891      */
13892     inPre : false,
13893     
13894     /**
13895      * The various sub templates
13896      */
13897     tpls : false,
13898     
13899     
13900     
13901     /**
13902      *
13903      * basic tag replacing syntax
13904      * WORD:WORD()
13905      *
13906      * // you can fake an object call by doing this
13907      *  x.t:(test,tesT) 
13908      * 
13909      */
13910     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
13911     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
13912     
13913     iterChild : function (node, method) {
13914         
13915         var oldPre = this.inPre;
13916         if (node.tagName == 'PRE') {
13917             this.inPre = true;
13918         }
13919         for( var i = 0; i < node.childNodes.length; i++) {
13920             method.call(this, node.childNodes[i]);
13921         }
13922         this.inPre = oldPre;
13923     },
13924     
13925     
13926     
13927     /**
13928      * compile the template
13929      *
13930      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
13931      *
13932      */
13933     compile: function()
13934     {
13935         var s = this.html;
13936         
13937         // covert the html into DOM...
13938         var doc = false;
13939         var div =false;
13940         try {
13941             doc = document.implementation.createHTMLDocument("");
13942             doc.documentElement.innerHTML =   this.html  ;
13943             div = doc.documentElement;
13944         } catch (e) {
13945             // old IE... - nasty -- it causes all sorts of issues.. with
13946             // images getting pulled from server..
13947             div = document.createElement('div');
13948             div.innerHTML = this.html;
13949         }
13950         //doc.documentElement.innerHTML = htmlBody
13951          
13952         
13953         
13954         this.tpls = [];
13955         var _t = this;
13956         this.iterChild(div, function(n) {_t.compileNode(n, true); });
13957         
13958         var tpls = this.tpls;
13959         
13960         // create a top level template from the snippet..
13961         
13962         //Roo.log(div.innerHTML);
13963         
13964         var tpl = {
13965             uid : 'master',
13966             id : this.id++,
13967             attr : false,
13968             value : false,
13969             body : div.innerHTML,
13970             
13971             forCall : false,
13972             execCall : false,
13973             dom : div,
13974             isTop : true
13975             
13976         };
13977         tpls.unshift(tpl);
13978         
13979         
13980         // compile them...
13981         this.tpls = [];
13982         Roo.each(tpls, function(tp){
13983             this.compileTpl(tp);
13984             this.tpls[tp.id] = tp;
13985         }, this);
13986         
13987         this.master = tpls[0];
13988         return this;
13989         
13990         
13991     },
13992     
13993     compileNode : function(node, istop) {
13994         // test for
13995         //Roo.log(node);
13996         
13997         
13998         // skip anything not a tag..
13999         if (node.nodeType != 1) {
14000             if (node.nodeType == 3 && !this.inPre) {
14001                 // reduce white space..
14002                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
14003                 
14004             }
14005             return;
14006         }
14007         
14008         var tpl = {
14009             uid : false,
14010             id : false,
14011             attr : false,
14012             value : false,
14013             body : '',
14014             
14015             forCall : false,
14016             execCall : false,
14017             dom : false,
14018             isTop : istop
14019             
14020             
14021         };
14022         
14023         
14024         switch(true) {
14025             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
14026             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
14027             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
14028             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
14029             // no default..
14030         }
14031         
14032         
14033         if (!tpl.attr) {
14034             // just itterate children..
14035             this.iterChild(node,this.compileNode);
14036             return;
14037         }
14038         tpl.uid = this.id++;
14039         tpl.value = node.getAttribute('roo-' +  tpl.attr);
14040         node.removeAttribute('roo-'+ tpl.attr);
14041         if (tpl.attr != 'name') {
14042             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
14043             node.parentNode.replaceChild(placeholder,  node);
14044         } else {
14045             
14046             var placeholder =  document.createElement('span');
14047             placeholder.className = 'roo-tpl-' + tpl.value;
14048             node.parentNode.replaceChild(placeholder,  node);
14049         }
14050         
14051         // parent now sees '{domtplXXXX}
14052         this.iterChild(node,this.compileNode);
14053         
14054         // we should now have node body...
14055         var div = document.createElement('div');
14056         div.appendChild(node);
14057         tpl.dom = node;
14058         // this has the unfortunate side effect of converting tagged attributes
14059         // eg. href="{...}" into %7C...%7D
14060         // this has been fixed by searching for those combo's although it's a bit hacky..
14061         
14062         
14063         tpl.body = div.innerHTML;
14064         
14065         
14066          
14067         tpl.id = tpl.uid;
14068         switch(tpl.attr) {
14069             case 'for' :
14070                 switch (tpl.value) {
14071                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
14072                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
14073                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
14074                 }
14075                 break;
14076             
14077             case 'exec':
14078                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14079                 break;
14080             
14081             case 'if':     
14082                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14083                 break;
14084             
14085             case 'name':
14086                 tpl.id  = tpl.value; // replace non characters???
14087                 break;
14088             
14089         }
14090         
14091         
14092         this.tpls.push(tpl);
14093         
14094         
14095         
14096     },
14097     
14098     
14099     
14100     
14101     /**
14102      * Compile a segment of the template into a 'sub-template'
14103      *
14104      * 
14105      * 
14106      *
14107      */
14108     compileTpl : function(tpl)
14109     {
14110         var fm = Roo.util.Format;
14111         var useF = this.disableFormats !== true;
14112         
14113         var sep = Roo.isGecko ? "+\n" : ",\n";
14114         
14115         var undef = function(str) {
14116             Roo.debug && Roo.log("Property not found :"  + str);
14117             return '';
14118         };
14119           
14120         //Roo.log(tpl.body);
14121         
14122         
14123         
14124         var fn = function(m, lbrace, name, format, args)
14125         {
14126             //Roo.log("ARGS");
14127             //Roo.log(arguments);
14128             args = args ? args.replace(/\\'/g,"'") : args;
14129             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
14130             if (typeof(format) == 'undefined') {
14131                 format =  'htmlEncode'; 
14132             }
14133             if (format == 'raw' ) {
14134                 format = false;
14135             }
14136             
14137             if(name.substr(0, 6) == 'domtpl'){
14138                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
14139             }
14140             
14141             // build an array of options to determine if value is undefined..
14142             
14143             // basically get 'xxxx.yyyy' then do
14144             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
14145             //    (function () { Roo.log("Property not found"); return ''; })() :
14146             //    ......
14147             
14148             var udef_ar = [];
14149             var lookfor = '';
14150             Roo.each(name.split('.'), function(st) {
14151                 lookfor += (lookfor.length ? '.': '') + st;
14152                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
14153             });
14154             
14155             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
14156             
14157             
14158             if(format && useF){
14159                 
14160                 args = args ? ',' + args : "";
14161                  
14162                 if(format.substr(0, 5) != "this."){
14163                     format = "fm." + format + '(';
14164                 }else{
14165                     format = 'this.call("'+ format.substr(5) + '", ';
14166                     args = ", values";
14167                 }
14168                 
14169                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
14170             }
14171              
14172             if (args && args.length) {
14173                 // called with xxyx.yuu:(test,test)
14174                 // change to ()
14175                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
14176             }
14177             // raw.. - :raw modifier..
14178             return "'"+ sep + udef_st  + name + ")"+sep+"'";
14179             
14180         };
14181         var body;
14182         // branched to use + in gecko and [].join() in others
14183         if(Roo.isGecko){
14184             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
14185                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
14186                     "';};};";
14187         }else{
14188             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
14189             body.push(tpl.body.replace(/(\r\n|\n)/g,
14190                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
14191             body.push("'].join('');};};");
14192             body = body.join('');
14193         }
14194         
14195         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
14196        
14197         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
14198         eval(body);
14199         
14200         return this;
14201     },
14202      
14203     /**
14204      * same as applyTemplate, except it's done to one of the subTemplates
14205      * when using named templates, you can do:
14206      *
14207      * var str = pl.applySubTemplate('your-name', values);
14208      *
14209      * 
14210      * @param {Number} id of the template
14211      * @param {Object} values to apply to template
14212      * @param {Object} parent (normaly the instance of this object)
14213      */
14214     applySubTemplate : function(id, values, parent)
14215     {
14216         
14217         
14218         var t = this.tpls[id];
14219         
14220         
14221         try { 
14222             if(t.ifCall && !t.ifCall.call(this, values, parent)){
14223                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
14224                 return '';
14225             }
14226         } catch(e) {
14227             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
14228             Roo.log(values);
14229           
14230             return '';
14231         }
14232         try { 
14233             
14234             if(t.execCall && t.execCall.call(this, values, parent)){
14235                 return '';
14236             }
14237         } catch(e) {
14238             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14239             Roo.log(values);
14240             return '';
14241         }
14242         
14243         try {
14244             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
14245             parent = t.target ? values : parent;
14246             if(t.forCall && vs instanceof Array){
14247                 var buf = [];
14248                 for(var i = 0, len = vs.length; i < len; i++){
14249                     try {
14250                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
14251                     } catch (e) {
14252                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14253                         Roo.log(e.body);
14254                         //Roo.log(t.compiled);
14255                         Roo.log(vs[i]);
14256                     }   
14257                 }
14258                 return buf.join('');
14259             }
14260         } catch (e) {
14261             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14262             Roo.log(values);
14263             return '';
14264         }
14265         try {
14266             return t.compiled.call(this, vs, parent);
14267         } catch (e) {
14268             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14269             Roo.log(e.body);
14270             //Roo.log(t.compiled);
14271             Roo.log(values);
14272             return '';
14273         }
14274     },
14275
14276    
14277
14278     applyTemplate : function(values){
14279         return this.master.compiled.call(this, values, {});
14280         //var s = this.subs;
14281     },
14282
14283     apply : function(){
14284         return this.applyTemplate.apply(this, arguments);
14285     }
14286
14287  });
14288
14289 Roo.DomTemplate.from = function(el){
14290     el = Roo.getDom(el);
14291     return new Roo.Domtemplate(el.value || el.innerHTML);
14292 };/*
14293  * Based on:
14294  * Ext JS Library 1.1.1
14295  * Copyright(c) 2006-2007, Ext JS, LLC.
14296  *
14297  * Originally Released Under LGPL - original licence link has changed is not relivant.
14298  *
14299  * Fork - LGPL
14300  * <script type="text/javascript">
14301  */
14302
14303 /**
14304  * @class Roo.util.DelayedTask
14305  * Provides a convenient method of performing setTimeout where a new
14306  * timeout cancels the old timeout. An example would be performing validation on a keypress.
14307  * You can use this class to buffer
14308  * the keypress events for a certain number of milliseconds, and perform only if they stop
14309  * for that amount of time.
14310  * @constructor The parameters to this constructor serve as defaults and are not required.
14311  * @param {Function} fn (optional) The default function to timeout
14312  * @param {Object} scope (optional) The default scope of that timeout
14313  * @param {Array} args (optional) The default Array of arguments
14314  */
14315 Roo.util.DelayedTask = function(fn, scope, args){
14316     var id = null, d, t;
14317
14318     var call = function(){
14319         var now = new Date().getTime();
14320         if(now - t >= d){
14321             clearInterval(id);
14322             id = null;
14323             fn.apply(scope, args || []);
14324         }
14325     };
14326     /**
14327      * Cancels any pending timeout and queues a new one
14328      * @param {Number} delay The milliseconds to delay
14329      * @param {Function} newFn (optional) Overrides function passed to constructor
14330      * @param {Object} newScope (optional) Overrides scope passed to constructor
14331      * @param {Array} newArgs (optional) Overrides args passed to constructor
14332      */
14333     this.delay = function(delay, newFn, newScope, newArgs){
14334         if(id && delay != d){
14335             this.cancel();
14336         }
14337         d = delay;
14338         t = new Date().getTime();
14339         fn = newFn || fn;
14340         scope = newScope || scope;
14341         args = newArgs || args;
14342         if(!id){
14343             id = setInterval(call, d);
14344         }
14345     };
14346
14347     /**
14348      * Cancel the last queued timeout
14349      */
14350     this.cancel = function(){
14351         if(id){
14352             clearInterval(id);
14353             id = null;
14354         }
14355     };
14356 };/*
14357  * Based on:
14358  * Ext JS Library 1.1.1
14359  * Copyright(c) 2006-2007, Ext JS, LLC.
14360  *
14361  * Originally Released Under LGPL - original licence link has changed is not relivant.
14362  *
14363  * Fork - LGPL
14364  * <script type="text/javascript">
14365  */
14366 /**
14367  * @class Roo.util.TaskRunner
14368  * Manage background tasks - not sure why this is better that setInterval?
14369  * @static
14370  *
14371  */
14372  
14373 Roo.util.TaskRunner = function(interval){
14374     interval = interval || 10;
14375     var tasks = [], removeQueue = [];
14376     var id = 0;
14377     var running = false;
14378
14379     var stopThread = function(){
14380         running = false;
14381         clearInterval(id);
14382         id = 0;
14383     };
14384
14385     var startThread = function(){
14386         if(!running){
14387             running = true;
14388             id = setInterval(runTasks, interval);
14389         }
14390     };
14391
14392     var removeTask = function(task){
14393         removeQueue.push(task);
14394         if(task.onStop){
14395             task.onStop();
14396         }
14397     };
14398
14399     var runTasks = function(){
14400         if(removeQueue.length > 0){
14401             for(var i = 0, len = removeQueue.length; i < len; i++){
14402                 tasks.remove(removeQueue[i]);
14403             }
14404             removeQueue = [];
14405             if(tasks.length < 1){
14406                 stopThread();
14407                 return;
14408             }
14409         }
14410         var now = new Date().getTime();
14411         for(var i = 0, len = tasks.length; i < len; ++i){
14412             var t = tasks[i];
14413             var itime = now - t.taskRunTime;
14414             if(t.interval <= itime){
14415                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
14416                 t.taskRunTime = now;
14417                 if(rt === false || t.taskRunCount === t.repeat){
14418                     removeTask(t);
14419                     return;
14420                 }
14421             }
14422             if(t.duration && t.duration <= (now - t.taskStartTime)){
14423                 removeTask(t);
14424             }
14425         }
14426     };
14427
14428     /**
14429      * Queues a new task.
14430      * @param {Object} task
14431      *
14432      * Task property : interval = how frequent to run.
14433      * Task object should implement
14434      * function run()
14435      * Task object may implement
14436      * function onStop()
14437      */
14438     this.start = function(task){
14439         tasks.push(task);
14440         task.taskStartTime = new Date().getTime();
14441         task.taskRunTime = 0;
14442         task.taskRunCount = 0;
14443         startThread();
14444         return task;
14445     };
14446     /**
14447      * Stop  new task.
14448      * @param {Object} task
14449      */
14450     this.stop = function(task){
14451         removeTask(task);
14452         return task;
14453     };
14454     /**
14455      * Stop all Tasks
14456      */
14457     this.stopAll = function(){
14458         stopThread();
14459         for(var i = 0, len = tasks.length; i < len; i++){
14460             if(tasks[i].onStop){
14461                 tasks[i].onStop();
14462             }
14463         }
14464         tasks = [];
14465         removeQueue = [];
14466     };
14467 };
14468
14469 Roo.TaskMgr = new Roo.util.TaskRunner();/*
14470  * Based on:
14471  * Ext JS Library 1.1.1
14472  * Copyright(c) 2006-2007, Ext JS, LLC.
14473  *
14474  * Originally Released Under LGPL - original licence link has changed is not relivant.
14475  *
14476  * Fork - LGPL
14477  * <script type="text/javascript">
14478  */
14479
14480  
14481 /**
14482  * @class Roo.util.MixedCollection
14483  * @extends Roo.util.Observable
14484  * A Collection class that maintains both numeric indexes and keys and exposes events.
14485  * @constructor
14486  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
14487  * collection (defaults to false)
14488  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
14489  * and return the key value for that item.  This is used when available to look up the key on items that
14490  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
14491  * equivalent to providing an implementation for the {@link #getKey} method.
14492  */
14493 Roo.util.MixedCollection = function(allowFunctions, keyFn){
14494     this.items = [];
14495     this.map = {};
14496     this.keys = [];
14497     this.length = 0;
14498     this.addEvents({
14499         /**
14500          * @event clear
14501          * Fires when the collection is cleared.
14502          */
14503         "clear" : true,
14504         /**
14505          * @event add
14506          * Fires when an item is added to the collection.
14507          * @param {Number} index The index at which the item was added.
14508          * @param {Object} o The item added.
14509          * @param {String} key The key associated with the added item.
14510          */
14511         "add" : true,
14512         /**
14513          * @event replace
14514          * Fires when an item is replaced in the collection.
14515          * @param {String} key he key associated with the new added.
14516          * @param {Object} old The item being replaced.
14517          * @param {Object} new The new item.
14518          */
14519         "replace" : true,
14520         /**
14521          * @event remove
14522          * Fires when an item is removed from the collection.
14523          * @param {Object} o The item being removed.
14524          * @param {String} key (optional) The key associated with the removed item.
14525          */
14526         "remove" : true,
14527         "sort" : true
14528     });
14529     this.allowFunctions = allowFunctions === true;
14530     if(keyFn){
14531         this.getKey = keyFn;
14532     }
14533     Roo.util.MixedCollection.superclass.constructor.call(this);
14534 };
14535
14536 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
14537     allowFunctions : false,
14538     
14539 /**
14540  * Adds an item to the collection.
14541  * @param {String} key The key to associate with the item
14542  * @param {Object} o The item to add.
14543  * @return {Object} The item added.
14544  */
14545     add : function(key, o){
14546         if(arguments.length == 1){
14547             o = arguments[0];
14548             key = this.getKey(o);
14549         }
14550         if(typeof key == "undefined" || key === null){
14551             this.length++;
14552             this.items.push(o);
14553             this.keys.push(null);
14554         }else{
14555             var old = this.map[key];
14556             if(old){
14557                 return this.replace(key, o);
14558             }
14559             this.length++;
14560             this.items.push(o);
14561             this.map[key] = o;
14562             this.keys.push(key);
14563         }
14564         this.fireEvent("add", this.length-1, o, key);
14565         return o;
14566     },
14567        
14568 /**
14569   * MixedCollection has a generic way to fetch keys if you implement getKey.
14570 <pre><code>
14571 // normal way
14572 var mc = new Roo.util.MixedCollection();
14573 mc.add(someEl.dom.id, someEl);
14574 mc.add(otherEl.dom.id, otherEl);
14575 //and so on
14576
14577 // using getKey
14578 var mc = new Roo.util.MixedCollection();
14579 mc.getKey = function(el){
14580    return el.dom.id;
14581 };
14582 mc.add(someEl);
14583 mc.add(otherEl);
14584
14585 // or via the constructor
14586 var mc = new Roo.util.MixedCollection(false, function(el){
14587    return el.dom.id;
14588 });
14589 mc.add(someEl);
14590 mc.add(otherEl);
14591 </code></pre>
14592  * @param o {Object} The item for which to find the key.
14593  * @return {Object} The key for the passed item.
14594  */
14595     getKey : function(o){
14596          return o.id; 
14597     },
14598    
14599 /**
14600  * Replaces an item in the collection.
14601  * @param {String} key The key associated with the item to replace, or the item to replace.
14602  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
14603  * @return {Object}  The new item.
14604  */
14605     replace : function(key, o){
14606         if(arguments.length == 1){
14607             o = arguments[0];
14608             key = this.getKey(o);
14609         }
14610         var old = this.item(key);
14611         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
14612              return this.add(key, o);
14613         }
14614         var index = this.indexOfKey(key);
14615         this.items[index] = o;
14616         this.map[key] = o;
14617         this.fireEvent("replace", key, old, o);
14618         return o;
14619     },
14620    
14621 /**
14622  * Adds all elements of an Array or an Object to the collection.
14623  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
14624  * an Array of values, each of which are added to the collection.
14625  */
14626     addAll : function(objs){
14627         if(arguments.length > 1 || objs instanceof Array){
14628             var args = arguments.length > 1 ? arguments : objs;
14629             for(var i = 0, len = args.length; i < len; i++){
14630                 this.add(args[i]);
14631             }
14632         }else{
14633             for(var key in objs){
14634                 if(this.allowFunctions || typeof objs[key] != "function"){
14635                     this.add(key, objs[key]);
14636                 }
14637             }
14638         }
14639     },
14640    
14641 /**
14642  * Executes the specified function once for every item in the collection, passing each
14643  * item as the first and only parameter. returning false from the function will stop the iteration.
14644  * @param {Function} fn The function to execute for each item.
14645  * @param {Object} scope (optional) The scope in which to execute the function.
14646  */
14647     each : function(fn, scope){
14648         var items = [].concat(this.items); // each safe for removal
14649         for(var i = 0, len = items.length; i < len; i++){
14650             if(fn.call(scope || items[i], items[i], i, len) === false){
14651                 break;
14652             }
14653         }
14654     },
14655    
14656 /**
14657  * Executes the specified function once for every key in the collection, passing each
14658  * key, and its associated item as the first two parameters.
14659  * @param {Function} fn The function to execute for each item.
14660  * @param {Object} scope (optional) The scope in which to execute the function.
14661  */
14662     eachKey : function(fn, scope){
14663         for(var i = 0, len = this.keys.length; i < len; i++){
14664             fn.call(scope || window, this.keys[i], this.items[i], i, len);
14665         }
14666     },
14667    
14668 /**
14669  * Returns the first item in the collection which elicits a true return value from the
14670  * passed selection function.
14671  * @param {Function} fn The selection function to execute for each item.
14672  * @param {Object} scope (optional) The scope in which to execute the function.
14673  * @return {Object} The first item in the collection which returned true from the selection function.
14674  */
14675     find : function(fn, scope){
14676         for(var i = 0, len = this.items.length; i < len; i++){
14677             if(fn.call(scope || window, this.items[i], this.keys[i])){
14678                 return this.items[i];
14679             }
14680         }
14681         return null;
14682     },
14683    
14684 /**
14685  * Inserts an item at the specified index in the collection.
14686  * @param {Number} index The index to insert the item at.
14687  * @param {String} key The key to associate with the new item, or the item itself.
14688  * @param {Object} o  (optional) If the second parameter was a key, the new item.
14689  * @return {Object} The item inserted.
14690  */
14691     insert : function(index, key, o){
14692         if(arguments.length == 2){
14693             o = arguments[1];
14694             key = this.getKey(o);
14695         }
14696         if(index >= this.length){
14697             return this.add(key, o);
14698         }
14699         this.length++;
14700         this.items.splice(index, 0, o);
14701         if(typeof key != "undefined" && key != null){
14702             this.map[key] = o;
14703         }
14704         this.keys.splice(index, 0, key);
14705         this.fireEvent("add", index, o, key);
14706         return o;
14707     },
14708    
14709 /**
14710  * Removed an item from the collection.
14711  * @param {Object} o The item to remove.
14712  * @return {Object} The item removed.
14713  */
14714     remove : function(o){
14715         return this.removeAt(this.indexOf(o));
14716     },
14717    
14718 /**
14719  * Remove an item from a specified index in the collection.
14720  * @param {Number} index The index within the collection of the item to remove.
14721  */
14722     removeAt : function(index){
14723         if(index < this.length && index >= 0){
14724             this.length--;
14725             var o = this.items[index];
14726             this.items.splice(index, 1);
14727             var key = this.keys[index];
14728             if(typeof key != "undefined"){
14729                 delete this.map[key];
14730             }
14731             this.keys.splice(index, 1);
14732             this.fireEvent("remove", o, key);
14733         }
14734     },
14735    
14736 /**
14737  * Removed an item associated with the passed key fom the collection.
14738  * @param {String} key The key of the item to remove.
14739  */
14740     removeKey : function(key){
14741         return this.removeAt(this.indexOfKey(key));
14742     },
14743    
14744 /**
14745  * Returns the number of items in the collection.
14746  * @return {Number} the number of items in the collection.
14747  */
14748     getCount : function(){
14749         return this.length; 
14750     },
14751    
14752 /**
14753  * Returns index within the collection of the passed Object.
14754  * @param {Object} o The item to find the index of.
14755  * @return {Number} index of the item.
14756  */
14757     indexOf : function(o){
14758         if(!this.items.indexOf){
14759             for(var i = 0, len = this.items.length; i < len; i++){
14760                 if(this.items[i] == o) {
14761                     return i;
14762                 }
14763             }
14764             return -1;
14765         }else{
14766             return this.items.indexOf(o);
14767         }
14768     },
14769    
14770 /**
14771  * Returns index within the collection of the passed key.
14772  * @param {String} key The key to find the index of.
14773  * @return {Number} index of the key.
14774  */
14775     indexOfKey : function(key){
14776         if(!this.keys.indexOf){
14777             for(var i = 0, len = this.keys.length; i < len; i++){
14778                 if(this.keys[i] == key) {
14779                     return i;
14780                 }
14781             }
14782             return -1;
14783         }else{
14784             return this.keys.indexOf(key);
14785         }
14786     },
14787    
14788 /**
14789  * Returns the item associated with the passed key OR index. Key has priority over index.
14790  * @param {String/Number} key The key or index of the item.
14791  * @return {Object} The item associated with the passed key.
14792  */
14793     item : function(key){
14794         if (key === 'length') {
14795             return null;
14796         }
14797         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
14798         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
14799     },
14800     
14801 /**
14802  * Returns the item at the specified index.
14803  * @param {Number} index The index of the item.
14804  * @return {Object}
14805  */
14806     itemAt : function(index){
14807         return this.items[index];
14808     },
14809     
14810 /**
14811  * Returns the item associated with the passed key.
14812  * @param {String/Number} key The key of the item.
14813  * @return {Object} The item associated with the passed key.
14814  */
14815     key : function(key){
14816         return this.map[key];
14817     },
14818    
14819 /**
14820  * Returns true if the collection contains the passed Object as an item.
14821  * @param {Object} o  The Object to look for in the collection.
14822  * @return {Boolean} True if the collection contains the Object as an item.
14823  */
14824     contains : function(o){
14825         return this.indexOf(o) != -1;
14826     },
14827    
14828 /**
14829  * Returns true if the collection contains the passed Object as a key.
14830  * @param {String} key The key to look for in the collection.
14831  * @return {Boolean} True if the collection contains the Object as a key.
14832  */
14833     containsKey : function(key){
14834         return typeof this.map[key] != "undefined";
14835     },
14836    
14837 /**
14838  * Removes all items from the collection.
14839  */
14840     clear : function(){
14841         this.length = 0;
14842         this.items = [];
14843         this.keys = [];
14844         this.map = {};
14845         this.fireEvent("clear");
14846     },
14847    
14848 /**
14849  * Returns the first item in the collection.
14850  * @return {Object} the first item in the collection..
14851  */
14852     first : function(){
14853         return this.items[0]; 
14854     },
14855    
14856 /**
14857  * Returns the last item in the collection.
14858  * @return {Object} the last item in the collection..
14859  */
14860     last : function(){
14861         return this.items[this.length-1];   
14862     },
14863     
14864     _sort : function(property, dir, fn){
14865         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
14866         fn = fn || function(a, b){
14867             return a-b;
14868         };
14869         var c = [], k = this.keys, items = this.items;
14870         for(var i = 0, len = items.length; i < len; i++){
14871             c[c.length] = {key: k[i], value: items[i], index: i};
14872         }
14873         c.sort(function(a, b){
14874             var v = fn(a[property], b[property]) * dsc;
14875             if(v == 0){
14876                 v = (a.index < b.index ? -1 : 1);
14877             }
14878             return v;
14879         });
14880         for(var i = 0, len = c.length; i < len; i++){
14881             items[i] = c[i].value;
14882             k[i] = c[i].key;
14883         }
14884         this.fireEvent("sort", this);
14885     },
14886     
14887     /**
14888      * Sorts this collection with the passed comparison function
14889      * @param {String} direction (optional) "ASC" or "DESC"
14890      * @param {Function} fn (optional) comparison function
14891      */
14892     sort : function(dir, fn){
14893         this._sort("value", dir, fn);
14894     },
14895     
14896     /**
14897      * Sorts this collection by keys
14898      * @param {String} direction (optional) "ASC" or "DESC"
14899      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
14900      */
14901     keySort : function(dir, fn){
14902         this._sort("key", dir, fn || function(a, b){
14903             return String(a).toUpperCase()-String(b).toUpperCase();
14904         });
14905     },
14906     
14907     /**
14908      * Returns a range of items in this collection
14909      * @param {Number} startIndex (optional) defaults to 0
14910      * @param {Number} endIndex (optional) default to the last item
14911      * @return {Array} An array of items
14912      */
14913     getRange : function(start, end){
14914         var items = this.items;
14915         if(items.length < 1){
14916             return [];
14917         }
14918         start = start || 0;
14919         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
14920         var r = [];
14921         if(start <= end){
14922             for(var i = start; i <= end; i++) {
14923                     r[r.length] = items[i];
14924             }
14925         }else{
14926             for(var i = start; i >= end; i--) {
14927                     r[r.length] = items[i];
14928             }
14929         }
14930         return r;
14931     },
14932         
14933     /**
14934      * Filter the <i>objects</i> in this collection by a specific property. 
14935      * Returns a new collection that has been filtered.
14936      * @param {String} property A property on your objects
14937      * @param {String/RegExp} value Either string that the property values 
14938      * should start with or a RegExp to test against the property
14939      * @return {MixedCollection} The new filtered collection
14940      */
14941     filter : function(property, value){
14942         if(!value.exec){ // not a regex
14943             value = String(value);
14944             if(value.length == 0){
14945                 return this.clone();
14946             }
14947             value = new RegExp("^" + Roo.escapeRe(value), "i");
14948         }
14949         return this.filterBy(function(o){
14950             return o && value.test(o[property]);
14951         });
14952         },
14953     
14954     /**
14955      * Filter by a function. * Returns a new collection that has been filtered.
14956      * The passed function will be called with each 
14957      * object in the collection. If the function returns true, the value is included 
14958      * otherwise it is filtered.
14959      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
14960      * @param {Object} scope (optional) The scope of the function (defaults to this) 
14961      * @return {MixedCollection} The new filtered collection
14962      */
14963     filterBy : function(fn, scope){
14964         var r = new Roo.util.MixedCollection();
14965         r.getKey = this.getKey;
14966         var k = this.keys, it = this.items;
14967         for(var i = 0, len = it.length; i < len; i++){
14968             if(fn.call(scope||this, it[i], k[i])){
14969                                 r.add(k[i], it[i]);
14970                         }
14971         }
14972         return r;
14973     },
14974     
14975     /**
14976      * Creates a duplicate of this collection
14977      * @return {MixedCollection}
14978      */
14979     clone : function(){
14980         var r = new Roo.util.MixedCollection();
14981         var k = this.keys, it = this.items;
14982         for(var i = 0, len = it.length; i < len; i++){
14983             r.add(k[i], it[i]);
14984         }
14985         r.getKey = this.getKey;
14986         return r;
14987     }
14988 });
14989 /**
14990  * Returns the item associated with the passed key or index.
14991  * @method
14992  * @param {String/Number} key The key or index of the item.
14993  * @return {Object} The item associated with the passed key.
14994  */
14995 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
14996  * Based on:
14997  * Ext JS Library 1.1.1
14998  * Copyright(c) 2006-2007, Ext JS, LLC.
14999  *
15000  * Originally Released Under LGPL - original licence link has changed is not relivant.
15001  *
15002  * Fork - LGPL
15003  * <script type="text/javascript">
15004  */
15005 /**
15006  * @class Roo.util.JSON
15007  * Modified version of Douglas Crockford"s json.js that doesn"t
15008  * mess with the Object prototype 
15009  * http://www.json.org/js.html
15010  * @static
15011  */
15012 Roo.util.JSON = new (function(){
15013     var useHasOwn = {}.hasOwnProperty ? true : false;
15014     
15015     // crashes Safari in some instances
15016     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
15017     
15018     var pad = function(n) {
15019         return n < 10 ? "0" + n : n;
15020     };
15021     
15022     var m = {
15023         "\b": '\\b',
15024         "\t": '\\t',
15025         "\n": '\\n',
15026         "\f": '\\f',
15027         "\r": '\\r',
15028         '"' : '\\"',
15029         "\\": '\\\\'
15030     };
15031
15032     var encodeString = function(s){
15033         if (/["\\\x00-\x1f]/.test(s)) {
15034             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
15035                 var c = m[b];
15036                 if(c){
15037                     return c;
15038                 }
15039                 c = b.charCodeAt();
15040                 return "\\u00" +
15041                     Math.floor(c / 16).toString(16) +
15042                     (c % 16).toString(16);
15043             }) + '"';
15044         }
15045         return '"' + s + '"';
15046     };
15047     
15048     var encodeArray = function(o){
15049         var a = ["["], b, i, l = o.length, v;
15050             for (i = 0; i < l; i += 1) {
15051                 v = o[i];
15052                 switch (typeof v) {
15053                     case "undefined":
15054                     case "function":
15055                     case "unknown":
15056                         break;
15057                     default:
15058                         if (b) {
15059                             a.push(',');
15060                         }
15061                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
15062                         b = true;
15063                 }
15064             }
15065             a.push("]");
15066             return a.join("");
15067     };
15068     
15069     var encodeDate = function(o){
15070         return '"' + o.getFullYear() + "-" +
15071                 pad(o.getMonth() + 1) + "-" +
15072                 pad(o.getDate()) + "T" +
15073                 pad(o.getHours()) + ":" +
15074                 pad(o.getMinutes()) + ":" +
15075                 pad(o.getSeconds()) + '"';
15076     };
15077     
15078     /**
15079      * Encodes an Object, Array or other value
15080      * @param {Mixed} o The variable to encode
15081      * @return {String} The JSON string
15082      */
15083     this.encode = function(o)
15084     {
15085         // should this be extended to fully wrap stringify..
15086         
15087         if(typeof o == "undefined" || o === null){
15088             return "null";
15089         }else if(o instanceof Array){
15090             return encodeArray(o);
15091         }else if(o instanceof Date){
15092             return encodeDate(o);
15093         }else if(typeof o == "string"){
15094             return encodeString(o);
15095         }else if(typeof o == "number"){
15096             return isFinite(o) ? String(o) : "null";
15097         }else if(typeof o == "boolean"){
15098             return String(o);
15099         }else {
15100             var a = ["{"], b, i, v;
15101             for (i in o) {
15102                 if(!useHasOwn || o.hasOwnProperty(i)) {
15103                     v = o[i];
15104                     switch (typeof v) {
15105                     case "undefined":
15106                     case "function":
15107                     case "unknown":
15108                         break;
15109                     default:
15110                         if(b){
15111                             a.push(',');
15112                         }
15113                         a.push(this.encode(i), ":",
15114                                 v === null ? "null" : this.encode(v));
15115                         b = true;
15116                     }
15117                 }
15118             }
15119             a.push("}");
15120             return a.join("");
15121         }
15122     };
15123     
15124     /**
15125      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
15126      * @param {String} json The JSON string
15127      * @return {Object} The resulting object
15128      */
15129     this.decode = function(json){
15130         
15131         return  /** eval:var:json */ eval("(" + json + ')');
15132     };
15133 })();
15134 /** 
15135  * Shorthand for {@link Roo.util.JSON#encode}
15136  * @member Roo encode 
15137  * @method */
15138 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
15139 /** 
15140  * Shorthand for {@link Roo.util.JSON#decode}
15141  * @member Roo decode 
15142  * @method */
15143 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
15144 /*
15145  * Based on:
15146  * Ext JS Library 1.1.1
15147  * Copyright(c) 2006-2007, Ext JS, LLC.
15148  *
15149  * Originally Released Under LGPL - original licence link has changed is not relivant.
15150  *
15151  * Fork - LGPL
15152  * <script type="text/javascript">
15153  */
15154  
15155 /**
15156  * @class Roo.util.Format
15157  * Reusable data formatting functions
15158  * @static
15159  */
15160 Roo.util.Format = function(){
15161     var trimRe = /^\s+|\s+$/g;
15162     return {
15163         /**
15164          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
15165          * @param {String} value The string to truncate
15166          * @param {Number} length The maximum length to allow before truncating
15167          * @return {String} The converted text
15168          */
15169         ellipsis : function(value, len){
15170             if(value && value.length > len){
15171                 return value.substr(0, len-3)+"...";
15172             }
15173             return value;
15174         },
15175
15176         /**
15177          * Checks a reference and converts it to empty string if it is undefined
15178          * @param {Mixed} value Reference to check
15179          * @return {Mixed} Empty string if converted, otherwise the original value
15180          */
15181         undef : function(value){
15182             return typeof value != "undefined" ? value : "";
15183         },
15184
15185         /**
15186          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
15187          * @param {String} value The string to encode
15188          * @return {String} The encoded text
15189          */
15190         htmlEncode : function(value){
15191             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
15192         },
15193
15194         /**
15195          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
15196          * @param {String} value The string to decode
15197          * @return {String} The decoded text
15198          */
15199         htmlDecode : function(value){
15200             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
15201         },
15202
15203         /**
15204          * Trims any whitespace from either side of a string
15205          * @param {String} value The text to trim
15206          * @return {String} The trimmed text
15207          */
15208         trim : function(value){
15209             return String(value).replace(trimRe, "");
15210         },
15211
15212         /**
15213          * Returns a substring from within an original string
15214          * @param {String} value The original text
15215          * @param {Number} start The start index of the substring
15216          * @param {Number} length The length of the substring
15217          * @return {String} The substring
15218          */
15219         substr : function(value, start, length){
15220             return String(value).substr(start, length);
15221         },
15222
15223         /**
15224          * Converts a string to all lower case letters
15225          * @param {String} value The text to convert
15226          * @return {String} The converted text
15227          */
15228         lowercase : function(value){
15229             return String(value).toLowerCase();
15230         },
15231
15232         /**
15233          * Converts a string to all upper case letters
15234          * @param {String} value The text to convert
15235          * @return {String} The converted text
15236          */
15237         uppercase : function(value){
15238             return String(value).toUpperCase();
15239         },
15240
15241         /**
15242          * Converts the first character only of a string to upper case
15243          * @param {String} value The text to convert
15244          * @return {String} The converted text
15245          */
15246         capitalize : function(value){
15247             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
15248         },
15249
15250         // private
15251         call : function(value, fn){
15252             if(arguments.length > 2){
15253                 var args = Array.prototype.slice.call(arguments, 2);
15254                 args.unshift(value);
15255                  
15256                 return /** eval:var:value */  eval(fn).apply(window, args);
15257             }else{
15258                 /** eval:var:value */
15259                 return /** eval:var:value */ eval(fn).call(window, value);
15260             }
15261         },
15262
15263        
15264         /**
15265          * safer version of Math.toFixed..??/
15266          * @param {Number/String} value The numeric value to format
15267          * @param {Number/String} value Decimal places 
15268          * @return {String} The formatted currency string
15269          */
15270         toFixed : function(v, n)
15271         {
15272             // why not use to fixed - precision is buggered???
15273             if (!n) {
15274                 return Math.round(v-0);
15275             }
15276             var fact = Math.pow(10,n+1);
15277             v = (Math.round((v-0)*fact))/fact;
15278             var z = (''+fact).substring(2);
15279             if (v == Math.floor(v)) {
15280                 return Math.floor(v) + '.' + z;
15281             }
15282             
15283             // now just padd decimals..
15284             var ps = String(v).split('.');
15285             var fd = (ps[1] + z);
15286             var r = fd.substring(0,n); 
15287             var rm = fd.substring(n); 
15288             if (rm < 5) {
15289                 return ps[0] + '.' + r;
15290             }
15291             r*=1; // turn it into a number;
15292             r++;
15293             if (String(r).length != n) {
15294                 ps[0]*=1;
15295                 ps[0]++;
15296                 r = String(r).substring(1); // chop the end off.
15297             }
15298             
15299             return ps[0] + '.' + r;
15300              
15301         },
15302         
15303         /**
15304          * Format a number as US currency
15305          * @param {Number/String} value The numeric value to format
15306          * @return {String} The formatted currency string
15307          */
15308         usMoney : function(v){
15309             return '$' + Roo.util.Format.number(v);
15310         },
15311         
15312         /**
15313          * Format a number
15314          * eventually this should probably emulate php's number_format
15315          * @param {Number/String} value The numeric value to format
15316          * @param {Number} decimals number of decimal places
15317          * @param {String} delimiter for thousands (default comma)
15318          * @return {String} The formatted currency string
15319          */
15320         number : function(v, decimals, thousandsDelimiter)
15321         {
15322             // multiply and round.
15323             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
15324             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
15325             
15326             var mul = Math.pow(10, decimals);
15327             var zero = String(mul).substring(1);
15328             v = (Math.round((v-0)*mul))/mul;
15329             
15330             // if it's '0' number.. then
15331             
15332             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
15333             v = String(v);
15334             var ps = v.split('.');
15335             var whole = ps[0];
15336             
15337             var r = /(\d+)(\d{3})/;
15338             // add comma's
15339             
15340             if(thousandsDelimiter.length != 0) {
15341                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
15342             } 
15343             
15344             var sub = ps[1] ?
15345                     // has decimals..
15346                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
15347                     // does not have decimals
15348                     (decimals ? ('.' + zero) : '');
15349             
15350             
15351             return whole + sub ;
15352         },
15353         
15354         /**
15355          * Parse a value into a formatted date using the specified format pattern.
15356          * @param {Mixed} value The value to format
15357          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
15358          * @return {String} The formatted date string
15359          */
15360         date : function(v, format){
15361             if(!v){
15362                 return "";
15363             }
15364             if(!(v instanceof Date)){
15365                 v = new Date(Date.parse(v));
15366             }
15367             return v.dateFormat(format || Roo.util.Format.defaults.date);
15368         },
15369
15370         /**
15371          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
15372          * @param {String} format Any valid date format string
15373          * @return {Function} The date formatting function
15374          */
15375         dateRenderer : function(format){
15376             return function(v){
15377                 return Roo.util.Format.date(v, format);  
15378             };
15379         },
15380
15381         // private
15382         stripTagsRE : /<\/?[^>]+>/gi,
15383         
15384         /**
15385          * Strips all HTML tags
15386          * @param {Mixed} value The text from which to strip tags
15387          * @return {String} The stripped text
15388          */
15389         stripTags : function(v){
15390             return !v ? v : String(v).replace(this.stripTagsRE, "");
15391         },
15392         
15393         /**
15394          * Size in Mb,Gb etc.
15395          * @param {Number} value The number to be formated
15396          * @param {number} decimals how many decimal places
15397          * @return {String} the formated string
15398          */
15399         size : function(value, decimals)
15400         {
15401             var sizes = ['b', 'k', 'M', 'G', 'T'];
15402             if (value == 0) {
15403                 return 0;
15404             }
15405             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
15406             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
15407         }
15408         
15409         
15410         
15411     };
15412 }();
15413 Roo.util.Format.defaults = {
15414     date : 'd/M/Y'
15415 };/*
15416  * Based on:
15417  * Ext JS Library 1.1.1
15418  * Copyright(c) 2006-2007, Ext JS, LLC.
15419  *
15420  * Originally Released Under LGPL - original licence link has changed is not relivant.
15421  *
15422  * Fork - LGPL
15423  * <script type="text/javascript">
15424  */
15425
15426
15427  
15428
15429 /**
15430  * @class Roo.MasterTemplate
15431  * @extends Roo.Template
15432  * Provides a template that can have child templates. The syntax is:
15433 <pre><code>
15434 var t = new Roo.MasterTemplate(
15435         '&lt;select name="{name}"&gt;',
15436                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
15437         '&lt;/select&gt;'
15438 );
15439 t.add('options', {value: 'foo', text: 'bar'});
15440 // or you can add multiple child elements in one shot
15441 t.addAll('options', [
15442     {value: 'foo', text: 'bar'},
15443     {value: 'foo2', text: 'bar2'},
15444     {value: 'foo3', text: 'bar3'}
15445 ]);
15446 // then append, applying the master template values
15447 t.append('my-form', {name: 'my-select'});
15448 </code></pre>
15449 * A name attribute for the child template is not required if you have only one child
15450 * template or you want to refer to them by index.
15451  */
15452 Roo.MasterTemplate = function(){
15453     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
15454     this.originalHtml = this.html;
15455     var st = {};
15456     var m, re = this.subTemplateRe;
15457     re.lastIndex = 0;
15458     var subIndex = 0;
15459     while(m = re.exec(this.html)){
15460         var name = m[1], content = m[2];
15461         st[subIndex] = {
15462             name: name,
15463             index: subIndex,
15464             buffer: [],
15465             tpl : new Roo.Template(content)
15466         };
15467         if(name){
15468             st[name] = st[subIndex];
15469         }
15470         st[subIndex].tpl.compile();
15471         st[subIndex].tpl.call = this.call.createDelegate(this);
15472         subIndex++;
15473     }
15474     this.subCount = subIndex;
15475     this.subs = st;
15476 };
15477 Roo.extend(Roo.MasterTemplate, Roo.Template, {
15478     /**
15479     * The regular expression used to match sub templates
15480     * @type RegExp
15481     * @property
15482     */
15483     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
15484
15485     /**
15486      * Applies the passed values to a child template.
15487      * @param {String/Number} name (optional) The name or index of the child template
15488      * @param {Array/Object} values The values to be applied to the template
15489      * @return {MasterTemplate} this
15490      */
15491      add : function(name, values){
15492         if(arguments.length == 1){
15493             values = arguments[0];
15494             name = 0;
15495         }
15496         var s = this.subs[name];
15497         s.buffer[s.buffer.length] = s.tpl.apply(values);
15498         return this;
15499     },
15500
15501     /**
15502      * Applies all the passed values to a child template.
15503      * @param {String/Number} name (optional) The name or index of the child template
15504      * @param {Array} values The values to be applied to the template, this should be an array of objects.
15505      * @param {Boolean} reset (optional) True to reset the template first
15506      * @return {MasterTemplate} this
15507      */
15508     fill : function(name, values, reset){
15509         var a = arguments;
15510         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
15511             values = a[0];
15512             name = 0;
15513             reset = a[1];
15514         }
15515         if(reset){
15516             this.reset();
15517         }
15518         for(var i = 0, len = values.length; i < len; i++){
15519             this.add(name, values[i]);
15520         }
15521         return this;
15522     },
15523
15524     /**
15525      * Resets the template for reuse
15526      * @return {MasterTemplate} this
15527      */
15528      reset : function(){
15529         var s = this.subs;
15530         for(var i = 0; i < this.subCount; i++){
15531             s[i].buffer = [];
15532         }
15533         return this;
15534     },
15535
15536     applyTemplate : function(values){
15537         var s = this.subs;
15538         var replaceIndex = -1;
15539         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
15540             return s[++replaceIndex].buffer.join("");
15541         });
15542         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
15543     },
15544
15545     apply : function(){
15546         return this.applyTemplate.apply(this, arguments);
15547     },
15548
15549     compile : function(){return this;}
15550 });
15551
15552 /**
15553  * Alias for fill().
15554  * @method
15555  */
15556 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
15557  /**
15558  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
15559  * var tpl = Roo.MasterTemplate.from('element-id');
15560  * @param {String/HTMLElement} el
15561  * @param {Object} config
15562  * @static
15563  */
15564 Roo.MasterTemplate.from = function(el, config){
15565     el = Roo.getDom(el);
15566     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
15567 };/*
15568  * Based on:
15569  * Ext JS Library 1.1.1
15570  * Copyright(c) 2006-2007, Ext JS, LLC.
15571  *
15572  * Originally Released Under LGPL - original licence link has changed is not relivant.
15573  *
15574  * Fork - LGPL
15575  * <script type="text/javascript">
15576  */
15577
15578  
15579 /**
15580  * @class Roo.util.CSS
15581  * Utility class for manipulating CSS rules
15582  * @static
15583
15584  */
15585 Roo.util.CSS = function(){
15586         var rules = null;
15587         var doc = document;
15588
15589     var camelRe = /(-[a-z])/gi;
15590     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
15591
15592    return {
15593    /**
15594     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
15595     * tag and appended to the HEAD of the document.
15596     * @param {String|Object} cssText The text containing the css rules
15597     * @param {String} id An id to add to the stylesheet for later removal
15598     * @return {StyleSheet}
15599     */
15600     createStyleSheet : function(cssText, id){
15601         var ss;
15602         var head = doc.getElementsByTagName("head")[0];
15603         var nrules = doc.createElement("style");
15604         nrules.setAttribute("type", "text/css");
15605         if(id){
15606             nrules.setAttribute("id", id);
15607         }
15608         if (typeof(cssText) != 'string') {
15609             // support object maps..
15610             // not sure if this a good idea.. 
15611             // perhaps it should be merged with the general css handling
15612             // and handle js style props.
15613             var cssTextNew = [];
15614             for(var n in cssText) {
15615                 var citems = [];
15616                 for(var k in cssText[n]) {
15617                     citems.push( k + ' : ' +cssText[n][k] + ';' );
15618                 }
15619                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
15620                 
15621             }
15622             cssText = cssTextNew.join("\n");
15623             
15624         }
15625        
15626        
15627        if(Roo.isIE){
15628            head.appendChild(nrules);
15629            ss = nrules.styleSheet;
15630            ss.cssText = cssText;
15631        }else{
15632            try{
15633                 nrules.appendChild(doc.createTextNode(cssText));
15634            }catch(e){
15635                nrules.cssText = cssText; 
15636            }
15637            head.appendChild(nrules);
15638            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
15639        }
15640        this.cacheStyleSheet(ss);
15641        return ss;
15642    },
15643
15644    /**
15645     * Removes a style or link tag by id
15646     * @param {String} id The id of the tag
15647     */
15648    removeStyleSheet : function(id){
15649        var existing = doc.getElementById(id);
15650        if(existing){
15651            existing.parentNode.removeChild(existing);
15652        }
15653    },
15654
15655    /**
15656     * Dynamically swaps an existing stylesheet reference for a new one
15657     * @param {String} id The id of an existing link tag to remove
15658     * @param {String} url The href of the new stylesheet to include
15659     */
15660    swapStyleSheet : function(id, url){
15661        this.removeStyleSheet(id);
15662        var ss = doc.createElement("link");
15663        ss.setAttribute("rel", "stylesheet");
15664        ss.setAttribute("type", "text/css");
15665        ss.setAttribute("id", id);
15666        ss.setAttribute("href", url);
15667        doc.getElementsByTagName("head")[0].appendChild(ss);
15668    },
15669    
15670    /**
15671     * Refresh the rule cache if you have dynamically added stylesheets
15672     * @return {Object} An object (hash) of rules indexed by selector
15673     */
15674    refreshCache : function(){
15675        return this.getRules(true);
15676    },
15677
15678    // private
15679    cacheStyleSheet : function(stylesheet){
15680        if(!rules){
15681            rules = {};
15682        }
15683        try{// try catch for cross domain access issue
15684            var ssRules = stylesheet.cssRules || stylesheet.rules;
15685            for(var j = ssRules.length-1; j >= 0; --j){
15686                rules[ssRules[j].selectorText] = ssRules[j];
15687            }
15688        }catch(e){}
15689    },
15690    
15691    /**
15692     * Gets all css rules for the document
15693     * @param {Boolean} refreshCache true to refresh the internal cache
15694     * @return {Object} An object (hash) of rules indexed by selector
15695     */
15696    getRules : function(refreshCache){
15697                 if(rules == null || refreshCache){
15698                         rules = {};
15699                         var ds = doc.styleSheets;
15700                         for(var i =0, len = ds.length; i < len; i++){
15701                             try{
15702                         this.cacheStyleSheet(ds[i]);
15703                     }catch(e){} 
15704                 }
15705                 }
15706                 return rules;
15707         },
15708         
15709         /**
15710     * Gets an an individual CSS rule by selector(s)
15711     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
15712     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
15713     * @return {CSSRule} The CSS rule or null if one is not found
15714     */
15715    getRule : function(selector, refreshCache){
15716                 var rs = this.getRules(refreshCache);
15717                 if(!(selector instanceof Array)){
15718                     return rs[selector];
15719                 }
15720                 for(var i = 0; i < selector.length; i++){
15721                         if(rs[selector[i]]){
15722                                 return rs[selector[i]];
15723                         }
15724                 }
15725                 return null;
15726         },
15727         
15728         
15729         /**
15730     * Updates a rule property
15731     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
15732     * @param {String} property The css property
15733     * @param {String} value The new value for the property
15734     * @return {Boolean} true If a rule was found and updated
15735     */
15736    updateRule : function(selector, property, value){
15737                 if(!(selector instanceof Array)){
15738                         var rule = this.getRule(selector);
15739                         if(rule){
15740                                 rule.style[property.replace(camelRe, camelFn)] = value;
15741                                 return true;
15742                         }
15743                 }else{
15744                         for(var i = 0; i < selector.length; i++){
15745                                 if(this.updateRule(selector[i], property, value)){
15746                                         return true;
15747                                 }
15748                         }
15749                 }
15750                 return false;
15751         }
15752    };   
15753 }();/*
15754  * Based on:
15755  * Ext JS Library 1.1.1
15756  * Copyright(c) 2006-2007, Ext JS, LLC.
15757  *
15758  * Originally Released Under LGPL - original licence link has changed is not relivant.
15759  *
15760  * Fork - LGPL
15761  * <script type="text/javascript">
15762  */
15763
15764  
15765
15766 /**
15767  * @class Roo.util.ClickRepeater
15768  * @extends Roo.util.Observable
15769  * 
15770  * A wrapper class which can be applied to any element. Fires a "click" event while the
15771  * mouse is pressed. The interval between firings may be specified in the config but
15772  * defaults to 10 milliseconds.
15773  * 
15774  * Optionally, a CSS class may be applied to the element during the time it is pressed.
15775  * 
15776  * @cfg {String/HTMLElement/Element} el The element to act as a button.
15777  * @cfg {Number} delay The initial delay before the repeating event begins firing.
15778  * Similar to an autorepeat key delay.
15779  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
15780  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
15781  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
15782  *           "interval" and "delay" are ignored. "immediate" is honored.
15783  * @cfg {Boolean} preventDefault True to prevent the default click event
15784  * @cfg {Boolean} stopDefault True to stop the default click event
15785  * 
15786  * @history
15787  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
15788  *     2007-02-02 jvs Renamed to ClickRepeater
15789  *   2007-02-03 jvs Modifications for FF Mac and Safari 
15790  *
15791  *  @constructor
15792  * @param {String/HTMLElement/Element} el The element to listen on
15793  * @param {Object} config
15794  **/
15795 Roo.util.ClickRepeater = function(el, config)
15796 {
15797     this.el = Roo.get(el);
15798     this.el.unselectable();
15799
15800     Roo.apply(this, config);
15801
15802     this.addEvents({
15803     /**
15804      * @event mousedown
15805      * Fires when the mouse button is depressed.
15806      * @param {Roo.util.ClickRepeater} this
15807      */
15808         "mousedown" : true,
15809     /**
15810      * @event click
15811      * Fires on a specified interval during the time the element is pressed.
15812      * @param {Roo.util.ClickRepeater} this
15813      */
15814         "click" : true,
15815     /**
15816      * @event mouseup
15817      * Fires when the mouse key is released.
15818      * @param {Roo.util.ClickRepeater} this
15819      */
15820         "mouseup" : true
15821     });
15822
15823     this.el.on("mousedown", this.handleMouseDown, this);
15824     if(this.preventDefault || this.stopDefault){
15825         this.el.on("click", function(e){
15826             if(this.preventDefault){
15827                 e.preventDefault();
15828             }
15829             if(this.stopDefault){
15830                 e.stopEvent();
15831             }
15832         }, this);
15833     }
15834
15835     // allow inline handler
15836     if(this.handler){
15837         this.on("click", this.handler,  this.scope || this);
15838     }
15839
15840     Roo.util.ClickRepeater.superclass.constructor.call(this);
15841 };
15842
15843 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
15844     interval : 20,
15845     delay: 250,
15846     preventDefault : true,
15847     stopDefault : false,
15848     timer : 0,
15849
15850     // private
15851     handleMouseDown : function(){
15852         clearTimeout(this.timer);
15853         this.el.blur();
15854         if(this.pressClass){
15855             this.el.addClass(this.pressClass);
15856         }
15857         this.mousedownTime = new Date();
15858
15859         Roo.get(document).on("mouseup", this.handleMouseUp, this);
15860         this.el.on("mouseout", this.handleMouseOut, this);
15861
15862         this.fireEvent("mousedown", this);
15863         this.fireEvent("click", this);
15864         
15865         this.timer = this.click.defer(this.delay || this.interval, this);
15866     },
15867
15868     // private
15869     click : function(){
15870         this.fireEvent("click", this);
15871         this.timer = this.click.defer(this.getInterval(), this);
15872     },
15873
15874     // private
15875     getInterval: function(){
15876         if(!this.accelerate){
15877             return this.interval;
15878         }
15879         var pressTime = this.mousedownTime.getElapsed();
15880         if(pressTime < 500){
15881             return 400;
15882         }else if(pressTime < 1700){
15883             return 320;
15884         }else if(pressTime < 2600){
15885             return 250;
15886         }else if(pressTime < 3500){
15887             return 180;
15888         }else if(pressTime < 4400){
15889             return 140;
15890         }else if(pressTime < 5300){
15891             return 80;
15892         }else if(pressTime < 6200){
15893             return 50;
15894         }else{
15895             return 10;
15896         }
15897     },
15898
15899     // private
15900     handleMouseOut : function(){
15901         clearTimeout(this.timer);
15902         if(this.pressClass){
15903             this.el.removeClass(this.pressClass);
15904         }
15905         this.el.on("mouseover", this.handleMouseReturn, this);
15906     },
15907
15908     // private
15909     handleMouseReturn : function(){
15910         this.el.un("mouseover", this.handleMouseReturn);
15911         if(this.pressClass){
15912             this.el.addClass(this.pressClass);
15913         }
15914         this.click();
15915     },
15916
15917     // private
15918     handleMouseUp : function(){
15919         clearTimeout(this.timer);
15920         this.el.un("mouseover", this.handleMouseReturn);
15921         this.el.un("mouseout", this.handleMouseOut);
15922         Roo.get(document).un("mouseup", this.handleMouseUp);
15923         this.el.removeClass(this.pressClass);
15924         this.fireEvent("mouseup", this);
15925     }
15926 });/**
15927  * @class Roo.util.Clipboard
15928  * @static
15929  * 
15930  * Clipboard UTILS
15931  * 
15932  **/
15933 Roo.util.Clipboard = {
15934     /**
15935      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
15936      * @param {String} text to copy to clipboard
15937      */
15938     write : function(text) {
15939         // navigator clipboard api needs a secure context (https)
15940         if (navigator.clipboard && window.isSecureContext) {
15941             // navigator clipboard api method'
15942             navigator.clipboard.writeText(text);
15943             return ;
15944         } 
15945         // text area method
15946         var ta = document.createElement("textarea");
15947         ta.value = text;
15948         // make the textarea out of viewport
15949         ta.style.position = "fixed";
15950         ta.style.left = "-999999px";
15951         ta.style.top = "-999999px";
15952         document.body.appendChild(ta);
15953         ta.focus();
15954         ta.select();
15955         document.execCommand('copy');
15956         (function() {
15957             ta.remove();
15958         }).defer(100);
15959         
15960     }
15961         
15962 }
15963     /*
15964  * Based on:
15965  * Ext JS Library 1.1.1
15966  * Copyright(c) 2006-2007, Ext JS, LLC.
15967  *
15968  * Originally Released Under LGPL - original licence link has changed is not relivant.
15969  *
15970  * Fork - LGPL
15971  * <script type="text/javascript">
15972  */
15973
15974  
15975 /**
15976  * @class Roo.KeyNav
15977  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
15978  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
15979  * way to implement custom navigation schemes for any UI component.</p>
15980  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
15981  * pageUp, pageDown, del, home, end.  Usage:</p>
15982  <pre><code>
15983 var nav = new Roo.KeyNav("my-element", {
15984     "left" : function(e){
15985         this.moveLeft(e.ctrlKey);
15986     },
15987     "right" : function(e){
15988         this.moveRight(e.ctrlKey);
15989     },
15990     "enter" : function(e){
15991         this.save();
15992     },
15993     scope : this
15994 });
15995 </code></pre>
15996  * @constructor
15997  * @param {String/HTMLElement/Roo.Element} el The element to bind to
15998  * @param {Object} config The config
15999  */
16000 Roo.KeyNav = function(el, config){
16001     this.el = Roo.get(el);
16002     Roo.apply(this, config);
16003     if(!this.disabled){
16004         this.disabled = true;
16005         this.enable();
16006     }
16007 };
16008
16009 Roo.KeyNav.prototype = {
16010     /**
16011      * @cfg {Boolean} disabled
16012      * True to disable this KeyNav instance (defaults to false)
16013      */
16014     disabled : false,
16015     /**
16016      * @cfg {String} defaultEventAction
16017      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
16018      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
16019      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
16020      */
16021     defaultEventAction: "stopEvent",
16022     /**
16023      * @cfg {Boolean} forceKeyDown
16024      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
16025      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
16026      * handle keydown instead of keypress.
16027      */
16028     forceKeyDown : false,
16029
16030     // private
16031     prepareEvent : function(e){
16032         var k = e.getKey();
16033         var h = this.keyToHandler[k];
16034         //if(h && this[h]){
16035         //    e.stopPropagation();
16036         //}
16037         if(Roo.isSafari && h && k >= 37 && k <= 40){
16038             e.stopEvent();
16039         }
16040     },
16041
16042     // private
16043     relay : function(e){
16044         var k = e.getKey();
16045         var h = this.keyToHandler[k];
16046         if(h && this[h]){
16047             if(this.doRelay(e, this[h], h) !== true){
16048                 e[this.defaultEventAction]();
16049             }
16050         }
16051     },
16052
16053     // private
16054     doRelay : function(e, h, hname){
16055         return h.call(this.scope || this, e);
16056     },
16057
16058     // possible handlers
16059     enter : false,
16060     left : false,
16061     right : false,
16062     up : false,
16063     down : false,
16064     tab : false,
16065     esc : false,
16066     pageUp : false,
16067     pageDown : false,
16068     del : false,
16069     home : false,
16070     end : false,
16071
16072     // quick lookup hash
16073     keyToHandler : {
16074         37 : "left",
16075         39 : "right",
16076         38 : "up",
16077         40 : "down",
16078         33 : "pageUp",
16079         34 : "pageDown",
16080         46 : "del",
16081         36 : "home",
16082         35 : "end",
16083         13 : "enter",
16084         27 : "esc",
16085         9  : "tab"
16086     },
16087
16088         /**
16089          * Enable this KeyNav
16090          */
16091         enable: function(){
16092                 if(this.disabled){
16093             // ie won't do special keys on keypress, no one else will repeat keys with keydown
16094             // the EventObject will normalize Safari automatically
16095             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16096                 this.el.on("keydown", this.relay,  this);
16097             }else{
16098                 this.el.on("keydown", this.prepareEvent,  this);
16099                 this.el.on("keypress", this.relay,  this);
16100             }
16101                     this.disabled = false;
16102                 }
16103         },
16104
16105         /**
16106          * Disable this KeyNav
16107          */
16108         disable: function(){
16109                 if(!this.disabled){
16110                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16111                 this.el.un("keydown", this.relay);
16112             }else{
16113                 this.el.un("keydown", this.prepareEvent);
16114                 this.el.un("keypress", this.relay);
16115             }
16116                     this.disabled = true;
16117                 }
16118         }
16119 };/*
16120  * Based on:
16121  * Ext JS Library 1.1.1
16122  * Copyright(c) 2006-2007, Ext JS, LLC.
16123  *
16124  * Originally Released Under LGPL - original licence link has changed is not relivant.
16125  *
16126  * Fork - LGPL
16127  * <script type="text/javascript">
16128  */
16129
16130  
16131 /**
16132  * @class Roo.KeyMap
16133  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
16134  * The constructor accepts the same config object as defined by {@link #addBinding}.
16135  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
16136  * combination it will call the function with this signature (if the match is a multi-key
16137  * combination the callback will still be called only once): (String key, Roo.EventObject e)
16138  * A KeyMap can also handle a string representation of keys.<br />
16139  * Usage:
16140  <pre><code>
16141 // map one key by key code
16142 var map = new Roo.KeyMap("my-element", {
16143     key: 13, // or Roo.EventObject.ENTER
16144     fn: myHandler,
16145     scope: myObject
16146 });
16147
16148 // map multiple keys to one action by string
16149 var map = new Roo.KeyMap("my-element", {
16150     key: "a\r\n\t",
16151     fn: myHandler,
16152     scope: myObject
16153 });
16154
16155 // map multiple keys to multiple actions by strings and array of codes
16156 var map = new Roo.KeyMap("my-element", [
16157     {
16158         key: [10,13],
16159         fn: function(){ alert("Return was pressed"); }
16160     }, {
16161         key: "abc",
16162         fn: function(){ alert('a, b or c was pressed'); }
16163     }, {
16164         key: "\t",
16165         ctrl:true,
16166         shift:true,
16167         fn: function(){ alert('Control + shift + tab was pressed.'); }
16168     }
16169 ]);
16170 </code></pre>
16171  * <b>Note: A KeyMap starts enabled</b>
16172  * @constructor
16173  * @param {String/HTMLElement/Roo.Element} el The element to bind to
16174  * @param {Object} config The config (see {@link #addBinding})
16175  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
16176  */
16177 Roo.KeyMap = function(el, config, eventName){
16178     this.el  = Roo.get(el);
16179     this.eventName = eventName || "keydown";
16180     this.bindings = [];
16181     if(config){
16182         this.addBinding(config);
16183     }
16184     this.enable();
16185 };
16186
16187 Roo.KeyMap.prototype = {
16188     /**
16189      * True to stop the event from bubbling and prevent the default browser action if the
16190      * key was handled by the KeyMap (defaults to false)
16191      * @type Boolean
16192      */
16193     stopEvent : false,
16194
16195     /**
16196      * Add a new binding to this KeyMap. The following config object properties are supported:
16197      * <pre>
16198 Property    Type             Description
16199 ----------  ---------------  ----------------------------------------------------------------------
16200 key         String/Array     A single keycode or an array of keycodes to handle
16201 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
16202 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
16203 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
16204 fn          Function         The function to call when KeyMap finds the expected key combination
16205 scope       Object           The scope of the callback function
16206 </pre>
16207      *
16208      * Usage:
16209      * <pre><code>
16210 // Create a KeyMap
16211 var map = new Roo.KeyMap(document, {
16212     key: Roo.EventObject.ENTER,
16213     fn: handleKey,
16214     scope: this
16215 });
16216
16217 //Add a new binding to the existing KeyMap later
16218 map.addBinding({
16219     key: 'abc',
16220     shift: true,
16221     fn: handleKey,
16222     scope: this
16223 });
16224 </code></pre>
16225      * @param {Object/Array} config A single KeyMap config or an array of configs
16226      */
16227         addBinding : function(config){
16228         if(config instanceof Array){
16229             for(var i = 0, len = config.length; i < len; i++){
16230                 this.addBinding(config[i]);
16231             }
16232             return;
16233         }
16234         var keyCode = config.key,
16235             shift = config.shift, 
16236             ctrl = config.ctrl, 
16237             alt = config.alt,
16238             fn = config.fn,
16239             scope = config.scope;
16240         if(typeof keyCode == "string"){
16241             var ks = [];
16242             var keyString = keyCode.toUpperCase();
16243             for(var j = 0, len = keyString.length; j < len; j++){
16244                 ks.push(keyString.charCodeAt(j));
16245             }
16246             keyCode = ks;
16247         }
16248         var keyArray = keyCode instanceof Array;
16249         var handler = function(e){
16250             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
16251                 var k = e.getKey();
16252                 if(keyArray){
16253                     for(var i = 0, len = keyCode.length; i < len; i++){
16254                         if(keyCode[i] == k){
16255                           if(this.stopEvent){
16256                               e.stopEvent();
16257                           }
16258                           fn.call(scope || window, k, e);
16259                           return;
16260                         }
16261                     }
16262                 }else{
16263                     if(k == keyCode){
16264                         if(this.stopEvent){
16265                            e.stopEvent();
16266                         }
16267                         fn.call(scope || window, k, e);
16268                     }
16269                 }
16270             }
16271         };
16272         this.bindings.push(handler);  
16273         },
16274
16275     /**
16276      * Shorthand for adding a single key listener
16277      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
16278      * following options:
16279      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
16280      * @param {Function} fn The function to call
16281      * @param {Object} scope (optional) The scope of the function
16282      */
16283     on : function(key, fn, scope){
16284         var keyCode, shift, ctrl, alt;
16285         if(typeof key == "object" && !(key instanceof Array)){
16286             keyCode = key.key;
16287             shift = key.shift;
16288             ctrl = key.ctrl;
16289             alt = key.alt;
16290         }else{
16291             keyCode = key;
16292         }
16293         this.addBinding({
16294             key: keyCode,
16295             shift: shift,
16296             ctrl: ctrl,
16297             alt: alt,
16298             fn: fn,
16299             scope: scope
16300         })
16301     },
16302
16303     // private
16304     handleKeyDown : function(e){
16305             if(this.enabled){ //just in case
16306             var b = this.bindings;
16307             for(var i = 0, len = b.length; i < len; i++){
16308                 b[i].call(this, e);
16309             }
16310             }
16311         },
16312         
16313         /**
16314          * Returns true if this KeyMap is enabled
16315          * @return {Boolean} 
16316          */
16317         isEnabled : function(){
16318             return this.enabled;  
16319         },
16320         
16321         /**
16322          * Enables this KeyMap
16323          */
16324         enable: function(){
16325                 if(!this.enabled){
16326                     this.el.on(this.eventName, this.handleKeyDown, this);
16327                     this.enabled = true;
16328                 }
16329         },
16330
16331         /**
16332          * Disable this KeyMap
16333          */
16334         disable: function(){
16335                 if(this.enabled){
16336                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
16337                     this.enabled = false;
16338                 }
16339         }
16340 };/*
16341  * Based on:
16342  * Ext JS Library 1.1.1
16343  * Copyright(c) 2006-2007, Ext JS, LLC.
16344  *
16345  * Originally Released Under LGPL - original licence link has changed is not relivant.
16346  *
16347  * Fork - LGPL
16348  * <script type="text/javascript">
16349  */
16350
16351  
16352 /**
16353  * @class Roo.util.TextMetrics
16354  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
16355  * wide, in pixels, a given block of text will be.
16356  * @static
16357  */
16358 Roo.util.TextMetrics = function(){
16359     var shared;
16360     return {
16361         /**
16362          * Measures the size of the specified text
16363          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
16364          * that can affect the size of the rendered text
16365          * @param {String} text The text to measure
16366          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16367          * in order to accurately measure the text height
16368          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16369          */
16370         measure : function(el, text, fixedWidth){
16371             if(!shared){
16372                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
16373             }
16374             shared.bind(el);
16375             shared.setFixedWidth(fixedWidth || 'auto');
16376             return shared.getSize(text);
16377         },
16378
16379         /**
16380          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
16381          * the overhead of multiple calls to initialize the style properties on each measurement.
16382          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
16383          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16384          * in order to accurately measure the text height
16385          * @return {Roo.util.TextMetrics.Instance} instance The new instance
16386          */
16387         createInstance : function(el, fixedWidth){
16388             return Roo.util.TextMetrics.Instance(el, fixedWidth);
16389         }
16390     };
16391 }();
16392
16393 /**
16394  * @class Roo.util.TextMetrics.Instance
16395  * Instance of  TextMetrics Calcuation
16396  * @constructor
16397  * Create a new TextMetrics Instance
16398  * @param {Object} bindto
16399  * @param {Boolean} fixedWidth
16400  */
16401
16402 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth)
16403 {
16404     var ml = new Roo.Element(document.createElement('div'));
16405     document.body.appendChild(ml.dom);
16406     ml.position('absolute');
16407     ml.setLeftTop(-1000, -1000);
16408     ml.hide();
16409
16410     if(fixedWidth){
16411         ml.setWidth(fixedWidth);
16412     }
16413      
16414     var instance = {
16415         /**
16416          * Returns the size of the specified text based on the internal element's style and width properties
16417          * @param {String} text The text to measure
16418          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16419          */
16420         getSize : function(text){
16421             ml.update(text);
16422             var s = ml.getSize();
16423             ml.update('');
16424             return s;
16425         },
16426
16427         /**
16428          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
16429          * that can affect the size of the rendered text
16430          * @param {String/HTMLElement} el The element, dom node or id
16431          */
16432         bind : function(el){
16433             ml.setStyle(
16434                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
16435             );
16436         },
16437
16438         /**
16439          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
16440          * to set a fixed width in order to accurately measure the text height.
16441          * @param {Number} width The width to set on the element
16442          */
16443         setFixedWidth : function(width){
16444             ml.setWidth(width);
16445         },
16446
16447         /**
16448          * Returns the measured width of the specified text
16449          * @param {String} text The text to measure
16450          * @return {Number} width The width in pixels
16451          */
16452         getWidth : function(text){
16453             ml.dom.style.width = 'auto';
16454             return this.getSize(text).width;
16455         },
16456
16457         /**
16458          * Returns the measured height of the specified text.  For multiline text, be sure to call
16459          * {@link #setFixedWidth} if necessary.
16460          * @param {String} text The text to measure
16461          * @return {Number} height The height in pixels
16462          */
16463         getHeight : function(text){
16464             return this.getSize(text).height;
16465         }
16466     };
16467
16468     instance.bind(bindTo);
16469
16470     return instance;
16471 };
16472
16473 // backwards compat
16474 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
16475  * Based on:
16476  * Ext JS Library 1.1.1
16477  * Copyright(c) 2006-2007, Ext JS, LLC.
16478  *
16479  * Originally Released Under LGPL - original licence link has changed is not relivant.
16480  *
16481  * Fork - LGPL
16482  * <script type="text/javascript">
16483  */
16484
16485 /**
16486  * @class Roo.state.Provider
16487  * Abstract base class for state provider implementations. This class provides methods
16488  * for encoding and decoding <b>typed</b> variables including dates and defines the 
16489  * Provider interface.
16490  */
16491 Roo.state.Provider = function(){
16492     /**
16493      * @event statechange
16494      * Fires when a state change occurs.
16495      * @param {Provider} this This state provider
16496      * @param {String} key The state key which was changed
16497      * @param {String} value The encoded value for the state
16498      */
16499     this.addEvents({
16500         "statechange": true
16501     });
16502     this.state = {};
16503     Roo.state.Provider.superclass.constructor.call(this);
16504 };
16505 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
16506     /**
16507      * Returns the current value for a key
16508      * @param {String} name The key name
16509      * @param {Mixed} defaultValue A default value to return if the key's value is not found
16510      * @return {Mixed} The state data
16511      */
16512     get : function(name, defaultValue){
16513         return typeof this.state[name] == "undefined" ?
16514             defaultValue : this.state[name];
16515     },
16516     
16517     /**
16518      * Clears a value from the state
16519      * @param {String} name The key name
16520      */
16521     clear : function(name){
16522         delete this.state[name];
16523         this.fireEvent("statechange", this, name, null);
16524     },
16525     
16526     /**
16527      * Sets the value for a key
16528      * @param {String} name The key name
16529      * @param {Mixed} value The value to set
16530      */
16531     set : function(name, value){
16532         this.state[name] = value;
16533         this.fireEvent("statechange", this, name, value);
16534     },
16535     
16536     /**
16537      * Decodes a string previously encoded with {@link #encodeValue}.
16538      * @param {String} value The value to decode
16539      * @return {Mixed} The decoded value
16540      */
16541     decodeValue : function(cookie){
16542         var re = /^(a|n|d|b|s|o)\:(.*)$/;
16543         var matches = re.exec(unescape(cookie));
16544         if(!matches || !matches[1]) {
16545             return; // non state cookie
16546         }
16547         var type = matches[1];
16548         var v = matches[2];
16549         switch(type){
16550             case "n":
16551                 return parseFloat(v);
16552             case "d":
16553                 return new Date(Date.parse(v));
16554             case "b":
16555                 return (v == "1");
16556             case "a":
16557                 var all = [];
16558                 var values = v.split("^");
16559                 for(var i = 0, len = values.length; i < len; i++){
16560                     all.push(this.decodeValue(values[i]));
16561                 }
16562                 return all;
16563            case "o":
16564                 var all = {};
16565                 var values = v.split("^");
16566                 for(var i = 0, len = values.length; i < len; i++){
16567                     var kv = values[i].split("=");
16568                     all[kv[0]] = this.decodeValue(kv[1]);
16569                 }
16570                 return all;
16571            default:
16572                 return v;
16573         }
16574     },
16575     
16576     /**
16577      * Encodes a value including type information.  Decode with {@link #decodeValue}.
16578      * @param {Mixed} value The value to encode
16579      * @return {String} The encoded value
16580      */
16581     encodeValue : function(v){
16582         var enc;
16583         if(typeof v == "number"){
16584             enc = "n:" + v;
16585         }else if(typeof v == "boolean"){
16586             enc = "b:" + (v ? "1" : "0");
16587         }else if(v instanceof Date){
16588             enc = "d:" + v.toGMTString();
16589         }else if(v instanceof Array){
16590             var flat = "";
16591             for(var i = 0, len = v.length; i < len; i++){
16592                 flat += this.encodeValue(v[i]);
16593                 if(i != len-1) {
16594                     flat += "^";
16595                 }
16596             }
16597             enc = "a:" + flat;
16598         }else if(typeof v == "object"){
16599             var flat = "";
16600             for(var key in v){
16601                 if(typeof v[key] != "function"){
16602                     flat += key + "=" + this.encodeValue(v[key]) + "^";
16603                 }
16604             }
16605             enc = "o:" + flat.substring(0, flat.length-1);
16606         }else{
16607             enc = "s:" + v;
16608         }
16609         return escape(enc);        
16610     }
16611 });
16612
16613 /*
16614  * Based on:
16615  * Ext JS Library 1.1.1
16616  * Copyright(c) 2006-2007, Ext JS, LLC.
16617  *
16618  * Originally Released Under LGPL - original licence link has changed is not relivant.
16619  *
16620  * Fork - LGPL
16621  * <script type="text/javascript">
16622  */
16623 /**
16624  * @class Roo.state.Manager
16625  * This is the global state manager. By default all components that are "state aware" check this class
16626  * for state information if you don't pass them a custom state provider. In order for this class
16627  * to be useful, it must be initialized with a provider when your application initializes.
16628  <pre><code>
16629 // in your initialization function
16630 init : function(){
16631    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
16632    ...
16633    // supposed you have a {@link Roo.BorderLayout}
16634    var layout = new Roo.BorderLayout(...);
16635    layout.restoreState();
16636    // or a {Roo.BasicDialog}
16637    var dialog = new Roo.BasicDialog(...);
16638    dialog.restoreState();
16639  </code></pre>
16640  * @static
16641  */
16642 Roo.state.Manager = function(){
16643     var provider = new Roo.state.Provider();
16644     
16645     return {
16646         /**
16647          * Configures the default state provider for your application
16648          * @param {Provider} stateProvider The state provider to set
16649          */
16650         setProvider : function(stateProvider){
16651             provider = stateProvider;
16652         },
16653         
16654         /**
16655          * Returns the current value for a key
16656          * @param {String} name The key name
16657          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
16658          * @return {Mixed} The state data
16659          */
16660         get : function(key, defaultValue){
16661             return provider.get(key, defaultValue);
16662         },
16663         
16664         /**
16665          * Sets the value for a key
16666          * @param {String} name The key name
16667          * @param {Mixed} value The state data
16668          */
16669          set : function(key, value){
16670             provider.set(key, value);
16671         },
16672         
16673         /**
16674          * Clears a value from the state
16675          * @param {String} name The key name
16676          */
16677         clear : function(key){
16678             provider.clear(key);
16679         },
16680         
16681         /**
16682          * Gets the currently configured state provider
16683          * @return {Provider} The state provider
16684          */
16685         getProvider : function(){
16686             return provider;
16687         }
16688     };
16689 }();
16690 /*
16691  * Based on:
16692  * Ext JS Library 1.1.1
16693  * Copyright(c) 2006-2007, Ext JS, LLC.
16694  *
16695  * Originally Released Under LGPL - original licence link has changed is not relivant.
16696  *
16697  * Fork - LGPL
16698  * <script type="text/javascript">
16699  */
16700 /**
16701  * @class Roo.state.CookieProvider
16702  * @extends Roo.state.Provider
16703  * The default Provider implementation which saves state via cookies.
16704  * <br />Usage:
16705  <pre><code>
16706    var cp = new Roo.state.CookieProvider({
16707        path: "/cgi-bin/",
16708        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
16709        domain: "roojs.com"
16710    })
16711    Roo.state.Manager.setProvider(cp);
16712  </code></pre>
16713  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
16714  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
16715  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
16716  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
16717  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
16718  * domain the page is running on including the 'www' like 'www.roojs.com')
16719  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
16720  * @constructor
16721  * Create a new CookieProvider
16722  * @param {Object} config The configuration object
16723  */
16724 Roo.state.CookieProvider = function(config){
16725     Roo.state.CookieProvider.superclass.constructor.call(this);
16726     this.path = "/";
16727     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
16728     this.domain = null;
16729     this.secure = false;
16730     Roo.apply(this, config);
16731     this.state = this.readCookies();
16732 };
16733
16734 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
16735     // private
16736     set : function(name, value){
16737         if(typeof value == "undefined" || value === null){
16738             this.clear(name);
16739             return;
16740         }
16741         this.setCookie(name, value);
16742         Roo.state.CookieProvider.superclass.set.call(this, name, value);
16743     },
16744
16745     // private
16746     clear : function(name){
16747         this.clearCookie(name);
16748         Roo.state.CookieProvider.superclass.clear.call(this, name);
16749     },
16750
16751     // private
16752     readCookies : function(){
16753         var cookies = {};
16754         var c = document.cookie + ";";
16755         var re = /\s?(.*?)=(.*?);/g;
16756         var matches;
16757         while((matches = re.exec(c)) != null){
16758             var name = matches[1];
16759             var value = matches[2];
16760             if(name && name.substring(0,3) == "ys-"){
16761                 cookies[name.substr(3)] = this.decodeValue(value);
16762             }
16763         }
16764         return cookies;
16765     },
16766
16767     // private
16768     setCookie : function(name, value){
16769         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
16770            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
16771            ((this.path == null) ? "" : ("; path=" + this.path)) +
16772            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16773            ((this.secure == true) ? "; secure" : "");
16774     },
16775
16776     // private
16777     clearCookie : function(name){
16778         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
16779            ((this.path == null) ? "" : ("; path=" + this.path)) +
16780            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16781            ((this.secure == true) ? "; secure" : "");
16782     }
16783 });/*
16784  * Based on:
16785  * Ext JS Library 1.1.1
16786  * Copyright(c) 2006-2007, Ext JS, LLC.
16787  *
16788  * Originally Released Under LGPL - original licence link has changed is not relivant.
16789  *
16790  * Fork - LGPL
16791  * <script type="text/javascript">
16792  */
16793  
16794
16795 /**
16796  * @class Roo.ComponentMgr
16797  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
16798  * @static
16799  */
16800 Roo.ComponentMgr = function(){
16801     var all = new Roo.util.MixedCollection();
16802
16803     return {
16804         /**
16805          * Registers a component.
16806          * @param {Roo.Component} c The component
16807          */
16808         register : function(c){
16809             all.add(c);
16810         },
16811
16812         /**
16813          * Unregisters a component.
16814          * @param {Roo.Component} c The component
16815          */
16816         unregister : function(c){
16817             all.remove(c);
16818         },
16819
16820         /**
16821          * Returns a component by id
16822          * @param {String} id The component id
16823          */
16824         get : function(id){
16825             return all.get(id);
16826         },
16827
16828         /**
16829          * Registers a function that will be called when a specified component is added to ComponentMgr
16830          * @param {String} id The component id
16831          * @param {Funtction} fn The callback function
16832          * @param {Object} scope The scope of the callback
16833          */
16834         onAvailable : function(id, fn, scope){
16835             all.on("add", function(index, o){
16836                 if(o.id == id){
16837                     fn.call(scope || o, o);
16838                     all.un("add", fn, scope);
16839                 }
16840             });
16841         }
16842     };
16843 }();/*
16844  * Based on:
16845  * Ext JS Library 1.1.1
16846  * Copyright(c) 2006-2007, Ext JS, LLC.
16847  *
16848  * Originally Released Under LGPL - original licence link has changed is not relivant.
16849  *
16850  * Fork - LGPL
16851  * <script type="text/javascript">
16852  */
16853  
16854 /**
16855  * @class Roo.Component
16856  * @extends Roo.util.Observable
16857  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
16858  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
16859  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
16860  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
16861  * All visual components (widgets) that require rendering into a layout should subclass Component.
16862  * @constructor
16863  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
16864  * element and its id used as the component id.  If a string is passed, it is assumed to be the id of an existing element
16865  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
16866  */
16867 Roo.Component = function(config){
16868     config = config || {};
16869     if(config.tagName || config.dom || typeof config == "string"){ // element object
16870         config = {el: config, id: config.id || config};
16871     }
16872     this.initialConfig = config;
16873
16874     Roo.apply(this, config);
16875     this.addEvents({
16876         /**
16877          * @event disable
16878          * Fires after the component is disabled.
16879              * @param {Roo.Component} this
16880              */
16881         disable : true,
16882         /**
16883          * @event enable
16884          * Fires after the component is enabled.
16885              * @param {Roo.Component} this
16886              */
16887         enable : true,
16888         /**
16889          * @event beforeshow
16890          * Fires before the component is shown.  Return false to stop the show.
16891              * @param {Roo.Component} this
16892              */
16893         beforeshow : true,
16894         /**
16895          * @event show
16896          * Fires after the component is shown.
16897              * @param {Roo.Component} this
16898              */
16899         show : true,
16900         /**
16901          * @event beforehide
16902          * Fires before the component is hidden. Return false to stop the hide.
16903              * @param {Roo.Component} this
16904              */
16905         beforehide : true,
16906         /**
16907          * @event hide
16908          * Fires after the component is hidden.
16909              * @param {Roo.Component} this
16910              */
16911         hide : true,
16912         /**
16913          * @event beforerender
16914          * Fires before the component is rendered. Return false to stop the render.
16915              * @param {Roo.Component} this
16916              */
16917         beforerender : true,
16918         /**
16919          * @event render
16920          * Fires after the component is rendered.
16921              * @param {Roo.Component} this
16922              */
16923         render : true,
16924         /**
16925          * @event beforedestroy
16926          * Fires before the component is destroyed. Return false to stop the destroy.
16927              * @param {Roo.Component} this
16928              */
16929         beforedestroy : true,
16930         /**
16931          * @event destroy
16932          * Fires after the component is destroyed.
16933              * @param {Roo.Component} this
16934              */
16935         destroy : true
16936     });
16937     if(!this.id){
16938         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
16939     }
16940     Roo.ComponentMgr.register(this);
16941     Roo.Component.superclass.constructor.call(this);
16942     this.initComponent();
16943     if(this.renderTo){ // not supported by all components yet. use at your own risk!
16944         this.render(this.renderTo);
16945         delete this.renderTo;
16946     }
16947 };
16948
16949 /** @private */
16950 Roo.Component.AUTO_ID = 1000;
16951
16952 Roo.extend(Roo.Component, Roo.util.Observable, {
16953     /**
16954      * @scope Roo.Component.prototype
16955      * @type {Boolean}
16956      * true if this component is hidden. Read-only.
16957      */
16958     hidden : false,
16959     /**
16960      * @type {Boolean}
16961      * true if this component is disabled. Read-only.
16962      */
16963     disabled : false,
16964     /**
16965      * @type {Boolean}
16966      * true if this component has been rendered. Read-only.
16967      */
16968     rendered : false,
16969     
16970     /** @cfg {String} disableClass
16971      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
16972      */
16973     disabledClass : "x-item-disabled",
16974         /** @cfg {Boolean} allowDomMove
16975          * Whether the component can move the Dom node when rendering (defaults to true).
16976          */
16977     allowDomMove : true,
16978     /** @cfg {String} hideMode (display|visibility)
16979      * How this component should hidden. Supported values are
16980      * "visibility" (css visibility), "offsets" (negative offset position) and
16981      * "display" (css display) - defaults to "display".
16982      */
16983     hideMode: 'display',
16984
16985     /** @private */
16986     ctype : "Roo.Component",
16987
16988     /**
16989      * @cfg {String} actionMode 
16990      * which property holds the element that used for  hide() / show() / disable() / enable()
16991      * default is 'el' for forms you probably want to set this to fieldEl 
16992      */
16993     actionMode : "el",
16994
16995          /**
16996      * @cfg {String} style
16997      * css styles to add to component
16998      * eg. text-align:right;
16999      */
17000     style : false,
17001         
17002     /** @private */
17003     getActionEl : function(){
17004         return this[this.actionMode];
17005     },
17006
17007     initComponent : Roo.emptyFn,
17008     /**
17009      * If this is a lazy rendering component, render it to its container element.
17010      * @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.
17011      */
17012     render : function(container, position){
17013         
17014         if(this.rendered){
17015             return this;
17016         }
17017         
17018         if(this.fireEvent("beforerender", this) === false){
17019             return false;
17020         }
17021         
17022         if(!container && this.el){
17023             this.el = Roo.get(this.el);
17024             container = this.el.dom.parentNode;
17025             this.allowDomMove = false;
17026         }
17027         this.container = Roo.get(container);
17028         this.rendered = true;
17029         if(position !== undefined){
17030             if(typeof position == 'number'){
17031                 position = this.container.dom.childNodes[position];
17032             }else{
17033                 position = Roo.getDom(position);
17034             }
17035         }
17036         this.onRender(this.container, position || null);
17037         if(this.cls){
17038             this.el.addClass(this.cls);
17039             delete this.cls;
17040         }
17041         if(this.style){
17042             this.el.applyStyles(this.style);
17043             delete this.style;
17044         }
17045         this.fireEvent("render", this);
17046         this.afterRender(this.container);
17047         if(this.hidden){
17048             this.hide();
17049         }
17050         if(this.disabled){
17051             this.disable();
17052         }
17053
17054         return this;
17055         
17056     },
17057
17058     /** @private */
17059     // default function is not really useful
17060     onRender : function(ct, position){
17061         if(this.el){
17062             this.el = Roo.get(this.el);
17063             if(this.allowDomMove !== false){
17064                 ct.dom.insertBefore(this.el.dom, position);
17065             }
17066         }
17067     },
17068
17069     /** @private */
17070     getAutoCreate : function(){
17071         var cfg = typeof this.autoCreate == "object" ?
17072                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
17073         if(this.id && !cfg.id){
17074             cfg.id = this.id;
17075         }
17076         return cfg;
17077     },
17078
17079     /** @private */
17080     afterRender : Roo.emptyFn,
17081
17082     /**
17083      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
17084      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
17085      */
17086     destroy : function(){
17087         if(this.fireEvent("beforedestroy", this) !== false){
17088             this.purgeListeners();
17089             this.beforeDestroy();
17090             if(this.rendered){
17091                 this.el.removeAllListeners();
17092                 this.el.remove();
17093                 if(this.actionMode == "container"){
17094                     this.container.remove();
17095                 }
17096             }
17097             this.onDestroy();
17098             Roo.ComponentMgr.unregister(this);
17099             this.fireEvent("destroy", this);
17100         }
17101     },
17102
17103         /** @private */
17104     beforeDestroy : function(){
17105
17106     },
17107
17108         /** @private */
17109         onDestroy : function(){
17110
17111     },
17112
17113     /**
17114      * Returns the underlying {@link Roo.Element}.
17115      * @return {Roo.Element} The element
17116      */
17117     getEl : function(){
17118         return this.el;
17119     },
17120
17121     /**
17122      * Returns the id of this component.
17123      * @return {String}
17124      */
17125     getId : function(){
17126         return this.id;
17127     },
17128
17129     /**
17130      * Try to focus this component.
17131      * @param {Boolean} selectText True to also select the text in this component (if applicable)
17132      * @return {Roo.Component} this
17133      */
17134     focus : function(selectText){
17135         if(this.rendered){
17136             this.el.focus();
17137             if(selectText === true){
17138                 this.el.dom.select();
17139             }
17140         }
17141         return this;
17142     },
17143
17144     /** @private */
17145     blur : function(){
17146         if(this.rendered){
17147             this.el.blur();
17148         }
17149         return this;
17150     },
17151
17152     /**
17153      * Disable this component.
17154      * @return {Roo.Component} this
17155      */
17156     disable : function(){
17157         if(this.rendered){
17158             this.onDisable();
17159         }
17160         this.disabled = true;
17161         this.fireEvent("disable", this);
17162         return this;
17163     },
17164
17165         // private
17166     onDisable : function(){
17167         this.getActionEl().addClass(this.disabledClass);
17168         this.el.dom.disabled = true;
17169     },
17170
17171     /**
17172      * Enable this component.
17173      * @return {Roo.Component} this
17174      */
17175     enable : function(){
17176         if(this.rendered){
17177             this.onEnable();
17178         }
17179         this.disabled = false;
17180         this.fireEvent("enable", this);
17181         return this;
17182     },
17183
17184         // private
17185     onEnable : function(){
17186         this.getActionEl().removeClass(this.disabledClass);
17187         this.el.dom.disabled = false;
17188     },
17189
17190     /**
17191      * Convenience function for setting disabled/enabled by boolean.
17192      * @param {Boolean} disabled
17193      */
17194     setDisabled : function(disabled){
17195         this[disabled ? "disable" : "enable"]();
17196     },
17197
17198     /**
17199      * Show this component.
17200      * @return {Roo.Component} this
17201      */
17202     show: function(){
17203         if(this.fireEvent("beforeshow", this) !== false){
17204             this.hidden = false;
17205             if(this.rendered){
17206                 this.onShow();
17207             }
17208             this.fireEvent("show", this);
17209         }
17210         return this;
17211     },
17212
17213     // private
17214     onShow : function(){
17215         var ae = this.getActionEl();
17216         if(this.hideMode == 'visibility'){
17217             ae.dom.style.visibility = "visible";
17218         }else if(this.hideMode == 'offsets'){
17219             ae.removeClass('x-hidden');
17220         }else{
17221             ae.dom.style.display = "";
17222         }
17223     },
17224
17225     /**
17226      * Hide this component.
17227      * @return {Roo.Component} this
17228      */
17229     hide: function(){
17230         if(this.fireEvent("beforehide", this) !== false){
17231             this.hidden = true;
17232             if(this.rendered){
17233                 this.onHide();
17234             }
17235             this.fireEvent("hide", this);
17236         }
17237         return this;
17238     },
17239
17240     // private
17241     onHide : function(){
17242         var ae = this.getActionEl();
17243         if(this.hideMode == 'visibility'){
17244             ae.dom.style.visibility = "hidden";
17245         }else if(this.hideMode == 'offsets'){
17246             ae.addClass('x-hidden');
17247         }else{
17248             ae.dom.style.display = "none";
17249         }
17250     },
17251
17252     /**
17253      * Convenience function to hide or show this component by boolean.
17254      * @param {Boolean} visible True to show, false to hide
17255      * @return {Roo.Component} this
17256      */
17257     setVisible: function(visible){
17258         if(visible) {
17259             this.show();
17260         }else{
17261             this.hide();
17262         }
17263         return this;
17264     },
17265
17266     /**
17267      * Returns true if this component is visible.
17268      */
17269     isVisible : function(){
17270         return this.getActionEl().isVisible();
17271     },
17272
17273     cloneConfig : function(overrides){
17274         overrides = overrides || {};
17275         var id = overrides.id || Roo.id();
17276         var cfg = Roo.applyIf(overrides, this.initialConfig);
17277         cfg.id = id; // prevent dup id
17278         return new this.constructor(cfg);
17279     }
17280 });/*
17281  * Based on:
17282  * Ext JS Library 1.1.1
17283  * Copyright(c) 2006-2007, Ext JS, LLC.
17284  *
17285  * Originally Released Under LGPL - original licence link has changed is not relivant.
17286  *
17287  * Fork - LGPL
17288  * <script type="text/javascript">
17289  */
17290
17291 /**
17292  * @class Roo.BoxComponent
17293  * @extends Roo.Component
17294  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
17295  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
17296  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
17297  * layout containers.
17298  * @constructor
17299  * @param {Roo.Element/String/Object} config The configuration options.
17300  */
17301 Roo.BoxComponent = function(config){
17302     Roo.Component.call(this, config);
17303     this.addEvents({
17304         /**
17305          * @event resize
17306          * Fires after the component is resized.
17307              * @param {Roo.Component} this
17308              * @param {Number} adjWidth The box-adjusted width that was set
17309              * @param {Number} adjHeight The box-adjusted height that was set
17310              * @param {Number} rawWidth The width that was originally specified
17311              * @param {Number} rawHeight The height that was originally specified
17312              */
17313         resize : true,
17314         /**
17315          * @event move
17316          * Fires after the component is moved.
17317              * @param {Roo.Component} this
17318              * @param {Number} x The new x position
17319              * @param {Number} y The new y position
17320              */
17321         move : true
17322     });
17323 };
17324
17325 Roo.extend(Roo.BoxComponent, Roo.Component, {
17326     // private, set in afterRender to signify that the component has been rendered
17327     boxReady : false,
17328     // private, used to defer height settings to subclasses
17329     deferHeight: false,
17330     /** @cfg {Number} width
17331      * width (optional) size of component
17332      */
17333      /** @cfg {Number} height
17334      * height (optional) size of component
17335      */
17336      
17337     /**
17338      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
17339      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
17340      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
17341      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
17342      * @return {Roo.BoxComponent} this
17343      */
17344     setSize : function(w, h){
17345         // support for standard size objects
17346         if(typeof w == 'object'){
17347             h = w.height;
17348             w = w.width;
17349         }
17350         // not rendered
17351         if(!this.boxReady){
17352             this.width = w;
17353             this.height = h;
17354             return this;
17355         }
17356
17357         // prevent recalcs when not needed
17358         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
17359             return this;
17360         }
17361         this.lastSize = {width: w, height: h};
17362
17363         var adj = this.adjustSize(w, h);
17364         var aw = adj.width, ah = adj.height;
17365         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
17366             var rz = this.getResizeEl();
17367             if(!this.deferHeight && aw !== undefined && ah !== undefined){
17368                 rz.setSize(aw, ah);
17369             }else if(!this.deferHeight && ah !== undefined){
17370                 rz.setHeight(ah);
17371             }else if(aw !== undefined){
17372                 rz.setWidth(aw);
17373             }
17374             this.onResize(aw, ah, w, h);
17375             this.fireEvent('resize', this, aw, ah, w, h);
17376         }
17377         return this;
17378     },
17379
17380     /**
17381      * Gets the current size of the component's underlying element.
17382      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
17383      */
17384     getSize : function(){
17385         return this.el.getSize();
17386     },
17387
17388     /**
17389      * Gets the current XY position of the component's underlying element.
17390      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17391      * @return {Array} The XY position of the element (e.g., [100, 200])
17392      */
17393     getPosition : function(local){
17394         if(local === true){
17395             return [this.el.getLeft(true), this.el.getTop(true)];
17396         }
17397         return this.xy || this.el.getXY();
17398     },
17399
17400     /**
17401      * Gets the current box measurements of the component's underlying element.
17402      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17403      * @returns {Object} box An object in the format {x, y, width, height}
17404      */
17405     getBox : function(local){
17406         var s = this.el.getSize();
17407         if(local){
17408             s.x = this.el.getLeft(true);
17409             s.y = this.el.getTop(true);
17410         }else{
17411             var xy = this.xy || this.el.getXY();
17412             s.x = xy[0];
17413             s.y = xy[1];
17414         }
17415         return s;
17416     },
17417
17418     /**
17419      * Sets the current box measurements of the component's underlying element.
17420      * @param {Object} box An object in the format {x, y, width, height}
17421      * @returns {Roo.BoxComponent} this
17422      */
17423     updateBox : function(box){
17424         this.setSize(box.width, box.height);
17425         this.setPagePosition(box.x, box.y);
17426         return this;
17427     },
17428
17429     // protected
17430     getResizeEl : function(){
17431         return this.resizeEl || this.el;
17432     },
17433
17434     // protected
17435     getPositionEl : function(){
17436         return this.positionEl || this.el;
17437     },
17438
17439     /**
17440      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
17441      * This method fires the move event.
17442      * @param {Number} left The new left
17443      * @param {Number} top The new top
17444      * @returns {Roo.BoxComponent} this
17445      */
17446     setPosition : function(x, y){
17447         this.x = x;
17448         this.y = y;
17449         if(!this.boxReady){
17450             return this;
17451         }
17452         var adj = this.adjustPosition(x, y);
17453         var ax = adj.x, ay = adj.y;
17454
17455         var el = this.getPositionEl();
17456         if(ax !== undefined || ay !== undefined){
17457             if(ax !== undefined && ay !== undefined){
17458                 el.setLeftTop(ax, ay);
17459             }else if(ax !== undefined){
17460                 el.setLeft(ax);
17461             }else if(ay !== undefined){
17462                 el.setTop(ay);
17463             }
17464             this.onPosition(ax, ay);
17465             this.fireEvent('move', this, ax, ay);
17466         }
17467         return this;
17468     },
17469
17470     /**
17471      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
17472      * This method fires the move event.
17473      * @param {Number} x The new x position
17474      * @param {Number} y The new y position
17475      * @returns {Roo.BoxComponent} this
17476      */
17477     setPagePosition : function(x, y){
17478         this.pageX = x;
17479         this.pageY = y;
17480         if(!this.boxReady){
17481             return;
17482         }
17483         if(x === undefined || y === undefined){ // cannot translate undefined points
17484             return;
17485         }
17486         var p = this.el.translatePoints(x, y);
17487         this.setPosition(p.left, p.top);
17488         return this;
17489     },
17490
17491     // private
17492     onRender : function(ct, position){
17493         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
17494         if(this.resizeEl){
17495             this.resizeEl = Roo.get(this.resizeEl);
17496         }
17497         if(this.positionEl){
17498             this.positionEl = Roo.get(this.positionEl);
17499         }
17500     },
17501
17502     // private
17503     afterRender : function(){
17504         Roo.BoxComponent.superclass.afterRender.call(this);
17505         this.boxReady = true;
17506         this.setSize(this.width, this.height);
17507         if(this.x || this.y){
17508             this.setPosition(this.x, this.y);
17509         }
17510         if(this.pageX || this.pageY){
17511             this.setPagePosition(this.pageX, this.pageY);
17512         }
17513     },
17514
17515     /**
17516      * Force the component's size to recalculate based on the underlying element's current height and width.
17517      * @returns {Roo.BoxComponent} this
17518      */
17519     syncSize : function(){
17520         delete this.lastSize;
17521         this.setSize(this.el.getWidth(), this.el.getHeight());
17522         return this;
17523     },
17524
17525     /**
17526      * Called after the component is resized, this method is empty by default but can be implemented by any
17527      * subclass that needs to perform custom logic after a resize occurs.
17528      * @param {Number} adjWidth The box-adjusted width that was set
17529      * @param {Number} adjHeight The box-adjusted height that was set
17530      * @param {Number} rawWidth The width that was originally specified
17531      * @param {Number} rawHeight The height that was originally specified
17532      */
17533     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
17534
17535     },
17536
17537     /**
17538      * Called after the component is moved, this method is empty by default but can be implemented by any
17539      * subclass that needs to perform custom logic after a move occurs.
17540      * @param {Number} x The new x position
17541      * @param {Number} y The new y position
17542      */
17543     onPosition : function(x, y){
17544
17545     },
17546
17547     // private
17548     adjustSize : function(w, h){
17549         if(this.autoWidth){
17550             w = 'auto';
17551         }
17552         if(this.autoHeight){
17553             h = 'auto';
17554         }
17555         return {width : w, height: h};
17556     },
17557
17558     // private
17559     adjustPosition : function(x, y){
17560         return {x : x, y: y};
17561     }
17562 });/*
17563  * Based on:
17564  * Ext JS Library 1.1.1
17565  * Copyright(c) 2006-2007, Ext JS, LLC.
17566  *
17567  * Originally Released Under LGPL - original licence link has changed is not relivant.
17568  *
17569  * Fork - LGPL
17570  * <script type="text/javascript">
17571  */
17572  (function(){ 
17573 /**
17574  * @class Roo.Layer
17575  * @extends Roo.Element
17576  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
17577  * automatic maintaining of shadow/shim positions.
17578  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
17579  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
17580  * you can pass a string with a CSS class name. False turns off the shadow.
17581  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
17582  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
17583  * @cfg {String} cls CSS class to add to the element
17584  * @cfg {Number} zindex Starting z-index (defaults to 11000)
17585  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
17586  * @constructor
17587  * @param {Object} config An object with config options.
17588  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
17589  */
17590
17591 Roo.Layer = function(config, existingEl){
17592     config = config || {};
17593     var dh = Roo.DomHelper;
17594     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
17595     if(existingEl){
17596         this.dom = Roo.getDom(existingEl);
17597     }
17598     if(!this.dom){
17599         var o = config.dh || {tag: "div", cls: "x-layer"};
17600         this.dom = dh.append(pel, o);
17601     }
17602     if(config.cls){
17603         this.addClass(config.cls);
17604     }
17605     this.constrain = config.constrain !== false;
17606     this.visibilityMode = Roo.Element.VISIBILITY;
17607     if(config.id){
17608         this.id = this.dom.id = config.id;
17609     }else{
17610         this.id = Roo.id(this.dom);
17611     }
17612     this.zindex = config.zindex || this.getZIndex();
17613     this.position("absolute", this.zindex);
17614     if(config.shadow){
17615         this.shadowOffset = config.shadowOffset || 4;
17616         this.shadow = new Roo.Shadow({
17617             offset : this.shadowOffset,
17618             mode : config.shadow
17619         });
17620     }else{
17621         this.shadowOffset = 0;
17622     }
17623     this.useShim = config.shim !== false && Roo.useShims;
17624     this.useDisplay = config.useDisplay;
17625     this.hide();
17626 };
17627
17628 var supr = Roo.Element.prototype;
17629
17630 // shims are shared among layer to keep from having 100 iframes
17631 var shims = [];
17632
17633 Roo.extend(Roo.Layer, Roo.Element, {
17634
17635     getZIndex : function(){
17636         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
17637     },
17638
17639     getShim : function(){
17640         if(!this.useShim){
17641             return null;
17642         }
17643         if(this.shim){
17644             return this.shim;
17645         }
17646         var shim = shims.shift();
17647         if(!shim){
17648             shim = this.createShim();
17649             shim.enableDisplayMode('block');
17650             shim.dom.style.display = 'none';
17651             shim.dom.style.visibility = 'visible';
17652         }
17653         var pn = this.dom.parentNode;
17654         if(shim.dom.parentNode != pn){
17655             pn.insertBefore(shim.dom, this.dom);
17656         }
17657         shim.setStyle('z-index', this.getZIndex()-2);
17658         this.shim = shim;
17659         return shim;
17660     },
17661
17662     hideShim : function(){
17663         if(this.shim){
17664             this.shim.setDisplayed(false);
17665             shims.push(this.shim);
17666             delete this.shim;
17667         }
17668     },
17669
17670     disableShadow : function(){
17671         if(this.shadow){
17672             this.shadowDisabled = true;
17673             this.shadow.hide();
17674             this.lastShadowOffset = this.shadowOffset;
17675             this.shadowOffset = 0;
17676         }
17677     },
17678
17679     enableShadow : function(show){
17680         if(this.shadow){
17681             this.shadowDisabled = false;
17682             this.shadowOffset = this.lastShadowOffset;
17683             delete this.lastShadowOffset;
17684             if(show){
17685                 this.sync(true);
17686             }
17687         }
17688     },
17689
17690     // private
17691     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
17692     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
17693     sync : function(doShow){
17694         var sw = this.shadow;
17695         if(!this.updating && this.isVisible() && (sw || this.useShim)){
17696             var sh = this.getShim();
17697
17698             var w = this.getWidth(),
17699                 h = this.getHeight();
17700
17701             var l = this.getLeft(true),
17702                 t = this.getTop(true);
17703
17704             if(sw && !this.shadowDisabled){
17705                 if(doShow && !sw.isVisible()){
17706                     sw.show(this);
17707                 }else{
17708                     sw.realign(l, t, w, h);
17709                 }
17710                 if(sh){
17711                     if(doShow){
17712                        sh.show();
17713                     }
17714                     // fit the shim behind the shadow, so it is shimmed too
17715                     var a = sw.adjusts, s = sh.dom.style;
17716                     s.left = (Math.min(l, l+a.l))+"px";
17717                     s.top = (Math.min(t, t+a.t))+"px";
17718                     s.width = (w+a.w)+"px";
17719                     s.height = (h+a.h)+"px";
17720                 }
17721             }else if(sh){
17722                 if(doShow){
17723                    sh.show();
17724                 }
17725                 sh.setSize(w, h);
17726                 sh.setLeftTop(l, t);
17727             }
17728             
17729         }
17730     },
17731
17732     // private
17733     destroy : function(){
17734         this.hideShim();
17735         if(this.shadow){
17736             this.shadow.hide();
17737         }
17738         this.removeAllListeners();
17739         var pn = this.dom.parentNode;
17740         if(pn){
17741             pn.removeChild(this.dom);
17742         }
17743         Roo.Element.uncache(this.id);
17744     },
17745
17746     remove : function(){
17747         this.destroy();
17748     },
17749
17750     // private
17751     beginUpdate : function(){
17752         this.updating = true;
17753     },
17754
17755     // private
17756     endUpdate : function(){
17757         this.updating = false;
17758         this.sync(true);
17759     },
17760
17761     // private
17762     hideUnders : function(negOffset){
17763         if(this.shadow){
17764             this.shadow.hide();
17765         }
17766         this.hideShim();
17767     },
17768
17769     // private
17770     constrainXY : function(){
17771         if(this.constrain){
17772             var vw = Roo.lib.Dom.getViewWidth(),
17773                 vh = Roo.lib.Dom.getViewHeight();
17774             var s = Roo.get(document).getScroll();
17775
17776             var xy = this.getXY();
17777             var x = xy[0], y = xy[1];   
17778             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
17779             // only move it if it needs it
17780             var moved = false;
17781             // first validate right/bottom
17782             if((x + w) > vw+s.left){
17783                 x = vw - w - this.shadowOffset;
17784                 moved = true;
17785             }
17786             if((y + h) > vh+s.top){
17787                 y = vh - h - this.shadowOffset;
17788                 moved = true;
17789             }
17790             // then make sure top/left isn't negative
17791             if(x < s.left){
17792                 x = s.left;
17793                 moved = true;
17794             }
17795             if(y < s.top){
17796                 y = s.top;
17797                 moved = true;
17798             }
17799             if(moved){
17800                 if(this.avoidY){
17801                     var ay = this.avoidY;
17802                     if(y <= ay && (y+h) >= ay){
17803                         y = ay-h-5;   
17804                     }
17805                 }
17806                 xy = [x, y];
17807                 this.storeXY(xy);
17808                 supr.setXY.call(this, xy);
17809                 this.sync();
17810             }
17811         }
17812     },
17813
17814     isVisible : function(){
17815         return this.visible;    
17816     },
17817
17818     // private
17819     showAction : function(){
17820         this.visible = true; // track visibility to prevent getStyle calls
17821         if(this.useDisplay === true){
17822             this.setDisplayed("");
17823         }else if(this.lastXY){
17824             supr.setXY.call(this, this.lastXY);
17825         }else if(this.lastLT){
17826             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
17827         }
17828     },
17829
17830     // private
17831     hideAction : function(){
17832         this.visible = false;
17833         if(this.useDisplay === true){
17834             this.setDisplayed(false);
17835         }else{
17836             this.setLeftTop(-10000,-10000);
17837         }
17838     },
17839
17840     // overridden Element method
17841     setVisible : function(v, a, d, c, e){
17842         if(v){
17843             this.showAction();
17844         }
17845         if(a && v){
17846             var cb = function(){
17847                 this.sync(true);
17848                 if(c){
17849                     c();
17850                 }
17851             }.createDelegate(this);
17852             supr.setVisible.call(this, true, true, d, cb, e);
17853         }else{
17854             if(!v){
17855                 this.hideUnders(true);
17856             }
17857             var cb = c;
17858             if(a){
17859                 cb = function(){
17860                     this.hideAction();
17861                     if(c){
17862                         c();
17863                     }
17864                 }.createDelegate(this);
17865             }
17866             supr.setVisible.call(this, v, a, d, cb, e);
17867             if(v){
17868                 this.sync(true);
17869             }else if(!a){
17870                 this.hideAction();
17871             }
17872         }
17873     },
17874
17875     storeXY : function(xy){
17876         delete this.lastLT;
17877         this.lastXY = xy;
17878     },
17879
17880     storeLeftTop : function(left, top){
17881         delete this.lastXY;
17882         this.lastLT = [left, top];
17883     },
17884
17885     // private
17886     beforeFx : function(){
17887         this.beforeAction();
17888         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
17889     },
17890
17891     // private
17892     afterFx : function(){
17893         Roo.Layer.superclass.afterFx.apply(this, arguments);
17894         this.sync(this.isVisible());
17895     },
17896
17897     // private
17898     beforeAction : function(){
17899         if(!this.updating && this.shadow){
17900             this.shadow.hide();
17901         }
17902     },
17903
17904     // overridden Element method
17905     setLeft : function(left){
17906         this.storeLeftTop(left, this.getTop(true));
17907         supr.setLeft.apply(this, arguments);
17908         this.sync();
17909     },
17910
17911     setTop : function(top){
17912         this.storeLeftTop(this.getLeft(true), top);
17913         supr.setTop.apply(this, arguments);
17914         this.sync();
17915     },
17916
17917     setLeftTop : function(left, top){
17918         this.storeLeftTop(left, top);
17919         supr.setLeftTop.apply(this, arguments);
17920         this.sync();
17921     },
17922
17923     setXY : function(xy, a, d, c, e){
17924         this.fixDisplay();
17925         this.beforeAction();
17926         this.storeXY(xy);
17927         var cb = this.createCB(c);
17928         supr.setXY.call(this, xy, a, d, cb, e);
17929         if(!a){
17930             cb();
17931         }
17932     },
17933
17934     // private
17935     createCB : function(c){
17936         var el = this;
17937         return function(){
17938             el.constrainXY();
17939             el.sync(true);
17940             if(c){
17941                 c();
17942             }
17943         };
17944     },
17945
17946     // overridden Element method
17947     setX : function(x, a, d, c, e){
17948         this.setXY([x, this.getY()], a, d, c, e);
17949     },
17950
17951     // overridden Element method
17952     setY : function(y, a, d, c, e){
17953         this.setXY([this.getX(), y], a, d, c, e);
17954     },
17955
17956     // overridden Element method
17957     setSize : function(w, h, a, d, c, e){
17958         this.beforeAction();
17959         var cb = this.createCB(c);
17960         supr.setSize.call(this, w, h, a, d, cb, e);
17961         if(!a){
17962             cb();
17963         }
17964     },
17965
17966     // overridden Element method
17967     setWidth : function(w, a, d, c, e){
17968         this.beforeAction();
17969         var cb = this.createCB(c);
17970         supr.setWidth.call(this, w, a, d, cb, e);
17971         if(!a){
17972             cb();
17973         }
17974     },
17975
17976     // overridden Element method
17977     setHeight : function(h, a, d, c, e){
17978         this.beforeAction();
17979         var cb = this.createCB(c);
17980         supr.setHeight.call(this, h, a, d, cb, e);
17981         if(!a){
17982             cb();
17983         }
17984     },
17985
17986     // overridden Element method
17987     setBounds : function(x, y, w, h, a, d, c, e){
17988         this.beforeAction();
17989         var cb = this.createCB(c);
17990         if(!a){
17991             this.storeXY([x, y]);
17992             supr.setXY.call(this, [x, y]);
17993             supr.setSize.call(this, w, h, a, d, cb, e);
17994             cb();
17995         }else{
17996             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
17997         }
17998         return this;
17999     },
18000     
18001     /**
18002      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
18003      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
18004      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
18005      * @param {Number} zindex The new z-index to set
18006      * @return {this} The Layer
18007      */
18008     setZIndex : function(zindex){
18009         this.zindex = zindex;
18010         this.setStyle("z-index", zindex + 2);
18011         if(this.shadow){
18012             this.shadow.setZIndex(zindex + 1);
18013         }
18014         if(this.shim){
18015             this.shim.setStyle("z-index", zindex);
18016         }
18017     }
18018 });
18019 })();/*
18020  * Original code for Roojs - LGPL
18021  * <script type="text/javascript">
18022  */
18023  
18024 /**
18025  * @class Roo.XComponent
18026  * A delayed Element creator...
18027  * Or a way to group chunks of interface together.
18028  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
18029  *  used in conjunction with XComponent.build() it will create an instance of each element,
18030  *  then call addxtype() to build the User interface.
18031  * 
18032  * Mypart.xyx = new Roo.XComponent({
18033
18034     parent : 'Mypart.xyz', // empty == document.element.!!
18035     order : '001',
18036     name : 'xxxx'
18037     region : 'xxxx'
18038     disabled : function() {} 
18039      
18040     tree : function() { // return an tree of xtype declared components
18041         var MODULE = this;
18042         return 
18043         {
18044             xtype : 'NestedLayoutPanel',
18045             // technicall
18046         }
18047      ]
18048  *})
18049  *
18050  *
18051  * It can be used to build a big heiracy, with parent etc.
18052  * or you can just use this to render a single compoent to a dom element
18053  * MYPART.render(Roo.Element | String(id) | dom_element )
18054  *
18055  *
18056  * Usage patterns.
18057  *
18058  * Classic Roo
18059  *
18060  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
18061  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
18062  *
18063  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
18064  *
18065  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
18066  * - if mulitple topModules exist, the last one is defined as the top module.
18067  *
18068  * Embeded Roo
18069  * 
18070  * When the top level or multiple modules are to embedded into a existing HTML page,
18071  * the parent element can container '#id' of the element where the module will be drawn.
18072  *
18073  * Bootstrap Roo
18074  *
18075  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
18076  * it relies more on a include mechanism, where sub modules are included into an outer page.
18077  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
18078  * 
18079  * Bootstrap Roo Included elements
18080  *
18081  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
18082  * hence confusing the component builder as it thinks there are multiple top level elements. 
18083  *
18084  * String Over-ride & Translations
18085  *
18086  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
18087  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
18088  * are needed. @see Roo.XComponent.overlayString  
18089  * 
18090  * 
18091  * 
18092  * @extends Roo.util.Observable
18093  * @constructor
18094  * @param cfg {Object} configuration of component
18095  * 
18096  */
18097 Roo.XComponent = function(cfg) {
18098     Roo.apply(this, cfg);
18099     this.addEvents({ 
18100         /**
18101              * @event built
18102              * Fires when this the componnt is built
18103              * @param {Roo.XComponent} c the component
18104              */
18105         'built' : true
18106         
18107     });
18108     this.region = this.region || 'center'; // default..
18109     Roo.XComponent.register(this);
18110     this.modules = false;
18111     this.el = false; // where the layout goes..
18112     
18113     
18114 }
18115 Roo.extend(Roo.XComponent, Roo.util.Observable, {
18116     /**
18117      * @property el
18118      * The created element (with Roo.factory())
18119      * @type {Roo.Layout}
18120      */
18121     el  : false,
18122     
18123     /**
18124      * @property el
18125      * for BC  - use el in new code
18126      * @type {Roo.Layout}
18127      */
18128     panel : false,
18129     
18130     /**
18131      * @property layout
18132      * for BC  - use el in new code
18133      * @type {Roo.Layout}
18134      */
18135     layout : false,
18136     
18137      /**
18138      * @cfg {Function|boolean} disabled
18139      * If this module is disabled by some rule, return true from the funtion
18140      */
18141     disabled : false,
18142     
18143     /**
18144      * @cfg {String} parent 
18145      * Name of parent element which it get xtype added to..
18146      */
18147     parent: false,
18148     
18149     /**
18150      * @cfg {String} order
18151      * Used to set the order in which elements are created (usefull for multiple tabs)
18152      */
18153     
18154     order : false,
18155     /**
18156      * @cfg {String} name
18157      * String to display while loading.
18158      */
18159     name : false,
18160     /**
18161      * @cfg {String} region
18162      * Region to render component to (defaults to center)
18163      */
18164     region : 'center',
18165     
18166     /**
18167      * @cfg {Array} items
18168      * A single item array - the first element is the root of the tree..
18169      * It's done this way to stay compatible with the Xtype system...
18170      */
18171     items : false,
18172     
18173     /**
18174      * @property _tree
18175      * The method that retuns the tree of parts that make up this compoennt 
18176      * @type {function}
18177      */
18178     _tree  : false,
18179     
18180      /**
18181      * render
18182      * render element to dom or tree
18183      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
18184      */
18185     
18186     render : function(el)
18187     {
18188         
18189         el = el || false;
18190         var hp = this.parent ? 1 : 0;
18191         Roo.debug &&  Roo.log(this);
18192         
18193         var tree = this._tree ? this._tree() : this.tree();
18194
18195         
18196         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
18197             // if parent is a '#.....' string, then let's use that..
18198             var ename = this.parent.substr(1);
18199             this.parent = false;
18200             Roo.debug && Roo.log(ename);
18201             switch (ename) {
18202                 case 'bootstrap-body':
18203                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
18204                         // this is the BorderLayout standard?
18205                        this.parent = { el : true };
18206                        break;
18207                     }
18208                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
18209                         // need to insert stuff...
18210                         this.parent =  {
18211                              el : new Roo.bootstrap.layout.Border({
18212                                  el : document.body, 
18213                      
18214                                  center: {
18215                                     titlebar: false,
18216                                     autoScroll:false,
18217                                     closeOnTab: true,
18218                                     tabPosition: 'top',
18219                                       //resizeTabs: true,
18220                                     alwaysShowTabs: true,
18221                                     hideTabs: false
18222                                      //minTabWidth: 140
18223                                  }
18224                              })
18225                         
18226                          };
18227                          break;
18228                     }
18229                          
18230                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
18231                         this.parent = { el :  new  Roo.bootstrap.Body() };
18232                         Roo.debug && Roo.log("setting el to doc body");
18233                          
18234                     } else {
18235                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
18236                     }
18237                     break;
18238                 case 'bootstrap':
18239                     this.parent = { el : true};
18240                     // fall through
18241                 default:
18242                     el = Roo.get(ename);
18243                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
18244                         this.parent = { el : true};
18245                     }
18246                     
18247                     break;
18248             }
18249                 
18250             
18251             if (!el && !this.parent) {
18252                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
18253                 return;
18254             }
18255         }
18256         
18257         Roo.debug && Roo.log("EL:");
18258         Roo.debug && Roo.log(el);
18259         Roo.debug && Roo.log("this.parent.el:");
18260         Roo.debug && Roo.log(this.parent.el);
18261         
18262
18263         // altertive root elements ??? - we need a better way to indicate these.
18264         var is_alt = Roo.XComponent.is_alt ||
18265                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
18266                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
18267                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
18268         
18269         
18270         
18271         if (!this.parent && is_alt) {
18272             //el = Roo.get(document.body);
18273             this.parent = { el : true };
18274         }
18275             
18276             
18277         
18278         if (!this.parent) {
18279             
18280             Roo.debug && Roo.log("no parent - creating one");
18281             
18282             el = el ? Roo.get(el) : false;      
18283             
18284             if (typeof(Roo.BorderLayout) == 'undefined' ) {
18285                 
18286                 this.parent =  {
18287                     el : new Roo.bootstrap.layout.Border({
18288                         el: el || document.body,
18289                     
18290                         center: {
18291                             titlebar: false,
18292                             autoScroll:false,
18293                             closeOnTab: true,
18294                             tabPosition: 'top',
18295                              //resizeTabs: true,
18296                             alwaysShowTabs: false,
18297                             hideTabs: true,
18298                             minTabWidth: 140,
18299                             overflow: 'visible'
18300                          }
18301                      })
18302                 };
18303             } else {
18304             
18305                 // it's a top level one..
18306                 this.parent =  {
18307                     el : new Roo.BorderLayout(el || document.body, {
18308                         center: {
18309                             titlebar: false,
18310                             autoScroll:false,
18311                             closeOnTab: true,
18312                             tabPosition: 'top',
18313                              //resizeTabs: true,
18314                             alwaysShowTabs: el && hp? false :  true,
18315                             hideTabs: el || !hp ? true :  false,
18316                             minTabWidth: 140
18317                          }
18318                     })
18319                 };
18320             }
18321         }
18322         
18323         if (!this.parent.el) {
18324                 // probably an old style ctor, which has been disabled.
18325                 return;
18326
18327         }
18328                 // The 'tree' method is  '_tree now' 
18329             
18330         tree.region = tree.region || this.region;
18331         var is_body = false;
18332         if (this.parent.el === true) {
18333             // bootstrap... - body..
18334             if (el) {
18335                 tree.el = el;
18336             }
18337             this.parent.el = Roo.factory(tree);
18338             is_body = true;
18339         }
18340         
18341         this.el = this.parent.el.addxtype(tree, undefined, is_body);
18342         this.fireEvent('built', this);
18343         
18344         this.panel = this.el;
18345         this.layout = this.panel.layout;
18346         this.parentLayout = this.parent.layout  || false;  
18347          
18348     }
18349     
18350 });
18351
18352 Roo.apply(Roo.XComponent, {
18353     /**
18354      * @property  hideProgress
18355      * true to disable the building progress bar.. usefull on single page renders.
18356      * @type Boolean
18357      */
18358     hideProgress : false,
18359     /**
18360      * @property  buildCompleted
18361      * True when the builder has completed building the interface.
18362      * @type Boolean
18363      */
18364     buildCompleted : false,
18365      
18366     /**
18367      * @property  topModule
18368      * the upper most module - uses document.element as it's constructor.
18369      * @type Object
18370      */
18371      
18372     topModule  : false,
18373       
18374     /**
18375      * @property  modules
18376      * array of modules to be created by registration system.
18377      * @type {Array} of Roo.XComponent
18378      */
18379     
18380     modules : [],
18381     /**
18382      * @property  elmodules
18383      * array of modules to be created by which use #ID 
18384      * @type {Array} of Roo.XComponent
18385      */
18386      
18387     elmodules : [],
18388
18389      /**
18390      * @property  is_alt
18391      * Is an alternative Root - normally used by bootstrap or other systems,
18392      *    where the top element in the tree can wrap 'body' 
18393      * @type {boolean}  (default false)
18394      */
18395      
18396     is_alt : false,
18397     /**
18398      * @property  build_from_html
18399      * Build elements from html - used by bootstrap HTML stuff 
18400      *    - this is cleared after build is completed
18401      * @type {boolean}    (default false)
18402      */
18403      
18404     build_from_html : false,
18405     /**
18406      * Register components to be built later.
18407      *
18408      * This solves the following issues
18409      * - Building is not done on page load, but after an authentication process has occured.
18410      * - Interface elements are registered on page load
18411      * - Parent Interface elements may not be loaded before child, so this handles that..
18412      * 
18413      *
18414      * example:
18415      * 
18416      * MyApp.register({
18417           order : '000001',
18418           module : 'Pman.Tab.projectMgr',
18419           region : 'center',
18420           parent : 'Pman.layout',
18421           disabled : false,  // or use a function..
18422         })
18423      
18424      * * @param {Object} details about module
18425      */
18426     register : function(obj) {
18427                 
18428         Roo.XComponent.event.fireEvent('register', obj);
18429         switch(typeof(obj.disabled) ) {
18430                 
18431             case 'undefined':
18432                 break;
18433             
18434             case 'function':
18435                 if ( obj.disabled() ) {
18436                         return;
18437                 }
18438                 break;
18439             
18440             default:
18441                 if (obj.disabled || obj.region == '#disabled') {
18442                         return;
18443                 }
18444                 break;
18445         }
18446                 
18447         this.modules.push(obj);
18448          
18449     },
18450     /**
18451      * convert a string to an object..
18452      * eg. 'AAA.BBB' -> finds AAA.BBB
18453
18454      */
18455     
18456     toObject : function(str)
18457     {
18458         if (!str || typeof(str) == 'object') {
18459             return str;
18460         }
18461         if (str.substring(0,1) == '#') {
18462             return str;
18463         }
18464
18465         var ar = str.split('.');
18466         var rt, o;
18467         rt = ar.shift();
18468             /** eval:var:o */
18469         try {
18470             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
18471         } catch (e) {
18472             throw "Module not found : " + str;
18473         }
18474         
18475         if (o === false) {
18476             throw "Module not found : " + str;
18477         }
18478         Roo.each(ar, function(e) {
18479             if (typeof(o[e]) == 'undefined') {
18480                 throw "Module not found : " + str;
18481             }
18482             o = o[e];
18483         });
18484         
18485         return o;
18486         
18487     },
18488     
18489     
18490     /**
18491      * move modules into their correct place in the tree..
18492      * 
18493      */
18494     preBuild : function ()
18495     {
18496         var _t = this;
18497         Roo.each(this.modules , function (obj)
18498         {
18499             Roo.XComponent.event.fireEvent('beforebuild', obj);
18500             
18501             var opar = obj.parent;
18502             try { 
18503                 obj.parent = this.toObject(opar);
18504             } catch(e) {
18505                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
18506                 return;
18507             }
18508             
18509             if (!obj.parent) {
18510                 Roo.debug && Roo.log("GOT top level module");
18511                 Roo.debug && Roo.log(obj);
18512                 obj.modules = new Roo.util.MixedCollection(false, 
18513                     function(o) { return o.order + '' }
18514                 );
18515                 this.topModule = obj;
18516                 return;
18517             }
18518                         // parent is a string (usually a dom element name..)
18519             if (typeof(obj.parent) == 'string') {
18520                 this.elmodules.push(obj);
18521                 return;
18522             }
18523             if (obj.parent.constructor != Roo.XComponent) {
18524                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
18525             }
18526             if (!obj.parent.modules) {
18527                 obj.parent.modules = new Roo.util.MixedCollection(false, 
18528                     function(o) { return o.order + '' }
18529                 );
18530             }
18531             if (obj.parent.disabled) {
18532                 obj.disabled = true;
18533             }
18534             obj.parent.modules.add(obj);
18535         }, this);
18536     },
18537     
18538      /**
18539      * make a list of modules to build.
18540      * @return {Array} list of modules. 
18541      */ 
18542     
18543     buildOrder : function()
18544     {
18545         var _this = this;
18546         var cmp = function(a,b) {   
18547             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
18548         };
18549         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
18550             throw "No top level modules to build";
18551         }
18552         
18553         // make a flat list in order of modules to build.
18554         var mods = this.topModule ? [ this.topModule ] : [];
18555                 
18556         
18557         // elmodules (is a list of DOM based modules )
18558         Roo.each(this.elmodules, function(e) {
18559             mods.push(e);
18560             if (!this.topModule &&
18561                 typeof(e.parent) == 'string' &&
18562                 e.parent.substring(0,1) == '#' &&
18563                 Roo.get(e.parent.substr(1))
18564                ) {
18565                 
18566                 _this.topModule = e;
18567             }
18568             
18569         });
18570
18571         
18572         // add modules to their parents..
18573         var addMod = function(m) {
18574             Roo.debug && Roo.log("build Order: add: " + m.name);
18575                 
18576             mods.push(m);
18577             if (m.modules && !m.disabled) {
18578                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
18579                 m.modules.keySort('ASC',  cmp );
18580                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
18581     
18582                 m.modules.each(addMod);
18583             } else {
18584                 Roo.debug && Roo.log("build Order: no child modules");
18585             }
18586             // not sure if this is used any more..
18587             if (m.finalize) {
18588                 m.finalize.name = m.name + " (clean up) ";
18589                 mods.push(m.finalize);
18590             }
18591             
18592         }
18593         if (this.topModule && this.topModule.modules) { 
18594             this.topModule.modules.keySort('ASC',  cmp );
18595             this.topModule.modules.each(addMod);
18596         } 
18597         return mods;
18598     },
18599     
18600      /**
18601      * Build the registered modules.
18602      * @param {Object} parent element.
18603      * @param {Function} optional method to call after module has been added.
18604      * 
18605      */ 
18606    
18607     build : function(opts) 
18608     {
18609         
18610         if (typeof(opts) != 'undefined') {
18611             Roo.apply(this,opts);
18612         }
18613         
18614         this.preBuild();
18615         var mods = this.buildOrder();
18616       
18617         //this.allmods = mods;
18618         //Roo.debug && Roo.log(mods);
18619         //return;
18620         if (!mods.length) { // should not happen
18621             throw "NO modules!!!";
18622         }
18623         
18624         
18625         var msg = "Building Interface...";
18626         // flash it up as modal - so we store the mask!?
18627         if (!this.hideProgress && Roo.MessageBox) {
18628             Roo.MessageBox.show({ title: 'loading' });
18629             Roo.MessageBox.show({
18630                title: "Please wait...",
18631                msg: msg,
18632                width:450,
18633                progress:true,
18634                buttons : false,
18635                closable:false,
18636                modal: false
18637               
18638             });
18639         }
18640         var total = mods.length;
18641         
18642         var _this = this;
18643         var progressRun = function() {
18644             if (!mods.length) {
18645                 Roo.debug && Roo.log('hide?');
18646                 if (!this.hideProgress && Roo.MessageBox) {
18647                     Roo.MessageBox.hide();
18648                 }
18649                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
18650                 
18651                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
18652                 
18653                 // THE END...
18654                 return false;   
18655             }
18656             
18657             var m = mods.shift();
18658             
18659             
18660             Roo.debug && Roo.log(m);
18661             // not sure if this is supported any more.. - modules that are are just function
18662             if (typeof(m) == 'function') { 
18663                 m.call(this);
18664                 return progressRun.defer(10, _this);
18665             } 
18666             
18667             
18668             msg = "Building Interface " + (total  - mods.length) + 
18669                     " of " + total + 
18670                     (m.name ? (' - ' + m.name) : '');
18671                         Roo.debug && Roo.log(msg);
18672             if (!_this.hideProgress &&  Roo.MessageBox) { 
18673                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
18674             }
18675             
18676          
18677             // is the module disabled?
18678             var disabled = (typeof(m.disabled) == 'function') ?
18679                 m.disabled.call(m.module.disabled) : m.disabled;    
18680             
18681             
18682             if (disabled) {
18683                 return progressRun(); // we do not update the display!
18684             }
18685             
18686             // now build 
18687             
18688                         
18689                         
18690             m.render();
18691             // it's 10 on top level, and 1 on others??? why...
18692             return progressRun.defer(10, _this);
18693              
18694         }
18695         progressRun.defer(1, _this);
18696      
18697         
18698         
18699     },
18700     /**
18701      * Overlay a set of modified strings onto a component
18702      * This is dependant on our builder exporting the strings and 'named strings' elements.
18703      * 
18704      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
18705      * @param {Object} associative array of 'named' string and it's new value.
18706      * 
18707      */
18708         overlayStrings : function( component, strings )
18709     {
18710         if (typeof(component['_named_strings']) == 'undefined') {
18711             throw "ERROR: component does not have _named_strings";
18712         }
18713         for ( var k in strings ) {
18714             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
18715             if (md !== false) {
18716                 component['_strings'][md] = strings[k];
18717             } else {
18718                 Roo.log('could not find named string: ' + k + ' in');
18719                 Roo.log(component);
18720             }
18721             
18722         }
18723         
18724     },
18725     
18726         
18727         /**
18728          * Event Object.
18729          *
18730          *
18731          */
18732         event: false, 
18733     /**
18734          * wrapper for event.on - aliased later..  
18735          * Typically use to register a event handler for register:
18736          *
18737          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
18738          *
18739          */
18740     on : false
18741    
18742     
18743     
18744 });
18745
18746 Roo.XComponent.event = new Roo.util.Observable({
18747                 events : { 
18748                         /**
18749                          * @event register
18750                          * Fires when an Component is registered,
18751                          * set the disable property on the Component to stop registration.
18752                          * @param {Roo.XComponent} c the component being registerd.
18753                          * 
18754                          */
18755                         'register' : true,
18756             /**
18757                          * @event beforebuild
18758                          * Fires before each Component is built
18759                          * can be used to apply permissions.
18760                          * @param {Roo.XComponent} c the component being registerd.
18761                          * 
18762                          */
18763                         'beforebuild' : true,
18764                         /**
18765                          * @event buildcomplete
18766                          * Fires on the top level element when all elements have been built
18767                          * @param {Roo.XComponent} the top level component.
18768                          */
18769                         'buildcomplete' : true
18770                         
18771                 }
18772 });
18773
18774 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
18775  //
18776  /**
18777  * marked - a markdown parser
18778  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
18779  * https://github.com/chjj/marked
18780  */
18781
18782
18783 /**
18784  *
18785  * Roo.Markdown - is a very crude wrapper around marked..
18786  *
18787  * usage:
18788  * 
18789  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
18790  * 
18791  * Note: move the sample code to the bottom of this
18792  * file before uncommenting it.
18793  *
18794  */
18795
18796 Roo.Markdown = {};
18797 Roo.Markdown.toHtml = function(text) {
18798     
18799     var c = new Roo.Markdown.marked.setOptions({
18800             renderer: new Roo.Markdown.marked.Renderer(),
18801             gfm: true,
18802             tables: true,
18803             breaks: false,
18804             pedantic: false,
18805             sanitize: false,
18806             smartLists: true,
18807             smartypants: false
18808           });
18809     // A FEW HACKS!!?
18810     
18811     text = text.replace(/\\\n/g,' ');
18812     return Roo.Markdown.marked(text);
18813 };
18814 //
18815 // converter
18816 //
18817 // Wraps all "globals" so that the only thing
18818 // exposed is makeHtml().
18819 //
18820 (function() {
18821     
18822      /**
18823          * eval:var:escape
18824          * eval:var:unescape
18825          * eval:var:replace
18826          */
18827       
18828     /**
18829      * Helpers
18830      */
18831     
18832     var escape = function (html, encode) {
18833       return html
18834         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
18835         .replace(/</g, '&lt;')
18836         .replace(/>/g, '&gt;')
18837         .replace(/"/g, '&quot;')
18838         .replace(/'/g, '&#39;');
18839     }
18840     
18841     var unescape = function (html) {
18842         // explicitly match decimal, hex, and named HTML entities 
18843       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
18844         n = n.toLowerCase();
18845         if (n === 'colon') { return ':'; }
18846         if (n.charAt(0) === '#') {
18847           return n.charAt(1) === 'x'
18848             ? String.fromCharCode(parseInt(n.substring(2), 16))
18849             : String.fromCharCode(+n.substring(1));
18850         }
18851         return '';
18852       });
18853     }
18854     
18855     var replace = function (regex, opt) {
18856       regex = regex.source;
18857       opt = opt || '';
18858       return function self(name, val) {
18859         if (!name) { return new RegExp(regex, opt); }
18860         val = val.source || val;
18861         val = val.replace(/(^|[^\[])\^/g, '$1');
18862         regex = regex.replace(name, val);
18863         return self;
18864       };
18865     }
18866
18867
18868          /**
18869          * eval:var:noop
18870     */
18871     var noop = function () {}
18872     noop.exec = noop;
18873     
18874          /**
18875          * eval:var:merge
18876     */
18877     var merge = function (obj) {
18878       var i = 1
18879         , target
18880         , key;
18881     
18882       for (; i < arguments.length; i++) {
18883         target = arguments[i];
18884         for (key in target) {
18885           if (Object.prototype.hasOwnProperty.call(target, key)) {
18886             obj[key] = target[key];
18887           }
18888         }
18889       }
18890     
18891       return obj;
18892     }
18893     
18894     
18895     /**
18896      * Block-Level Grammar
18897      */
18898     
18899     
18900     
18901     
18902     var block = {
18903       newline: /^\n+/,
18904       code: /^( {4}[^\n]+\n*)+/,
18905       fences: noop,
18906       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
18907       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
18908       nptable: noop,
18909       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
18910       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
18911       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
18912       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
18913       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
18914       table: noop,
18915       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
18916       text: /^[^\n]+/
18917     };
18918     
18919     block.bullet = /(?:[*+-]|\d+\.)/;
18920     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
18921     block.item = replace(block.item, 'gm')
18922       (/bull/g, block.bullet)
18923       ();
18924     
18925     block.list = replace(block.list)
18926       (/bull/g, block.bullet)
18927       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
18928       ('def', '\\n+(?=' + block.def.source + ')')
18929       ();
18930     
18931     block.blockquote = replace(block.blockquote)
18932       ('def', block.def)
18933       ();
18934     
18935     block._tag = '(?!(?:'
18936       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
18937       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
18938       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
18939     
18940     block.html = replace(block.html)
18941       ('comment', /<!--[\s\S]*?-->/)
18942       ('closed', /<(tag)[\s\S]+?<\/\1>/)
18943       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
18944       (/tag/g, block._tag)
18945       ();
18946     
18947     block.paragraph = replace(block.paragraph)
18948       ('hr', block.hr)
18949       ('heading', block.heading)
18950       ('lheading', block.lheading)
18951       ('blockquote', block.blockquote)
18952       ('tag', '<' + block._tag)
18953       ('def', block.def)
18954       ();
18955     
18956     /**
18957      * Normal Block Grammar
18958      */
18959     
18960     block.normal = merge({}, block);
18961     
18962     /**
18963      * GFM Block Grammar
18964      */
18965     
18966     block.gfm = merge({}, block.normal, {
18967       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
18968       paragraph: /^/,
18969       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
18970     });
18971     
18972     block.gfm.paragraph = replace(block.paragraph)
18973       ('(?!', '(?!'
18974         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
18975         + block.list.source.replace('\\1', '\\3') + '|')
18976       ();
18977     
18978     /**
18979      * GFM + Tables Block Grammar
18980      */
18981     
18982     block.tables = merge({}, block.gfm, {
18983       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
18984       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
18985     });
18986     
18987     /**
18988      * Block Lexer
18989      */
18990     
18991     var Lexer = function (options) {
18992       this.tokens = [];
18993       this.tokens.links = {};
18994       this.options = options || marked.defaults;
18995       this.rules = block.normal;
18996     
18997       if (this.options.gfm) {
18998         if (this.options.tables) {
18999           this.rules = block.tables;
19000         } else {
19001           this.rules = block.gfm;
19002         }
19003       }
19004     }
19005     
19006     /**
19007      * Expose Block Rules
19008      */
19009     
19010     Lexer.rules = block;
19011     
19012     /**
19013      * Static Lex Method
19014      */
19015     
19016     Lexer.lex = function(src, options) {
19017       var lexer = new Lexer(options);
19018       return lexer.lex(src);
19019     };
19020     
19021     /**
19022      * Preprocessing
19023      */
19024     
19025     Lexer.prototype.lex = function(src) {
19026       src = src
19027         .replace(/\r\n|\r/g, '\n')
19028         .replace(/\t/g, '    ')
19029         .replace(/\u00a0/g, ' ')
19030         .replace(/\u2424/g, '\n');
19031     
19032       return this.token(src, true);
19033     };
19034     
19035     /**
19036      * Lexing
19037      */
19038     
19039     Lexer.prototype.token = function(src, top, bq) {
19040       var src = src.replace(/^ +$/gm, '')
19041         , next
19042         , loose
19043         , cap
19044         , bull
19045         , b
19046         , item
19047         , space
19048         , i
19049         , l;
19050     
19051       while (src) {
19052         // newline
19053         if (cap = this.rules.newline.exec(src)) {
19054           src = src.substring(cap[0].length);
19055           if (cap[0].length > 1) {
19056             this.tokens.push({
19057               type: 'space'
19058             });
19059           }
19060         }
19061     
19062         // code
19063         if (cap = this.rules.code.exec(src)) {
19064           src = src.substring(cap[0].length);
19065           cap = cap[0].replace(/^ {4}/gm, '');
19066           this.tokens.push({
19067             type: 'code',
19068             text: !this.options.pedantic
19069               ? cap.replace(/\n+$/, '')
19070               : cap
19071           });
19072           continue;
19073         }
19074     
19075         // fences (gfm)
19076         if (cap = this.rules.fences.exec(src)) {
19077           src = src.substring(cap[0].length);
19078           this.tokens.push({
19079             type: 'code',
19080             lang: cap[2],
19081             text: cap[3] || ''
19082           });
19083           continue;
19084         }
19085     
19086         // heading
19087         if (cap = this.rules.heading.exec(src)) {
19088           src = src.substring(cap[0].length);
19089           this.tokens.push({
19090             type: 'heading',
19091             depth: cap[1].length,
19092             text: cap[2]
19093           });
19094           continue;
19095         }
19096     
19097         // table no leading pipe (gfm)
19098         if (top && (cap = this.rules.nptable.exec(src))) {
19099           src = src.substring(cap[0].length);
19100     
19101           item = {
19102             type: 'table',
19103             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19104             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19105             cells: cap[3].replace(/\n$/, '').split('\n')
19106           };
19107     
19108           for (i = 0; i < item.align.length; i++) {
19109             if (/^ *-+: *$/.test(item.align[i])) {
19110               item.align[i] = 'right';
19111             } else if (/^ *:-+: *$/.test(item.align[i])) {
19112               item.align[i] = 'center';
19113             } else if (/^ *:-+ *$/.test(item.align[i])) {
19114               item.align[i] = 'left';
19115             } else {
19116               item.align[i] = null;
19117             }
19118           }
19119     
19120           for (i = 0; i < item.cells.length; i++) {
19121             item.cells[i] = item.cells[i].split(/ *\| */);
19122           }
19123     
19124           this.tokens.push(item);
19125     
19126           continue;
19127         }
19128     
19129         // lheading
19130         if (cap = this.rules.lheading.exec(src)) {
19131           src = src.substring(cap[0].length);
19132           this.tokens.push({
19133             type: 'heading',
19134             depth: cap[2] === '=' ? 1 : 2,
19135             text: cap[1]
19136           });
19137           continue;
19138         }
19139     
19140         // hr
19141         if (cap = this.rules.hr.exec(src)) {
19142           src = src.substring(cap[0].length);
19143           this.tokens.push({
19144             type: 'hr'
19145           });
19146           continue;
19147         }
19148     
19149         // blockquote
19150         if (cap = this.rules.blockquote.exec(src)) {
19151           src = src.substring(cap[0].length);
19152     
19153           this.tokens.push({
19154             type: 'blockquote_start'
19155           });
19156     
19157           cap = cap[0].replace(/^ *> ?/gm, '');
19158     
19159           // Pass `top` to keep the current
19160           // "toplevel" state. This is exactly
19161           // how markdown.pl works.
19162           this.token(cap, top, true);
19163     
19164           this.tokens.push({
19165             type: 'blockquote_end'
19166           });
19167     
19168           continue;
19169         }
19170     
19171         // list
19172         if (cap = this.rules.list.exec(src)) {
19173           src = src.substring(cap[0].length);
19174           bull = cap[2];
19175     
19176           this.tokens.push({
19177             type: 'list_start',
19178             ordered: bull.length > 1
19179           });
19180     
19181           // Get each top-level item.
19182           cap = cap[0].match(this.rules.item);
19183     
19184           next = false;
19185           l = cap.length;
19186           i = 0;
19187     
19188           for (; i < l; i++) {
19189             item = cap[i];
19190     
19191             // Remove the list item's bullet
19192             // so it is seen as the next token.
19193             space = item.length;
19194             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
19195     
19196             // Outdent whatever the
19197             // list item contains. Hacky.
19198             if (~item.indexOf('\n ')) {
19199               space -= item.length;
19200               item = !this.options.pedantic
19201                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
19202                 : item.replace(/^ {1,4}/gm, '');
19203             }
19204     
19205             // Determine whether the next list item belongs here.
19206             // Backpedal if it does not belong in this list.
19207             if (this.options.smartLists && i !== l - 1) {
19208               b = block.bullet.exec(cap[i + 1])[0];
19209               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
19210                 src = cap.slice(i + 1).join('\n') + src;
19211                 i = l - 1;
19212               }
19213             }
19214     
19215             // Determine whether item is loose or not.
19216             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
19217             // for discount behavior.
19218             loose = next || /\n\n(?!\s*$)/.test(item);
19219             if (i !== l - 1) {
19220               next = item.charAt(item.length - 1) === '\n';
19221               if (!loose) { loose = next; }
19222             }
19223     
19224             this.tokens.push({
19225               type: loose
19226                 ? 'loose_item_start'
19227                 : 'list_item_start'
19228             });
19229     
19230             // Recurse.
19231             this.token(item, false, bq);
19232     
19233             this.tokens.push({
19234               type: 'list_item_end'
19235             });
19236           }
19237     
19238           this.tokens.push({
19239             type: 'list_end'
19240           });
19241     
19242           continue;
19243         }
19244     
19245         // html
19246         if (cap = this.rules.html.exec(src)) {
19247           src = src.substring(cap[0].length);
19248           this.tokens.push({
19249             type: this.options.sanitize
19250               ? 'paragraph'
19251               : 'html',
19252             pre: !this.options.sanitizer
19253               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
19254             text: cap[0]
19255           });
19256           continue;
19257         }
19258     
19259         // def
19260         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
19261           src = src.substring(cap[0].length);
19262           this.tokens.links[cap[1].toLowerCase()] = {
19263             href: cap[2],
19264             title: cap[3]
19265           };
19266           continue;
19267         }
19268     
19269         // table (gfm)
19270         if (top && (cap = this.rules.table.exec(src))) {
19271           src = src.substring(cap[0].length);
19272     
19273           item = {
19274             type: 'table',
19275             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19276             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19277             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
19278           };
19279     
19280           for (i = 0; i < item.align.length; i++) {
19281             if (/^ *-+: *$/.test(item.align[i])) {
19282               item.align[i] = 'right';
19283             } else if (/^ *:-+: *$/.test(item.align[i])) {
19284               item.align[i] = 'center';
19285             } else if (/^ *:-+ *$/.test(item.align[i])) {
19286               item.align[i] = 'left';
19287             } else {
19288               item.align[i] = null;
19289             }
19290           }
19291     
19292           for (i = 0; i < item.cells.length; i++) {
19293             item.cells[i] = item.cells[i]
19294               .replace(/^ *\| *| *\| *$/g, '')
19295               .split(/ *\| */);
19296           }
19297     
19298           this.tokens.push(item);
19299     
19300           continue;
19301         }
19302     
19303         // top-level paragraph
19304         if (top && (cap = this.rules.paragraph.exec(src))) {
19305           src = src.substring(cap[0].length);
19306           this.tokens.push({
19307             type: 'paragraph',
19308             text: cap[1].charAt(cap[1].length - 1) === '\n'
19309               ? cap[1].slice(0, -1)
19310               : cap[1]
19311           });
19312           continue;
19313         }
19314     
19315         // text
19316         if (cap = this.rules.text.exec(src)) {
19317           // Top-level should never reach here.
19318           src = src.substring(cap[0].length);
19319           this.tokens.push({
19320             type: 'text',
19321             text: cap[0]
19322           });
19323           continue;
19324         }
19325     
19326         if (src) {
19327           throw new
19328             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19329         }
19330       }
19331     
19332       return this.tokens;
19333     };
19334     
19335     /**
19336      * Inline-Level Grammar
19337      */
19338     
19339     var inline = {
19340       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
19341       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
19342       url: noop,
19343       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
19344       link: /^!?\[(inside)\]\(href\)/,
19345       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
19346       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
19347       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
19348       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
19349       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
19350       br: /^ {2,}\n(?!\s*$)/,
19351       del: noop,
19352       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
19353     };
19354     
19355     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
19356     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
19357     
19358     inline.link = replace(inline.link)
19359       ('inside', inline._inside)
19360       ('href', inline._href)
19361       ();
19362     
19363     inline.reflink = replace(inline.reflink)
19364       ('inside', inline._inside)
19365       ();
19366     
19367     /**
19368      * Normal Inline Grammar
19369      */
19370     
19371     inline.normal = merge({}, inline);
19372     
19373     /**
19374      * Pedantic Inline Grammar
19375      */
19376     
19377     inline.pedantic = merge({}, inline.normal, {
19378       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
19379       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
19380     });
19381     
19382     /**
19383      * GFM Inline Grammar
19384      */
19385     
19386     inline.gfm = merge({}, inline.normal, {
19387       escape: replace(inline.escape)('])', '~|])')(),
19388       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
19389       del: /^~~(?=\S)([\s\S]*?\S)~~/,
19390       text: replace(inline.text)
19391         (']|', '~]|')
19392         ('|', '|https?://|')
19393         ()
19394     });
19395     
19396     /**
19397      * GFM + Line Breaks Inline Grammar
19398      */
19399     
19400     inline.breaks = merge({}, inline.gfm, {
19401       br: replace(inline.br)('{2,}', '*')(),
19402       text: replace(inline.gfm.text)('{2,}', '*')()
19403     });
19404     
19405     /**
19406      * Inline Lexer & Compiler
19407      */
19408     
19409     var InlineLexer  = function (links, options) {
19410       this.options = options || marked.defaults;
19411       this.links = links;
19412       this.rules = inline.normal;
19413       this.renderer = this.options.renderer || new Renderer;
19414       this.renderer.options = this.options;
19415     
19416       if (!this.links) {
19417         throw new
19418           Error('Tokens array requires a `links` property.');
19419       }
19420     
19421       if (this.options.gfm) {
19422         if (this.options.breaks) {
19423           this.rules = inline.breaks;
19424         } else {
19425           this.rules = inline.gfm;
19426         }
19427       } else if (this.options.pedantic) {
19428         this.rules = inline.pedantic;
19429       }
19430     }
19431     
19432     /**
19433      * Expose Inline Rules
19434      */
19435     
19436     InlineLexer.rules = inline;
19437     
19438     /**
19439      * Static Lexing/Compiling Method
19440      */
19441     
19442     InlineLexer.output = function(src, links, options) {
19443       var inline = new InlineLexer(links, options);
19444       return inline.output(src);
19445     };
19446     
19447     /**
19448      * Lexing/Compiling
19449      */
19450     
19451     InlineLexer.prototype.output = function(src) {
19452       var out = ''
19453         , link
19454         , text
19455         , href
19456         , cap;
19457     
19458       while (src) {
19459         // escape
19460         if (cap = this.rules.escape.exec(src)) {
19461           src = src.substring(cap[0].length);
19462           out += cap[1];
19463           continue;
19464         }
19465     
19466         // autolink
19467         if (cap = this.rules.autolink.exec(src)) {
19468           src = src.substring(cap[0].length);
19469           if (cap[2] === '@') {
19470             text = cap[1].charAt(6) === ':'
19471               ? this.mangle(cap[1].substring(7))
19472               : this.mangle(cap[1]);
19473             href = this.mangle('mailto:') + text;
19474           } else {
19475             text = escape(cap[1]);
19476             href = text;
19477           }
19478           out += this.renderer.link(href, null, text);
19479           continue;
19480         }
19481     
19482         // url (gfm)
19483         if (!this.inLink && (cap = this.rules.url.exec(src))) {
19484           src = src.substring(cap[0].length);
19485           text = escape(cap[1]);
19486           href = text;
19487           out += this.renderer.link(href, null, text);
19488           continue;
19489         }
19490     
19491         // tag
19492         if (cap = this.rules.tag.exec(src)) {
19493           if (!this.inLink && /^<a /i.test(cap[0])) {
19494             this.inLink = true;
19495           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
19496             this.inLink = false;
19497           }
19498           src = src.substring(cap[0].length);
19499           out += this.options.sanitize
19500             ? this.options.sanitizer
19501               ? this.options.sanitizer(cap[0])
19502               : escape(cap[0])
19503             : cap[0];
19504           continue;
19505         }
19506     
19507         // link
19508         if (cap = this.rules.link.exec(src)) {
19509           src = src.substring(cap[0].length);
19510           this.inLink = true;
19511           out += this.outputLink(cap, {
19512             href: cap[2],
19513             title: cap[3]
19514           });
19515           this.inLink = false;
19516           continue;
19517         }
19518     
19519         // reflink, nolink
19520         if ((cap = this.rules.reflink.exec(src))
19521             || (cap = this.rules.nolink.exec(src))) {
19522           src = src.substring(cap[0].length);
19523           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
19524           link = this.links[link.toLowerCase()];
19525           if (!link || !link.href) {
19526             out += cap[0].charAt(0);
19527             src = cap[0].substring(1) + src;
19528             continue;
19529           }
19530           this.inLink = true;
19531           out += this.outputLink(cap, link);
19532           this.inLink = false;
19533           continue;
19534         }
19535     
19536         // strong
19537         if (cap = this.rules.strong.exec(src)) {
19538           src = src.substring(cap[0].length);
19539           out += this.renderer.strong(this.output(cap[2] || cap[1]));
19540           continue;
19541         }
19542     
19543         // em
19544         if (cap = this.rules.em.exec(src)) {
19545           src = src.substring(cap[0].length);
19546           out += this.renderer.em(this.output(cap[2] || cap[1]));
19547           continue;
19548         }
19549     
19550         // code
19551         if (cap = this.rules.code.exec(src)) {
19552           src = src.substring(cap[0].length);
19553           out += this.renderer.codespan(escape(cap[2], true));
19554           continue;
19555         }
19556     
19557         // br
19558         if (cap = this.rules.br.exec(src)) {
19559           src = src.substring(cap[0].length);
19560           out += this.renderer.br();
19561           continue;
19562         }
19563     
19564         // del (gfm)
19565         if (cap = this.rules.del.exec(src)) {
19566           src = src.substring(cap[0].length);
19567           out += this.renderer.del(this.output(cap[1]));
19568           continue;
19569         }
19570     
19571         // text
19572         if (cap = this.rules.text.exec(src)) {
19573           src = src.substring(cap[0].length);
19574           out += this.renderer.text(escape(this.smartypants(cap[0])));
19575           continue;
19576         }
19577     
19578         if (src) {
19579           throw new
19580             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19581         }
19582       }
19583     
19584       return out;
19585     };
19586     
19587     /**
19588      * Compile Link
19589      */
19590     
19591     InlineLexer.prototype.outputLink = function(cap, link) {
19592       var href = escape(link.href)
19593         , title = link.title ? escape(link.title) : null;
19594     
19595       return cap[0].charAt(0) !== '!'
19596         ? this.renderer.link(href, title, this.output(cap[1]))
19597         : this.renderer.image(href, title, escape(cap[1]));
19598     };
19599     
19600     /**
19601      * Smartypants Transformations
19602      */
19603     
19604     InlineLexer.prototype.smartypants = function(text) {
19605       if (!this.options.smartypants)  { return text; }
19606       return text
19607         // em-dashes
19608         .replace(/---/g, '\u2014')
19609         // en-dashes
19610         .replace(/--/g, '\u2013')
19611         // opening singles
19612         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
19613         // closing singles & apostrophes
19614         .replace(/'/g, '\u2019')
19615         // opening doubles
19616         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
19617         // closing doubles
19618         .replace(/"/g, '\u201d')
19619         // ellipses
19620         .replace(/\.{3}/g, '\u2026');
19621     };
19622     
19623     /**
19624      * Mangle Links
19625      */
19626     
19627     InlineLexer.prototype.mangle = function(text) {
19628       if (!this.options.mangle) { return text; }
19629       var out = ''
19630         , l = text.length
19631         , i = 0
19632         , ch;
19633     
19634       for (; i < l; i++) {
19635         ch = text.charCodeAt(i);
19636         if (Math.random() > 0.5) {
19637           ch = 'x' + ch.toString(16);
19638         }
19639         out += '&#' + ch + ';';
19640       }
19641     
19642       return out;
19643     };
19644     
19645     /**
19646      * Renderer
19647      */
19648     
19649      /**
19650          * eval:var:Renderer
19651     */
19652     
19653     var Renderer   = function (options) {
19654       this.options = options || {};
19655     }
19656     
19657     Renderer.prototype.code = function(code, lang, escaped) {
19658       if (this.options.highlight) {
19659         var out = this.options.highlight(code, lang);
19660         if (out != null && out !== code) {
19661           escaped = true;
19662           code = out;
19663         }
19664       } else {
19665             // hack!!! - it's already escapeD?
19666             escaped = true;
19667       }
19668     
19669       if (!lang) {
19670         return '<pre><code>'
19671           + (escaped ? code : escape(code, true))
19672           + '\n</code></pre>';
19673       }
19674     
19675       return '<pre><code class="'
19676         + this.options.langPrefix
19677         + escape(lang, true)
19678         + '">'
19679         + (escaped ? code : escape(code, true))
19680         + '\n</code></pre>\n';
19681     };
19682     
19683     Renderer.prototype.blockquote = function(quote) {
19684       return '<blockquote>\n' + quote + '</blockquote>\n';
19685     };
19686     
19687     Renderer.prototype.html = function(html) {
19688       return html;
19689     };
19690     
19691     Renderer.prototype.heading = function(text, level, raw) {
19692       return '<h'
19693         + level
19694         + ' id="'
19695         + this.options.headerPrefix
19696         + raw.toLowerCase().replace(/[^\w]+/g, '-')
19697         + '">'
19698         + text
19699         + '</h'
19700         + level
19701         + '>\n';
19702     };
19703     
19704     Renderer.prototype.hr = function() {
19705       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
19706     };
19707     
19708     Renderer.prototype.list = function(body, ordered) {
19709       var type = ordered ? 'ol' : 'ul';
19710       return '<' + type + '>\n' + body + '</' + type + '>\n';
19711     };
19712     
19713     Renderer.prototype.listitem = function(text) {
19714       return '<li>' + text + '</li>\n';
19715     };
19716     
19717     Renderer.prototype.paragraph = function(text) {
19718       return '<p>' + text + '</p>\n';
19719     };
19720     
19721     Renderer.prototype.table = function(header, body) {
19722       return '<table class="table table-striped">\n'
19723         + '<thead>\n'
19724         + header
19725         + '</thead>\n'
19726         + '<tbody>\n'
19727         + body
19728         + '</tbody>\n'
19729         + '</table>\n';
19730     };
19731     
19732     Renderer.prototype.tablerow = function(content) {
19733       return '<tr>\n' + content + '</tr>\n';
19734     };
19735     
19736     Renderer.prototype.tablecell = function(content, flags) {
19737       var type = flags.header ? 'th' : 'td';
19738       var tag = flags.align
19739         ? '<' + type + ' style="text-align:' + flags.align + '">'
19740         : '<' + type + '>';
19741       return tag + content + '</' + type + '>\n';
19742     };
19743     
19744     // span level renderer
19745     Renderer.prototype.strong = function(text) {
19746       return '<strong>' + text + '</strong>';
19747     };
19748     
19749     Renderer.prototype.em = function(text) {
19750       return '<em>' + text + '</em>';
19751     };
19752     
19753     Renderer.prototype.codespan = function(text) {
19754       return '<code>' + text + '</code>';
19755     };
19756     
19757     Renderer.prototype.br = function() {
19758       return this.options.xhtml ? '<br/>' : '<br>';
19759     };
19760     
19761     Renderer.prototype.del = function(text) {
19762       return '<del>' + text + '</del>';
19763     };
19764     
19765     Renderer.prototype.link = function(href, title, text) {
19766       if (this.options.sanitize) {
19767         try {
19768           var prot = decodeURIComponent(unescape(href))
19769             .replace(/[^\w:]/g, '')
19770             .toLowerCase();
19771         } catch (e) {
19772           return '';
19773         }
19774         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
19775           return '';
19776         }
19777       }
19778       var out = '<a href="' + href + '"';
19779       if (title) {
19780         out += ' title="' + title + '"';
19781       }
19782       out += '>' + text + '</a>';
19783       return out;
19784     };
19785     
19786     Renderer.prototype.image = function(href, title, text) {
19787       var out = '<img src="' + href + '" alt="' + text + '"';
19788       if (title) {
19789         out += ' title="' + title + '"';
19790       }
19791       out += this.options.xhtml ? '/>' : '>';
19792       return out;
19793     };
19794     
19795     Renderer.prototype.text = function(text) {
19796       return text;
19797     };
19798     
19799     /**
19800      * Parsing & Compiling
19801      */
19802          /**
19803          * eval:var:Parser
19804     */
19805     
19806     var Parser= function (options) {
19807       this.tokens = [];
19808       this.token = null;
19809       this.options = options || marked.defaults;
19810       this.options.renderer = this.options.renderer || new Renderer;
19811       this.renderer = this.options.renderer;
19812       this.renderer.options = this.options;
19813     }
19814     
19815     /**
19816      * Static Parse Method
19817      */
19818     
19819     Parser.parse = function(src, options, renderer) {
19820       var parser = new Parser(options, renderer);
19821       return parser.parse(src);
19822     };
19823     
19824     /**
19825      * Parse Loop
19826      */
19827     
19828     Parser.prototype.parse = function(src) {
19829       this.inline = new InlineLexer(src.links, this.options, this.renderer);
19830       this.tokens = src.reverse();
19831     
19832       var out = '';
19833       while (this.next()) {
19834         out += this.tok();
19835       }
19836     
19837       return out;
19838     };
19839     
19840     /**
19841      * Next Token
19842      */
19843     
19844     Parser.prototype.next = function() {
19845       return this.token = this.tokens.pop();
19846     };
19847     
19848     /**
19849      * Preview Next Token
19850      */
19851     
19852     Parser.prototype.peek = function() {
19853       return this.tokens[this.tokens.length - 1] || 0;
19854     };
19855     
19856     /**
19857      * Parse Text Tokens
19858      */
19859     
19860     Parser.prototype.parseText = function() {
19861       var body = this.token.text;
19862     
19863       while (this.peek().type === 'text') {
19864         body += '\n' + this.next().text;
19865       }
19866     
19867       return this.inline.output(body);
19868     };
19869     
19870     /**
19871      * Parse Current Token
19872      */
19873     
19874     Parser.prototype.tok = function() {
19875       switch (this.token.type) {
19876         case 'space': {
19877           return '';
19878         }
19879         case 'hr': {
19880           return this.renderer.hr();
19881         }
19882         case 'heading': {
19883           return this.renderer.heading(
19884             this.inline.output(this.token.text),
19885             this.token.depth,
19886             this.token.text);
19887         }
19888         case 'code': {
19889           return this.renderer.code(this.token.text,
19890             this.token.lang,
19891             this.token.escaped);
19892         }
19893         case 'table': {
19894           var header = ''
19895             , body = ''
19896             , i
19897             , row
19898             , cell
19899             , flags
19900             , j;
19901     
19902           // header
19903           cell = '';
19904           for (i = 0; i < this.token.header.length; i++) {
19905             flags = { header: true, align: this.token.align[i] };
19906             cell += this.renderer.tablecell(
19907               this.inline.output(this.token.header[i]),
19908               { header: true, align: this.token.align[i] }
19909             );
19910           }
19911           header += this.renderer.tablerow(cell);
19912     
19913           for (i = 0; i < this.token.cells.length; i++) {
19914             row = this.token.cells[i];
19915     
19916             cell = '';
19917             for (j = 0; j < row.length; j++) {
19918               cell += this.renderer.tablecell(
19919                 this.inline.output(row[j]),
19920                 { header: false, align: this.token.align[j] }
19921               );
19922             }
19923     
19924             body += this.renderer.tablerow(cell);
19925           }
19926           return this.renderer.table(header, body);
19927         }
19928         case 'blockquote_start': {
19929           var body = '';
19930     
19931           while (this.next().type !== 'blockquote_end') {
19932             body += this.tok();
19933           }
19934     
19935           return this.renderer.blockquote(body);
19936         }
19937         case 'list_start': {
19938           var body = ''
19939             , ordered = this.token.ordered;
19940     
19941           while (this.next().type !== 'list_end') {
19942             body += this.tok();
19943           }
19944     
19945           return this.renderer.list(body, ordered);
19946         }
19947         case 'list_item_start': {
19948           var body = '';
19949     
19950           while (this.next().type !== 'list_item_end') {
19951             body += this.token.type === 'text'
19952               ? this.parseText()
19953               : this.tok();
19954           }
19955     
19956           return this.renderer.listitem(body);
19957         }
19958         case 'loose_item_start': {
19959           var body = '';
19960     
19961           while (this.next().type !== 'list_item_end') {
19962             body += this.tok();
19963           }
19964     
19965           return this.renderer.listitem(body);
19966         }
19967         case 'html': {
19968           var html = !this.token.pre && !this.options.pedantic
19969             ? this.inline.output(this.token.text)
19970             : this.token.text;
19971           return this.renderer.html(html);
19972         }
19973         case 'paragraph': {
19974           return this.renderer.paragraph(this.inline.output(this.token.text));
19975         }
19976         case 'text': {
19977           return this.renderer.paragraph(this.parseText());
19978         }
19979       }
19980     };
19981   
19982     
19983     /**
19984      * Marked
19985      */
19986          /**
19987          * eval:var:marked
19988     */
19989     var marked = function (src, opt, callback) {
19990       if (callback || typeof opt === 'function') {
19991         if (!callback) {
19992           callback = opt;
19993           opt = null;
19994         }
19995     
19996         opt = merge({}, marked.defaults, opt || {});
19997     
19998         var highlight = opt.highlight
19999           , tokens
20000           , pending
20001           , i = 0;
20002     
20003         try {
20004           tokens = Lexer.lex(src, opt)
20005         } catch (e) {
20006           return callback(e);
20007         }
20008     
20009         pending = tokens.length;
20010          /**
20011          * eval:var:done
20012     */
20013         var done = function(err) {
20014           if (err) {
20015             opt.highlight = highlight;
20016             return callback(err);
20017           }
20018     
20019           var out;
20020     
20021           try {
20022             out = Parser.parse(tokens, opt);
20023           } catch (e) {
20024             err = e;
20025           }
20026     
20027           opt.highlight = highlight;
20028     
20029           return err
20030             ? callback(err)
20031             : callback(null, out);
20032         };
20033     
20034         if (!highlight || highlight.length < 3) {
20035           return done();
20036         }
20037     
20038         delete opt.highlight;
20039     
20040         if (!pending) { return done(); }
20041     
20042         for (; i < tokens.length; i++) {
20043           (function(token) {
20044             if (token.type !== 'code') {
20045               return --pending || done();
20046             }
20047             return highlight(token.text, token.lang, function(err, code) {
20048               if (err) { return done(err); }
20049               if (code == null || code === token.text) {
20050                 return --pending || done();
20051               }
20052               token.text = code;
20053               token.escaped = true;
20054               --pending || done();
20055             });
20056           })(tokens[i]);
20057         }
20058     
20059         return;
20060       }
20061       try {
20062         if (opt) { opt = merge({}, marked.defaults, opt); }
20063         return Parser.parse(Lexer.lex(src, opt), opt);
20064       } catch (e) {
20065         e.message += '\nPlease report this to https://github.com/chjj/marked.';
20066         if ((opt || marked.defaults).silent) {
20067           return '<p>An error occured:</p><pre>'
20068             + escape(e.message + '', true)
20069             + '</pre>';
20070         }
20071         throw e;
20072       }
20073     }
20074     
20075     /**
20076      * Options
20077      */
20078     
20079     marked.options =
20080     marked.setOptions = function(opt) {
20081       merge(marked.defaults, opt);
20082       return marked;
20083     };
20084     
20085     marked.defaults = {
20086       gfm: true,
20087       tables: true,
20088       breaks: false,
20089       pedantic: false,
20090       sanitize: false,
20091       sanitizer: null,
20092       mangle: true,
20093       smartLists: false,
20094       silent: false,
20095       highlight: null,
20096       langPrefix: 'lang-',
20097       smartypants: false,
20098       headerPrefix: '',
20099       renderer: new Renderer,
20100       xhtml: false
20101     };
20102     
20103     /**
20104      * Expose
20105      */
20106     
20107     marked.Parser = Parser;
20108     marked.parser = Parser.parse;
20109     
20110     marked.Renderer = Renderer;
20111     
20112     marked.Lexer = Lexer;
20113     marked.lexer = Lexer.lex;
20114     
20115     marked.InlineLexer = InlineLexer;
20116     marked.inlineLexer = InlineLexer.output;
20117     
20118     marked.parse = marked;
20119     
20120     Roo.Markdown.marked = marked;
20121
20122 })();/*
20123  * Based on:
20124  * Ext JS Library 1.1.1
20125  * Copyright(c) 2006-2007, Ext JS, LLC.
20126  *
20127  * Originally Released Under LGPL - original licence link has changed is not relivant.
20128  *
20129  * Fork - LGPL
20130  * <script type="text/javascript">
20131  */
20132
20133
20134
20135 /*
20136  * These classes are derivatives of the similarly named classes in the YUI Library.
20137  * The original license:
20138  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
20139  * Code licensed under the BSD License:
20140  * http://developer.yahoo.net/yui/license.txt
20141  */
20142
20143 (function() {
20144
20145 var Event=Roo.EventManager;
20146 var Dom=Roo.lib.Dom;
20147
20148 /**
20149  * @class Roo.dd.DragDrop
20150  * @extends Roo.util.Observable
20151  * Defines the interface and base operation of items that that can be
20152  * dragged or can be drop targets.  It was designed to be extended, overriding
20153  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
20154  * Up to three html elements can be associated with a DragDrop instance:
20155  * <ul>
20156  * <li>linked element: the element that is passed into the constructor.
20157  * This is the element which defines the boundaries for interaction with
20158  * other DragDrop objects.</li>
20159  * <li>handle element(s): The drag operation only occurs if the element that
20160  * was clicked matches a handle element.  By default this is the linked
20161  * element, but there are times that you will want only a portion of the
20162  * linked element to initiate the drag operation, and the setHandleElId()
20163  * method provides a way to define this.</li>
20164  * <li>drag element: this represents the element that would be moved along
20165  * with the cursor during a drag operation.  By default, this is the linked
20166  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
20167  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
20168  * </li>
20169  * </ul>
20170  * This class should not be instantiated until the onload event to ensure that
20171  * the associated elements are available.
20172  * The following would define a DragDrop obj that would interact with any
20173  * other DragDrop obj in the "group1" group:
20174  * <pre>
20175  *  dd = new Roo.dd.DragDrop("div1", "group1");
20176  * </pre>
20177  * Since none of the event handlers have been implemented, nothing would
20178  * actually happen if you were to run the code above.  Normally you would
20179  * override this class or one of the default implementations, but you can
20180  * also override the methods you want on an instance of the class...
20181  * <pre>
20182  *  dd.onDragDrop = function(e, id) {
20183  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
20184  *  }
20185  * </pre>
20186  * @constructor
20187  * @param {String} id of the element that is linked to this instance
20188  * @param {String} sGroup the group of related DragDrop objects
20189  * @param {object} config an object containing configurable attributes
20190  *                Valid properties for DragDrop:
20191  *                    padding, isTarget, maintainOffset, primaryButtonOnly
20192  */
20193 Roo.dd.DragDrop = function(id, sGroup, config) {
20194     if (id) {
20195         this.init(id, sGroup, config);
20196     }
20197     
20198 };
20199
20200 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
20201
20202     /**
20203      * The id of the element associated with this object.  This is what we
20204      * refer to as the "linked element" because the size and position of
20205      * this element is used to determine when the drag and drop objects have
20206      * interacted.
20207      * @property id
20208      * @type String
20209      */
20210     id: null,
20211
20212     /**
20213      * Configuration attributes passed into the constructor
20214      * @property config
20215      * @type object
20216      */
20217     config: null,
20218
20219     /**
20220      * The id of the element that will be dragged.  By default this is same
20221      * as the linked element , but could be changed to another element. Ex:
20222      * Roo.dd.DDProxy
20223      * @property dragElId
20224      * @type String
20225      * @private
20226      */
20227     dragElId: null,
20228
20229     /**
20230      * the id of the element that initiates the drag operation.  By default
20231      * this is the linked element, but could be changed to be a child of this
20232      * element.  This lets us do things like only starting the drag when the
20233      * header element within the linked html element is clicked.
20234      * @property handleElId
20235      * @type String
20236      * @private
20237      */
20238     handleElId: null,
20239
20240     /**
20241      * An associative array of HTML tags that will be ignored if clicked.
20242      * @property invalidHandleTypes
20243      * @type {string: string}
20244      */
20245     invalidHandleTypes: null,
20246
20247     /**
20248      * An associative array of ids for elements that will be ignored if clicked
20249      * @property invalidHandleIds
20250      * @type {string: string}
20251      */
20252     invalidHandleIds: null,
20253
20254     /**
20255      * An indexted array of css class names for elements that will be ignored
20256      * if clicked.
20257      * @property invalidHandleClasses
20258      * @type string[]
20259      */
20260     invalidHandleClasses: null,
20261
20262     /**
20263      * The linked element's absolute X position at the time the drag was
20264      * started
20265      * @property startPageX
20266      * @type int
20267      * @private
20268      */
20269     startPageX: 0,
20270
20271     /**
20272      * The linked element's absolute X position at the time the drag was
20273      * started
20274      * @property startPageY
20275      * @type int
20276      * @private
20277      */
20278     startPageY: 0,
20279
20280     /**
20281      * The group defines a logical collection of DragDrop objects that are
20282      * related.  Instances only get events when interacting with other
20283      * DragDrop object in the same group.  This lets us define multiple
20284      * groups using a single DragDrop subclass if we want.
20285      * @property groups
20286      * @type {string: string}
20287      */
20288     groups: null,
20289
20290     /**
20291      * Individual drag/drop instances can be locked.  This will prevent
20292      * onmousedown start drag.
20293      * @property locked
20294      * @type boolean
20295      * @private
20296      */
20297     locked: false,
20298
20299     /**
20300      * Lock this instance
20301      * @method lock
20302      */
20303     lock: function() { this.locked = true; },
20304
20305     /**
20306      * Unlock this instace
20307      * @method unlock
20308      */
20309     unlock: function() { this.locked = false; },
20310
20311     /**
20312      * By default, all insances can be a drop target.  This can be disabled by
20313      * setting isTarget to false.
20314      * @method isTarget
20315      * @type boolean
20316      */
20317     isTarget: true,
20318
20319     /**
20320      * The padding configured for this drag and drop object for calculating
20321      * the drop zone intersection with this object.
20322      * @method padding
20323      * @type int[]
20324      */
20325     padding: null,
20326
20327     /**
20328      * Cached reference to the linked element
20329      * @property _domRef
20330      * @private
20331      */
20332     _domRef: null,
20333
20334     /**
20335      * Internal typeof flag
20336      * @property __ygDragDrop
20337      * @private
20338      */
20339     __ygDragDrop: true,
20340
20341     /**
20342      * Set to true when horizontal contraints are applied
20343      * @property constrainX
20344      * @type boolean
20345      * @private
20346      */
20347     constrainX: false,
20348
20349     /**
20350      * Set to true when vertical contraints are applied
20351      * @property constrainY
20352      * @type boolean
20353      * @private
20354      */
20355     constrainY: false,
20356
20357     /**
20358      * The left constraint
20359      * @property minX
20360      * @type int
20361      * @private
20362      */
20363     minX: 0,
20364
20365     /**
20366      * The right constraint
20367      * @property maxX
20368      * @type int
20369      * @private
20370      */
20371     maxX: 0,
20372
20373     /**
20374      * The up constraint
20375      * @property minY
20376      * @type int
20377      * @type int
20378      * @private
20379      */
20380     minY: 0,
20381
20382     /**
20383      * The down constraint
20384      * @property maxY
20385      * @type int
20386      * @private
20387      */
20388     maxY: 0,
20389
20390     /**
20391      * Maintain offsets when we resetconstraints.  Set to true when you want
20392      * the position of the element relative to its parent to stay the same
20393      * when the page changes
20394      *
20395      * @property maintainOffset
20396      * @type boolean
20397      */
20398     maintainOffset: false,
20399
20400     /**
20401      * Array of pixel locations the element will snap to if we specified a
20402      * horizontal graduation/interval.  This array is generated automatically
20403      * when you define a tick interval.
20404      * @property xTicks
20405      * @type int[]
20406      */
20407     xTicks: null,
20408
20409     /**
20410      * Array of pixel locations the element will snap to if we specified a
20411      * vertical graduation/interval.  This array is generated automatically
20412      * when you define a tick interval.
20413      * @property yTicks
20414      * @type int[]
20415      */
20416     yTicks: null,
20417
20418     /**
20419      * By default the drag and drop instance will only respond to the primary
20420      * button click (left button for a right-handed mouse).  Set to true to
20421      * allow drag and drop to start with any mouse click that is propogated
20422      * by the browser
20423      * @property primaryButtonOnly
20424      * @type boolean
20425      */
20426     primaryButtonOnly: true,
20427
20428     /**
20429      * The availabe property is false until the linked dom element is accessible.
20430      * @property available
20431      * @type boolean
20432      */
20433     available: false,
20434
20435     /**
20436      * By default, drags can only be initiated if the mousedown occurs in the
20437      * region the linked element is.  This is done in part to work around a
20438      * bug in some browsers that mis-report the mousedown if the previous
20439      * mouseup happened outside of the window.  This property is set to true
20440      * if outer handles are defined.
20441      *
20442      * @property hasOuterHandles
20443      * @type boolean
20444      * @default false
20445      */
20446     hasOuterHandles: false,
20447
20448     /**
20449      * Code that executes immediately before the startDrag event
20450      * @method b4StartDrag
20451      * @private
20452      */
20453     b4StartDrag: function(x, y) { },
20454
20455     /**
20456      * Abstract method called after a drag/drop object is clicked
20457      * and the drag or mousedown time thresholds have beeen met.
20458      * @method startDrag
20459      * @param {int} X click location
20460      * @param {int} Y click location
20461      */
20462     startDrag: function(x, y) { /* override this */ },
20463
20464     /**
20465      * Code that executes immediately before the onDrag event
20466      * @method b4Drag
20467      * @private
20468      */
20469     b4Drag: function(e) { },
20470
20471     /**
20472      * Abstract method called during the onMouseMove event while dragging an
20473      * object.
20474      * @method onDrag
20475      * @param {Event} e the mousemove event
20476      */
20477     onDrag: function(e) { /* override this */ },
20478
20479     /**
20480      * Abstract method called when this element fist begins hovering over
20481      * another DragDrop obj
20482      * @method onDragEnter
20483      * @param {Event} e the mousemove event
20484      * @param {String|DragDrop[]} id In POINT mode, the element
20485      * id this is hovering over.  In INTERSECT mode, an array of one or more
20486      * dragdrop items being hovered over.
20487      */
20488     onDragEnter: function(e, id) { /* override this */ },
20489
20490     /**
20491      * Code that executes immediately before the onDragOver event
20492      * @method b4DragOver
20493      * @private
20494      */
20495     b4DragOver: function(e) { },
20496
20497     /**
20498      * Abstract method called when this element is hovering over another
20499      * DragDrop obj
20500      * @method onDragOver
20501      * @param {Event} e the mousemove event
20502      * @param {String|DragDrop[]} id In POINT mode, the element
20503      * id this is hovering over.  In INTERSECT mode, an array of dd items
20504      * being hovered over.
20505      */
20506     onDragOver: function(e, id) { /* override this */ },
20507
20508     /**
20509      * Code that executes immediately before the onDragOut event
20510      * @method b4DragOut
20511      * @private
20512      */
20513     b4DragOut: function(e) { },
20514
20515     /**
20516      * Abstract method called when we are no longer hovering over an element
20517      * @method onDragOut
20518      * @param {Event} e the mousemove event
20519      * @param {String|DragDrop[]} id In POINT mode, the element
20520      * id this was hovering over.  In INTERSECT mode, an array of dd items
20521      * that the mouse is no longer over.
20522      */
20523     onDragOut: function(e, id) { /* override this */ },
20524
20525     /**
20526      * Code that executes immediately before the onDragDrop event
20527      * @method b4DragDrop
20528      * @private
20529      */
20530     b4DragDrop: function(e) { },
20531
20532     /**
20533      * Abstract method called when this item is dropped on another DragDrop
20534      * obj
20535      * @method onDragDrop
20536      * @param {Event} e the mouseup event
20537      * @param {String|DragDrop[]} id In POINT mode, the element
20538      * id this was dropped on.  In INTERSECT mode, an array of dd items this
20539      * was dropped on.
20540      */
20541     onDragDrop: function(e, id) { /* override this */ },
20542
20543     /**
20544      * Abstract method called when this item is dropped on an area with no
20545      * drop target
20546      * @method onInvalidDrop
20547      * @param {Event} e the mouseup event
20548      */
20549     onInvalidDrop: function(e) { /* override this */ },
20550
20551     /**
20552      * Code that executes immediately before the endDrag event
20553      * @method b4EndDrag
20554      * @private
20555      */
20556     b4EndDrag: function(e) { },
20557
20558     /**
20559      * Fired when we are done dragging the object
20560      * @method endDrag
20561      * @param {Event} e the mouseup event
20562      */
20563     endDrag: function(e) { /* override this */ },
20564
20565     /**
20566      * Code executed immediately before the onMouseDown event
20567      * @method b4MouseDown
20568      * @param {Event} e the mousedown event
20569      * @private
20570      */
20571     b4MouseDown: function(e) {  },
20572
20573     /**
20574      * Event handler that fires when a drag/drop obj gets a mousedown
20575      * @method onMouseDown
20576      * @param {Event} e the mousedown event
20577      */
20578     onMouseDown: function(e) { /* override this */ },
20579
20580     /**
20581      * Event handler that fires when a drag/drop obj gets a mouseup
20582      * @method onMouseUp
20583      * @param {Event} e the mouseup event
20584      */
20585     onMouseUp: function(e) { /* override this */ },
20586
20587     /**
20588      * Override the onAvailable method to do what is needed after the initial
20589      * position was determined.
20590      * @method onAvailable
20591      */
20592     onAvailable: function () {
20593     },
20594
20595     /*
20596      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
20597      * @type Object
20598      */
20599     defaultPadding : {left:0, right:0, top:0, bottom:0},
20600
20601     /*
20602      * Initializes the drag drop object's constraints to restrict movement to a certain element.
20603  *
20604  * Usage:
20605  <pre><code>
20606  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
20607                 { dragElId: "existingProxyDiv" });
20608  dd.startDrag = function(){
20609      this.constrainTo("parent-id");
20610  };
20611  </code></pre>
20612  * Or you can initalize it using the {@link Roo.Element} object:
20613  <pre><code>
20614  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
20615      startDrag : function(){
20616          this.constrainTo("parent-id");
20617      }
20618  });
20619  </code></pre>
20620      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
20621      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
20622      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
20623      * an object containing the sides to pad. For example: {right:10, bottom:10}
20624      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
20625      */
20626     constrainTo : function(constrainTo, pad, inContent){
20627         if(typeof pad == "number"){
20628             pad = {left: pad, right:pad, top:pad, bottom:pad};
20629         }
20630         pad = pad || this.defaultPadding;
20631         var b = Roo.get(this.getEl()).getBox();
20632         var ce = Roo.get(constrainTo);
20633         var s = ce.getScroll();
20634         var c, cd = ce.dom;
20635         if(cd == document.body){
20636             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
20637         }else{
20638             xy = ce.getXY();
20639             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
20640         }
20641
20642
20643         var topSpace = b.y - c.y;
20644         var leftSpace = b.x - c.x;
20645
20646         this.resetConstraints();
20647         this.setXConstraint(leftSpace - (pad.left||0), // left
20648                 c.width - leftSpace - b.width - (pad.right||0) //right
20649         );
20650         this.setYConstraint(topSpace - (pad.top||0), //top
20651                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
20652         );
20653     },
20654
20655     /**
20656      * Returns a reference to the linked element
20657      * @method getEl
20658      * @return {HTMLElement} the html element
20659      */
20660     getEl: function() {
20661         if (!this._domRef) {
20662             this._domRef = Roo.getDom(this.id);
20663         }
20664
20665         return this._domRef;
20666     },
20667
20668     /**
20669      * Returns a reference to the actual element to drag.  By default this is
20670      * the same as the html element, but it can be assigned to another
20671      * element. An example of this can be found in Roo.dd.DDProxy
20672      * @method getDragEl
20673      * @return {HTMLElement} the html element
20674      */
20675     getDragEl: function() {
20676         return Roo.getDom(this.dragElId);
20677     },
20678
20679     /**
20680      * Sets up the DragDrop object.  Must be called in the constructor of any
20681      * Roo.dd.DragDrop subclass
20682      * @method init
20683      * @param id the id of the linked element
20684      * @param {String} sGroup the group of related items
20685      * @param {object} config configuration attributes
20686      */
20687     init: function(id, sGroup, config) {
20688         this.initTarget(id, sGroup, config);
20689         if (!Roo.isTouch) {
20690             Event.on(this.id, "mousedown", this.handleMouseDown, this);
20691         }
20692         Event.on(this.id, "touchstart", this.handleMouseDown, this);
20693         // Event.on(this.id, "selectstart", Event.preventDefault);
20694     },
20695
20696     /**
20697      * Initializes Targeting functionality only... the object does not
20698      * get a mousedown handler.
20699      * @method initTarget
20700      * @param id the id of the linked element
20701      * @param {String} sGroup the group of related items
20702      * @param {object} config configuration attributes
20703      */
20704     initTarget: function(id, sGroup, config) {
20705
20706         // configuration attributes
20707         this.config = config || {};
20708
20709         // create a local reference to the drag and drop manager
20710         this.DDM = Roo.dd.DDM;
20711         // initialize the groups array
20712         this.groups = {};
20713
20714         // assume that we have an element reference instead of an id if the
20715         // parameter is not a string
20716         if (typeof id !== "string") {
20717             id = Roo.id(id);
20718         }
20719
20720         // set the id
20721         this.id = id;
20722
20723         // add to an interaction group
20724         this.addToGroup((sGroup) ? sGroup : "default");
20725
20726         // We don't want to register this as the handle with the manager
20727         // so we just set the id rather than calling the setter.
20728         this.handleElId = id;
20729
20730         // the linked element is the element that gets dragged by default
20731         this.setDragElId(id);
20732
20733         // by default, clicked anchors will not start drag operations.
20734         this.invalidHandleTypes = { A: "A" };
20735         this.invalidHandleIds = {};
20736         this.invalidHandleClasses = [];
20737
20738         this.applyConfig();
20739
20740         this.handleOnAvailable();
20741     },
20742
20743     /**
20744      * Applies the configuration parameters that were passed into the constructor.
20745      * This is supposed to happen at each level through the inheritance chain.  So
20746      * a DDProxy implentation will execute apply config on DDProxy, DD, and
20747      * DragDrop in order to get all of the parameters that are available in
20748      * each object.
20749      * @method applyConfig
20750      */
20751     applyConfig: function() {
20752
20753         // configurable properties:
20754         //    padding, isTarget, maintainOffset, primaryButtonOnly
20755         this.padding           = this.config.padding || [0, 0, 0, 0];
20756         this.isTarget          = (this.config.isTarget !== false);
20757         this.maintainOffset    = (this.config.maintainOffset);
20758         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
20759
20760     },
20761
20762     /**
20763      * Executed when the linked element is available
20764      * @method handleOnAvailable
20765      * @private
20766      */
20767     handleOnAvailable: function() {
20768         this.available = true;
20769         this.resetConstraints();
20770         this.onAvailable();
20771     },
20772
20773      /**
20774      * Configures the padding for the target zone in px.  Effectively expands
20775      * (or reduces) the virtual object size for targeting calculations.
20776      * Supports css-style shorthand; if only one parameter is passed, all sides
20777      * will have that padding, and if only two are passed, the top and bottom
20778      * will have the first param, the left and right the second.
20779      * @method setPadding
20780      * @param {int} iTop    Top pad
20781      * @param {int} iRight  Right pad
20782      * @param {int} iBot    Bot pad
20783      * @param {int} iLeft   Left pad
20784      */
20785     setPadding: function(iTop, iRight, iBot, iLeft) {
20786         // this.padding = [iLeft, iRight, iTop, iBot];
20787         if (!iRight && 0 !== iRight) {
20788             this.padding = [iTop, iTop, iTop, iTop];
20789         } else if (!iBot && 0 !== iBot) {
20790             this.padding = [iTop, iRight, iTop, iRight];
20791         } else {
20792             this.padding = [iTop, iRight, iBot, iLeft];
20793         }
20794     },
20795
20796     /**
20797      * Stores the initial placement of the linked element.
20798      * @method setInitialPosition
20799      * @param {int} diffX   the X offset, default 0
20800      * @param {int} diffY   the Y offset, default 0
20801      */
20802     setInitPosition: function(diffX, diffY) {
20803         var el = this.getEl();
20804
20805         if (!this.DDM.verifyEl(el)) {
20806             return;
20807         }
20808
20809         var dx = diffX || 0;
20810         var dy = diffY || 0;
20811
20812         var p = Dom.getXY( el );
20813
20814         this.initPageX = p[0] - dx;
20815         this.initPageY = p[1] - dy;
20816
20817         this.lastPageX = p[0];
20818         this.lastPageY = p[1];
20819
20820
20821         this.setStartPosition(p);
20822     },
20823
20824     /**
20825      * Sets the start position of the element.  This is set when the obj
20826      * is initialized, the reset when a drag is started.
20827      * @method setStartPosition
20828      * @param pos current position (from previous lookup)
20829      * @private
20830      */
20831     setStartPosition: function(pos) {
20832         var p = pos || Dom.getXY( this.getEl() );
20833         this.deltaSetXY = null;
20834
20835         this.startPageX = p[0];
20836         this.startPageY = p[1];
20837     },
20838
20839     /**
20840      * Add this instance to a group of related drag/drop objects.  All
20841      * instances belong to at least one group, and can belong to as many
20842      * groups as needed.
20843      * @method addToGroup
20844      * @param sGroup {string} the name of the group
20845      */
20846     addToGroup: function(sGroup) {
20847         this.groups[sGroup] = true;
20848         this.DDM.regDragDrop(this, sGroup);
20849     },
20850
20851     /**
20852      * Remove's this instance from the supplied interaction group
20853      * @method removeFromGroup
20854      * @param {string}  sGroup  The group to drop
20855      */
20856     removeFromGroup: function(sGroup) {
20857         if (this.groups[sGroup]) {
20858             delete this.groups[sGroup];
20859         }
20860
20861         this.DDM.removeDDFromGroup(this, sGroup);
20862     },
20863
20864     /**
20865      * Allows you to specify that an element other than the linked element
20866      * will be moved with the cursor during a drag
20867      * @method setDragElId
20868      * @param id {string} the id of the element that will be used to initiate the drag
20869      */
20870     setDragElId: function(id) {
20871         this.dragElId = id;
20872     },
20873
20874     /**
20875      * Allows you to specify a child of the linked element that should be
20876      * used to initiate the drag operation.  An example of this would be if
20877      * you have a content div with text and links.  Clicking anywhere in the
20878      * content area would normally start the drag operation.  Use this method
20879      * to specify that an element inside of the content div is the element
20880      * that starts the drag operation.
20881      * @method setHandleElId
20882      * @param id {string} the id of the element that will be used to
20883      * initiate the drag.
20884      */
20885     setHandleElId: function(id) {
20886         if (typeof id !== "string") {
20887             id = Roo.id(id);
20888         }
20889         this.handleElId = id;
20890         this.DDM.regHandle(this.id, id);
20891     },
20892
20893     /**
20894      * Allows you to set an element outside of the linked element as a drag
20895      * handle
20896      * @method setOuterHandleElId
20897      * @param id the id of the element that will be used to initiate the drag
20898      */
20899     setOuterHandleElId: function(id) {
20900         if (typeof id !== "string") {
20901             id = Roo.id(id);
20902         }
20903         Event.on(id, "mousedown",
20904                 this.handleMouseDown, this);
20905         this.setHandleElId(id);
20906
20907         this.hasOuterHandles = true;
20908     },
20909
20910     /**
20911      * Remove all drag and drop hooks for this element
20912      * @method unreg
20913      */
20914     unreg: function() {
20915         Event.un(this.id, "mousedown",
20916                 this.handleMouseDown);
20917         Event.un(this.id, "touchstart",
20918                 this.handleMouseDown);
20919         this._domRef = null;
20920         this.DDM._remove(this);
20921     },
20922
20923     destroy : function(){
20924         this.unreg();
20925     },
20926
20927     /**
20928      * Returns true if this instance is locked, or the drag drop mgr is locked
20929      * (meaning that all drag/drop is disabled on the page.)
20930      * @method isLocked
20931      * @return {boolean} true if this obj or all drag/drop is locked, else
20932      * false
20933      */
20934     isLocked: function() {
20935         return (this.DDM.isLocked() || this.locked);
20936     },
20937
20938     /**
20939      * Fired when this object is clicked
20940      * @method handleMouseDown
20941      * @param {Event} e
20942      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
20943      * @private
20944      */
20945     handleMouseDown: function(e, oDD){
20946      
20947         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
20948             //Roo.log('not touch/ button !=0');
20949             return;
20950         }
20951         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
20952             return; // double touch..
20953         }
20954         
20955
20956         if (this.isLocked()) {
20957             //Roo.log('locked');
20958             return;
20959         }
20960
20961         this.DDM.refreshCache(this.groups);
20962 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
20963         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
20964         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
20965             //Roo.log('no outer handes or not over target');
20966                 // do nothing.
20967         } else {
20968 //            Roo.log('check validator');
20969             if (this.clickValidator(e)) {
20970 //                Roo.log('validate success');
20971                 // set the initial element position
20972                 this.setStartPosition();
20973
20974
20975                 this.b4MouseDown(e);
20976                 this.onMouseDown(e);
20977
20978                 this.DDM.handleMouseDown(e, this);
20979
20980                 this.DDM.stopEvent(e);
20981             } else {
20982
20983
20984             }
20985         }
20986     },
20987
20988     clickValidator: function(e) {
20989         var target = e.getTarget();
20990         return ( this.isValidHandleChild(target) &&
20991                     (this.id == this.handleElId ||
20992                         this.DDM.handleWasClicked(target, this.id)) );
20993     },
20994
20995     /**
20996      * Allows you to specify a tag name that should not start a drag operation
20997      * when clicked.  This is designed to facilitate embedding links within a
20998      * drag handle that do something other than start the drag.
20999      * @method addInvalidHandleType
21000      * @param {string} tagName the type of element to exclude
21001      */
21002     addInvalidHandleType: function(tagName) {
21003         var type = tagName.toUpperCase();
21004         this.invalidHandleTypes[type] = type;
21005     },
21006
21007     /**
21008      * Lets you to specify an element id for a child of a drag handle
21009      * that should not initiate a drag
21010      * @method addInvalidHandleId
21011      * @param {string} id the element id of the element you wish to ignore
21012      */
21013     addInvalidHandleId: function(id) {
21014         if (typeof id !== "string") {
21015             id = Roo.id(id);
21016         }
21017         this.invalidHandleIds[id] = id;
21018     },
21019
21020     /**
21021      * Lets you specify a css class of elements that will not initiate a drag
21022      * @method addInvalidHandleClass
21023      * @param {string} cssClass the class of the elements you wish to ignore
21024      */
21025     addInvalidHandleClass: function(cssClass) {
21026         this.invalidHandleClasses.push(cssClass);
21027     },
21028
21029     /**
21030      * Unsets an excluded tag name set by addInvalidHandleType
21031      * @method removeInvalidHandleType
21032      * @param {string} tagName the type of element to unexclude
21033      */
21034     removeInvalidHandleType: function(tagName) {
21035         var type = tagName.toUpperCase();
21036         // this.invalidHandleTypes[type] = null;
21037         delete this.invalidHandleTypes[type];
21038     },
21039
21040     /**
21041      * Unsets an invalid handle id
21042      * @method removeInvalidHandleId
21043      * @param {string} id the id of the element to re-enable
21044      */
21045     removeInvalidHandleId: function(id) {
21046         if (typeof id !== "string") {
21047             id = Roo.id(id);
21048         }
21049         delete this.invalidHandleIds[id];
21050     },
21051
21052     /**
21053      * Unsets an invalid css class
21054      * @method removeInvalidHandleClass
21055      * @param {string} cssClass the class of the element(s) you wish to
21056      * re-enable
21057      */
21058     removeInvalidHandleClass: function(cssClass) {
21059         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
21060             if (this.invalidHandleClasses[i] == cssClass) {
21061                 delete this.invalidHandleClasses[i];
21062             }
21063         }
21064     },
21065
21066     /**
21067      * Checks the tag exclusion list to see if this click should be ignored
21068      * @method isValidHandleChild
21069      * @param {HTMLElement} node the HTMLElement to evaluate
21070      * @return {boolean} true if this is a valid tag type, false if not
21071      */
21072     isValidHandleChild: function(node) {
21073
21074         var valid = true;
21075         // var n = (node.nodeName == "#text") ? node.parentNode : node;
21076         var nodeName;
21077         try {
21078             nodeName = node.nodeName.toUpperCase();
21079         } catch(e) {
21080             nodeName = node.nodeName;
21081         }
21082         valid = valid && !this.invalidHandleTypes[nodeName];
21083         valid = valid && !this.invalidHandleIds[node.id];
21084
21085         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
21086             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
21087         }
21088
21089
21090         return valid;
21091
21092     },
21093
21094     /**
21095      * Create the array of horizontal tick marks if an interval was specified
21096      * in setXConstraint().
21097      * @method setXTicks
21098      * @private
21099      */
21100     setXTicks: function(iStartX, iTickSize) {
21101         this.xTicks = [];
21102         this.xTickSize = iTickSize;
21103
21104         var tickMap = {};
21105
21106         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
21107             if (!tickMap[i]) {
21108                 this.xTicks[this.xTicks.length] = i;
21109                 tickMap[i] = true;
21110             }
21111         }
21112
21113         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
21114             if (!tickMap[i]) {
21115                 this.xTicks[this.xTicks.length] = i;
21116                 tickMap[i] = true;
21117             }
21118         }
21119
21120         this.xTicks.sort(this.DDM.numericSort) ;
21121     },
21122
21123     /**
21124      * Create the array of vertical tick marks if an interval was specified in
21125      * setYConstraint().
21126      * @method setYTicks
21127      * @private
21128      */
21129     setYTicks: function(iStartY, iTickSize) {
21130         this.yTicks = [];
21131         this.yTickSize = iTickSize;
21132
21133         var tickMap = {};
21134
21135         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
21136             if (!tickMap[i]) {
21137                 this.yTicks[this.yTicks.length] = i;
21138                 tickMap[i] = true;
21139             }
21140         }
21141
21142         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
21143             if (!tickMap[i]) {
21144                 this.yTicks[this.yTicks.length] = i;
21145                 tickMap[i] = true;
21146             }
21147         }
21148
21149         this.yTicks.sort(this.DDM.numericSort) ;
21150     },
21151
21152     /**
21153      * By default, the element can be dragged any place on the screen.  Use
21154      * this method to limit the horizontal travel of the element.  Pass in
21155      * 0,0 for the parameters if you want to lock the drag to the y axis.
21156      * @method setXConstraint
21157      * @param {int} iLeft the number of pixels the element can move to the left
21158      * @param {int} iRight the number of pixels the element can move to the
21159      * right
21160      * @param {int} iTickSize optional parameter for specifying that the
21161      * element
21162      * should move iTickSize pixels at a time.
21163      */
21164     setXConstraint: function(iLeft, iRight, iTickSize) {
21165         this.leftConstraint = iLeft;
21166         this.rightConstraint = iRight;
21167
21168         this.minX = this.initPageX - iLeft;
21169         this.maxX = this.initPageX + iRight;
21170         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
21171
21172         this.constrainX = true;
21173     },
21174
21175     /**
21176      * Clears any constraints applied to this instance.  Also clears ticks
21177      * since they can't exist independent of a constraint at this time.
21178      * @method clearConstraints
21179      */
21180     clearConstraints: function() {
21181         this.constrainX = false;
21182         this.constrainY = false;
21183         this.clearTicks();
21184     },
21185
21186     /**
21187      * Clears any tick interval defined for this instance
21188      * @method clearTicks
21189      */
21190     clearTicks: function() {
21191         this.xTicks = null;
21192         this.yTicks = null;
21193         this.xTickSize = 0;
21194         this.yTickSize = 0;
21195     },
21196
21197     /**
21198      * By default, the element can be dragged any place on the screen.  Set
21199      * this to limit the vertical travel of the element.  Pass in 0,0 for the
21200      * parameters if you want to lock the drag to the x axis.
21201      * @method setYConstraint
21202      * @param {int} iUp the number of pixels the element can move up
21203      * @param {int} iDown the number of pixels the element can move down
21204      * @param {int} iTickSize optional parameter for specifying that the
21205      * element should move iTickSize pixels at a time.
21206      */
21207     setYConstraint: function(iUp, iDown, iTickSize) {
21208         this.topConstraint = iUp;
21209         this.bottomConstraint = iDown;
21210
21211         this.minY = this.initPageY - iUp;
21212         this.maxY = this.initPageY + iDown;
21213         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
21214
21215         this.constrainY = true;
21216
21217     },
21218
21219     /**
21220      * resetConstraints must be called if you manually reposition a dd element.
21221      * @method resetConstraints
21222      * @param {boolean} maintainOffset
21223      */
21224     resetConstraints: function() {
21225
21226
21227         // Maintain offsets if necessary
21228         if (this.initPageX || this.initPageX === 0) {
21229             // figure out how much this thing has moved
21230             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
21231             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
21232
21233             this.setInitPosition(dx, dy);
21234
21235         // This is the first time we have detected the element's position
21236         } else {
21237             this.setInitPosition();
21238         }
21239
21240         if (this.constrainX) {
21241             this.setXConstraint( this.leftConstraint,
21242                                  this.rightConstraint,
21243                                  this.xTickSize        );
21244         }
21245
21246         if (this.constrainY) {
21247             this.setYConstraint( this.topConstraint,
21248                                  this.bottomConstraint,
21249                                  this.yTickSize         );
21250         }
21251     },
21252
21253     /**
21254      * Normally the drag element is moved pixel by pixel, but we can specify
21255      * that it move a number of pixels at a time.  This method resolves the
21256      * location when we have it set up like this.
21257      * @method getTick
21258      * @param {int} val where we want to place the object
21259      * @param {int[]} tickArray sorted array of valid points
21260      * @return {int} the closest tick
21261      * @private
21262      */
21263     getTick: function(val, tickArray) {
21264
21265         if (!tickArray) {
21266             // If tick interval is not defined, it is effectively 1 pixel,
21267             // so we return the value passed to us.
21268             return val;
21269         } else if (tickArray[0] >= val) {
21270             // The value is lower than the first tick, so we return the first
21271             // tick.
21272             return tickArray[0];
21273         } else {
21274             for (var i=0, len=tickArray.length; i<len; ++i) {
21275                 var next = i + 1;
21276                 if (tickArray[next] && tickArray[next] >= val) {
21277                     var diff1 = val - tickArray[i];
21278                     var diff2 = tickArray[next] - val;
21279                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
21280                 }
21281             }
21282
21283             // The value is larger than the last tick, so we return the last
21284             // tick.
21285             return tickArray[tickArray.length - 1];
21286         }
21287     },
21288
21289     /**
21290      * toString method
21291      * @method toString
21292      * @return {string} string representation of the dd obj
21293      */
21294     toString: function() {
21295         return ("DragDrop " + this.id);
21296     }
21297
21298 });
21299
21300 })();
21301 /*
21302  * Based on:
21303  * Ext JS Library 1.1.1
21304  * Copyright(c) 2006-2007, Ext JS, LLC.
21305  *
21306  * Originally Released Under LGPL - original licence link has changed is not relivant.
21307  *
21308  * Fork - LGPL
21309  * <script type="text/javascript">
21310  */
21311
21312
21313 /**
21314  * The drag and drop utility provides a framework for building drag and drop
21315  * applications.  In addition to enabling drag and drop for specific elements,
21316  * the drag and drop elements are tracked by the manager class, and the
21317  * interactions between the various elements are tracked during the drag and
21318  * the implementing code is notified about these important moments.
21319  */
21320
21321 // Only load the library once.  Rewriting the manager class would orphan
21322 // existing drag and drop instances.
21323 if (!Roo.dd.DragDropMgr) {
21324
21325 /**
21326  * @class Roo.dd.DragDropMgr
21327  * DragDropMgr is a singleton that tracks the element interaction for
21328  * all DragDrop items in the window.  Generally, you will not call
21329  * this class directly, but it does have helper methods that could
21330  * be useful in your DragDrop implementations.
21331  * @static
21332  */
21333 Roo.dd.DragDropMgr = function() {
21334
21335     var Event = Roo.EventManager;
21336
21337     return {
21338
21339         /**
21340          * Two dimensional Array of registered DragDrop objects.  The first
21341          * dimension is the DragDrop item group, the second the DragDrop
21342          * object.
21343          * @property ids
21344          * @type {string: string}
21345          * @private
21346          * @static
21347          */
21348         ids: {},
21349
21350         /**
21351          * Array of element ids defined as drag handles.  Used to determine
21352          * if the element that generated the mousedown event is actually the
21353          * handle and not the html element itself.
21354          * @property handleIds
21355          * @type {string: string}
21356          * @private
21357          * @static
21358          */
21359         handleIds: {},
21360
21361         /**
21362          * the DragDrop object that is currently being dragged
21363          * @property dragCurrent
21364          * @type DragDrop
21365          * @private
21366          * @static
21367          **/
21368         dragCurrent: null,
21369
21370         /**
21371          * the DragDrop object(s) that are being hovered over
21372          * @property dragOvers
21373          * @type Array
21374          * @private
21375          * @static
21376          */
21377         dragOvers: {},
21378
21379         /**
21380          * the X distance between the cursor and the object being dragged
21381          * @property deltaX
21382          * @type int
21383          * @private
21384          * @static
21385          */
21386         deltaX: 0,
21387
21388         /**
21389          * the Y distance between the cursor and the object being dragged
21390          * @property deltaY
21391          * @type int
21392          * @private
21393          * @static
21394          */
21395         deltaY: 0,
21396
21397         /**
21398          * Flag to determine if we should prevent the default behavior of the
21399          * events we define. By default this is true, but this can be set to
21400          * false if you need the default behavior (not recommended)
21401          * @property preventDefault
21402          * @type boolean
21403          * @static
21404          */
21405         preventDefault: true,
21406
21407         /**
21408          * Flag to determine if we should stop the propagation of the events
21409          * we generate. This is true by default but you may want to set it to
21410          * false if the html element contains other features that require the
21411          * mouse click.
21412          * @property stopPropagation
21413          * @type boolean
21414          * @static
21415          */
21416         stopPropagation: true,
21417
21418         /**
21419          * Internal flag that is set to true when drag and drop has been
21420          * intialized
21421          * @property initialized
21422          * @private
21423          * @static
21424          */
21425         initalized: false,
21426
21427         /**
21428          * All drag and drop can be disabled.
21429          * @property locked
21430          * @private
21431          * @static
21432          */
21433         locked: false,
21434
21435         /**
21436          * Called the first time an element is registered.
21437          * @method init
21438          * @private
21439          * @static
21440          */
21441         init: function() {
21442             this.initialized = true;
21443         },
21444
21445         /**
21446          * In point mode, drag and drop interaction is defined by the
21447          * location of the cursor during the drag/drop
21448          * @property POINT
21449          * @type int
21450          * @static
21451          */
21452         POINT: 0,
21453
21454         /**
21455          * In intersect mode, drag and drop interactio nis defined by the
21456          * overlap of two or more drag and drop objects.
21457          * @property INTERSECT
21458          * @type int
21459          * @static
21460          */
21461         INTERSECT: 1,
21462
21463         /**
21464          * The current drag and drop mode.  Default: POINT
21465          * @property mode
21466          * @type int
21467          * @static
21468          */
21469         mode: 0,
21470
21471         /**
21472          * Runs method on all drag and drop objects
21473          * @method _execOnAll
21474          * @private
21475          * @static
21476          */
21477         _execOnAll: function(sMethod, args) {
21478             for (var i in this.ids) {
21479                 for (var j in this.ids[i]) {
21480                     var oDD = this.ids[i][j];
21481                     if (! this.isTypeOfDD(oDD)) {
21482                         continue;
21483                     }
21484                     oDD[sMethod].apply(oDD, args);
21485                 }
21486             }
21487         },
21488
21489         /**
21490          * Drag and drop initialization.  Sets up the global event handlers
21491          * @method _onLoad
21492          * @private
21493          * @static
21494          */
21495         _onLoad: function() {
21496
21497             this.init();
21498
21499             if (!Roo.isTouch) {
21500                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
21501                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
21502             }
21503             Event.on(document, "touchend",   this.handleMouseUp, this, true);
21504             Event.on(document, "touchmove", this.handleMouseMove, this, true);
21505             
21506             Event.on(window,   "unload",    this._onUnload, this, true);
21507             Event.on(window,   "resize",    this._onResize, this, true);
21508             // Event.on(window,   "mouseout",    this._test);
21509
21510         },
21511
21512         /**
21513          * Reset constraints on all drag and drop objs
21514          * @method _onResize
21515          * @private
21516          * @static
21517          */
21518         _onResize: function(e) {
21519             this._execOnAll("resetConstraints", []);
21520         },
21521
21522         /**
21523          * Lock all drag and drop functionality
21524          * @method lock
21525          * @static
21526          */
21527         lock: function() { this.locked = true; },
21528
21529         /**
21530          * Unlock all drag and drop functionality
21531          * @method unlock
21532          * @static
21533          */
21534         unlock: function() { this.locked = false; },
21535
21536         /**
21537          * Is drag and drop locked?
21538          * @method isLocked
21539          * @return {boolean} True if drag and drop is locked, false otherwise.
21540          * @static
21541          */
21542         isLocked: function() { return this.locked; },
21543
21544         /**
21545          * Location cache that is set for all drag drop objects when a drag is
21546          * initiated, cleared when the drag is finished.
21547          * @property locationCache
21548          * @private
21549          * @static
21550          */
21551         locationCache: {},
21552
21553         /**
21554          * Set useCache to false if you want to force object the lookup of each
21555          * drag and drop linked element constantly during a drag.
21556          * @property useCache
21557          * @type boolean
21558          * @static
21559          */
21560         useCache: true,
21561
21562         /**
21563          * The number of pixels that the mouse needs to move after the
21564          * mousedown before the drag is initiated.  Default=3;
21565          * @property clickPixelThresh
21566          * @type int
21567          * @static
21568          */
21569         clickPixelThresh: 3,
21570
21571         /**
21572          * The number of milliseconds after the mousedown event to initiate the
21573          * drag if we don't get a mouseup event. Default=1000
21574          * @property clickTimeThresh
21575          * @type int
21576          * @static
21577          */
21578         clickTimeThresh: 350,
21579
21580         /**
21581          * Flag that indicates that either the drag pixel threshold or the
21582          * mousdown time threshold has been met
21583          * @property dragThreshMet
21584          * @type boolean
21585          * @private
21586          * @static
21587          */
21588         dragThreshMet: false,
21589
21590         /**
21591          * Timeout used for the click time threshold
21592          * @property clickTimeout
21593          * @type Object
21594          * @private
21595          * @static
21596          */
21597         clickTimeout: null,
21598
21599         /**
21600          * The X position of the mousedown event stored for later use when a
21601          * drag threshold is met.
21602          * @property startX
21603          * @type int
21604          * @private
21605          * @static
21606          */
21607         startX: 0,
21608
21609         /**
21610          * The Y position of the mousedown event stored for later use when a
21611          * drag threshold is met.
21612          * @property startY
21613          * @type int
21614          * @private
21615          * @static
21616          */
21617         startY: 0,
21618
21619         /**
21620          * Each DragDrop instance must be registered with the DragDropMgr.
21621          * This is executed in DragDrop.init()
21622          * @method regDragDrop
21623          * @param {DragDrop} oDD the DragDrop object to register
21624          * @param {String} sGroup the name of the group this element belongs to
21625          * @static
21626          */
21627         regDragDrop: function(oDD, sGroup) {
21628             if (!this.initialized) { this.init(); }
21629
21630             if (!this.ids[sGroup]) {
21631                 this.ids[sGroup] = {};
21632             }
21633             this.ids[sGroup][oDD.id] = oDD;
21634         },
21635
21636         /**
21637          * Removes the supplied dd instance from the supplied group. Executed
21638          * by DragDrop.removeFromGroup, so don't call this function directly.
21639          * @method removeDDFromGroup
21640          * @private
21641          * @static
21642          */
21643         removeDDFromGroup: function(oDD, sGroup) {
21644             if (!this.ids[sGroup]) {
21645                 this.ids[sGroup] = {};
21646             }
21647
21648             var obj = this.ids[sGroup];
21649             if (obj && obj[oDD.id]) {
21650                 delete obj[oDD.id];
21651             }
21652         },
21653
21654         /**
21655          * Unregisters a drag and drop item.  This is executed in
21656          * DragDrop.unreg, use that method instead of calling this directly.
21657          * @method _remove
21658          * @private
21659          * @static
21660          */
21661         _remove: function(oDD) {
21662             for (var g in oDD.groups) {
21663                 if (g && this.ids[g][oDD.id]) {
21664                     delete this.ids[g][oDD.id];
21665                 }
21666             }
21667             delete this.handleIds[oDD.id];
21668         },
21669
21670         /**
21671          * Each DragDrop handle element must be registered.  This is done
21672          * automatically when executing DragDrop.setHandleElId()
21673          * @method regHandle
21674          * @param {String} sDDId the DragDrop id this element is a handle for
21675          * @param {String} sHandleId the id of the element that is the drag
21676          * handle
21677          * @static
21678          */
21679         regHandle: function(sDDId, sHandleId) {
21680             if (!this.handleIds[sDDId]) {
21681                 this.handleIds[sDDId] = {};
21682             }
21683             this.handleIds[sDDId][sHandleId] = sHandleId;
21684         },
21685
21686         /**
21687          * Utility function to determine if a given element has been
21688          * registered as a drag drop item.
21689          * @method isDragDrop
21690          * @param {String} id the element id to check
21691          * @return {boolean} true if this element is a DragDrop item,
21692          * false otherwise
21693          * @static
21694          */
21695         isDragDrop: function(id) {
21696             return ( this.getDDById(id) ) ? true : false;
21697         },
21698
21699         /**
21700          * Returns the drag and drop instances that are in all groups the
21701          * passed in instance belongs to.
21702          * @method getRelated
21703          * @param {DragDrop} p_oDD the obj to get related data for
21704          * @param {boolean} bTargetsOnly if true, only return targetable objs
21705          * @return {DragDrop[]} the related instances
21706          * @static
21707          */
21708         getRelated: function(p_oDD, bTargetsOnly) {
21709             var oDDs = [];
21710             for (var i in p_oDD.groups) {
21711                 for (j in this.ids[i]) {
21712                     var dd = this.ids[i][j];
21713                     if (! this.isTypeOfDD(dd)) {
21714                         continue;
21715                     }
21716                     if (!bTargetsOnly || dd.isTarget) {
21717                         oDDs[oDDs.length] = dd;
21718                     }
21719                 }
21720             }
21721
21722             return oDDs;
21723         },
21724
21725         /**
21726          * Returns true if the specified dd target is a legal target for
21727          * the specifice drag obj
21728          * @method isLegalTarget
21729          * @param {DragDrop} the drag obj
21730          * @param {DragDrop} the target
21731          * @return {boolean} true if the target is a legal target for the
21732          * dd obj
21733          * @static
21734          */
21735         isLegalTarget: function (oDD, oTargetDD) {
21736             var targets = this.getRelated(oDD, true);
21737             for (var i=0, len=targets.length;i<len;++i) {
21738                 if (targets[i].id == oTargetDD.id) {
21739                     return true;
21740                 }
21741             }
21742
21743             return false;
21744         },
21745
21746         /**
21747          * My goal is to be able to transparently determine if an object is
21748          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
21749          * returns "object", oDD.constructor.toString() always returns
21750          * "DragDrop" and not the name of the subclass.  So for now it just
21751          * evaluates a well-known variable in DragDrop.
21752          * @method isTypeOfDD
21753          * @param {Object} the object to evaluate
21754          * @return {boolean} true if typeof oDD = DragDrop
21755          * @static
21756          */
21757         isTypeOfDD: function (oDD) {
21758             return (oDD && oDD.__ygDragDrop);
21759         },
21760
21761         /**
21762          * Utility function to determine if a given element has been
21763          * registered as a drag drop handle for the given Drag Drop object.
21764          * @method isHandle
21765          * @param {String} id the element id to check
21766          * @return {boolean} true if this element is a DragDrop handle, false
21767          * otherwise
21768          * @static
21769          */
21770         isHandle: function(sDDId, sHandleId) {
21771             return ( this.handleIds[sDDId] &&
21772                             this.handleIds[sDDId][sHandleId] );
21773         },
21774
21775         /**
21776          * Returns the DragDrop instance for a given id
21777          * @method getDDById
21778          * @param {String} id the id of the DragDrop object
21779          * @return {DragDrop} the drag drop object, null if it is not found
21780          * @static
21781          */
21782         getDDById: function(id) {
21783             for (var i in this.ids) {
21784                 if (this.ids[i][id]) {
21785                     return this.ids[i][id];
21786                 }
21787             }
21788             return null;
21789         },
21790
21791         /**
21792          * Fired after a registered DragDrop object gets the mousedown event.
21793          * Sets up the events required to track the object being dragged
21794          * @method handleMouseDown
21795          * @param {Event} e the event
21796          * @param oDD the DragDrop object being dragged
21797          * @private
21798          * @static
21799          */
21800         handleMouseDown: function(e, oDD) {
21801             if(Roo.QuickTips){
21802                 Roo.QuickTips.disable();
21803             }
21804             this.currentTarget = e.getTarget();
21805
21806             this.dragCurrent = oDD;
21807
21808             var el = oDD.getEl();
21809
21810             // track start position
21811             this.startX = e.getPageX();
21812             this.startY = e.getPageY();
21813
21814             this.deltaX = this.startX - el.offsetLeft;
21815             this.deltaY = this.startY - el.offsetTop;
21816
21817             this.dragThreshMet = false;
21818
21819             this.clickTimeout = setTimeout(
21820                     function() {
21821                         var DDM = Roo.dd.DDM;
21822                         DDM.startDrag(DDM.startX, DDM.startY);
21823                     },
21824                     this.clickTimeThresh );
21825         },
21826
21827         /**
21828          * Fired when either the drag pixel threshol or the mousedown hold
21829          * time threshold has been met.
21830          * @method startDrag
21831          * @param x {int} the X position of the original mousedown
21832          * @param y {int} the Y position of the original mousedown
21833          * @static
21834          */
21835         startDrag: function(x, y) {
21836             clearTimeout(this.clickTimeout);
21837             if (this.dragCurrent) {
21838                 this.dragCurrent.b4StartDrag(x, y);
21839                 this.dragCurrent.startDrag(x, y);
21840             }
21841             this.dragThreshMet = true;
21842         },
21843
21844         /**
21845          * Internal function to handle the mouseup event.  Will be invoked
21846          * from the context of the document.
21847          * @method handleMouseUp
21848          * @param {Event} e the event
21849          * @private
21850          * @static
21851          */
21852         handleMouseUp: function(e) {
21853
21854             if(Roo.QuickTips){
21855                 Roo.QuickTips.enable();
21856             }
21857             if (! this.dragCurrent) {
21858                 return;
21859             }
21860
21861             clearTimeout(this.clickTimeout);
21862
21863             if (this.dragThreshMet) {
21864                 this.fireEvents(e, true);
21865             } else {
21866             }
21867
21868             this.stopDrag(e);
21869
21870             this.stopEvent(e);
21871         },
21872
21873         /**
21874          * Utility to stop event propagation and event default, if these
21875          * features are turned on.
21876          * @method stopEvent
21877          * @param {Event} e the event as returned by this.getEvent()
21878          * @static
21879          */
21880         stopEvent: function(e){
21881             if(this.stopPropagation) {
21882                 e.stopPropagation();
21883             }
21884
21885             if (this.preventDefault) {
21886                 e.preventDefault();
21887             }
21888         },
21889
21890         /**
21891          * Internal function to clean up event handlers after the drag
21892          * operation is complete
21893          * @method stopDrag
21894          * @param {Event} e the event
21895          * @private
21896          * @static
21897          */
21898         stopDrag: function(e) {
21899             // Fire the drag end event for the item that was dragged
21900             if (this.dragCurrent) {
21901                 if (this.dragThreshMet) {
21902                     this.dragCurrent.b4EndDrag(e);
21903                     this.dragCurrent.endDrag(e);
21904                 }
21905
21906                 this.dragCurrent.onMouseUp(e);
21907             }
21908
21909             this.dragCurrent = null;
21910             this.dragOvers = {};
21911         },
21912
21913         /**
21914          * Internal function to handle the mousemove event.  Will be invoked
21915          * from the context of the html element.
21916          *
21917          * @TODO figure out what we can do about mouse events lost when the
21918          * user drags objects beyond the window boundary.  Currently we can
21919          * detect this in internet explorer by verifying that the mouse is
21920          * down during the mousemove event.  Firefox doesn't give us the
21921          * button state on the mousemove event.
21922          * @method handleMouseMove
21923          * @param {Event} e the event
21924          * @private
21925          * @static
21926          */
21927         handleMouseMove: function(e) {
21928             if (! this.dragCurrent) {
21929                 return true;
21930             }
21931
21932             // var button = e.which || e.button;
21933
21934             // check for IE mouseup outside of page boundary
21935             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
21936                 this.stopEvent(e);
21937                 return this.handleMouseUp(e);
21938             }
21939
21940             if (!this.dragThreshMet) {
21941                 var diffX = Math.abs(this.startX - e.getPageX());
21942                 var diffY = Math.abs(this.startY - e.getPageY());
21943                 if (diffX > this.clickPixelThresh ||
21944                             diffY > this.clickPixelThresh) {
21945                     this.startDrag(this.startX, this.startY);
21946                 }
21947             }
21948
21949             if (this.dragThreshMet) {
21950                 this.dragCurrent.b4Drag(e);
21951                 this.dragCurrent.onDrag(e);
21952                 if(!this.dragCurrent.moveOnly){
21953                     this.fireEvents(e, false);
21954                 }
21955             }
21956
21957             this.stopEvent(e);
21958
21959             return true;
21960         },
21961
21962         /**
21963          * Iterates over all of the DragDrop elements to find ones we are
21964          * hovering over or dropping on
21965          * @method fireEvents
21966          * @param {Event} e the event
21967          * @param {boolean} isDrop is this a drop op or a mouseover op?
21968          * @private
21969          * @static
21970          */
21971         fireEvents: function(e, isDrop) {
21972             var dc = this.dragCurrent;
21973
21974             // If the user did the mouse up outside of the window, we could
21975             // get here even though we have ended the drag.
21976             if (!dc || dc.isLocked()) {
21977                 return;
21978             }
21979
21980             var pt = e.getPoint();
21981
21982             // cache the previous dragOver array
21983             var oldOvers = [];
21984
21985             var outEvts   = [];
21986             var overEvts  = [];
21987             var dropEvts  = [];
21988             var enterEvts = [];
21989
21990             // Check to see if the object(s) we were hovering over is no longer
21991             // being hovered over so we can fire the onDragOut event
21992             for (var i in this.dragOvers) {
21993
21994                 var ddo = this.dragOvers[i];
21995
21996                 if (! this.isTypeOfDD(ddo)) {
21997                     continue;
21998                 }
21999
22000                 if (! this.isOverTarget(pt, ddo, this.mode)) {
22001                     outEvts.push( ddo );
22002                 }
22003
22004                 oldOvers[i] = true;
22005                 delete this.dragOvers[i];
22006             }
22007
22008             for (var sGroup in dc.groups) {
22009
22010                 if ("string" != typeof sGroup) {
22011                     continue;
22012                 }
22013
22014                 for (i in this.ids[sGroup]) {
22015                     var oDD = this.ids[sGroup][i];
22016                     if (! this.isTypeOfDD(oDD)) {
22017                         continue;
22018                     }
22019
22020                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
22021                         if (this.isOverTarget(pt, oDD, this.mode)) {
22022                             // look for drop interactions
22023                             if (isDrop) {
22024                                 dropEvts.push( oDD );
22025                             // look for drag enter and drag over interactions
22026                             } else {
22027
22028                                 // initial drag over: dragEnter fires
22029                                 if (!oldOvers[oDD.id]) {
22030                                     enterEvts.push( oDD );
22031                                 // subsequent drag overs: dragOver fires
22032                                 } else {
22033                                     overEvts.push( oDD );
22034                                 }
22035
22036                                 this.dragOvers[oDD.id] = oDD;
22037                             }
22038                         }
22039                     }
22040                 }
22041             }
22042
22043             if (this.mode) {
22044                 if (outEvts.length) {
22045                     dc.b4DragOut(e, outEvts);
22046                     dc.onDragOut(e, outEvts);
22047                 }
22048
22049                 if (enterEvts.length) {
22050                     dc.onDragEnter(e, enterEvts);
22051                 }
22052
22053                 if (overEvts.length) {
22054                     dc.b4DragOver(e, overEvts);
22055                     dc.onDragOver(e, overEvts);
22056                 }
22057
22058                 if (dropEvts.length) {
22059                     dc.b4DragDrop(e, dropEvts);
22060                     dc.onDragDrop(e, dropEvts);
22061                 }
22062
22063             } else {
22064                 // fire dragout events
22065                 var len = 0;
22066                 for (i=0, len=outEvts.length; i<len; ++i) {
22067                     dc.b4DragOut(e, outEvts[i].id);
22068                     dc.onDragOut(e, outEvts[i].id);
22069                 }
22070
22071                 // fire enter events
22072                 for (i=0,len=enterEvts.length; i<len; ++i) {
22073                     // dc.b4DragEnter(e, oDD.id);
22074                     dc.onDragEnter(e, enterEvts[i].id);
22075                 }
22076
22077                 // fire over events
22078                 for (i=0,len=overEvts.length; i<len; ++i) {
22079                     dc.b4DragOver(e, overEvts[i].id);
22080                     dc.onDragOver(e, overEvts[i].id);
22081                 }
22082
22083                 // fire drop events
22084                 for (i=0, len=dropEvts.length; i<len; ++i) {
22085                     dc.b4DragDrop(e, dropEvts[i].id);
22086                     dc.onDragDrop(e, dropEvts[i].id);
22087                 }
22088
22089             }
22090
22091             // notify about a drop that did not find a target
22092             if (isDrop && !dropEvts.length) {
22093                 dc.onInvalidDrop(e);
22094             }
22095
22096         },
22097
22098         /**
22099          * Helper function for getting the best match from the list of drag
22100          * and drop objects returned by the drag and drop events when we are
22101          * in INTERSECT mode.  It returns either the first object that the
22102          * cursor is over, or the object that has the greatest overlap with
22103          * the dragged element.
22104          * @method getBestMatch
22105          * @param  {DragDrop[]} dds The array of drag and drop objects
22106          * targeted
22107          * @return {DragDrop}       The best single match
22108          * @static
22109          */
22110         getBestMatch: function(dds) {
22111             var winner = null;
22112             // Return null if the input is not what we expect
22113             //if (!dds || !dds.length || dds.length == 0) {
22114                // winner = null;
22115             // If there is only one item, it wins
22116             //} else if (dds.length == 1) {
22117
22118             var len = dds.length;
22119
22120             if (len == 1) {
22121                 winner = dds[0];
22122             } else {
22123                 // Loop through the targeted items
22124                 for (var i=0; i<len; ++i) {
22125                     var dd = dds[i];
22126                     // If the cursor is over the object, it wins.  If the
22127                     // cursor is over multiple matches, the first one we come
22128                     // to wins.
22129                     if (dd.cursorIsOver) {
22130                         winner = dd;
22131                         break;
22132                     // Otherwise the object with the most overlap wins
22133                     } else {
22134                         if (!winner ||
22135                             winner.overlap.getArea() < dd.overlap.getArea()) {
22136                             winner = dd;
22137                         }
22138                     }
22139                 }
22140             }
22141
22142             return winner;
22143         },
22144
22145         /**
22146          * Refreshes the cache of the top-left and bottom-right points of the
22147          * drag and drop objects in the specified group(s).  This is in the
22148          * format that is stored in the drag and drop instance, so typical
22149          * usage is:
22150          * <code>
22151          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
22152          * </code>
22153          * Alternatively:
22154          * <code>
22155          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
22156          * </code>
22157          * @TODO this really should be an indexed array.  Alternatively this
22158          * method could accept both.
22159          * @method refreshCache
22160          * @param {Object} groups an associative array of groups to refresh
22161          * @static
22162          */
22163         refreshCache: function(groups) {
22164             for (var sGroup in groups) {
22165                 if ("string" != typeof sGroup) {
22166                     continue;
22167                 }
22168                 for (var i in this.ids[sGroup]) {
22169                     var oDD = this.ids[sGroup][i];
22170
22171                     if (this.isTypeOfDD(oDD)) {
22172                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
22173                         var loc = this.getLocation(oDD);
22174                         if (loc) {
22175                             this.locationCache[oDD.id] = loc;
22176                         } else {
22177                             delete this.locationCache[oDD.id];
22178                             // this will unregister the drag and drop object if
22179                             // the element is not in a usable state
22180                             // oDD.unreg();
22181                         }
22182                     }
22183                 }
22184             }
22185         },
22186
22187         /**
22188          * This checks to make sure an element exists and is in the DOM.  The
22189          * main purpose is to handle cases where innerHTML is used to remove
22190          * drag and drop objects from the DOM.  IE provides an 'unspecified
22191          * error' when trying to access the offsetParent of such an element
22192          * @method verifyEl
22193          * @param {HTMLElement} el the element to check
22194          * @return {boolean} true if the element looks usable
22195          * @static
22196          */
22197         verifyEl: function(el) {
22198             if (el) {
22199                 var parent;
22200                 if(Roo.isIE){
22201                     try{
22202                         parent = el.offsetParent;
22203                     }catch(e){}
22204                 }else{
22205                     parent = el.offsetParent;
22206                 }
22207                 if (parent) {
22208                     return true;
22209                 }
22210             }
22211
22212             return false;
22213         },
22214
22215         /**
22216          * Returns a Region object containing the drag and drop element's position
22217          * and size, including the padding configured for it
22218          * @method getLocation
22219          * @param {DragDrop} oDD the drag and drop object to get the
22220          *                       location for
22221          * @return {Roo.lib.Region} a Region object representing the total area
22222          *                             the element occupies, including any padding
22223          *                             the instance is configured for.
22224          * @static
22225          */
22226         getLocation: function(oDD) {
22227             if (! this.isTypeOfDD(oDD)) {
22228                 return null;
22229             }
22230
22231             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
22232
22233             try {
22234                 pos= Roo.lib.Dom.getXY(el);
22235             } catch (e) { }
22236
22237             if (!pos) {
22238                 return null;
22239             }
22240
22241             x1 = pos[0];
22242             x2 = x1 + el.offsetWidth;
22243             y1 = pos[1];
22244             y2 = y1 + el.offsetHeight;
22245
22246             t = y1 - oDD.padding[0];
22247             r = x2 + oDD.padding[1];
22248             b = y2 + oDD.padding[2];
22249             l = x1 - oDD.padding[3];
22250
22251             return new Roo.lib.Region( t, r, b, l );
22252         },
22253
22254         /**
22255          * Checks the cursor location to see if it over the target
22256          * @method isOverTarget
22257          * @param {Roo.lib.Point} pt The point to evaluate
22258          * @param {DragDrop} oTarget the DragDrop object we are inspecting
22259          * @return {boolean} true if the mouse is over the target
22260          * @private
22261          * @static
22262          */
22263         isOverTarget: function(pt, oTarget, intersect) {
22264             // use cache if available
22265             var loc = this.locationCache[oTarget.id];
22266             if (!loc || !this.useCache) {
22267                 loc = this.getLocation(oTarget);
22268                 this.locationCache[oTarget.id] = loc;
22269
22270             }
22271
22272             if (!loc) {
22273                 return false;
22274             }
22275
22276             oTarget.cursorIsOver = loc.contains( pt );
22277
22278             // DragDrop is using this as a sanity check for the initial mousedown
22279             // in this case we are done.  In POINT mode, if the drag obj has no
22280             // contraints, we are also done. Otherwise we need to evaluate the
22281             // location of the target as related to the actual location of the
22282             // dragged element.
22283             var dc = this.dragCurrent;
22284             if (!dc || !dc.getTargetCoord ||
22285                     (!intersect && !dc.constrainX && !dc.constrainY)) {
22286                 return oTarget.cursorIsOver;
22287             }
22288
22289             oTarget.overlap = null;
22290
22291             // Get the current location of the drag element, this is the
22292             // location of the mouse event less the delta that represents
22293             // where the original mousedown happened on the element.  We
22294             // need to consider constraints and ticks as well.
22295             var pos = dc.getTargetCoord(pt.x, pt.y);
22296
22297             var el = dc.getDragEl();
22298             var curRegion = new Roo.lib.Region( pos.y,
22299                                                    pos.x + el.offsetWidth,
22300                                                    pos.y + el.offsetHeight,
22301                                                    pos.x );
22302
22303             var overlap = curRegion.intersect(loc);
22304
22305             if (overlap) {
22306                 oTarget.overlap = overlap;
22307                 return (intersect) ? true : oTarget.cursorIsOver;
22308             } else {
22309                 return false;
22310             }
22311         },
22312
22313         /**
22314          * unload event handler
22315          * @method _onUnload
22316          * @private
22317          * @static
22318          */
22319         _onUnload: function(e, me) {
22320             Roo.dd.DragDropMgr.unregAll();
22321         },
22322
22323         /**
22324          * Cleans up the drag and drop events and objects.
22325          * @method unregAll
22326          * @private
22327          * @static
22328          */
22329         unregAll: function() {
22330
22331             if (this.dragCurrent) {
22332                 this.stopDrag();
22333                 this.dragCurrent = null;
22334             }
22335
22336             this._execOnAll("unreg", []);
22337
22338             for (i in this.elementCache) {
22339                 delete this.elementCache[i];
22340             }
22341
22342             this.elementCache = {};
22343             this.ids = {};
22344         },
22345
22346         /**
22347          * A cache of DOM elements
22348          * @property elementCache
22349          * @private
22350          * @static
22351          */
22352         elementCache: {},
22353
22354         /**
22355          * Get the wrapper for the DOM element specified
22356          * @method getElWrapper
22357          * @param {String} id the id of the element to get
22358          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
22359          * @private
22360          * @deprecated This wrapper isn't that useful
22361          * @static
22362          */
22363         getElWrapper: function(id) {
22364             var oWrapper = this.elementCache[id];
22365             if (!oWrapper || !oWrapper.el) {
22366                 oWrapper = this.elementCache[id] =
22367                     new this.ElementWrapper(Roo.getDom(id));
22368             }
22369             return oWrapper;
22370         },
22371
22372         /**
22373          * Returns the actual DOM element
22374          * @method getElement
22375          * @param {String} id the id of the elment to get
22376          * @return {Object} The element
22377          * @deprecated use Roo.getDom instead
22378          * @static
22379          */
22380         getElement: function(id) {
22381             return Roo.getDom(id);
22382         },
22383
22384         /**
22385          * Returns the style property for the DOM element (i.e.,
22386          * document.getElById(id).style)
22387          * @method getCss
22388          * @param {String} id the id of the elment to get
22389          * @return {Object} The style property of the element
22390          * @deprecated use Roo.getDom instead
22391          * @static
22392          */
22393         getCss: function(id) {
22394             var el = Roo.getDom(id);
22395             return (el) ? el.style : null;
22396         },
22397
22398         /**
22399          * Inner class for cached elements
22400          * @class DragDropMgr.ElementWrapper
22401          * @for DragDropMgr
22402          * @private
22403          * @deprecated
22404          */
22405         ElementWrapper: function(el) {
22406                 /**
22407                  * The element
22408                  * @property el
22409                  */
22410                 this.el = el || null;
22411                 /**
22412                  * The element id
22413                  * @property id
22414                  */
22415                 this.id = this.el && el.id;
22416                 /**
22417                  * A reference to the style property
22418                  * @property css
22419                  */
22420                 this.css = this.el && el.style;
22421             },
22422
22423         /**
22424          * Returns the X position of an html element
22425          * @method getPosX
22426          * @param el the element for which to get the position
22427          * @return {int} the X coordinate
22428          * @for DragDropMgr
22429          * @deprecated use Roo.lib.Dom.getX instead
22430          * @static
22431          */
22432         getPosX: function(el) {
22433             return Roo.lib.Dom.getX(el);
22434         },
22435
22436         /**
22437          * Returns the Y position of an html element
22438          * @method getPosY
22439          * @param el the element for which to get the position
22440          * @return {int} the Y coordinate
22441          * @deprecated use Roo.lib.Dom.getY instead
22442          * @static
22443          */
22444         getPosY: function(el) {
22445             return Roo.lib.Dom.getY(el);
22446         },
22447
22448         /**
22449          * Swap two nodes.  In IE, we use the native method, for others we
22450          * emulate the IE behavior
22451          * @method swapNode
22452          * @param n1 the first node to swap
22453          * @param n2 the other node to swap
22454          * @static
22455          */
22456         swapNode: function(n1, n2) {
22457             if (n1.swapNode) {
22458                 n1.swapNode(n2);
22459             } else {
22460                 var p = n2.parentNode;
22461                 var s = n2.nextSibling;
22462
22463                 if (s == n1) {
22464                     p.insertBefore(n1, n2);
22465                 } else if (n2 == n1.nextSibling) {
22466                     p.insertBefore(n2, n1);
22467                 } else {
22468                     n1.parentNode.replaceChild(n2, n1);
22469                     p.insertBefore(n1, s);
22470                 }
22471             }
22472         },
22473
22474         /**
22475          * Returns the current scroll position
22476          * @method getScroll
22477          * @private
22478          * @static
22479          */
22480         getScroll: function () {
22481             var t, l, dde=document.documentElement, db=document.body;
22482             if (dde && (dde.scrollTop || dde.scrollLeft)) {
22483                 t = dde.scrollTop;
22484                 l = dde.scrollLeft;
22485             } else if (db) {
22486                 t = db.scrollTop;
22487                 l = db.scrollLeft;
22488             } else {
22489
22490             }
22491             return { top: t, left: l };
22492         },
22493
22494         /**
22495          * Returns the specified element style property
22496          * @method getStyle
22497          * @param {HTMLElement} el          the element
22498          * @param {string}      styleProp   the style property
22499          * @return {string} The value of the style property
22500          * @deprecated use Roo.lib.Dom.getStyle
22501          * @static
22502          */
22503         getStyle: function(el, styleProp) {
22504             return Roo.fly(el).getStyle(styleProp);
22505         },
22506
22507         /**
22508          * Gets the scrollTop
22509          * @method getScrollTop
22510          * @return {int} the document's scrollTop
22511          * @static
22512          */
22513         getScrollTop: function () { return this.getScroll().top; },
22514
22515         /**
22516          * Gets the scrollLeft
22517          * @method getScrollLeft
22518          * @return {int} the document's scrollTop
22519          * @static
22520          */
22521         getScrollLeft: function () { return this.getScroll().left; },
22522
22523         /**
22524          * Sets the x/y position of an element to the location of the
22525          * target element.
22526          * @method moveToEl
22527          * @param {HTMLElement} moveEl      The element to move
22528          * @param {HTMLElement} targetEl    The position reference element
22529          * @static
22530          */
22531         moveToEl: function (moveEl, targetEl) {
22532             var aCoord = Roo.lib.Dom.getXY(targetEl);
22533             Roo.lib.Dom.setXY(moveEl, aCoord);
22534         },
22535
22536         /**
22537          * Numeric array sort function
22538          * @method numericSort
22539          * @static
22540          */
22541         numericSort: function(a, b) { return (a - b); },
22542
22543         /**
22544          * Internal counter
22545          * @property _timeoutCount
22546          * @private
22547          * @static
22548          */
22549         _timeoutCount: 0,
22550
22551         /**
22552          * Trying to make the load order less important.  Without this we get
22553          * an error if this file is loaded before the Event Utility.
22554          * @method _addListeners
22555          * @private
22556          * @static
22557          */
22558         _addListeners: function() {
22559             var DDM = Roo.dd.DDM;
22560             if ( Roo.lib.Event && document ) {
22561                 DDM._onLoad();
22562             } else {
22563                 if (DDM._timeoutCount > 2000) {
22564                 } else {
22565                     setTimeout(DDM._addListeners, 10);
22566                     if (document && document.body) {
22567                         DDM._timeoutCount += 1;
22568                     }
22569                 }
22570             }
22571         },
22572
22573         /**
22574          * Recursively searches the immediate parent and all child nodes for
22575          * the handle element in order to determine wheter or not it was
22576          * clicked.
22577          * @method handleWasClicked
22578          * @param node the html element to inspect
22579          * @static
22580          */
22581         handleWasClicked: function(node, id) {
22582             if (this.isHandle(id, node.id)) {
22583                 return true;
22584             } else {
22585                 // check to see if this is a text node child of the one we want
22586                 var p = node.parentNode;
22587
22588                 while (p) {
22589                     if (this.isHandle(id, p.id)) {
22590                         return true;
22591                     } else {
22592                         p = p.parentNode;
22593                     }
22594                 }
22595             }
22596
22597             return false;
22598         }
22599
22600     };
22601
22602 }();
22603
22604 // shorter alias, save a few bytes
22605 Roo.dd.DDM = Roo.dd.DragDropMgr;
22606 Roo.dd.DDM._addListeners();
22607
22608 }/*
22609  * Based on:
22610  * Ext JS Library 1.1.1
22611  * Copyright(c) 2006-2007, Ext JS, LLC.
22612  *
22613  * Originally Released Under LGPL - original licence link has changed is not relivant.
22614  *
22615  * Fork - LGPL
22616  * <script type="text/javascript">
22617  */
22618
22619 /**
22620  * @class Roo.dd.DD
22621  * A DragDrop implementation where the linked element follows the
22622  * mouse cursor during a drag.
22623  * @extends Roo.dd.DragDrop
22624  * @constructor
22625  * @param {String} id the id of the linked element
22626  * @param {String} sGroup the group of related DragDrop items
22627  * @param {object} config an object containing configurable attributes
22628  *                Valid properties for DD:
22629  *                    scroll
22630  */
22631 Roo.dd.DD = function(id, sGroup, config) {
22632     if (id) {
22633         this.init(id, sGroup, config);
22634     }
22635 };
22636
22637 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
22638
22639     /**
22640      * When set to true, the utility automatically tries to scroll the browser
22641      * window wehn a drag and drop element is dragged near the viewport boundary.
22642      * Defaults to true.
22643      * @property scroll
22644      * @type boolean
22645      */
22646     scroll: true,
22647
22648     /**
22649      * Sets the pointer offset to the distance between the linked element's top
22650      * left corner and the location the element was clicked
22651      * @method autoOffset
22652      * @param {int} iPageX the X coordinate of the click
22653      * @param {int} iPageY the Y coordinate of the click
22654      */
22655     autoOffset: function(iPageX, iPageY) {
22656         var x = iPageX - this.startPageX;
22657         var y = iPageY - this.startPageY;
22658         this.setDelta(x, y);
22659     },
22660
22661     /**
22662      * Sets the pointer offset.  You can call this directly to force the
22663      * offset to be in a particular location (e.g., pass in 0,0 to set it
22664      * to the center of the object)
22665      * @method setDelta
22666      * @param {int} iDeltaX the distance from the left
22667      * @param {int} iDeltaY the distance from the top
22668      */
22669     setDelta: function(iDeltaX, iDeltaY) {
22670         this.deltaX = iDeltaX;
22671         this.deltaY = iDeltaY;
22672     },
22673
22674     /**
22675      * Sets the drag element to the location of the mousedown or click event,
22676      * maintaining the cursor location relative to the location on the element
22677      * that was clicked.  Override this if you want to place the element in a
22678      * location other than where the cursor is.
22679      * @method setDragElPos
22680      * @param {int} iPageX the X coordinate of the mousedown or drag event
22681      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22682      */
22683     setDragElPos: function(iPageX, iPageY) {
22684         // the first time we do this, we are going to check to make sure
22685         // the element has css positioning
22686
22687         var el = this.getDragEl();
22688         this.alignElWithMouse(el, iPageX, iPageY);
22689     },
22690
22691     /**
22692      * Sets the element to the location of the mousedown or click event,
22693      * maintaining the cursor location relative to the location on the element
22694      * that was clicked.  Override this if you want to place the element in a
22695      * location other than where the cursor is.
22696      * @method alignElWithMouse
22697      * @param {HTMLElement} el the element to move
22698      * @param {int} iPageX the X coordinate of the mousedown or drag event
22699      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22700      */
22701     alignElWithMouse: function(el, iPageX, iPageY) {
22702         var oCoord = this.getTargetCoord(iPageX, iPageY);
22703         var fly = el.dom ? el : Roo.fly(el);
22704         if (!this.deltaSetXY) {
22705             var aCoord = [oCoord.x, oCoord.y];
22706             fly.setXY(aCoord);
22707             var newLeft = fly.getLeft(true);
22708             var newTop  = fly.getTop(true);
22709             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
22710         } else {
22711             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
22712         }
22713
22714         this.cachePosition(oCoord.x, oCoord.y);
22715         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
22716         return oCoord;
22717     },
22718
22719     /**
22720      * Saves the most recent position so that we can reset the constraints and
22721      * tick marks on-demand.  We need to know this so that we can calculate the
22722      * number of pixels the element is offset from its original position.
22723      * @method cachePosition
22724      * @param iPageX the current x position (optional, this just makes it so we
22725      * don't have to look it up again)
22726      * @param iPageY the current y position (optional, this just makes it so we
22727      * don't have to look it up again)
22728      */
22729     cachePosition: function(iPageX, iPageY) {
22730         if (iPageX) {
22731             this.lastPageX = iPageX;
22732             this.lastPageY = iPageY;
22733         } else {
22734             var aCoord = Roo.lib.Dom.getXY(this.getEl());
22735             this.lastPageX = aCoord[0];
22736             this.lastPageY = aCoord[1];
22737         }
22738     },
22739
22740     /**
22741      * Auto-scroll the window if the dragged object has been moved beyond the
22742      * visible window boundary.
22743      * @method autoScroll
22744      * @param {int} x the drag element's x position
22745      * @param {int} y the drag element's y position
22746      * @param {int} h the height of the drag element
22747      * @param {int} w the width of the drag element
22748      * @private
22749      */
22750     autoScroll: function(x, y, h, w) {
22751
22752         if (this.scroll) {
22753             // The client height
22754             var clientH = Roo.lib.Dom.getViewWidth();
22755
22756             // The client width
22757             var clientW = Roo.lib.Dom.getViewHeight();
22758
22759             // The amt scrolled down
22760             var st = this.DDM.getScrollTop();
22761
22762             // The amt scrolled right
22763             var sl = this.DDM.getScrollLeft();
22764
22765             // Location of the bottom of the element
22766             var bot = h + y;
22767
22768             // Location of the right of the element
22769             var right = w + x;
22770
22771             // The distance from the cursor to the bottom of the visible area,
22772             // adjusted so that we don't scroll if the cursor is beyond the
22773             // element drag constraints
22774             var toBot = (clientH + st - y - this.deltaY);
22775
22776             // The distance from the cursor to the right of the visible area
22777             var toRight = (clientW + sl - x - this.deltaX);
22778
22779
22780             // How close to the edge the cursor must be before we scroll
22781             // var thresh = (document.all) ? 100 : 40;
22782             var thresh = 40;
22783
22784             // How many pixels to scroll per autoscroll op.  This helps to reduce
22785             // clunky scrolling. IE is more sensitive about this ... it needs this
22786             // value to be higher.
22787             var scrAmt = (document.all) ? 80 : 30;
22788
22789             // Scroll down if we are near the bottom of the visible page and the
22790             // obj extends below the crease
22791             if ( bot > clientH && toBot < thresh ) {
22792                 window.scrollTo(sl, st + scrAmt);
22793             }
22794
22795             // Scroll up if the window is scrolled down and the top of the object
22796             // goes above the top border
22797             if ( y < st && st > 0 && y - st < thresh ) {
22798                 window.scrollTo(sl, st - scrAmt);
22799             }
22800
22801             // Scroll right if the obj is beyond the right border and the cursor is
22802             // near the border.
22803             if ( right > clientW && toRight < thresh ) {
22804                 window.scrollTo(sl + scrAmt, st);
22805             }
22806
22807             // Scroll left if the window has been scrolled to the right and the obj
22808             // extends past the left border
22809             if ( x < sl && sl > 0 && x - sl < thresh ) {
22810                 window.scrollTo(sl - scrAmt, st);
22811             }
22812         }
22813     },
22814
22815     /**
22816      * Finds the location the element should be placed if we want to move
22817      * it to where the mouse location less the click offset would place us.
22818      * @method getTargetCoord
22819      * @param {int} iPageX the X coordinate of the click
22820      * @param {int} iPageY the Y coordinate of the click
22821      * @return an object that contains the coordinates (Object.x and Object.y)
22822      * @private
22823      */
22824     getTargetCoord: function(iPageX, iPageY) {
22825
22826
22827         var x = iPageX - this.deltaX;
22828         var y = iPageY - this.deltaY;
22829
22830         if (this.constrainX) {
22831             if (x < this.minX) { x = this.minX; }
22832             if (x > this.maxX) { x = this.maxX; }
22833         }
22834
22835         if (this.constrainY) {
22836             if (y < this.minY) { y = this.minY; }
22837             if (y > this.maxY) { y = this.maxY; }
22838         }
22839
22840         x = this.getTick(x, this.xTicks);
22841         y = this.getTick(y, this.yTicks);
22842
22843
22844         return {x:x, y:y};
22845     },
22846
22847     /*
22848      * Sets up config options specific to this class. Overrides
22849      * Roo.dd.DragDrop, but all versions of this method through the
22850      * inheritance chain are called
22851      */
22852     applyConfig: function() {
22853         Roo.dd.DD.superclass.applyConfig.call(this);
22854         this.scroll = (this.config.scroll !== false);
22855     },
22856
22857     /*
22858      * Event that fires prior to the onMouseDown event.  Overrides
22859      * Roo.dd.DragDrop.
22860      */
22861     b4MouseDown: function(e) {
22862         // this.resetConstraints();
22863         this.autoOffset(e.getPageX(),
22864                             e.getPageY());
22865     },
22866
22867     /*
22868      * Event that fires prior to the onDrag event.  Overrides
22869      * Roo.dd.DragDrop.
22870      */
22871     b4Drag: function(e) {
22872         this.setDragElPos(e.getPageX(),
22873                             e.getPageY());
22874     },
22875
22876     toString: function() {
22877         return ("DD " + this.id);
22878     }
22879
22880     //////////////////////////////////////////////////////////////////////////
22881     // Debugging ygDragDrop events that can be overridden
22882     //////////////////////////////////////////////////////////////////////////
22883     /*
22884     startDrag: function(x, y) {
22885     },
22886
22887     onDrag: function(e) {
22888     },
22889
22890     onDragEnter: function(e, id) {
22891     },
22892
22893     onDragOver: function(e, id) {
22894     },
22895
22896     onDragOut: function(e, id) {
22897     },
22898
22899     onDragDrop: function(e, id) {
22900     },
22901
22902     endDrag: function(e) {
22903     }
22904
22905     */
22906
22907 });/*
22908  * Based on:
22909  * Ext JS Library 1.1.1
22910  * Copyright(c) 2006-2007, Ext JS, LLC.
22911  *
22912  * Originally Released Under LGPL - original licence link has changed is not relivant.
22913  *
22914  * Fork - LGPL
22915  * <script type="text/javascript">
22916  */
22917
22918 /**
22919  * @class Roo.dd.DDProxy
22920  * A DragDrop implementation that inserts an empty, bordered div into
22921  * the document that follows the cursor during drag operations.  At the time of
22922  * the click, the frame div is resized to the dimensions of the linked html
22923  * element, and moved to the exact location of the linked element.
22924  *
22925  * References to the "frame" element refer to the single proxy element that
22926  * was created to be dragged in place of all DDProxy elements on the
22927  * page.
22928  *
22929  * @extends Roo.dd.DD
22930  * @constructor
22931  * @param {String} id the id of the linked html element
22932  * @param {String} sGroup the group of related DragDrop objects
22933  * @param {object} config an object containing configurable attributes
22934  *                Valid properties for DDProxy in addition to those in DragDrop:
22935  *                   resizeFrame, centerFrame, dragElId
22936  */
22937 Roo.dd.DDProxy = function(id, sGroup, config) {
22938     if (id) {
22939         this.init(id, sGroup, config);
22940         this.initFrame();
22941     }
22942 };
22943
22944 /**
22945  * The default drag frame div id
22946  * @property Roo.dd.DDProxy.dragElId
22947  * @type String
22948  * @static
22949  */
22950 Roo.dd.DDProxy.dragElId = "ygddfdiv";
22951
22952 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
22953
22954     /**
22955      * By default we resize the drag frame to be the same size as the element
22956      * we want to drag (this is to get the frame effect).  We can turn it off
22957      * if we want a different behavior.
22958      * @property resizeFrame
22959      * @type boolean
22960      */
22961     resizeFrame: true,
22962
22963     /**
22964      * By default the frame is positioned exactly where the drag element is, so
22965      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
22966      * you do not have constraints on the obj is to have the drag frame centered
22967      * around the cursor.  Set centerFrame to true for this effect.
22968      * @property centerFrame
22969      * @type boolean
22970      */
22971     centerFrame: false,
22972
22973     /**
22974      * Creates the proxy element if it does not yet exist
22975      * @method createFrame
22976      */
22977     createFrame: function() {
22978         var self = this;
22979         var body = document.body;
22980
22981         if (!body || !body.firstChild) {
22982             setTimeout( function() { self.createFrame(); }, 50 );
22983             return;
22984         }
22985
22986         var div = this.getDragEl();
22987
22988         if (!div) {
22989             div    = document.createElement("div");
22990             div.id = this.dragElId;
22991             var s  = div.style;
22992
22993             s.position   = "absolute";
22994             s.visibility = "hidden";
22995             s.cursor     = "move";
22996             s.border     = "2px solid #aaa";
22997             s.zIndex     = 999;
22998
22999             // appendChild can blow up IE if invoked prior to the window load event
23000             // while rendering a table.  It is possible there are other scenarios
23001             // that would cause this to happen as well.
23002             body.insertBefore(div, body.firstChild);
23003         }
23004     },
23005
23006     /**
23007      * Initialization for the drag frame element.  Must be called in the
23008      * constructor of all subclasses
23009      * @method initFrame
23010      */
23011     initFrame: function() {
23012         this.createFrame();
23013     },
23014
23015     applyConfig: function() {
23016         Roo.dd.DDProxy.superclass.applyConfig.call(this);
23017
23018         this.resizeFrame = (this.config.resizeFrame !== false);
23019         this.centerFrame = (this.config.centerFrame);
23020         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
23021     },
23022
23023     /**
23024      * Resizes the drag frame to the dimensions of the clicked object, positions
23025      * it over the object, and finally displays it
23026      * @method showFrame
23027      * @param {int} iPageX X click position
23028      * @param {int} iPageY Y click position
23029      * @private
23030      */
23031     showFrame: function(iPageX, iPageY) {
23032         var el = this.getEl();
23033         var dragEl = this.getDragEl();
23034         var s = dragEl.style;
23035
23036         this._resizeProxy();
23037
23038         if (this.centerFrame) {
23039             this.setDelta( Math.round(parseInt(s.width,  10)/2),
23040                            Math.round(parseInt(s.height, 10)/2) );
23041         }
23042
23043         this.setDragElPos(iPageX, iPageY);
23044
23045         Roo.fly(dragEl).show();
23046     },
23047
23048     /**
23049      * The proxy is automatically resized to the dimensions of the linked
23050      * element when a drag is initiated, unless resizeFrame is set to false
23051      * @method _resizeProxy
23052      * @private
23053      */
23054     _resizeProxy: function() {
23055         if (this.resizeFrame) {
23056             var el = this.getEl();
23057             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
23058         }
23059     },
23060
23061     // overrides Roo.dd.DragDrop
23062     b4MouseDown: function(e) {
23063         var x = e.getPageX();
23064         var y = e.getPageY();
23065         this.autoOffset(x, y);
23066         this.setDragElPos(x, y);
23067     },
23068
23069     // overrides Roo.dd.DragDrop
23070     b4StartDrag: function(x, y) {
23071         // show the drag frame
23072         this.showFrame(x, y);
23073     },
23074
23075     // overrides Roo.dd.DragDrop
23076     b4EndDrag: function(e) {
23077         Roo.fly(this.getDragEl()).hide();
23078     },
23079
23080     // overrides Roo.dd.DragDrop
23081     // By default we try to move the element to the last location of the frame.
23082     // This is so that the default behavior mirrors that of Roo.dd.DD.
23083     endDrag: function(e) {
23084
23085         var lel = this.getEl();
23086         var del = this.getDragEl();
23087
23088         // Show the drag frame briefly so we can get its position
23089         del.style.visibility = "";
23090
23091         this.beforeMove();
23092         // Hide the linked element before the move to get around a Safari
23093         // rendering bug.
23094         lel.style.visibility = "hidden";
23095         Roo.dd.DDM.moveToEl(lel, del);
23096         del.style.visibility = "hidden";
23097         lel.style.visibility = "";
23098
23099         this.afterDrag();
23100     },
23101
23102     beforeMove : function(){
23103
23104     },
23105
23106     afterDrag : function(){
23107
23108     },
23109
23110     toString: function() {
23111         return ("DDProxy " + this.id);
23112     }
23113
23114 });
23115 /*
23116  * Based on:
23117  * Ext JS Library 1.1.1
23118  * Copyright(c) 2006-2007, Ext JS, LLC.
23119  *
23120  * Originally Released Under LGPL - original licence link has changed is not relivant.
23121  *
23122  * Fork - LGPL
23123  * <script type="text/javascript">
23124  */
23125
23126  /**
23127  * @class Roo.dd.DDTarget
23128  * A DragDrop implementation that does not move, but can be a drop
23129  * target.  You would get the same result by simply omitting implementation
23130  * for the event callbacks, but this way we reduce the processing cost of the
23131  * event listener and the callbacks.
23132  * @extends Roo.dd.DragDrop
23133  * @constructor
23134  * @param {String} id the id of the element that is a drop target
23135  * @param {String} sGroup the group of related DragDrop objects
23136  * @param {object} config an object containing configurable attributes
23137  *                 Valid properties for DDTarget in addition to those in
23138  *                 DragDrop:
23139  *                    none
23140  */
23141 Roo.dd.DDTarget = function(id, sGroup, config) {
23142     if (id) {
23143         this.initTarget(id, sGroup, config);
23144     }
23145     if (config && (config.listeners || config.events)) { 
23146         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
23147             listeners : config.listeners || {}, 
23148             events : config.events || {} 
23149         });    
23150     }
23151 };
23152
23153 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
23154 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
23155     toString: function() {
23156         return ("DDTarget " + this.id);
23157     }
23158 });
23159 /*
23160  * Based on:
23161  * Ext JS Library 1.1.1
23162  * Copyright(c) 2006-2007, Ext JS, LLC.
23163  *
23164  * Originally Released Under LGPL - original licence link has changed is not relivant.
23165  *
23166  * Fork - LGPL
23167  * <script type="text/javascript">
23168  */
23169  
23170
23171 /**
23172  * @class Roo.dd.ScrollManager
23173  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
23174  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
23175  * @static
23176  */
23177 Roo.dd.ScrollManager = function(){
23178     var ddm = Roo.dd.DragDropMgr;
23179     var els = {};
23180     var dragEl = null;
23181     var proc = {};
23182     
23183     
23184     
23185     var onStop = function(e){
23186         dragEl = null;
23187         clearProc();
23188     };
23189     
23190     var triggerRefresh = function(){
23191         if(ddm.dragCurrent){
23192              ddm.refreshCache(ddm.dragCurrent.groups);
23193         }
23194     };
23195     
23196     var doScroll = function(){
23197         if(ddm.dragCurrent){
23198             var dds = Roo.dd.ScrollManager;
23199             if(!dds.animate){
23200                 if(proc.el.scroll(proc.dir, dds.increment)){
23201                     triggerRefresh();
23202                 }
23203             }else{
23204                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
23205             }
23206         }
23207     };
23208     
23209     var clearProc = function(){
23210         if(proc.id){
23211             clearInterval(proc.id);
23212         }
23213         proc.id = 0;
23214         proc.el = null;
23215         proc.dir = "";
23216     };
23217     
23218     var startProc = function(el, dir){
23219          Roo.log('scroll startproc');
23220         clearProc();
23221         proc.el = el;
23222         proc.dir = dir;
23223         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
23224     };
23225     
23226     var onFire = function(e, isDrop){
23227        
23228         if(isDrop || !ddm.dragCurrent){ return; }
23229         var dds = Roo.dd.ScrollManager;
23230         if(!dragEl || dragEl != ddm.dragCurrent){
23231             dragEl = ddm.dragCurrent;
23232             // refresh regions on drag start
23233             dds.refreshCache();
23234         }
23235         
23236         var xy = Roo.lib.Event.getXY(e);
23237         var pt = new Roo.lib.Point(xy[0], xy[1]);
23238         for(var id in els){
23239             var el = els[id], r = el._region;
23240             if(r && r.contains(pt) && el.isScrollable()){
23241                 if(r.bottom - pt.y <= dds.thresh){
23242                     if(proc.el != el){
23243                         startProc(el, "down");
23244                     }
23245                     return;
23246                 }else if(r.right - pt.x <= dds.thresh){
23247                     if(proc.el != el){
23248                         startProc(el, "left");
23249                     }
23250                     return;
23251                 }else if(pt.y - r.top <= dds.thresh){
23252                     if(proc.el != el){
23253                         startProc(el, "up");
23254                     }
23255                     return;
23256                 }else if(pt.x - r.left <= dds.thresh){
23257                     if(proc.el != el){
23258                         startProc(el, "right");
23259                     }
23260                     return;
23261                 }
23262             }
23263         }
23264         clearProc();
23265     };
23266     
23267     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
23268     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
23269     
23270     return {
23271         /**
23272          * Registers new overflow element(s) to auto scroll
23273          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
23274          */
23275         register : function(el){
23276             if(el instanceof Array){
23277                 for(var i = 0, len = el.length; i < len; i++) {
23278                         this.register(el[i]);
23279                 }
23280             }else{
23281                 el = Roo.get(el);
23282                 els[el.id] = el;
23283             }
23284             Roo.dd.ScrollManager.els = els;
23285         },
23286         
23287         /**
23288          * Unregisters overflow element(s) so they are no longer scrolled
23289          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
23290          */
23291         unregister : function(el){
23292             if(el instanceof Array){
23293                 for(var i = 0, len = el.length; i < len; i++) {
23294                         this.unregister(el[i]);
23295                 }
23296             }else{
23297                 el = Roo.get(el);
23298                 delete els[el.id];
23299             }
23300         },
23301         
23302         /**
23303          * The number of pixels from the edge of a container the pointer needs to be to 
23304          * trigger scrolling (defaults to 25)
23305          * @type Number
23306          */
23307         thresh : 25,
23308         
23309         /**
23310          * The number of pixels to scroll in each scroll increment (defaults to 50)
23311          * @type Number
23312          */
23313         increment : 100,
23314         
23315         /**
23316          * The frequency of scrolls in milliseconds (defaults to 500)
23317          * @type Number
23318          */
23319         frequency : 500,
23320         
23321         /**
23322          * True to animate the scroll (defaults to true)
23323          * @type Boolean
23324          */
23325         animate: true,
23326         
23327         /**
23328          * The animation duration in seconds - 
23329          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
23330          * @type Number
23331          */
23332         animDuration: .4,
23333         
23334         /**
23335          * Manually trigger a cache refresh.
23336          */
23337         refreshCache : function(){
23338             for(var id in els){
23339                 if(typeof els[id] == 'object'){ // for people extending the object prototype
23340                     els[id]._region = els[id].getRegion();
23341                 }
23342             }
23343         }
23344     };
23345 }();/*
23346  * Based on:
23347  * Ext JS Library 1.1.1
23348  * Copyright(c) 2006-2007, Ext JS, LLC.
23349  *
23350  * Originally Released Under LGPL - original licence link has changed is not relivant.
23351  *
23352  * Fork - LGPL
23353  * <script type="text/javascript">
23354  */
23355  
23356
23357 /**
23358  * @class Roo.dd.Registry
23359  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
23360  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
23361  * @static
23362  */
23363 Roo.dd.Registry = function(){
23364     var elements = {}; 
23365     var handles = {}; 
23366     var autoIdSeed = 0;
23367
23368     var getId = function(el, autogen){
23369         if(typeof el == "string"){
23370             return el;
23371         }
23372         var id = el.id;
23373         if(!id && autogen !== false){
23374             id = "roodd-" + (++autoIdSeed);
23375             el.id = id;
23376         }
23377         return id;
23378     };
23379     
23380     return {
23381     /**
23382      * Register a drag drop element
23383      * @param {String|HTMLElement} element The id or DOM node to register
23384      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
23385      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
23386      * knows how to interpret, plus there are some specific properties known to the Registry that should be
23387      * populated in the data object (if applicable):
23388      * <pre>
23389 Value      Description<br />
23390 ---------  ------------------------------------------<br />
23391 handles    Array of DOM nodes that trigger dragging<br />
23392            for the element being registered<br />
23393 isHandle   True if the element passed in triggers<br />
23394            dragging itself, else false
23395 </pre>
23396      */
23397         register : function(el, data){
23398             data = data || {};
23399             if(typeof el == "string"){
23400                 el = document.getElementById(el);
23401             }
23402             data.ddel = el;
23403             elements[getId(el)] = data;
23404             if(data.isHandle !== false){
23405                 handles[data.ddel.id] = data;
23406             }
23407             if(data.handles){
23408                 var hs = data.handles;
23409                 for(var i = 0, len = hs.length; i < len; i++){
23410                         handles[getId(hs[i])] = data;
23411                 }
23412             }
23413         },
23414
23415     /**
23416      * Unregister a drag drop element
23417      * @param {String|HTMLElement}  element The id or DOM node to unregister
23418      */
23419         unregister : function(el){
23420             var id = getId(el, false);
23421             var data = elements[id];
23422             if(data){
23423                 delete elements[id];
23424                 if(data.handles){
23425                     var hs = data.handles;
23426                     for(var i = 0, len = hs.length; i < len; i++){
23427                         delete handles[getId(hs[i], false)];
23428                     }
23429                 }
23430             }
23431         },
23432
23433     /**
23434      * Returns the handle registered for a DOM Node by id
23435      * @param {String|HTMLElement} id The DOM node or id to look up
23436      * @return {Object} handle The custom handle data
23437      */
23438         getHandle : function(id){
23439             if(typeof id != "string"){ // must be element?
23440                 id = id.id;
23441             }
23442             return handles[id];
23443         },
23444
23445     /**
23446      * Returns the handle that is registered for the DOM node that is the target of the event
23447      * @param {Event} e The event
23448      * @return {Object} handle The custom handle data
23449      */
23450         getHandleFromEvent : function(e){
23451             var t = Roo.lib.Event.getTarget(e);
23452             return t ? handles[t.id] : null;
23453         },
23454
23455     /**
23456      * Returns a custom data object that is registered for a DOM node by id
23457      * @param {String|HTMLElement} id The DOM node or id to look up
23458      * @return {Object} data The custom data
23459      */
23460         getTarget : function(id){
23461             if(typeof id != "string"){ // must be element?
23462                 id = id.id;
23463             }
23464             return elements[id];
23465         },
23466
23467     /**
23468      * Returns a custom data object that is registered for the DOM node that is the target of the event
23469      * @param {Event} e The event
23470      * @return {Object} data The custom data
23471      */
23472         getTargetFromEvent : function(e){
23473             var t = Roo.lib.Event.getTarget(e);
23474             return t ? elements[t.id] || handles[t.id] : null;
23475         }
23476     };
23477 }();/*
23478  * Based on:
23479  * Ext JS Library 1.1.1
23480  * Copyright(c) 2006-2007, Ext JS, LLC.
23481  *
23482  * Originally Released Under LGPL - original licence link has changed is not relivant.
23483  *
23484  * Fork - LGPL
23485  * <script type="text/javascript">
23486  */
23487  
23488
23489 /**
23490  * @class Roo.dd.StatusProxy
23491  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
23492  * default drag proxy used by all Roo.dd components.
23493  * @constructor
23494  * @param {Object} config
23495  */
23496 Roo.dd.StatusProxy = function(config){
23497     Roo.apply(this, config);
23498     this.id = this.id || Roo.id();
23499     this.el = new Roo.Layer({
23500         dh: {
23501             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
23502                 {tag: "div", cls: "x-dd-drop-icon"},
23503                 {tag: "div", cls: "x-dd-drag-ghost"}
23504             ]
23505         }, 
23506         shadow: !config || config.shadow !== false
23507     });
23508     this.ghost = Roo.get(this.el.dom.childNodes[1]);
23509     this.dropStatus = this.dropNotAllowed;
23510 };
23511
23512 Roo.dd.StatusProxy.prototype = {
23513     /**
23514      * @cfg {String} dropAllowed
23515      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
23516      */
23517     dropAllowed : "x-dd-drop-ok",
23518     /**
23519      * @cfg {String} dropNotAllowed
23520      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
23521      */
23522     dropNotAllowed : "x-dd-drop-nodrop",
23523
23524     /**
23525      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
23526      * over the current target element.
23527      * @param {String} cssClass The css class for the new drop status indicator image
23528      */
23529     setStatus : function(cssClass){
23530         cssClass = cssClass || this.dropNotAllowed;
23531         if(this.dropStatus != cssClass){
23532             this.el.replaceClass(this.dropStatus, cssClass);
23533             this.dropStatus = cssClass;
23534         }
23535     },
23536
23537     /**
23538      * Resets the status indicator to the default dropNotAllowed value
23539      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
23540      */
23541     reset : function(clearGhost){
23542         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
23543         this.dropStatus = this.dropNotAllowed;
23544         if(clearGhost){
23545             this.ghost.update("");
23546         }
23547     },
23548
23549     /**
23550      * Updates the contents of the ghost element
23551      * @param {String} html The html that will replace the current innerHTML of the ghost element
23552      */
23553     update : function(html){
23554         if(typeof html == "string"){
23555             this.ghost.update(html);
23556         }else{
23557             this.ghost.update("");
23558             html.style.margin = "0";
23559             this.ghost.dom.appendChild(html);
23560         }
23561         // ensure float = none set?? cant remember why though.
23562         var el = this.ghost.dom.firstChild;
23563                 if(el){
23564                         Roo.fly(el).setStyle('float', 'none');
23565                 }
23566     },
23567     
23568     /**
23569      * Returns the underlying proxy {@link Roo.Layer}
23570      * @return {Roo.Layer} el
23571     */
23572     getEl : function(){
23573         return this.el;
23574     },
23575
23576     /**
23577      * Returns the ghost element
23578      * @return {Roo.Element} el
23579      */
23580     getGhost : function(){
23581         return this.ghost;
23582     },
23583
23584     /**
23585      * Hides the proxy
23586      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
23587      */
23588     hide : function(clear){
23589         this.el.hide();
23590         if(clear){
23591             this.reset(true);
23592         }
23593     },
23594
23595     /**
23596      * Stops the repair animation if it's currently running
23597      */
23598     stop : function(){
23599         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
23600             this.anim.stop();
23601         }
23602     },
23603
23604     /**
23605      * Displays this proxy
23606      */
23607     show : function(){
23608         this.el.show();
23609     },
23610
23611     /**
23612      * Force the Layer to sync its shadow and shim positions to the element
23613      */
23614     sync : function(){
23615         this.el.sync();
23616     },
23617
23618     /**
23619      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
23620      * invalid drop operation by the item being dragged.
23621      * @param {Array} xy The XY position of the element ([x, y])
23622      * @param {Function} callback The function to call after the repair is complete
23623      * @param {Object} scope The scope in which to execute the callback
23624      */
23625     repair : function(xy, callback, scope){
23626         this.callback = callback;
23627         this.scope = scope;
23628         if(xy && this.animRepair !== false){
23629             this.el.addClass("x-dd-drag-repair");
23630             this.el.hideUnders(true);
23631             this.anim = this.el.shift({
23632                 duration: this.repairDuration || .5,
23633                 easing: 'easeOut',
23634                 xy: xy,
23635                 stopFx: true,
23636                 callback: this.afterRepair,
23637                 scope: this
23638             });
23639         }else{
23640             this.afterRepair();
23641         }
23642     },
23643
23644     // private
23645     afterRepair : function(){
23646         this.hide(true);
23647         if(typeof this.callback == "function"){
23648             this.callback.call(this.scope || this);
23649         }
23650         this.callback = null;
23651         this.scope = null;
23652     }
23653 };/*
23654  * Based on:
23655  * Ext JS Library 1.1.1
23656  * Copyright(c) 2006-2007, Ext JS, LLC.
23657  *
23658  * Originally Released Under LGPL - original licence link has changed is not relivant.
23659  *
23660  * Fork - LGPL
23661  * <script type="text/javascript">
23662  */
23663
23664 /**
23665  * @class Roo.dd.DragSource
23666  * @extends Roo.dd.DDProxy
23667  * A simple class that provides the basic implementation needed to make any element draggable.
23668  * @constructor
23669  * @param {String/HTMLElement/Element} el The container element
23670  * @param {Object} config
23671  */
23672 Roo.dd.DragSource = function(el, config){
23673     this.el = Roo.get(el);
23674     this.dragData = {};
23675     
23676     Roo.apply(this, config);
23677     
23678     if(!this.proxy){
23679         this.proxy = new Roo.dd.StatusProxy();
23680     }
23681
23682     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
23683           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
23684     
23685     this.dragging = false;
23686 };
23687
23688 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
23689     /**
23690      * @cfg {String} dropAllowed
23691      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
23692      */
23693     dropAllowed : "x-dd-drop-ok",
23694     /**
23695      * @cfg {String} dropNotAllowed
23696      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
23697      */
23698     dropNotAllowed : "x-dd-drop-nodrop",
23699
23700     /**
23701      * Returns the data object associated with this drag source
23702      * @return {Object} data An object containing arbitrary data
23703      */
23704     getDragData : function(e){
23705         return this.dragData;
23706     },
23707
23708     // private
23709     onDragEnter : function(e, id){
23710         var target = Roo.dd.DragDropMgr.getDDById(id);
23711         this.cachedTarget = target;
23712         if(this.beforeDragEnter(target, e, id) !== false){
23713             if(target.isNotifyTarget){
23714                 var status = target.notifyEnter(this, e, this.dragData);
23715                 this.proxy.setStatus(status);
23716             }else{
23717                 this.proxy.setStatus(this.dropAllowed);
23718             }
23719             
23720             if(this.afterDragEnter){
23721                 /**
23722                  * An empty function by default, but provided so that you can perform a custom action
23723                  * when the dragged item enters the drop target by providing an implementation.
23724                  * @param {Roo.dd.DragDrop} target The drop target
23725                  * @param {Event} e The event object
23726                  * @param {String} id The id of the dragged element
23727                  * @method afterDragEnter
23728                  */
23729                 this.afterDragEnter(target, e, id);
23730             }
23731         }
23732     },
23733
23734     /**
23735      * An empty function by default, but provided so that you can perform a custom action
23736      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
23737      * @param {Roo.dd.DragDrop} target The drop target
23738      * @param {Event} e The event object
23739      * @param {String} id The id of the dragged element
23740      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23741      */
23742     beforeDragEnter : function(target, e, id){
23743         return true;
23744     },
23745
23746     // private
23747     alignElWithMouse: function() {
23748         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
23749         this.proxy.sync();
23750     },
23751
23752     // private
23753     onDragOver : function(e, id){
23754         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23755         if(this.beforeDragOver(target, e, id) !== false){
23756             if(target.isNotifyTarget){
23757                 var status = target.notifyOver(this, e, this.dragData);
23758                 this.proxy.setStatus(status);
23759             }
23760
23761             if(this.afterDragOver){
23762                 /**
23763                  * An empty function by default, but provided so that you can perform a custom action
23764                  * while the dragged item is over the drop target by providing an implementation.
23765                  * @param {Roo.dd.DragDrop} target The drop target
23766                  * @param {Event} e The event object
23767                  * @param {String} id The id of the dragged element
23768                  * @method afterDragOver
23769                  */
23770                 this.afterDragOver(target, e, id);
23771             }
23772         }
23773     },
23774
23775     /**
23776      * An empty function by default, but provided so that you can perform a custom action
23777      * while the dragged item is over the drop target and optionally cancel the onDragOver.
23778      * @param {Roo.dd.DragDrop} target The drop target
23779      * @param {Event} e The event object
23780      * @param {String} id The id of the dragged element
23781      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23782      */
23783     beforeDragOver : function(target, e, id){
23784         return true;
23785     },
23786
23787     // private
23788     onDragOut : function(e, id){
23789         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23790         if(this.beforeDragOut(target, e, id) !== false){
23791             if(target.isNotifyTarget){
23792                 target.notifyOut(this, e, this.dragData);
23793             }
23794             this.proxy.reset();
23795             if(this.afterDragOut){
23796                 /**
23797                  * An empty function by default, but provided so that you can perform a custom action
23798                  * after the dragged item is dragged out of the target without dropping.
23799                  * @param {Roo.dd.DragDrop} target The drop target
23800                  * @param {Event} e The event object
23801                  * @param {String} id The id of the dragged element
23802                  * @method afterDragOut
23803                  */
23804                 this.afterDragOut(target, e, id);
23805             }
23806         }
23807         this.cachedTarget = null;
23808     },
23809
23810     /**
23811      * An empty function by default, but provided so that you can perform a custom action before the dragged
23812      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
23813      * @param {Roo.dd.DragDrop} target The drop target
23814      * @param {Event} e The event object
23815      * @param {String} id The id of the dragged element
23816      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23817      */
23818     beforeDragOut : function(target, e, id){
23819         return true;
23820     },
23821     
23822     // private
23823     onDragDrop : function(e, id){
23824         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23825         if(this.beforeDragDrop(target, e, id) !== false){
23826             if(target.isNotifyTarget){
23827                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
23828                     this.onValidDrop(target, e, id);
23829                 }else{
23830                     this.onInvalidDrop(target, e, id);
23831                 }
23832             }else{
23833                 this.onValidDrop(target, e, id);
23834             }
23835             
23836             if(this.afterDragDrop){
23837                 /**
23838                  * An empty function by default, but provided so that you can perform a custom action
23839                  * after a valid drag drop has occurred by providing an implementation.
23840                  * @param {Roo.dd.DragDrop} target The drop target
23841                  * @param {Event} e The event object
23842                  * @param {String} id The id of the dropped element
23843                  * @method afterDragDrop
23844                  */
23845                 this.afterDragDrop(target, e, id);
23846             }
23847         }
23848         delete this.cachedTarget;
23849     },
23850
23851     /**
23852      * An empty function by default, but provided so that you can perform a custom action before the dragged
23853      * item is dropped onto the target and optionally cancel the onDragDrop.
23854      * @param {Roo.dd.DragDrop} target The drop target
23855      * @param {Event} e The event object
23856      * @param {String} id The id of the dragged element
23857      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
23858      */
23859     beforeDragDrop : function(target, e, id){
23860         return true;
23861     },
23862
23863     // private
23864     onValidDrop : function(target, e, id){
23865         this.hideProxy();
23866         if(this.afterValidDrop){
23867             /**
23868              * An empty function by default, but provided so that you can perform a custom action
23869              * after a valid drop has occurred by providing an implementation.
23870              * @param {Object} target The target DD 
23871              * @param {Event} e The event object
23872              * @param {String} id The id of the dropped element
23873              * @method afterInvalidDrop
23874              */
23875             this.afterValidDrop(target, e, id);
23876         }
23877     },
23878
23879     // private
23880     getRepairXY : function(e, data){
23881         return this.el.getXY();  
23882     },
23883
23884     // private
23885     onInvalidDrop : function(target, e, id){
23886         this.beforeInvalidDrop(target, e, id);
23887         if(this.cachedTarget){
23888             if(this.cachedTarget.isNotifyTarget){
23889                 this.cachedTarget.notifyOut(this, e, this.dragData);
23890             }
23891             this.cacheTarget = null;
23892         }
23893         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
23894
23895         if(this.afterInvalidDrop){
23896             /**
23897              * An empty function by default, but provided so that you can perform a custom action
23898              * after an invalid drop has occurred by providing an implementation.
23899              * @param {Event} e The event object
23900              * @param {String} id The id of the dropped element
23901              * @method afterInvalidDrop
23902              */
23903             this.afterInvalidDrop(e, id);
23904         }
23905     },
23906
23907     // private
23908     afterRepair : function(){
23909         if(Roo.enableFx){
23910             this.el.highlight(this.hlColor || "c3daf9");
23911         }
23912         this.dragging = false;
23913     },
23914
23915     /**
23916      * An empty function by default, but provided so that you can perform a custom action after an invalid
23917      * drop has occurred.
23918      * @param {Roo.dd.DragDrop} target The drop target
23919      * @param {Event} e The event object
23920      * @param {String} id The id of the dragged element
23921      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
23922      */
23923     beforeInvalidDrop : function(target, e, id){
23924         return true;
23925     },
23926
23927     // private
23928     handleMouseDown : function(e){
23929         if(this.dragging) {
23930             return;
23931         }
23932         var data = this.getDragData(e);
23933         if(data && this.onBeforeDrag(data, e) !== false){
23934             this.dragData = data;
23935             this.proxy.stop();
23936             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
23937         } 
23938     },
23939
23940     /**
23941      * An empty function by default, but provided so that you can perform a custom action before the initial
23942      * drag event begins and optionally cancel it.
23943      * @param {Object} data An object containing arbitrary data to be shared with drop targets
23944      * @param {Event} e The event object
23945      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23946      */
23947     onBeforeDrag : function(data, e){
23948         return true;
23949     },
23950
23951     /**
23952      * An empty function by default, but provided so that you can perform a custom action once the initial
23953      * drag event has begun.  The drag cannot be canceled from this function.
23954      * @param {Number} x The x position of the click on the dragged object
23955      * @param {Number} y The y position of the click on the dragged object
23956      */
23957     onStartDrag : Roo.emptyFn,
23958
23959     // private - YUI override
23960     startDrag : function(x, y){
23961         this.proxy.reset();
23962         this.dragging = true;
23963         this.proxy.update("");
23964         this.onInitDrag(x, y);
23965         this.proxy.show();
23966     },
23967
23968     // private
23969     onInitDrag : function(x, y){
23970         var clone = this.el.dom.cloneNode(true);
23971         clone.id = Roo.id(); // prevent duplicate ids
23972         this.proxy.update(clone);
23973         this.onStartDrag(x, y);
23974         return true;
23975     },
23976
23977     /**
23978      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
23979      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
23980      */
23981     getProxy : function(){
23982         return this.proxy;  
23983     },
23984
23985     /**
23986      * Hides the drag source's {@link Roo.dd.StatusProxy}
23987      */
23988     hideProxy : function(){
23989         this.proxy.hide();  
23990         this.proxy.reset(true);
23991         this.dragging = false;
23992     },
23993
23994     // private
23995     triggerCacheRefresh : function(){
23996         Roo.dd.DDM.refreshCache(this.groups);
23997     },
23998
23999     // private - override to prevent hiding
24000     b4EndDrag: function(e) {
24001     },
24002
24003     // private - override to prevent moving
24004     endDrag : function(e){
24005         this.onEndDrag(this.dragData, e);
24006     },
24007
24008     // private
24009     onEndDrag : function(data, e){
24010     },
24011     
24012     // private - pin to cursor
24013     autoOffset : function(x, y) {
24014         this.setDelta(-12, -20);
24015     }    
24016 });/*
24017  * Based on:
24018  * Ext JS Library 1.1.1
24019  * Copyright(c) 2006-2007, Ext JS, LLC.
24020  *
24021  * Originally Released Under LGPL - original licence link has changed is not relivant.
24022  *
24023  * Fork - LGPL
24024  * <script type="text/javascript">
24025  */
24026
24027
24028 /**
24029  * @class Roo.dd.DropTarget
24030  * @extends Roo.dd.DDTarget
24031  * A simple class that provides the basic implementation needed to make any element a drop target that can have
24032  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
24033  * @constructor
24034  * @param {String/HTMLElement/Element} el The container element
24035  * @param {Object} config
24036  */
24037 Roo.dd.DropTarget = function(el, config){
24038     this.el = Roo.get(el);
24039     
24040     var listeners = false; ;
24041     if (config && config.listeners) {
24042         listeners= config.listeners;
24043         delete config.listeners;
24044     }
24045     Roo.apply(this, config);
24046     
24047     if(this.containerScroll){
24048         Roo.dd.ScrollManager.register(this.el);
24049     }
24050     this.addEvents( {
24051          /**
24052          * @scope Roo.dd.DropTarget
24053          */
24054          
24055          /**
24056          * @event enter
24057          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
24058          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
24059          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
24060          * 
24061          * IMPORTANT : it should set  this.valid to true|false
24062          * 
24063          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24064          * @param {Event} e The event
24065          * @param {Object} data An object containing arbitrary data supplied by the drag source
24066          */
24067         "enter" : true,
24068         
24069          /**
24070          * @event over
24071          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
24072          * This method will be called on every mouse movement while the drag source is over the drop target.
24073          * This default implementation simply returns the dropAllowed config value.
24074          * 
24075          * IMPORTANT : it should set  this.valid to true|false
24076          * 
24077          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24078          * @param {Event} e The event
24079          * @param {Object} data An object containing arbitrary data supplied by the drag source
24080          
24081          */
24082         "over" : true,
24083         /**
24084          * @event out
24085          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
24086          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
24087          * overClass (if any) from the drop element.
24088          * 
24089          * 
24090          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24091          * @param {Event} e The event
24092          * @param {Object} data An object containing arbitrary data supplied by the drag source
24093          */
24094          "out" : true,
24095          
24096         /**
24097          * @event drop
24098          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
24099          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
24100          * implementation that does something to process the drop event and returns true so that the drag source's
24101          * repair action does not run.
24102          * 
24103          * IMPORTANT : it should set this.success
24104          * 
24105          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24106          * @param {Event} e The event
24107          * @param {Object} data An object containing arbitrary data supplied by the drag source
24108         */
24109          "drop" : true
24110     });
24111             
24112      
24113     Roo.dd.DropTarget.superclass.constructor.call(  this, 
24114         this.el.dom, 
24115         this.ddGroup || this.group,
24116         {
24117             isTarget: true,
24118             listeners : listeners || {} 
24119            
24120         
24121         }
24122     );
24123
24124 };
24125
24126 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
24127     /**
24128      * @cfg {String} overClass
24129      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
24130      */
24131      /**
24132      * @cfg {String} ddGroup
24133      * The drag drop group to handle drop events for
24134      */
24135      
24136     /**
24137      * @cfg {String} dropAllowed
24138      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
24139      */
24140     dropAllowed : "x-dd-drop-ok",
24141     /**
24142      * @cfg {String} dropNotAllowed
24143      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
24144      */
24145     dropNotAllowed : "x-dd-drop-nodrop",
24146     /**
24147      * @cfg {boolean} success
24148      * set this after drop listener.. 
24149      */
24150     success : false,
24151     /**
24152      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
24153      * if the drop point is valid for over/enter..
24154      */
24155     valid : false,
24156     // private
24157     isTarget : true,
24158
24159     // private
24160     isNotifyTarget : true,
24161     
24162     /**
24163      * @hide
24164      */
24165     notifyEnter : function(dd, e, data)
24166     {
24167         this.valid = true;
24168         this.fireEvent('enter', dd, e, data);
24169         if(this.overClass){
24170             this.el.addClass(this.overClass);
24171         }
24172         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24173             this.valid ? this.dropAllowed : this.dropNotAllowed
24174         );
24175     },
24176
24177     /**
24178      * @hide
24179      */
24180     notifyOver : function(dd, e, data)
24181     {
24182         this.valid = true;
24183         this.fireEvent('over', dd, e, data);
24184         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24185             this.valid ? this.dropAllowed : this.dropNotAllowed
24186         );
24187     },
24188
24189     /**
24190      * @hide
24191      */
24192     notifyOut : function(dd, e, data)
24193     {
24194         this.fireEvent('out', dd, e, data);
24195         if(this.overClass){
24196             this.el.removeClass(this.overClass);
24197         }
24198     },
24199
24200     /**
24201      * @hide
24202      */
24203     notifyDrop : function(dd, e, data)
24204     {
24205         this.success = false;
24206         this.fireEvent('drop', dd, e, data);
24207         return this.success;
24208     }
24209 });/*
24210  * Based on:
24211  * Ext JS Library 1.1.1
24212  * Copyright(c) 2006-2007, Ext JS, LLC.
24213  *
24214  * Originally Released Under LGPL - original licence link has changed is not relivant.
24215  *
24216  * Fork - LGPL
24217  * <script type="text/javascript">
24218  */
24219
24220
24221 /**
24222  * @class Roo.dd.DragZone
24223  * @extends Roo.dd.DragSource
24224  * This class provides a container DD instance that proxies for multiple child node sources.<br />
24225  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
24226  * @constructor
24227  * @param {String/HTMLElement/Element} el The container element
24228  * @param {Object} config
24229  */
24230 Roo.dd.DragZone = function(el, config){
24231     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
24232     if(this.containerScroll){
24233         Roo.dd.ScrollManager.register(this.el);
24234     }
24235 };
24236
24237 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
24238     /**
24239      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
24240      * for auto scrolling during drag operations.
24241      */
24242     /**
24243      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
24244      * method after a failed drop (defaults to "c3daf9" - light blue)
24245      */
24246
24247     /**
24248      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
24249      * for a valid target to drag based on the mouse down. Override this method
24250      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
24251      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
24252      * @param {EventObject} e The mouse down event
24253      * @return {Object} The dragData
24254      */
24255     getDragData : function(e){
24256         return Roo.dd.Registry.getHandleFromEvent(e);
24257     },
24258     
24259     /**
24260      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
24261      * this.dragData.ddel
24262      * @param {Number} x The x position of the click on the dragged object
24263      * @param {Number} y The y position of the click on the dragged object
24264      * @return {Boolean} true to continue the drag, false to cancel
24265      */
24266     onInitDrag : function(x, y){
24267         this.proxy.update(this.dragData.ddel.cloneNode(true));
24268         this.onStartDrag(x, y);
24269         return true;
24270     },
24271     
24272     /**
24273      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
24274      */
24275     afterRepair : function(){
24276         if(Roo.enableFx){
24277             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
24278         }
24279         this.dragging = false;
24280     },
24281
24282     /**
24283      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
24284      * the XY of this.dragData.ddel
24285      * @param {EventObject} e The mouse up event
24286      * @return {Array} The xy location (e.g. [100, 200])
24287      */
24288     getRepairXY : function(e){
24289         return Roo.Element.fly(this.dragData.ddel).getXY();  
24290     }
24291 });/*
24292  * Based on:
24293  * Ext JS Library 1.1.1
24294  * Copyright(c) 2006-2007, Ext JS, LLC.
24295  *
24296  * Originally Released Under LGPL - original licence link has changed is not relivant.
24297  *
24298  * Fork - LGPL
24299  * <script type="text/javascript">
24300  */
24301 /**
24302  * @class Roo.dd.DropZone
24303  * @extends Roo.dd.DropTarget
24304  * This class provides a container DD instance that proxies for multiple child node targets.<br />
24305  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
24306  * @constructor
24307  * @param {String/HTMLElement/Element} el The container element
24308  * @param {Object} config
24309  */
24310 Roo.dd.DropZone = function(el, config){
24311     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
24312 };
24313
24314 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
24315     /**
24316      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
24317      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
24318      * provide your own custom lookup.
24319      * @param {Event} e The event
24320      * @return {Object} data The custom data
24321      */
24322     getTargetFromEvent : function(e){
24323         return Roo.dd.Registry.getTargetFromEvent(e);
24324     },
24325
24326     /**
24327      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
24328      * that it has registered.  This method has no default implementation and should be overridden to provide
24329      * node-specific processing if necessary.
24330      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
24331      * {@link #getTargetFromEvent} for this node)
24332      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24333      * @param {Event} e The event
24334      * @param {Object} data An object containing arbitrary data supplied by the drag source
24335      */
24336     onNodeEnter : function(n, dd, e, data){
24337         
24338     },
24339
24340     /**
24341      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
24342      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
24343      * overridden to provide the proper feedback.
24344      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24345      * {@link #getTargetFromEvent} for this node)
24346      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24347      * @param {Event} e The event
24348      * @param {Object} data An object containing arbitrary data supplied by the drag source
24349      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24350      * underlying {@link Roo.dd.StatusProxy} can be updated
24351      */
24352     onNodeOver : function(n, dd, e, data){
24353         return this.dropAllowed;
24354     },
24355
24356     /**
24357      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
24358      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
24359      * node-specific processing if necessary.
24360      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24361      * {@link #getTargetFromEvent} for this node)
24362      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24363      * @param {Event} e The event
24364      * @param {Object} data An object containing arbitrary data supplied by the drag source
24365      */
24366     onNodeOut : function(n, dd, e, data){
24367         
24368     },
24369
24370     /**
24371      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
24372      * the drop node.  The default implementation returns false, so it should be overridden to provide the
24373      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
24374      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24375      * {@link #getTargetFromEvent} for this node)
24376      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24377      * @param {Event} e The event
24378      * @param {Object} data An object containing arbitrary data supplied by the drag source
24379      * @return {Boolean} True if the drop was valid, else false
24380      */
24381     onNodeDrop : function(n, dd, e, data){
24382         return false;
24383     },
24384
24385     /**
24386      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
24387      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
24388      * it should be overridden to provide the proper feedback if necessary.
24389      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24390      * @param {Event} e The event
24391      * @param {Object} data An object containing arbitrary data supplied by the drag source
24392      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24393      * underlying {@link Roo.dd.StatusProxy} can be updated
24394      */
24395     onContainerOver : function(dd, e, data){
24396         return this.dropNotAllowed;
24397     },
24398
24399     /**
24400      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
24401      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
24402      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
24403      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
24404      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24405      * @param {Event} e The event
24406      * @param {Object} data An object containing arbitrary data supplied by the drag source
24407      * @return {Boolean} True if the drop was valid, else false
24408      */
24409     onContainerDrop : function(dd, e, data){
24410         return false;
24411     },
24412
24413     /**
24414      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
24415      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
24416      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
24417      * you should override this method and provide a custom implementation.
24418      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24419      * @param {Event} e The event
24420      * @param {Object} data An object containing arbitrary data supplied by the drag source
24421      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24422      * underlying {@link Roo.dd.StatusProxy} can be updated
24423      */
24424     notifyEnter : function(dd, e, data){
24425         return this.dropNotAllowed;
24426     },
24427
24428     /**
24429      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
24430      * This method will be called on every mouse movement while the drag source is over the drop zone.
24431      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
24432      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
24433      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
24434      * registered node, it will call {@link #onContainerOver}.
24435      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24436      * @param {Event} e The event
24437      * @param {Object} data An object containing arbitrary data supplied by the drag source
24438      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24439      * underlying {@link Roo.dd.StatusProxy} can be updated
24440      */
24441     notifyOver : function(dd, e, data){
24442         var n = this.getTargetFromEvent(e);
24443         if(!n){ // not over valid drop target
24444             if(this.lastOverNode){
24445                 this.onNodeOut(this.lastOverNode, dd, e, data);
24446                 this.lastOverNode = null;
24447             }
24448             return this.onContainerOver(dd, e, data);
24449         }
24450         if(this.lastOverNode != n){
24451             if(this.lastOverNode){
24452                 this.onNodeOut(this.lastOverNode, dd, e, data);
24453             }
24454             this.onNodeEnter(n, dd, e, data);
24455             this.lastOverNode = n;
24456         }
24457         return this.onNodeOver(n, dd, e, data);
24458     },
24459
24460     /**
24461      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
24462      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
24463      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
24464      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24465      * @param {Event} e The event
24466      * @param {Object} data An object containing arbitrary data supplied by the drag zone
24467      */
24468     notifyOut : function(dd, e, data){
24469         if(this.lastOverNode){
24470             this.onNodeOut(this.lastOverNode, dd, e, data);
24471             this.lastOverNode = null;
24472         }
24473     },
24474
24475     /**
24476      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
24477      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
24478      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
24479      * otherwise it will call {@link #onContainerDrop}.
24480      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24481      * @param {Event} e The event
24482      * @param {Object} data An object containing arbitrary data supplied by the drag source
24483      * @return {Boolean} True if the drop was valid, else false
24484      */
24485     notifyDrop : function(dd, e, data){
24486         if(this.lastOverNode){
24487             this.onNodeOut(this.lastOverNode, dd, e, data);
24488             this.lastOverNode = null;
24489         }
24490         var n = this.getTargetFromEvent(e);
24491         return n ?
24492             this.onNodeDrop(n, dd, e, data) :
24493             this.onContainerDrop(dd, e, data);
24494     },
24495
24496     // private
24497     triggerCacheRefresh : function(){
24498         Roo.dd.DDM.refreshCache(this.groups);
24499     }  
24500 });/*
24501  * Based on:
24502  * Ext JS Library 1.1.1
24503  * Copyright(c) 2006-2007, Ext JS, LLC.
24504  *
24505  * Originally Released Under LGPL - original licence link has changed is not relivant.
24506  *
24507  * Fork - LGPL
24508  * <script type="text/javascript">
24509  */
24510
24511
24512 /**
24513  * @class Roo.data.SortTypes
24514  * @static
24515  * Defines the default sorting (casting?) comparison functions used when sorting data.
24516  */
24517 Roo.data.SortTypes = {
24518     /**
24519      * Default sort that does nothing
24520      * @param {Mixed} s The value being converted
24521      * @return {Mixed} The comparison value
24522      */
24523     none : function(s){
24524         return s;
24525     },
24526     
24527     /**
24528      * The regular expression used to strip tags
24529      * @type {RegExp}
24530      * @property
24531      */
24532     stripTagsRE : /<\/?[^>]+>/gi,
24533     
24534     /**
24535      * Strips all HTML tags to sort on text only
24536      * @param {Mixed} s The value being converted
24537      * @return {String} The comparison value
24538      */
24539     asText : function(s){
24540         return String(s).replace(this.stripTagsRE, "");
24541     },
24542     
24543     /**
24544      * Strips all HTML tags to sort on text only - Case insensitive
24545      * @param {Mixed} s The value being converted
24546      * @return {String} The comparison value
24547      */
24548     asUCText : function(s){
24549         return String(s).toUpperCase().replace(this.stripTagsRE, "");
24550     },
24551     
24552     /**
24553      * Case insensitive string
24554      * @param {Mixed} s The value being converted
24555      * @return {String} The comparison value
24556      */
24557     asUCString : function(s) {
24558         return String(s).toUpperCase();
24559     },
24560     
24561     /**
24562      * Date sorting
24563      * @param {Mixed} s The value being converted
24564      * @return {Number} The comparison value
24565      */
24566     asDate : function(s) {
24567         if(!s){
24568             return 0;
24569         }
24570         if(s instanceof Date){
24571             return s.getTime();
24572         }
24573         return Date.parse(String(s));
24574     },
24575     
24576     /**
24577      * Float sorting
24578      * @param {Mixed} s The value being converted
24579      * @return {Float} The comparison value
24580      */
24581     asFloat : function(s) {
24582         var val = parseFloat(String(s).replace(/,/g, ""));
24583         if(isNaN(val)) {
24584             val = 0;
24585         }
24586         return val;
24587     },
24588     
24589     /**
24590      * Integer sorting
24591      * @param {Mixed} s The value being converted
24592      * @return {Number} The comparison value
24593      */
24594     asInt : function(s) {
24595         var val = parseInt(String(s).replace(/,/g, ""));
24596         if(isNaN(val)) {
24597             val = 0;
24598         }
24599         return val;
24600     }
24601 };/*
24602  * Based on:
24603  * Ext JS Library 1.1.1
24604  * Copyright(c) 2006-2007, Ext JS, LLC.
24605  *
24606  * Originally Released Under LGPL - original licence link has changed is not relivant.
24607  *
24608  * Fork - LGPL
24609  * <script type="text/javascript">
24610  */
24611
24612 /**
24613 * @class Roo.data.Record
24614  * Instances of this class encapsulate both record <em>definition</em> information, and record
24615  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
24616  * to access Records cached in an {@link Roo.data.Store} object.<br>
24617  * <p>
24618  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
24619  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
24620  * objects.<br>
24621  * <p>
24622  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
24623  * @constructor
24624  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
24625  * {@link #create}. The parameters are the same.
24626  * @param {Array} data An associative Array of data values keyed by the field name.
24627  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
24628  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
24629  * not specified an integer id is generated.
24630  */
24631 Roo.data.Record = function(data, id){
24632     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
24633     this.data = data;
24634 };
24635
24636 /**
24637  * Generate a constructor for a specific record layout.
24638  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
24639  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
24640  * Each field definition object may contain the following properties: <ul>
24641  * <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,
24642  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
24643  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
24644  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
24645  * is being used, then this is a string containing the javascript expression to reference the data relative to 
24646  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
24647  * to the data item relative to the record element. If the mapping expression is the same as the field name,
24648  * this may be omitted.</p></li>
24649  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
24650  * <ul><li>auto (Default, implies no conversion)</li>
24651  * <li>string</li>
24652  * <li>int</li>
24653  * <li>float</li>
24654  * <li>boolean</li>
24655  * <li>date</li></ul></p></li>
24656  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
24657  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
24658  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
24659  * by the Reader into an object that will be stored in the Record. It is passed the
24660  * following parameters:<ul>
24661  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
24662  * </ul></p></li>
24663  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
24664  * </ul>
24665  * <br>usage:<br><pre><code>
24666 var TopicRecord = Roo.data.Record.create(
24667     {name: 'title', mapping: 'topic_title'},
24668     {name: 'author', mapping: 'username'},
24669     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
24670     {name: 'lastPost', mapping: 'post_time', type: 'date'},
24671     {name: 'lastPoster', mapping: 'user2'},
24672     {name: 'excerpt', mapping: 'post_text'}
24673 );
24674
24675 var myNewRecord = new TopicRecord({
24676     title: 'Do my job please',
24677     author: 'noobie',
24678     totalPosts: 1,
24679     lastPost: new Date(),
24680     lastPoster: 'Animal',
24681     excerpt: 'No way dude!'
24682 });
24683 myStore.add(myNewRecord);
24684 </code></pre>
24685  * @method create
24686  * @static
24687  */
24688 Roo.data.Record.create = function(o){
24689     var f = function(){
24690         f.superclass.constructor.apply(this, arguments);
24691     };
24692     Roo.extend(f, Roo.data.Record);
24693     var p = f.prototype;
24694     p.fields = new Roo.util.MixedCollection(false, function(field){
24695         return field.name;
24696     });
24697     for(var i = 0, len = o.length; i < len; i++){
24698         p.fields.add(new Roo.data.Field(o[i]));
24699     }
24700     f.getField = function(name){
24701         return p.fields.get(name);  
24702     };
24703     return f;
24704 };
24705
24706 Roo.data.Record.AUTO_ID = 1000;
24707 Roo.data.Record.EDIT = 'edit';
24708 Roo.data.Record.REJECT = 'reject';
24709 Roo.data.Record.COMMIT = 'commit';
24710
24711 Roo.data.Record.prototype = {
24712     /**
24713      * Readonly flag - true if this record has been modified.
24714      * @type Boolean
24715      */
24716     dirty : false,
24717     editing : false,
24718     error: null,
24719     modified: null,
24720
24721     // private
24722     join : function(store){
24723         this.store = store;
24724     },
24725
24726     /**
24727      * Set the named field to the specified value.
24728      * @param {String} name The name of the field to set.
24729      * @param {Object} value The value to set the field to.
24730      */
24731     set : function(name, value){
24732         if(this.data[name] == value){
24733             return;
24734         }
24735         this.dirty = true;
24736         if(!this.modified){
24737             this.modified = {};
24738         }
24739         if(typeof this.modified[name] == 'undefined'){
24740             this.modified[name] = this.data[name];
24741         }
24742         this.data[name] = value;
24743         if(!this.editing && this.store){
24744             this.store.afterEdit(this);
24745         }       
24746     },
24747
24748     /**
24749      * Get the value of the named field.
24750      * @param {String} name The name of the field to get the value of.
24751      * @return {Object} The value of the field.
24752      */
24753     get : function(name){
24754         return this.data[name]; 
24755     },
24756
24757     // private
24758     beginEdit : function(){
24759         this.editing = true;
24760         this.modified = {}; 
24761     },
24762
24763     // private
24764     cancelEdit : function(){
24765         this.editing = false;
24766         delete this.modified;
24767     },
24768
24769     // private
24770     endEdit : function(){
24771         this.editing = false;
24772         if(this.dirty && this.store){
24773             this.store.afterEdit(this);
24774         }
24775     },
24776
24777     /**
24778      * Usually called by the {@link Roo.data.Store} which owns the Record.
24779      * Rejects all changes made to the Record since either creation, or the last commit operation.
24780      * Modified fields are reverted to their original values.
24781      * <p>
24782      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24783      * of reject operations.
24784      */
24785     reject : function(){
24786         var m = this.modified;
24787         for(var n in m){
24788             if(typeof m[n] != "function"){
24789                 this.data[n] = m[n];
24790             }
24791         }
24792         this.dirty = false;
24793         delete this.modified;
24794         this.editing = false;
24795         if(this.store){
24796             this.store.afterReject(this);
24797         }
24798     },
24799
24800     /**
24801      * Usually called by the {@link Roo.data.Store} which owns the Record.
24802      * Commits all changes made to the Record since either creation, or the last commit operation.
24803      * <p>
24804      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24805      * of commit operations.
24806      */
24807     commit : function(){
24808         this.dirty = false;
24809         delete this.modified;
24810         this.editing = false;
24811         if(this.store){
24812             this.store.afterCommit(this);
24813         }
24814     },
24815
24816     // private
24817     hasError : function(){
24818         return this.error != null;
24819     },
24820
24821     // private
24822     clearError : function(){
24823         this.error = null;
24824     },
24825
24826     /**
24827      * Creates a copy of this record.
24828      * @param {String} id (optional) A new record id if you don't want to use this record's id
24829      * @return {Record}
24830      */
24831     copy : function(newId) {
24832         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
24833     }
24834 };/*
24835  * Based on:
24836  * Ext JS Library 1.1.1
24837  * Copyright(c) 2006-2007, Ext JS, LLC.
24838  *
24839  * Originally Released Under LGPL - original licence link has changed is not relivant.
24840  *
24841  * Fork - LGPL
24842  * <script type="text/javascript">
24843  */
24844
24845
24846
24847 /**
24848  * @class Roo.data.Store
24849  * @extends Roo.util.Observable
24850  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
24851  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
24852  * <p>
24853  * 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
24854  * has no knowledge of the format of the data returned by the Proxy.<br>
24855  * <p>
24856  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
24857  * instances from the data object. These records are cached and made available through accessor functions.
24858  * @constructor
24859  * Creates a new Store.
24860  * @param {Object} config A config object containing the objects needed for the Store to access data,
24861  * and read the data into Records.
24862  */
24863 Roo.data.Store = function(config){
24864     this.data = new Roo.util.MixedCollection(false);
24865     this.data.getKey = function(o){
24866         return o.id;
24867     };
24868     this.baseParams = {};
24869     // private
24870     this.paramNames = {
24871         "start" : "start",
24872         "limit" : "limit",
24873         "sort" : "sort",
24874         "dir" : "dir",
24875         "multisort" : "_multisort"
24876     };
24877
24878     if(config && config.data){
24879         this.inlineData = config.data;
24880         delete config.data;
24881     }
24882
24883     Roo.apply(this, config);
24884     
24885     if(this.reader){ // reader passed
24886         this.reader = Roo.factory(this.reader, Roo.data);
24887         this.reader.xmodule = this.xmodule || false;
24888         if(!this.recordType){
24889             this.recordType = this.reader.recordType;
24890         }
24891         if(this.reader.onMetaChange){
24892             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
24893         }
24894     }
24895
24896     if(this.recordType){
24897         this.fields = this.recordType.prototype.fields;
24898     }
24899     this.modified = [];
24900
24901     this.addEvents({
24902         /**
24903          * @event datachanged
24904          * Fires when the data cache has changed, and a widget which is using this Store
24905          * as a Record cache should refresh its view.
24906          * @param {Store} this
24907          */
24908         datachanged : true,
24909         /**
24910          * @event metachange
24911          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
24912          * @param {Store} this
24913          * @param {Object} meta The JSON metadata
24914          */
24915         metachange : true,
24916         /**
24917          * @event add
24918          * Fires when Records have been added to the Store
24919          * @param {Store} this
24920          * @param {Roo.data.Record[]} records The array of Records added
24921          * @param {Number} index The index at which the record(s) were added
24922          */
24923         add : true,
24924         /**
24925          * @event remove
24926          * Fires when a Record has been removed from the Store
24927          * @param {Store} this
24928          * @param {Roo.data.Record} record The Record that was removed
24929          * @param {Number} index The index at which the record was removed
24930          */
24931         remove : true,
24932         /**
24933          * @event update
24934          * Fires when a Record has been updated
24935          * @param {Store} this
24936          * @param {Roo.data.Record} record The Record that was updated
24937          * @param {String} operation The update operation being performed.  Value may be one of:
24938          * <pre><code>
24939  Roo.data.Record.EDIT
24940  Roo.data.Record.REJECT
24941  Roo.data.Record.COMMIT
24942          * </code></pre>
24943          */
24944         update : true,
24945         /**
24946          * @event clear
24947          * Fires when the data cache has been cleared.
24948          * @param {Store} this
24949          */
24950         clear : true,
24951         /**
24952          * @event beforeload
24953          * Fires before a request is made for a new data object.  If the beforeload handler returns false
24954          * the load action will be canceled.
24955          * @param {Store} this
24956          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24957          */
24958         beforeload : true,
24959         /**
24960          * @event beforeloadadd
24961          * Fires after a new set of Records has been loaded.
24962          * @param {Store} this
24963          * @param {Roo.data.Record[]} records The Records that were loaded
24964          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24965          */
24966         beforeloadadd : true,
24967         /**
24968          * @event load
24969          * Fires after a new set of Records has been loaded, before they are added to the store.
24970          * @param {Store} this
24971          * @param {Roo.data.Record[]} records The Records that were loaded
24972          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24973          * @params {Object} return from reader
24974          */
24975         load : true,
24976         /**
24977          * @event loadexception
24978          * Fires if an exception occurs in the Proxy during loading.
24979          * Called with the signature of the Proxy's "loadexception" event.
24980          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
24981          * 
24982          * @param {Proxy} 
24983          * @param {Object} return from JsonData.reader() - success, totalRecords, records
24984          * @param {Object} load options 
24985          * @param {Object} jsonData from your request (normally this contains the Exception)
24986          */
24987         loadexception : true
24988     });
24989     
24990     if(this.proxy){
24991         this.proxy = Roo.factory(this.proxy, Roo.data);
24992         this.proxy.xmodule = this.xmodule || false;
24993         this.relayEvents(this.proxy,  ["loadexception"]);
24994     }
24995     this.sortToggle = {};
24996     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
24997
24998     Roo.data.Store.superclass.constructor.call(this);
24999
25000     if(this.inlineData){
25001         this.loadData(this.inlineData);
25002         delete this.inlineData;
25003     }
25004 };
25005
25006 Roo.extend(Roo.data.Store, Roo.util.Observable, {
25007      /**
25008     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
25009     * without a remote query - used by combo/forms at present.
25010     */
25011     
25012     /**
25013     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
25014     */
25015     /**
25016     * @cfg {Array} data Inline data to be loaded when the store is initialized.
25017     */
25018     /**
25019     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
25020     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
25021     */
25022     /**
25023     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
25024     * on any HTTP request
25025     */
25026     /**
25027     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
25028     */
25029     /**
25030     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
25031     */
25032     multiSort: false,
25033     /**
25034     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
25035     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
25036     */
25037     remoteSort : false,
25038
25039     /**
25040     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
25041      * loaded or when a record is removed. (defaults to false).
25042     */
25043     pruneModifiedRecords : false,
25044
25045     // private
25046     lastOptions : null,
25047
25048     /**
25049      * Add Records to the Store and fires the add event.
25050      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25051      */
25052     add : function(records){
25053         records = [].concat(records);
25054         for(var i = 0, len = records.length; i < len; i++){
25055             records[i].join(this);
25056         }
25057         var index = this.data.length;
25058         this.data.addAll(records);
25059         this.fireEvent("add", this, records, index);
25060     },
25061
25062     /**
25063      * Remove a Record from the Store and fires the remove event.
25064      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
25065      */
25066     remove : function(record){
25067         var index = this.data.indexOf(record);
25068         this.data.removeAt(index);
25069  
25070         if(this.pruneModifiedRecords){
25071             this.modified.remove(record);
25072         }
25073         this.fireEvent("remove", this, record, index);
25074     },
25075
25076     /**
25077      * Remove all Records from the Store and fires the clear event.
25078      */
25079     removeAll : function(){
25080         this.data.clear();
25081         if(this.pruneModifiedRecords){
25082             this.modified = [];
25083         }
25084         this.fireEvent("clear", this);
25085     },
25086
25087     /**
25088      * Inserts Records to the Store at the given index and fires the add event.
25089      * @param {Number} index The start index at which to insert the passed Records.
25090      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25091      */
25092     insert : function(index, records){
25093         records = [].concat(records);
25094         for(var i = 0, len = records.length; i < len; i++){
25095             this.data.insert(index, records[i]);
25096             records[i].join(this);
25097         }
25098         this.fireEvent("add", this, records, index);
25099     },
25100
25101     /**
25102      * Get the index within the cache of the passed Record.
25103      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
25104      * @return {Number} The index of the passed Record. Returns -1 if not found.
25105      */
25106     indexOf : function(record){
25107         return this.data.indexOf(record);
25108     },
25109
25110     /**
25111      * Get the index within the cache of the Record with the passed id.
25112      * @param {String} id The id of the Record to find.
25113      * @return {Number} The index of the Record. Returns -1 if not found.
25114      */
25115     indexOfId : function(id){
25116         return this.data.indexOfKey(id);
25117     },
25118
25119     /**
25120      * Get the Record with the specified id.
25121      * @param {String} id The id of the Record to find.
25122      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
25123      */
25124     getById : function(id){
25125         return this.data.key(id);
25126     },
25127
25128     /**
25129      * Get the Record at the specified index.
25130      * @param {Number} index The index of the Record to find.
25131      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
25132      */
25133     getAt : function(index){
25134         return this.data.itemAt(index);
25135     },
25136
25137     /**
25138      * Returns a range of Records between specified indices.
25139      * @param {Number} startIndex (optional) The starting index (defaults to 0)
25140      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
25141      * @return {Roo.data.Record[]} An array of Records
25142      */
25143     getRange : function(start, end){
25144         return this.data.getRange(start, end);
25145     },
25146
25147     // private
25148     storeOptions : function(o){
25149         o = Roo.apply({}, o);
25150         delete o.callback;
25151         delete o.scope;
25152         this.lastOptions = o;
25153     },
25154
25155     /**
25156      * Loads the Record cache from the configured Proxy using the configured Reader.
25157      * <p>
25158      * If using remote paging, then the first load call must specify the <em>start</em>
25159      * and <em>limit</em> properties in the options.params property to establish the initial
25160      * position within the dataset, and the number of Records to cache on each read from the Proxy.
25161      * <p>
25162      * <strong>It is important to note that for remote data sources, loading is asynchronous,
25163      * and this call will return before the new data has been loaded. Perform any post-processing
25164      * in a callback function, or in a "load" event handler.</strong>
25165      * <p>
25166      * @param {Object} options An object containing properties which control loading options:<ul>
25167      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
25168      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
25169      * <pre>
25170                 {
25171                     data : data,  // array of key=>value data like JsonReader
25172                     total : data.length,
25173                     success : true
25174                     
25175                 }
25176         </pre>
25177             }.</li>
25178      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
25179      * passed the following arguments:<ul>
25180      * <li>r : Roo.data.Record[]</li>
25181      * <li>options: Options object from the load call</li>
25182      * <li>success: Boolean success indicator</li></ul></li>
25183      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
25184      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
25185      * </ul>
25186      */
25187     load : function(options){
25188         options = options || {};
25189         if(this.fireEvent("beforeload", this, options) !== false){
25190             this.storeOptions(options);
25191             var p = Roo.apply(options.params || {}, this.baseParams);
25192             // if meta was not loaded from remote source.. try requesting it.
25193             if (!this.reader.metaFromRemote) {
25194                 p._requestMeta = 1;
25195             }
25196             if(this.sortInfo && this.remoteSort){
25197                 var pn = this.paramNames;
25198                 p[pn["sort"]] = this.sortInfo.field;
25199                 p[pn["dir"]] = this.sortInfo.direction;
25200             }
25201             if (this.multiSort) {
25202                 var pn = this.paramNames;
25203                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
25204             }
25205             
25206             this.proxy.load(p, this.reader, this.loadRecords, this, options);
25207         }
25208     },
25209
25210     /**
25211      * Reloads the Record cache from the configured Proxy using the configured Reader and
25212      * the options from the last load operation performed.
25213      * @param {Object} options (optional) An object containing properties which may override the options
25214      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
25215      * the most recently used options are reused).
25216      */
25217     reload : function(options){
25218         this.load(Roo.applyIf(options||{}, this.lastOptions));
25219     },
25220
25221     // private
25222     // Called as a callback by the Reader during a load operation.
25223     loadRecords : function(o, options, success){
25224          
25225         if(!o){
25226             if(success !== false){
25227                 this.fireEvent("load", this, [], options, o);
25228             }
25229             if(options.callback){
25230                 options.callback.call(options.scope || this, [], options, false);
25231             }
25232             return;
25233         }
25234         // if data returned failure - throw an exception.
25235         if (o.success === false) {
25236             // show a message if no listener is registered.
25237             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
25238                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
25239             }
25240             // loadmask wil be hooked into this..
25241             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
25242             return;
25243         }
25244         var r = o.records, t = o.totalRecords || r.length;
25245         
25246         this.fireEvent("beforeloadadd", this, r, options, o);
25247         
25248         if(!options || options.add !== true){
25249             if(this.pruneModifiedRecords){
25250                 this.modified = [];
25251             }
25252             for(var i = 0, len = r.length; i < len; i++){
25253                 r[i].join(this);
25254             }
25255             if(this.snapshot){
25256                 this.data = this.snapshot;
25257                 delete this.snapshot;
25258             }
25259             this.data.clear();
25260             this.data.addAll(r);
25261             this.totalLength = t;
25262             this.applySort();
25263             this.fireEvent("datachanged", this);
25264         }else{
25265             this.totalLength = Math.max(t, this.data.length+r.length);
25266             this.add(r);
25267         }
25268         
25269         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
25270                 
25271             var e = new Roo.data.Record({});
25272
25273             e.set(this.parent.displayField, this.parent.emptyTitle);
25274             e.set(this.parent.valueField, '');
25275
25276             this.insert(0, e);
25277         }
25278             
25279         this.fireEvent("load", this, r, options, o);
25280         if(options.callback){
25281             options.callback.call(options.scope || this, r, options, true);
25282         }
25283     },
25284
25285
25286     /**
25287      * Loads data from a passed data block. A Reader which understands the format of the data
25288      * must have been configured in the constructor.
25289      * @param {Object} data The data block from which to read the Records.  The format of the data expected
25290      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
25291      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
25292      */
25293     loadData : function(o, append){
25294         var r = this.reader.readRecords(o);
25295         this.loadRecords(r, {add: append}, true);
25296     },
25297     
25298      /**
25299      * using 'cn' the nested child reader read the child array into it's child stores.
25300      * @param {Object} rec The record with a 'children array
25301      */
25302     loadDataFromChildren : function(rec)
25303     {
25304         this.loadData(this.reader.toLoadData(rec));
25305     },
25306     
25307
25308     /**
25309      * Gets the number of cached records.
25310      * <p>
25311      * <em>If using paging, this may not be the total size of the dataset. If the data object
25312      * used by the Reader contains the dataset size, then the getTotalCount() function returns
25313      * the data set size</em>
25314      */
25315     getCount : function(){
25316         return this.data.length || 0;
25317     },
25318
25319     /**
25320      * Gets the total number of records in the dataset as returned by the server.
25321      * <p>
25322      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
25323      * the dataset size</em>
25324      */
25325     getTotalCount : function(){
25326         return this.totalLength || 0;
25327     },
25328
25329     /**
25330      * Returns the sort state of the Store as an object with two properties:
25331      * <pre><code>
25332  field {String} The name of the field by which the Records are sorted
25333  direction {String} The sort order, "ASC" or "DESC"
25334      * </code></pre>
25335      */
25336     getSortState : function(){
25337         return this.sortInfo;
25338     },
25339
25340     // private
25341     applySort : function(){
25342         if(this.sortInfo && !this.remoteSort){
25343             var s = this.sortInfo, f = s.field;
25344             var st = this.fields.get(f).sortType;
25345             var fn = function(r1, r2){
25346                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
25347                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
25348             };
25349             this.data.sort(s.direction, fn);
25350             if(this.snapshot && this.snapshot != this.data){
25351                 this.snapshot.sort(s.direction, fn);
25352             }
25353         }
25354     },
25355
25356     /**
25357      * Sets the default sort column and order to be used by the next load operation.
25358      * @param {String} fieldName The name of the field to sort by.
25359      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25360      */
25361     setDefaultSort : function(field, dir){
25362         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
25363     },
25364
25365     /**
25366      * Sort the Records.
25367      * If remote sorting is used, the sort is performed on the server, and the cache is
25368      * reloaded. If local sorting is used, the cache is sorted internally.
25369      * @param {String} fieldName The name of the field to sort by.
25370      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25371      */
25372     sort : function(fieldName, dir){
25373         var f = this.fields.get(fieldName);
25374         if(!dir){
25375             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
25376             
25377             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
25378                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
25379             }else{
25380                 dir = f.sortDir;
25381             }
25382         }
25383         this.sortToggle[f.name] = dir;
25384         this.sortInfo = {field: f.name, direction: dir};
25385         if(!this.remoteSort){
25386             this.applySort();
25387             this.fireEvent("datachanged", this);
25388         }else{
25389             this.load(this.lastOptions);
25390         }
25391     },
25392
25393     /**
25394      * Calls the specified function for each of the Records in the cache.
25395      * @param {Function} fn The function to call. The Record is passed as the first parameter.
25396      * Returning <em>false</em> aborts and exits the iteration.
25397      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
25398      */
25399     each : function(fn, scope){
25400         this.data.each(fn, scope);
25401     },
25402
25403     /**
25404      * Gets all records modified since the last commit.  Modified records are persisted across load operations
25405      * (e.g., during paging).
25406      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
25407      */
25408     getModifiedRecords : function(){
25409         return this.modified;
25410     },
25411
25412     // private
25413     createFilterFn : function(property, value, anyMatch){
25414         if(!value.exec){ // not a regex
25415             value = String(value);
25416             if(value.length == 0){
25417                 return false;
25418             }
25419             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
25420         }
25421         return function(r){
25422             return value.test(r.data[property]);
25423         };
25424     },
25425
25426     /**
25427      * Sums the value of <i>property</i> for each record between start and end and returns the result.
25428      * @param {String} property A field on your records
25429      * @param {Number} start The record index to start at (defaults to 0)
25430      * @param {Number} end The last record index to include (defaults to length - 1)
25431      * @return {Number} The sum
25432      */
25433     sum : function(property, start, end){
25434         var rs = this.data.items, v = 0;
25435         start = start || 0;
25436         end = (end || end === 0) ? end : rs.length-1;
25437
25438         for(var i = start; i <= end; i++){
25439             v += (rs[i].data[property] || 0);
25440         }
25441         return v;
25442     },
25443
25444     /**
25445      * Filter the records by a specified property.
25446      * @param {String} field A field on your records
25447      * @param {String/RegExp} value Either a string that the field
25448      * should start with or a RegExp to test against the field
25449      * @param {Boolean} anyMatch True to match any part not just the beginning
25450      */
25451     filter : function(property, value, anyMatch){
25452         var fn = this.createFilterFn(property, value, anyMatch);
25453         return fn ? this.filterBy(fn) : this.clearFilter();
25454     },
25455
25456     /**
25457      * Filter by a function. The specified function will be called with each
25458      * record in this data source. If the function returns true the record is included,
25459      * otherwise it is filtered.
25460      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25461      * @param {Object} scope (optional) The scope of the function (defaults to this)
25462      */
25463     filterBy : function(fn, scope){
25464         this.snapshot = this.snapshot || this.data;
25465         this.data = this.queryBy(fn, scope||this);
25466         this.fireEvent("datachanged", this);
25467     },
25468
25469     /**
25470      * Query the records by a specified property.
25471      * @param {String} field A field on your records
25472      * @param {String/RegExp} value Either a string that the field
25473      * should start with or a RegExp to test against the field
25474      * @param {Boolean} anyMatch True to match any part not just the beginning
25475      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25476      */
25477     query : function(property, value, anyMatch){
25478         var fn = this.createFilterFn(property, value, anyMatch);
25479         return fn ? this.queryBy(fn) : this.data.clone();
25480     },
25481
25482     /**
25483      * Query by a function. The specified function will be called with each
25484      * record in this data source. If the function returns true the record is included
25485      * in the results.
25486      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25487      * @param {Object} scope (optional) The scope of the function (defaults to this)
25488       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25489      **/
25490     queryBy : function(fn, scope){
25491         var data = this.snapshot || this.data;
25492         return data.filterBy(fn, scope||this);
25493     },
25494
25495     /**
25496      * Collects unique values for a particular dataIndex from this store.
25497      * @param {String} dataIndex The property to collect
25498      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
25499      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
25500      * @return {Array} An array of the unique values
25501      **/
25502     collect : function(dataIndex, allowNull, bypassFilter){
25503         var d = (bypassFilter === true && this.snapshot) ?
25504                 this.snapshot.items : this.data.items;
25505         var v, sv, r = [], l = {};
25506         for(var i = 0, len = d.length; i < len; i++){
25507             v = d[i].data[dataIndex];
25508             sv = String(v);
25509             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
25510                 l[sv] = true;
25511                 r[r.length] = v;
25512             }
25513         }
25514         return r;
25515     },
25516
25517     /**
25518      * Revert to a view of the Record cache with no filtering applied.
25519      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
25520      */
25521     clearFilter : function(suppressEvent){
25522         if(this.snapshot && this.snapshot != this.data){
25523             this.data = this.snapshot;
25524             delete this.snapshot;
25525             if(suppressEvent !== true){
25526                 this.fireEvent("datachanged", this);
25527             }
25528         }
25529     },
25530
25531     // private
25532     afterEdit : function(record){
25533         if(this.modified.indexOf(record) == -1){
25534             this.modified.push(record);
25535         }
25536         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
25537     },
25538     
25539     // private
25540     afterReject : function(record){
25541         this.modified.remove(record);
25542         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
25543     },
25544
25545     // private
25546     afterCommit : function(record){
25547         this.modified.remove(record);
25548         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
25549     },
25550
25551     /**
25552      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
25553      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
25554      */
25555     commitChanges : function(){
25556         var m = this.modified.slice(0);
25557         this.modified = [];
25558         for(var i = 0, len = m.length; i < len; i++){
25559             m[i].commit();
25560         }
25561     },
25562
25563     /**
25564      * Cancel outstanding changes on all changed records.
25565      */
25566     rejectChanges : function(){
25567         var m = this.modified.slice(0);
25568         this.modified = [];
25569         for(var i = 0, len = m.length; i < len; i++){
25570             m[i].reject();
25571         }
25572     },
25573
25574     onMetaChange : function(meta, rtype, o){
25575         this.recordType = rtype;
25576         this.fields = rtype.prototype.fields;
25577         delete this.snapshot;
25578         this.sortInfo = meta.sortInfo || this.sortInfo;
25579         this.modified = [];
25580         this.fireEvent('metachange', this, this.reader.meta);
25581     },
25582     
25583     moveIndex : function(data, type)
25584     {
25585         var index = this.indexOf(data);
25586         
25587         var newIndex = index + type;
25588         
25589         this.remove(data);
25590         
25591         this.insert(newIndex, data);
25592         
25593     }
25594 });/*
25595  * Based on:
25596  * Ext JS Library 1.1.1
25597  * Copyright(c) 2006-2007, Ext JS, LLC.
25598  *
25599  * Originally Released Under LGPL - original licence link has changed is not relivant.
25600  *
25601  * Fork - LGPL
25602  * <script type="text/javascript">
25603  */
25604
25605 /**
25606  * @class Roo.data.SimpleStore
25607  * @extends Roo.data.Store
25608  * Small helper class to make creating Stores from Array data easier.
25609  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
25610  * @cfg {Array} fields An array of field definition objects, or field name strings.
25611  * @cfg {Object} an existing reader (eg. copied from another store)
25612  * @cfg {Array} data The multi-dimensional array of data
25613  * @cfg {Roo.data.DataProxy} proxy [not-required]  
25614  * @cfg {Roo.data.Reader} reader  [not-required] 
25615  * @constructor
25616  * @param {Object} config
25617  */
25618 Roo.data.SimpleStore = function(config)
25619 {
25620     Roo.data.SimpleStore.superclass.constructor.call(this, {
25621         isLocal : true,
25622         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
25623                 id: config.id
25624             },
25625             Roo.data.Record.create(config.fields)
25626         ),
25627         proxy : new Roo.data.MemoryProxy(config.data)
25628     });
25629     this.load();
25630 };
25631 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
25632  * Based on:
25633  * Ext JS Library 1.1.1
25634  * Copyright(c) 2006-2007, Ext JS, LLC.
25635  *
25636  * Originally Released Under LGPL - original licence link has changed is not relivant.
25637  *
25638  * Fork - LGPL
25639  * <script type="text/javascript">
25640  */
25641
25642 /**
25643 /**
25644  * @extends Roo.data.Store
25645  * @class Roo.data.JsonStore
25646  * Small helper class to make creating Stores for JSON data easier. <br/>
25647 <pre><code>
25648 var store = new Roo.data.JsonStore({
25649     url: 'get-images.php',
25650     root: 'images',
25651     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
25652 });
25653 </code></pre>
25654  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
25655  * JsonReader and HttpProxy (unless inline data is provided).</b>
25656  * @cfg {Array} fields An array of field definition objects, or field name strings.
25657  * @constructor
25658  * @param {Object} config
25659  */
25660 Roo.data.JsonStore = function(c){
25661     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
25662         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
25663         reader: new Roo.data.JsonReader(c, c.fields)
25664     }));
25665 };
25666 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
25667  * Based on:
25668  * Ext JS Library 1.1.1
25669  * Copyright(c) 2006-2007, Ext JS, LLC.
25670  *
25671  * Originally Released Under LGPL - original licence link has changed is not relivant.
25672  *
25673  * Fork - LGPL
25674  * <script type="text/javascript">
25675  */
25676
25677  
25678 Roo.data.Field = function(config){
25679     if(typeof config == "string"){
25680         config = {name: config};
25681     }
25682     Roo.apply(this, config);
25683     
25684     if(!this.type){
25685         this.type = "auto";
25686     }
25687     
25688     var st = Roo.data.SortTypes;
25689     // named sortTypes are supported, here we look them up
25690     if(typeof this.sortType == "string"){
25691         this.sortType = st[this.sortType];
25692     }
25693     
25694     // set default sortType for strings and dates
25695     if(!this.sortType){
25696         switch(this.type){
25697             case "string":
25698                 this.sortType = st.asUCString;
25699                 break;
25700             case "date":
25701                 this.sortType = st.asDate;
25702                 break;
25703             default:
25704                 this.sortType = st.none;
25705         }
25706     }
25707
25708     // define once
25709     var stripRe = /[\$,%]/g;
25710
25711     // prebuilt conversion function for this field, instead of
25712     // switching every time we're reading a value
25713     if(!this.convert){
25714         var cv, dateFormat = this.dateFormat;
25715         switch(this.type){
25716             case "":
25717             case "auto":
25718             case undefined:
25719                 cv = function(v){ return v; };
25720                 break;
25721             case "string":
25722                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
25723                 break;
25724             case "int":
25725                 cv = function(v){
25726                     return v !== undefined && v !== null && v !== '' ?
25727                            parseInt(String(v).replace(stripRe, ""), 10) : '';
25728                     };
25729                 break;
25730             case "float":
25731                 cv = function(v){
25732                     return v !== undefined && v !== null && v !== '' ?
25733                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
25734                     };
25735                 break;
25736             case "bool":
25737             case "boolean":
25738                 cv = function(v){ return v === true || v === "true" || v == 1; };
25739                 break;
25740             case "date":
25741                 cv = function(v){
25742                     if(!v){
25743                         return '';
25744                     }
25745                     if(v instanceof Date){
25746                         return v;
25747                     }
25748                     if(dateFormat){
25749                         if(dateFormat == "timestamp"){
25750                             return new Date(v*1000);
25751                         }
25752                         return Date.parseDate(v, dateFormat);
25753                     }
25754                     var parsed = Date.parse(v);
25755                     return parsed ? new Date(parsed) : null;
25756                 };
25757              break;
25758             
25759         }
25760         this.convert = cv;
25761     }
25762 };
25763
25764 Roo.data.Field.prototype = {
25765     dateFormat: null,
25766     defaultValue: "",
25767     mapping: null,
25768     sortType : null,
25769     sortDir : "ASC"
25770 };/*
25771  * Based on:
25772  * Ext JS Library 1.1.1
25773  * Copyright(c) 2006-2007, Ext JS, LLC.
25774  *
25775  * Originally Released Under LGPL - original licence link has changed is not relivant.
25776  *
25777  * Fork - LGPL
25778  * <script type="text/javascript">
25779  */
25780  
25781 // Base class for reading structured data from a data source.  This class is intended to be
25782 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
25783
25784 /**
25785  * @class Roo.data.DataReader
25786  * @abstract
25787  * Base class for reading structured data from a data source.  This class is intended to be
25788  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
25789  */
25790
25791 Roo.data.DataReader = function(meta, recordType){
25792     
25793     this.meta = meta;
25794     
25795     this.recordType = recordType instanceof Array ? 
25796         Roo.data.Record.create(recordType) : recordType;
25797 };
25798
25799 Roo.data.DataReader.prototype = {
25800     
25801     
25802     readerType : 'Data',
25803      /**
25804      * Create an empty record
25805      * @param {Object} data (optional) - overlay some values
25806      * @return {Roo.data.Record} record created.
25807      */
25808     newRow :  function(d) {
25809         var da =  {};
25810         this.recordType.prototype.fields.each(function(c) {
25811             switch( c.type) {
25812                 case 'int' : da[c.name] = 0; break;
25813                 case 'date' : da[c.name] = new Date(); break;
25814                 case 'float' : da[c.name] = 0.0; break;
25815                 case 'boolean' : da[c.name] = false; break;
25816                 default : da[c.name] = ""; break;
25817             }
25818             
25819         });
25820         return new this.recordType(Roo.apply(da, d));
25821     }
25822     
25823     
25824 };/*
25825  * Based on:
25826  * Ext JS Library 1.1.1
25827  * Copyright(c) 2006-2007, Ext JS, LLC.
25828  *
25829  * Originally Released Under LGPL - original licence link has changed is not relivant.
25830  *
25831  * Fork - LGPL
25832  * <script type="text/javascript">
25833  */
25834
25835 /**
25836  * @class Roo.data.DataProxy
25837  * @extends Roo.util.Observable
25838  * @abstract
25839  * This class is an abstract base class for implementations which provide retrieval of
25840  * unformatted data objects.<br>
25841  * <p>
25842  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
25843  * (of the appropriate type which knows how to parse the data object) to provide a block of
25844  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
25845  * <p>
25846  * Custom implementations must implement the load method as described in
25847  * {@link Roo.data.HttpProxy#load}.
25848  */
25849 Roo.data.DataProxy = function(){
25850     this.addEvents({
25851         /**
25852          * @event beforeload
25853          * Fires before a network request is made to retrieve a data object.
25854          * @param {Object} This DataProxy object.
25855          * @param {Object} params The params parameter to the load function.
25856          */
25857         beforeload : true,
25858         /**
25859          * @event load
25860          * Fires before the load method's callback is called.
25861          * @param {Object} This DataProxy object.
25862          * @param {Object} o The data object.
25863          * @param {Object} arg The callback argument object passed to the load function.
25864          */
25865         load : true,
25866         /**
25867          * @event loadexception
25868          * Fires if an Exception occurs during data retrieval.
25869          * @param {Object} This DataProxy object.
25870          * @param {Object} o The data object.
25871          * @param {Object} arg The callback argument object passed to the load function.
25872          * @param {Object} e The Exception.
25873          */
25874         loadexception : true
25875     });
25876     Roo.data.DataProxy.superclass.constructor.call(this);
25877 };
25878
25879 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
25880
25881     /**
25882      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
25883      */
25884 /*
25885  * Based on:
25886  * Ext JS Library 1.1.1
25887  * Copyright(c) 2006-2007, Ext JS, LLC.
25888  *
25889  * Originally Released Under LGPL - original licence link has changed is not relivant.
25890  *
25891  * Fork - LGPL
25892  * <script type="text/javascript">
25893  */
25894 /**
25895  * @class Roo.data.MemoryProxy
25896  * @extends Roo.data.DataProxy
25897  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
25898  * to the Reader when its load method is called.
25899  * @constructor
25900  * @param {Object} config  A config object containing the objects needed for the Store to access data,
25901  */
25902 Roo.data.MemoryProxy = function(config){
25903     var data = config;
25904     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
25905         data = config.data;
25906     }
25907     Roo.data.MemoryProxy.superclass.constructor.call(this);
25908     this.data = data;
25909 };
25910
25911 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
25912     
25913     /**
25914      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
25915      */
25916     /**
25917      * Load data from the requested source (in this case an in-memory
25918      * data object passed to the constructor), read the data object into
25919      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
25920      * process that block using the passed callback.
25921      * @param {Object} params This parameter is not used by the MemoryProxy class.
25922      * @param {Roo.data.DataReader} reader The Reader object which converts the data
25923      * object into a block of Roo.data.Records.
25924      * @param {Function} callback The function into which to pass the block of Roo.data.records.
25925      * The function must be passed <ul>
25926      * <li>The Record block object</li>
25927      * <li>The "arg" argument from the load function</li>
25928      * <li>A boolean success indicator</li>
25929      * </ul>
25930      * @param {Object} scope The scope in which to call the callback
25931      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
25932      */
25933     load : function(params, reader, callback, scope, arg){
25934         params = params || {};
25935         var result;
25936         try {
25937             result = reader.readRecords(params.data ? params.data :this.data);
25938         }catch(e){
25939             this.fireEvent("loadexception", this, arg, null, e);
25940             callback.call(scope, null, arg, false);
25941             return;
25942         }
25943         callback.call(scope, result, arg, true);
25944     },
25945     
25946     // private
25947     update : function(params, records){
25948         
25949     }
25950 });/*
25951  * Based on:
25952  * Ext JS Library 1.1.1
25953  * Copyright(c) 2006-2007, Ext JS, LLC.
25954  *
25955  * Originally Released Under LGPL - original licence link has changed is not relivant.
25956  *
25957  * Fork - LGPL
25958  * <script type="text/javascript">
25959  */
25960 /**
25961  * @class Roo.data.HttpProxy
25962  * @extends Roo.data.DataProxy
25963  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
25964  * configured to reference a certain URL.<br><br>
25965  * <p>
25966  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
25967  * from which the running page was served.<br><br>
25968  * <p>
25969  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
25970  * <p>
25971  * Be aware that to enable the browser to parse an XML document, the server must set
25972  * the Content-Type header in the HTTP response to "text/xml".
25973  * @constructor
25974  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
25975  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
25976  * will be used to make the request.
25977  */
25978 Roo.data.HttpProxy = function(conn){
25979     Roo.data.HttpProxy.superclass.constructor.call(this);
25980     // is conn a conn config or a real conn?
25981     this.conn = conn;
25982     this.useAjax = !conn || !conn.events;
25983   
25984 };
25985
25986 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
25987     // thse are take from connection...
25988     
25989     /**
25990      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
25991      */
25992     /**
25993      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
25994      * extra parameters to each request made by this object. (defaults to undefined)
25995      */
25996     /**
25997      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
25998      *  to each request made by this object. (defaults to undefined)
25999      */
26000     /**
26001      * @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)
26002      */
26003     /**
26004      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
26005      */
26006      /**
26007      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
26008      * @type Boolean
26009      */
26010   
26011
26012     /**
26013      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
26014      * @type Boolean
26015      */
26016     /**
26017      * Return the {@link Roo.data.Connection} object being used by this Proxy.
26018      * @return {Connection} The Connection object. This object may be used to subscribe to events on
26019      * a finer-grained basis than the DataProxy events.
26020      */
26021     getConnection : function(){
26022         return this.useAjax ? Roo.Ajax : this.conn;
26023     },
26024
26025     /**
26026      * Load data from the configured {@link Roo.data.Connection}, read the data object into
26027      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
26028      * process that block using the passed callback.
26029      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26030      * for the request to the remote server.
26031      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26032      * object into a block of Roo.data.Records.
26033      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26034      * The function must be passed <ul>
26035      * <li>The Record block object</li>
26036      * <li>The "arg" argument from the load function</li>
26037      * <li>A boolean success indicator</li>
26038      * </ul>
26039      * @param {Object} scope The scope in which to call the callback
26040      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26041      */
26042     load : function(params, reader, callback, scope, arg){
26043         if(this.fireEvent("beforeload", this, params) !== false){
26044             var  o = {
26045                 params : params || {},
26046                 request: {
26047                     callback : callback,
26048                     scope : scope,
26049                     arg : arg
26050                 },
26051                 reader: reader,
26052                 callback : this.loadResponse,
26053                 scope: this
26054             };
26055             if(this.useAjax){
26056                 Roo.applyIf(o, this.conn);
26057                 if(this.activeRequest){
26058                     Roo.Ajax.abort(this.activeRequest);
26059                 }
26060                 this.activeRequest = Roo.Ajax.request(o);
26061             }else{
26062                 this.conn.request(o);
26063             }
26064         }else{
26065             callback.call(scope||this, null, arg, false);
26066         }
26067     },
26068
26069     // private
26070     loadResponse : function(o, success, response){
26071         delete this.activeRequest;
26072         if(!success){
26073             this.fireEvent("loadexception", this, o, response);
26074             o.request.callback.call(o.request.scope, null, o.request.arg, false);
26075             return;
26076         }
26077         var result;
26078         try {
26079             result = o.reader.read(response);
26080         }catch(e){
26081             o.success = false;
26082             o.raw = { errorMsg : response.responseText };
26083             this.fireEvent("loadexception", this, o, response, e);
26084             o.request.callback.call(o.request.scope, o, o.request.arg, false);
26085             return;
26086         }
26087         
26088         this.fireEvent("load", this, o, o.request.arg);
26089         o.request.callback.call(o.request.scope, result, o.request.arg, true);
26090     },
26091
26092     // private
26093     update : function(dataSet){
26094
26095     },
26096
26097     // private
26098     updateResponse : function(dataSet){
26099
26100     }
26101 });/*
26102  * Based on:
26103  * Ext JS Library 1.1.1
26104  * Copyright(c) 2006-2007, Ext JS, LLC.
26105  *
26106  * Originally Released Under LGPL - original licence link has changed is not relivant.
26107  *
26108  * Fork - LGPL
26109  * <script type="text/javascript">
26110  */
26111
26112 /**
26113  * @class Roo.data.ScriptTagProxy
26114  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
26115  * other than the originating domain of the running page.<br><br>
26116  * <p>
26117  * <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
26118  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
26119  * <p>
26120  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
26121  * source code that is used as the source inside a &lt;script> tag.<br><br>
26122  * <p>
26123  * In order for the browser to process the returned data, the server must wrap the data object
26124  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
26125  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
26126  * depending on whether the callback name was passed:
26127  * <p>
26128  * <pre><code>
26129 boolean scriptTag = false;
26130 String cb = request.getParameter("callback");
26131 if (cb != null) {
26132     scriptTag = true;
26133     response.setContentType("text/javascript");
26134 } else {
26135     response.setContentType("application/x-json");
26136 }
26137 Writer out = response.getWriter();
26138 if (scriptTag) {
26139     out.write(cb + "(");
26140 }
26141 out.print(dataBlock.toJsonString());
26142 if (scriptTag) {
26143     out.write(");");
26144 }
26145 </pre></code>
26146  *
26147  * @constructor
26148  * @param {Object} config A configuration object.
26149  */
26150 Roo.data.ScriptTagProxy = function(config){
26151     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
26152     Roo.apply(this, config);
26153     this.head = document.getElementsByTagName("head")[0];
26154 };
26155
26156 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
26157
26158 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
26159     /**
26160      * @cfg {String} url The URL from which to request the data object.
26161      */
26162     /**
26163      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
26164      */
26165     timeout : 30000,
26166     /**
26167      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
26168      * the server the name of the callback function set up by the load call to process the returned data object.
26169      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
26170      * javascript output which calls this named function passing the data object as its only parameter.
26171      */
26172     callbackParam : "callback",
26173     /**
26174      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
26175      * name to the request.
26176      */
26177     nocache : true,
26178
26179     /**
26180      * Load data from the configured URL, read the data object into
26181      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
26182      * process that block using the passed callback.
26183      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26184      * for the request to the remote server.
26185      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26186      * object into a block of Roo.data.Records.
26187      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26188      * The function must be passed <ul>
26189      * <li>The Record block object</li>
26190      * <li>The "arg" argument from the load function</li>
26191      * <li>A boolean success indicator</li>
26192      * </ul>
26193      * @param {Object} scope The scope in which to call the callback
26194      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26195      */
26196     load : function(params, reader, callback, scope, arg){
26197         if(this.fireEvent("beforeload", this, params) !== false){
26198
26199             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
26200
26201             var url = this.url;
26202             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
26203             if(this.nocache){
26204                 url += "&_dc=" + (new Date().getTime());
26205             }
26206             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
26207             var trans = {
26208                 id : transId,
26209                 cb : "stcCallback"+transId,
26210                 scriptId : "stcScript"+transId,
26211                 params : params,
26212                 arg : arg,
26213                 url : url,
26214                 callback : callback,
26215                 scope : scope,
26216                 reader : reader
26217             };
26218             var conn = this;
26219
26220             window[trans.cb] = function(o){
26221                 conn.handleResponse(o, trans);
26222             };
26223
26224             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
26225
26226             if(this.autoAbort !== false){
26227                 this.abort();
26228             }
26229
26230             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
26231
26232             var script = document.createElement("script");
26233             script.setAttribute("src", url);
26234             script.setAttribute("type", "text/javascript");
26235             script.setAttribute("id", trans.scriptId);
26236             this.head.appendChild(script);
26237
26238             this.trans = trans;
26239         }else{
26240             callback.call(scope||this, null, arg, false);
26241         }
26242     },
26243
26244     // private
26245     isLoading : function(){
26246         return this.trans ? true : false;
26247     },
26248
26249     /**
26250      * Abort the current server request.
26251      */
26252     abort : function(){
26253         if(this.isLoading()){
26254             this.destroyTrans(this.trans);
26255         }
26256     },
26257
26258     // private
26259     destroyTrans : function(trans, isLoaded){
26260         this.head.removeChild(document.getElementById(trans.scriptId));
26261         clearTimeout(trans.timeoutId);
26262         if(isLoaded){
26263             window[trans.cb] = undefined;
26264             try{
26265                 delete window[trans.cb];
26266             }catch(e){}
26267         }else{
26268             // if hasn't been loaded, wait for load to remove it to prevent script error
26269             window[trans.cb] = function(){
26270                 window[trans.cb] = undefined;
26271                 try{
26272                     delete window[trans.cb];
26273                 }catch(e){}
26274             };
26275         }
26276     },
26277
26278     // private
26279     handleResponse : function(o, trans){
26280         this.trans = false;
26281         this.destroyTrans(trans, true);
26282         var result;
26283         try {
26284             result = trans.reader.readRecords(o);
26285         }catch(e){
26286             this.fireEvent("loadexception", this, o, trans.arg, e);
26287             trans.callback.call(trans.scope||window, null, trans.arg, false);
26288             return;
26289         }
26290         this.fireEvent("load", this, o, trans.arg);
26291         trans.callback.call(trans.scope||window, result, trans.arg, true);
26292     },
26293
26294     // private
26295     handleFailure : function(trans){
26296         this.trans = false;
26297         this.destroyTrans(trans, false);
26298         this.fireEvent("loadexception", this, null, trans.arg);
26299         trans.callback.call(trans.scope||window, null, trans.arg, false);
26300     }
26301 });/*
26302  * Based on:
26303  * Ext JS Library 1.1.1
26304  * Copyright(c) 2006-2007, Ext JS, LLC.
26305  *
26306  * Originally Released Under LGPL - original licence link has changed is not relivant.
26307  *
26308  * Fork - LGPL
26309  * <script type="text/javascript">
26310  */
26311
26312 /**
26313  * @class Roo.data.JsonReader
26314  * @extends Roo.data.DataReader
26315  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
26316  * based on mappings in a provided Roo.data.Record constructor.
26317  * 
26318  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
26319  * in the reply previously. 
26320  * 
26321  * <p>
26322  * Example code:
26323  * <pre><code>
26324 var RecordDef = Roo.data.Record.create([
26325     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26326     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26327 ]);
26328 var myReader = new Roo.data.JsonReader({
26329     totalProperty: "results",    // The property which contains the total dataset size (optional)
26330     root: "rows",                // The property which contains an Array of row objects
26331     id: "id"                     // The property within each row object that provides an ID for the record (optional)
26332 }, RecordDef);
26333 </code></pre>
26334  * <p>
26335  * This would consume a JSON file like this:
26336  * <pre><code>
26337 { 'results': 2, 'rows': [
26338     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
26339     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
26340 }
26341 </code></pre>
26342  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
26343  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26344  * paged from the remote server.
26345  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
26346  * @cfg {String} root name of the property which contains the Array of row objects.
26347  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26348  * @cfg {Array} fields Array of field definition objects
26349  * @constructor
26350  * Create a new JsonReader
26351  * @param {Object} meta Metadata configuration options
26352  * @param {Object} recordType Either an Array of field definition objects,
26353  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
26354  */
26355 Roo.data.JsonReader = function(meta, recordType){
26356     
26357     meta = meta || {};
26358     // set some defaults:
26359     Roo.applyIf(meta, {
26360         totalProperty: 'total',
26361         successProperty : 'success',
26362         root : 'data',
26363         id : 'id'
26364     });
26365     
26366     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26367 };
26368 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
26369     
26370     readerType : 'Json',
26371     
26372     /**
26373      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
26374      * Used by Store query builder to append _requestMeta to params.
26375      * 
26376      */
26377     metaFromRemote : false,
26378     /**
26379      * This method is only used by a DataProxy which has retrieved data from a remote server.
26380      * @param {Object} response The XHR object which contains the JSON data in its responseText.
26381      * @return {Object} data A data block which is used by an Roo.data.Store object as
26382      * a cache of Roo.data.Records.
26383      */
26384     read : function(response){
26385         var json = response.responseText;
26386        
26387         var o = /* eval:var:o */ eval("("+json+")");
26388         if(!o) {
26389             throw {message: "JsonReader.read: Json object not found"};
26390         }
26391         
26392         if(o.metaData){
26393             
26394             delete this.ef;
26395             this.metaFromRemote = true;
26396             this.meta = o.metaData;
26397             this.recordType = Roo.data.Record.create(o.metaData.fields);
26398             this.onMetaChange(this.meta, this.recordType, o);
26399         }
26400         return this.readRecords(o);
26401     },
26402
26403     // private function a store will implement
26404     onMetaChange : function(meta, recordType, o){
26405
26406     },
26407
26408     /**
26409          * @ignore
26410          */
26411     simpleAccess: function(obj, subsc) {
26412         return obj[subsc];
26413     },
26414
26415         /**
26416          * @ignore
26417          */
26418     getJsonAccessor: function(){
26419         var re = /[\[\.]/;
26420         return function(expr) {
26421             try {
26422                 return(re.test(expr))
26423                     ? new Function("obj", "return obj." + expr)
26424                     : function(obj){
26425                         return obj[expr];
26426                     };
26427             } catch(e){}
26428             return Roo.emptyFn;
26429         };
26430     }(),
26431
26432     /**
26433      * Create a data block containing Roo.data.Records from an XML document.
26434      * @param {Object} o An object which contains an Array of row objects in the property specified
26435      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
26436      * which contains the total size of the dataset.
26437      * @return {Object} data A data block which is used by an Roo.data.Store object as
26438      * a cache of Roo.data.Records.
26439      */
26440     readRecords : function(o){
26441         /**
26442          * After any data loads, the raw JSON data is available for further custom processing.
26443          * @type Object
26444          */
26445         this.o = o;
26446         var s = this.meta, Record = this.recordType,
26447             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
26448
26449 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
26450         if (!this.ef) {
26451             if(s.totalProperty) {
26452                     this.getTotal = this.getJsonAccessor(s.totalProperty);
26453                 }
26454                 if(s.successProperty) {
26455                     this.getSuccess = this.getJsonAccessor(s.successProperty);
26456                 }
26457                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
26458                 if (s.id) {
26459                         var g = this.getJsonAccessor(s.id);
26460                         this.getId = function(rec) {
26461                                 var r = g(rec);  
26462                                 return (r === undefined || r === "") ? null : r;
26463                         };
26464                 } else {
26465                         this.getId = function(){return null;};
26466                 }
26467             this.ef = [];
26468             for(var jj = 0; jj < fl; jj++){
26469                 f = fi[jj];
26470                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
26471                 this.ef[jj] = this.getJsonAccessor(map);
26472             }
26473         }
26474
26475         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
26476         if(s.totalProperty){
26477             var vt = parseInt(this.getTotal(o), 10);
26478             if(!isNaN(vt)){
26479                 totalRecords = vt;
26480             }
26481         }
26482         if(s.successProperty){
26483             var vs = this.getSuccess(o);
26484             if(vs === false || vs === 'false'){
26485                 success = false;
26486             }
26487         }
26488         var records = [];
26489         for(var i = 0; i < c; i++){
26490             var n = root[i];
26491             var values = {};
26492             var id = this.getId(n);
26493             for(var j = 0; j < fl; j++){
26494                 f = fi[j];
26495                                 var v = this.ef[j](n);
26496                                 if (!f.convert) {
26497                                         Roo.log('missing convert for ' + f.name);
26498                                         Roo.log(f);
26499                                         continue;
26500                                 }
26501                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
26502             }
26503                         if (!Record) {
26504                                 return {
26505                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
26506                                         success : false,
26507                                         records : [],
26508                                         totalRecords : 0
26509                                 };
26510                         }
26511             var record = new Record(values, id);
26512             record.json = n;
26513             records[i] = record;
26514         }
26515         return {
26516             raw : o,
26517             success : success,
26518             records : records,
26519             totalRecords : totalRecords
26520         };
26521     },
26522     // used when loading children.. @see loadDataFromChildren
26523     toLoadData: function(rec)
26524     {
26525         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26526         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26527         return { data : data, total : data.length };
26528         
26529     }
26530 });/*
26531  * Based on:
26532  * Ext JS Library 1.1.1
26533  * Copyright(c) 2006-2007, Ext JS, LLC.
26534  *
26535  * Originally Released Under LGPL - original licence link has changed is not relivant.
26536  *
26537  * Fork - LGPL
26538  * <script type="text/javascript">
26539  */
26540
26541 /**
26542  * @class Roo.data.XmlReader
26543  * @extends Roo.data.DataReader
26544  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
26545  * based on mappings in a provided Roo.data.Record constructor.<br><br>
26546  * <p>
26547  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
26548  * header in the HTTP response must be set to "text/xml".</em>
26549  * <p>
26550  * Example code:
26551  * <pre><code>
26552 var RecordDef = Roo.data.Record.create([
26553    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26554    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26555 ]);
26556 var myReader = new Roo.data.XmlReader({
26557    totalRecords: "results", // The element which contains the total dataset size (optional)
26558    record: "row",           // The repeated element which contains row information
26559    id: "id"                 // The element within the row that provides an ID for the record (optional)
26560 }, RecordDef);
26561 </code></pre>
26562  * <p>
26563  * This would consume an XML file like this:
26564  * <pre><code>
26565 &lt;?xml?>
26566 &lt;dataset>
26567  &lt;results>2&lt;/results>
26568  &lt;row>
26569    &lt;id>1&lt;/id>
26570    &lt;name>Bill&lt;/name>
26571    &lt;occupation>Gardener&lt;/occupation>
26572  &lt;/row>
26573  &lt;row>
26574    &lt;id>2&lt;/id>
26575    &lt;name>Ben&lt;/name>
26576    &lt;occupation>Horticulturalist&lt;/occupation>
26577  &lt;/row>
26578 &lt;/dataset>
26579 </code></pre>
26580  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
26581  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26582  * paged from the remote server.
26583  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
26584  * @cfg {String} success The DomQuery path to the success attribute used by forms.
26585  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
26586  * a record identifier value.
26587  * @constructor
26588  * Create a new XmlReader
26589  * @param {Object} meta Metadata configuration options
26590  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
26591  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
26592  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
26593  */
26594 Roo.data.XmlReader = function(meta, recordType){
26595     meta = meta || {};
26596     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26597 };
26598 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
26599     
26600     readerType : 'Xml',
26601     
26602     /**
26603      * This method is only used by a DataProxy which has retrieved data from a remote server.
26604          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
26605          * to contain a method called 'responseXML' that returns an XML document object.
26606      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26607      * a cache of Roo.data.Records.
26608      */
26609     read : function(response){
26610         var doc = response.responseXML;
26611         if(!doc) {
26612             throw {message: "XmlReader.read: XML Document not available"};
26613         }
26614         return this.readRecords(doc);
26615     },
26616
26617     /**
26618      * Create a data block containing Roo.data.Records from an XML document.
26619          * @param {Object} doc A parsed XML document.
26620      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26621      * a cache of Roo.data.Records.
26622      */
26623     readRecords : function(doc){
26624         /**
26625          * After any data loads/reads, the raw XML Document is available for further custom processing.
26626          * @type XMLDocument
26627          */
26628         this.xmlData = doc;
26629         var root = doc.documentElement || doc;
26630         var q = Roo.DomQuery;
26631         var recordType = this.recordType, fields = recordType.prototype.fields;
26632         var sid = this.meta.id;
26633         var totalRecords = 0, success = true;
26634         if(this.meta.totalRecords){
26635             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
26636         }
26637         
26638         if(this.meta.success){
26639             var sv = q.selectValue(this.meta.success, root, true);
26640             success = sv !== false && sv !== 'false';
26641         }
26642         var records = [];
26643         var ns = q.select(this.meta.record, root);
26644         for(var i = 0, len = ns.length; i < len; i++) {
26645                 var n = ns[i];
26646                 var values = {};
26647                 var id = sid ? q.selectValue(sid, n) : undefined;
26648                 for(var j = 0, jlen = fields.length; j < jlen; j++){
26649                     var f = fields.items[j];
26650                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
26651                     v = f.convert(v);
26652                     values[f.name] = v;
26653                 }
26654                 var record = new recordType(values, id);
26655                 record.node = n;
26656                 records[records.length] = record;
26657             }
26658
26659             return {
26660                 success : success,
26661                 records : records,
26662                 totalRecords : totalRecords || records.length
26663             };
26664     }
26665 });/*
26666  * Based on:
26667  * Ext JS Library 1.1.1
26668  * Copyright(c) 2006-2007, Ext JS, LLC.
26669  *
26670  * Originally Released Under LGPL - original licence link has changed is not relivant.
26671  *
26672  * Fork - LGPL
26673  * <script type="text/javascript">
26674  */
26675
26676 /**
26677  * @class Roo.data.ArrayReader
26678  * @extends Roo.data.DataReader
26679  * Data reader class to create an Array of Roo.data.Record objects from an Array.
26680  * Each element of that Array represents a row of data fields. The
26681  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
26682  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
26683  * <p>
26684  * Example code:.
26685  * <pre><code>
26686 var RecordDef = Roo.data.Record.create([
26687     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
26688     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
26689 ]);
26690 var myReader = new Roo.data.ArrayReader({
26691     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
26692 }, RecordDef);
26693 </code></pre>
26694  * <p>
26695  * This would consume an Array like this:
26696  * <pre><code>
26697 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
26698   </code></pre>
26699  
26700  * @constructor
26701  * Create a new JsonReader
26702  * @param {Object} meta Metadata configuration options.
26703  * @param {Object|Array} recordType Either an Array of field definition objects
26704  * 
26705  * @cfg {Array} fields Array of field definition objects
26706  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26707  * as specified to {@link Roo.data.Record#create},
26708  * or an {@link Roo.data.Record} object
26709  *
26710  * 
26711  * created using {@link Roo.data.Record#create}.
26712  */
26713 Roo.data.ArrayReader = function(meta, recordType)
26714 {    
26715     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26716 };
26717
26718 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
26719     
26720       /**
26721      * Create a data block containing Roo.data.Records from an XML document.
26722      * @param {Object} o An Array of row objects which represents the dataset.
26723      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
26724      * a cache of Roo.data.Records.
26725      */
26726     readRecords : function(o)
26727     {
26728         var sid = this.meta ? this.meta.id : null;
26729         var recordType = this.recordType, fields = recordType.prototype.fields;
26730         var records = [];
26731         var root = o;
26732         for(var i = 0; i < root.length; i++){
26733             var n = root[i];
26734             var values = {};
26735             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
26736             for(var j = 0, jlen = fields.length; j < jlen; j++){
26737                 var f = fields.items[j];
26738                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
26739                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
26740                 v = f.convert(v);
26741                 values[f.name] = v;
26742             }
26743             var record = new recordType(values, id);
26744             record.json = n;
26745             records[records.length] = record;
26746         }
26747         return {
26748             records : records,
26749             totalRecords : records.length
26750         };
26751     },
26752     // used when loading children.. @see loadDataFromChildren
26753     toLoadData: function(rec)
26754     {
26755         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26756         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26757         
26758     }
26759     
26760     
26761 });/*
26762  * Based on:
26763  * Ext JS Library 1.1.1
26764  * Copyright(c) 2006-2007, Ext JS, LLC.
26765  *
26766  * Originally Released Under LGPL - original licence link has changed is not relivant.
26767  *
26768  * Fork - LGPL
26769  * <script type="text/javascript">
26770  */
26771
26772
26773 /**
26774  * @class Roo.data.Tree
26775  * @extends Roo.util.Observable
26776  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
26777  * in the tree have most standard DOM functionality.
26778  * @constructor
26779  * @param {Node} root (optional) The root node
26780  */
26781 Roo.data.Tree = function(root){
26782    this.nodeHash = {};
26783    /**
26784     * The root node for this tree
26785     * @type Node
26786     */
26787    this.root = null;
26788    if(root){
26789        this.setRootNode(root);
26790    }
26791    this.addEvents({
26792        /**
26793         * @event append
26794         * Fires when a new child node is appended to a node in this tree.
26795         * @param {Tree} tree The owner tree
26796         * @param {Node} parent The parent node
26797         * @param {Node} node The newly appended node
26798         * @param {Number} index The index of the newly appended node
26799         */
26800        "append" : true,
26801        /**
26802         * @event remove
26803         * Fires when a child node is removed from a node in this tree.
26804         * @param {Tree} tree The owner tree
26805         * @param {Node} parent The parent node
26806         * @param {Node} node The child node removed
26807         */
26808        "remove" : true,
26809        /**
26810         * @event move
26811         * Fires when a node is moved to a new location in the tree
26812         * @param {Tree} tree The owner tree
26813         * @param {Node} node The node moved
26814         * @param {Node} oldParent The old parent of this node
26815         * @param {Node} newParent The new parent of this node
26816         * @param {Number} index The index it was moved to
26817         */
26818        "move" : true,
26819        /**
26820         * @event insert
26821         * Fires when a new child node is inserted in a node in this tree.
26822         * @param {Tree} tree The owner tree
26823         * @param {Node} parent The parent node
26824         * @param {Node} node The child node inserted
26825         * @param {Node} refNode The child node the node was inserted before
26826         */
26827        "insert" : true,
26828        /**
26829         * @event beforeappend
26830         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
26831         * @param {Tree} tree The owner tree
26832         * @param {Node} parent The parent node
26833         * @param {Node} node The child node to be appended
26834         */
26835        "beforeappend" : true,
26836        /**
26837         * @event beforeremove
26838         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
26839         * @param {Tree} tree The owner tree
26840         * @param {Node} parent The parent node
26841         * @param {Node} node The child node to be removed
26842         */
26843        "beforeremove" : true,
26844        /**
26845         * @event beforemove
26846         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
26847         * @param {Tree} tree The owner tree
26848         * @param {Node} node The node being moved
26849         * @param {Node} oldParent The parent of the node
26850         * @param {Node} newParent The new parent the node is moving to
26851         * @param {Number} index The index it is being moved to
26852         */
26853        "beforemove" : true,
26854        /**
26855         * @event beforeinsert
26856         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
26857         * @param {Tree} tree The owner tree
26858         * @param {Node} parent The parent node
26859         * @param {Node} node The child node to be inserted
26860         * @param {Node} refNode The child node the node is being inserted before
26861         */
26862        "beforeinsert" : true
26863    });
26864
26865     Roo.data.Tree.superclass.constructor.call(this);
26866 };
26867
26868 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
26869     pathSeparator: "/",
26870
26871     proxyNodeEvent : function(){
26872         return this.fireEvent.apply(this, arguments);
26873     },
26874
26875     /**
26876      * Returns the root node for this tree.
26877      * @return {Node}
26878      */
26879     getRootNode : function(){
26880         return this.root;
26881     },
26882
26883     /**
26884      * Sets the root node for this tree.
26885      * @param {Node} node
26886      * @return {Node}
26887      */
26888     setRootNode : function(node){
26889         this.root = node;
26890         node.ownerTree = this;
26891         node.isRoot = true;
26892         this.registerNode(node);
26893         return node;
26894     },
26895
26896     /**
26897      * Gets a node in this tree by its id.
26898      * @param {String} id
26899      * @return {Node}
26900      */
26901     getNodeById : function(id){
26902         return this.nodeHash[id];
26903     },
26904
26905     registerNode : function(node){
26906         this.nodeHash[node.id] = node;
26907     },
26908
26909     unregisterNode : function(node){
26910         delete this.nodeHash[node.id];
26911     },
26912
26913     toString : function(){
26914         return "[Tree"+(this.id?" "+this.id:"")+"]";
26915     }
26916 });
26917
26918 /**
26919  * @class Roo.data.Node
26920  * @extends Roo.util.Observable
26921  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
26922  * @cfg {String} id The id for this node. If one is not specified, one is generated.
26923  * @constructor
26924  * @param {Object} attributes The attributes/config for the node
26925  */
26926 Roo.data.Node = function(attributes){
26927     /**
26928      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
26929      * @type {Object}
26930      */
26931     this.attributes = attributes || {};
26932     this.leaf = this.attributes.leaf;
26933     /**
26934      * The node id. @type String
26935      */
26936     this.id = this.attributes.id;
26937     if(!this.id){
26938         this.id = Roo.id(null, "ynode-");
26939         this.attributes.id = this.id;
26940     }
26941      
26942     
26943     /**
26944      * All child nodes of this node. @type Array
26945      */
26946     this.childNodes = [];
26947     if(!this.childNodes.indexOf){ // indexOf is a must
26948         this.childNodes.indexOf = function(o){
26949             for(var i = 0, len = this.length; i < len; i++){
26950                 if(this[i] == o) {
26951                     return i;
26952                 }
26953             }
26954             return -1;
26955         };
26956     }
26957     /**
26958      * The parent node for this node. @type Node
26959      */
26960     this.parentNode = null;
26961     /**
26962      * The first direct child node of this node, or null if this node has no child nodes. @type Node
26963      */
26964     this.firstChild = null;
26965     /**
26966      * The last direct child node of this node, or null if this node has no child nodes. @type Node
26967      */
26968     this.lastChild = null;
26969     /**
26970      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
26971      */
26972     this.previousSibling = null;
26973     /**
26974      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
26975      */
26976     this.nextSibling = null;
26977
26978     this.addEvents({
26979        /**
26980         * @event append
26981         * Fires when a new child node is appended
26982         * @param {Tree} tree The owner tree
26983         * @param {Node} this This node
26984         * @param {Node} node The newly appended node
26985         * @param {Number} index The index of the newly appended node
26986         */
26987        "append" : true,
26988        /**
26989         * @event remove
26990         * Fires when a child node is removed
26991         * @param {Tree} tree The owner tree
26992         * @param {Node} this This node
26993         * @param {Node} node The removed node
26994         */
26995        "remove" : true,
26996        /**
26997         * @event move
26998         * Fires when this node is moved to a new location in the tree
26999         * @param {Tree} tree The owner tree
27000         * @param {Node} this This node
27001         * @param {Node} oldParent The old parent of this node
27002         * @param {Node} newParent The new parent of this node
27003         * @param {Number} index The index it was moved to
27004         */
27005        "move" : true,
27006        /**
27007         * @event insert
27008         * Fires when a new child node is inserted.
27009         * @param {Tree} tree The owner tree
27010         * @param {Node} this This node
27011         * @param {Node} node The child node inserted
27012         * @param {Node} refNode The child node the node was inserted before
27013         */
27014        "insert" : true,
27015        /**
27016         * @event beforeappend
27017         * Fires before a new child is appended, return false to cancel the append.
27018         * @param {Tree} tree The owner tree
27019         * @param {Node} this This node
27020         * @param {Node} node The child node to be appended
27021         */
27022        "beforeappend" : true,
27023        /**
27024         * @event beforeremove
27025         * Fires before a child is removed, return false to cancel the remove.
27026         * @param {Tree} tree The owner tree
27027         * @param {Node} this This node
27028         * @param {Node} node The child node to be removed
27029         */
27030        "beforeremove" : true,
27031        /**
27032         * @event beforemove
27033         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
27034         * @param {Tree} tree The owner tree
27035         * @param {Node} this This node
27036         * @param {Node} oldParent The parent of this node
27037         * @param {Node} newParent The new parent this node is moving to
27038         * @param {Number} index The index it is being moved to
27039         */
27040        "beforemove" : true,
27041        /**
27042         * @event beforeinsert
27043         * Fires before a new child is inserted, return false to cancel the insert.
27044         * @param {Tree} tree The owner tree
27045         * @param {Node} this This node
27046         * @param {Node} node The child node to be inserted
27047         * @param {Node} refNode The child node the node is being inserted before
27048         */
27049        "beforeinsert" : true
27050    });
27051     this.listeners = this.attributes.listeners;
27052     Roo.data.Node.superclass.constructor.call(this);
27053 };
27054
27055 Roo.extend(Roo.data.Node, Roo.util.Observable, {
27056     fireEvent : function(evtName){
27057         // first do standard event for this node
27058         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
27059             return false;
27060         }
27061         // then bubble it up to the tree if the event wasn't cancelled
27062         var ot = this.getOwnerTree();
27063         if(ot){
27064             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
27065                 return false;
27066             }
27067         }
27068         return true;
27069     },
27070
27071     /**
27072      * Returns true if this node is a leaf
27073      * @return {Boolean}
27074      */
27075     isLeaf : function(){
27076         return this.leaf === true;
27077     },
27078
27079     // private
27080     setFirstChild : function(node){
27081         this.firstChild = node;
27082     },
27083
27084     //private
27085     setLastChild : function(node){
27086         this.lastChild = node;
27087     },
27088
27089
27090     /**
27091      * Returns true if this node is the last child of its parent
27092      * @return {Boolean}
27093      */
27094     isLast : function(){
27095        return (!this.parentNode ? true : this.parentNode.lastChild == this);
27096     },
27097
27098     /**
27099      * Returns true if this node is the first child of its parent
27100      * @return {Boolean}
27101      */
27102     isFirst : function(){
27103        return (!this.parentNode ? true : this.parentNode.firstChild == this);
27104     },
27105
27106     hasChildNodes : function(){
27107         return !this.isLeaf() && this.childNodes.length > 0;
27108     },
27109
27110     /**
27111      * Insert node(s) as the last child node of this node.
27112      * @param {Node/Array} node The node or Array of nodes to append
27113      * @return {Node} The appended node if single append, or null if an array was passed
27114      */
27115     appendChild : function(node){
27116         var multi = false;
27117         if(node instanceof Array){
27118             multi = node;
27119         }else if(arguments.length > 1){
27120             multi = arguments;
27121         }
27122         
27123         // if passed an array or multiple args do them one by one
27124         if(multi){
27125             for(var i = 0, len = multi.length; i < len; i++) {
27126                 this.appendChild(multi[i]);
27127             }
27128         }else{
27129             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
27130                 return false;
27131             }
27132             var index = this.childNodes.length;
27133             var oldParent = node.parentNode;
27134             // it's a move, make sure we move it cleanly
27135             if(oldParent){
27136                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
27137                     return false;
27138                 }
27139                 oldParent.removeChild(node);
27140             }
27141             
27142             index = this.childNodes.length;
27143             if(index == 0){
27144                 this.setFirstChild(node);
27145             }
27146             this.childNodes.push(node);
27147             node.parentNode = this;
27148             var ps = this.childNodes[index-1];
27149             if(ps){
27150                 node.previousSibling = ps;
27151                 ps.nextSibling = node;
27152             }else{
27153                 node.previousSibling = null;
27154             }
27155             node.nextSibling = null;
27156             this.setLastChild(node);
27157             node.setOwnerTree(this.getOwnerTree());
27158             this.fireEvent("append", this.ownerTree, this, node, index);
27159             if(this.ownerTree) {
27160                 this.ownerTree.fireEvent("appendnode", this, node, index);
27161             }
27162             if(oldParent){
27163                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
27164             }
27165             return node;
27166         }
27167     },
27168
27169     /**
27170      * Removes a child node from this node.
27171      * @param {Node} node The node to remove
27172      * @return {Node} The removed node
27173      */
27174     removeChild : function(node){
27175         var index = this.childNodes.indexOf(node);
27176         if(index == -1){
27177             return false;
27178         }
27179         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
27180             return false;
27181         }
27182
27183         // remove it from childNodes collection
27184         this.childNodes.splice(index, 1);
27185
27186         // update siblings
27187         if(node.previousSibling){
27188             node.previousSibling.nextSibling = node.nextSibling;
27189         }
27190         if(node.nextSibling){
27191             node.nextSibling.previousSibling = node.previousSibling;
27192         }
27193
27194         // update child refs
27195         if(this.firstChild == node){
27196             this.setFirstChild(node.nextSibling);
27197         }
27198         if(this.lastChild == node){
27199             this.setLastChild(node.previousSibling);
27200         }
27201
27202         node.setOwnerTree(null);
27203         // clear any references from the node
27204         node.parentNode = null;
27205         node.previousSibling = null;
27206         node.nextSibling = null;
27207         this.fireEvent("remove", this.ownerTree, this, node);
27208         return node;
27209     },
27210
27211     /**
27212      * Inserts the first node before the second node in this nodes childNodes collection.
27213      * @param {Node} node The node to insert
27214      * @param {Node} refNode The node to insert before (if null the node is appended)
27215      * @return {Node} The inserted node
27216      */
27217     insertBefore : function(node, refNode){
27218         if(!refNode){ // like standard Dom, refNode can be null for append
27219             return this.appendChild(node);
27220         }
27221         // nothing to do
27222         if(node == refNode){
27223             return false;
27224         }
27225
27226         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
27227             return false;
27228         }
27229         var index = this.childNodes.indexOf(refNode);
27230         var oldParent = node.parentNode;
27231         var refIndex = index;
27232
27233         // when moving internally, indexes will change after remove
27234         if(oldParent == this && this.childNodes.indexOf(node) < index){
27235             refIndex--;
27236         }
27237
27238         // it's a move, make sure we move it cleanly
27239         if(oldParent){
27240             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
27241                 return false;
27242             }
27243             oldParent.removeChild(node);
27244         }
27245         if(refIndex == 0){
27246             this.setFirstChild(node);
27247         }
27248         this.childNodes.splice(refIndex, 0, node);
27249         node.parentNode = this;
27250         var ps = this.childNodes[refIndex-1];
27251         if(ps){
27252             node.previousSibling = ps;
27253             ps.nextSibling = node;
27254         }else{
27255             node.previousSibling = null;
27256         }
27257         node.nextSibling = refNode;
27258         refNode.previousSibling = node;
27259         node.setOwnerTree(this.getOwnerTree());
27260         this.fireEvent("insert", this.ownerTree, this, node, refNode);
27261         if(oldParent){
27262             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
27263         }
27264         return node;
27265     },
27266
27267     /**
27268      * Returns the child node at the specified index.
27269      * @param {Number} index
27270      * @return {Node}
27271      */
27272     item : function(index){
27273         return this.childNodes[index];
27274     },
27275
27276     /**
27277      * Replaces one child node in this node with another.
27278      * @param {Node} newChild The replacement node
27279      * @param {Node} oldChild The node to replace
27280      * @return {Node} The replaced node
27281      */
27282     replaceChild : function(newChild, oldChild){
27283         this.insertBefore(newChild, oldChild);
27284         this.removeChild(oldChild);
27285         return oldChild;
27286     },
27287
27288     /**
27289      * Returns the index of a child node
27290      * @param {Node} node
27291      * @return {Number} The index of the node or -1 if it was not found
27292      */
27293     indexOf : function(child){
27294         return this.childNodes.indexOf(child);
27295     },
27296
27297     /**
27298      * Returns the tree this node is in.
27299      * @return {Tree}
27300      */
27301     getOwnerTree : function(){
27302         // if it doesn't have one, look for one
27303         if(!this.ownerTree){
27304             var p = this;
27305             while(p){
27306                 if(p.ownerTree){
27307                     this.ownerTree = p.ownerTree;
27308                     break;
27309                 }
27310                 p = p.parentNode;
27311             }
27312         }
27313         return this.ownerTree;
27314     },
27315
27316     /**
27317      * Returns depth of this node (the root node has a depth of 0)
27318      * @return {Number}
27319      */
27320     getDepth : function(){
27321         var depth = 0;
27322         var p = this;
27323         while(p.parentNode){
27324             ++depth;
27325             p = p.parentNode;
27326         }
27327         return depth;
27328     },
27329
27330     // private
27331     setOwnerTree : function(tree){
27332         // if it's move, we need to update everyone
27333         if(tree != this.ownerTree){
27334             if(this.ownerTree){
27335                 this.ownerTree.unregisterNode(this);
27336             }
27337             this.ownerTree = tree;
27338             var cs = this.childNodes;
27339             for(var i = 0, len = cs.length; i < len; i++) {
27340                 cs[i].setOwnerTree(tree);
27341             }
27342             if(tree){
27343                 tree.registerNode(this);
27344             }
27345         }
27346     },
27347
27348     /**
27349      * Returns the path for this node. The path can be used to expand or select this node programmatically.
27350      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
27351      * @return {String} The path
27352      */
27353     getPath : function(attr){
27354         attr = attr || "id";
27355         var p = this.parentNode;
27356         var b = [this.attributes[attr]];
27357         while(p){
27358             b.unshift(p.attributes[attr]);
27359             p = p.parentNode;
27360         }
27361         var sep = this.getOwnerTree().pathSeparator;
27362         return sep + b.join(sep);
27363     },
27364
27365     /**
27366      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27367      * function call will be the scope provided or the current node. The arguments to the function
27368      * will be the args provided or the current node. If the function returns false at any point,
27369      * the bubble is stopped.
27370      * @param {Function} fn The function to call
27371      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27372      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27373      */
27374     bubble : function(fn, scope, args){
27375         var p = this;
27376         while(p){
27377             if(fn.call(scope || p, args || p) === false){
27378                 break;
27379             }
27380             p = p.parentNode;
27381         }
27382     },
27383
27384     /**
27385      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27386      * function call will be the scope provided or the current node. The arguments to the function
27387      * will be the args provided or the current node. If the function returns false at any point,
27388      * the cascade is stopped on that branch.
27389      * @param {Function} fn The function to call
27390      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27391      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27392      */
27393     cascade : function(fn, scope, args){
27394         if(fn.call(scope || this, args || this) !== false){
27395             var cs = this.childNodes;
27396             for(var i = 0, len = cs.length; i < len; i++) {
27397                 cs[i].cascade(fn, scope, args);
27398             }
27399         }
27400     },
27401
27402     /**
27403      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
27404      * function call will be the scope provided or the current node. The arguments to the function
27405      * will be the args provided or the current node. If the function returns false at any point,
27406      * the iteration stops.
27407      * @param {Function} fn The function to call
27408      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27409      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27410      */
27411     eachChild : function(fn, scope, args){
27412         var cs = this.childNodes;
27413         for(var i = 0, len = cs.length; i < len; i++) {
27414                 if(fn.call(scope || this, args || cs[i]) === false){
27415                     break;
27416                 }
27417         }
27418     },
27419
27420     /**
27421      * Finds the first child that has the attribute with the specified value.
27422      * @param {String} attribute The attribute name
27423      * @param {Mixed} value The value to search for
27424      * @return {Node} The found child or null if none was found
27425      */
27426     findChild : function(attribute, value){
27427         var cs = this.childNodes;
27428         for(var i = 0, len = cs.length; i < len; i++) {
27429                 if(cs[i].attributes[attribute] == value){
27430                     return cs[i];
27431                 }
27432         }
27433         return null;
27434     },
27435
27436     /**
27437      * Finds the first child by a custom function. The child matches if the function passed
27438      * returns true.
27439      * @param {Function} fn
27440      * @param {Object} scope (optional)
27441      * @return {Node} The found child or null if none was found
27442      */
27443     findChildBy : function(fn, scope){
27444         var cs = this.childNodes;
27445         for(var i = 0, len = cs.length; i < len; i++) {
27446                 if(fn.call(scope||cs[i], cs[i]) === true){
27447                     return cs[i];
27448                 }
27449         }
27450         return null;
27451     },
27452
27453     /**
27454      * Sorts this nodes children using the supplied sort function
27455      * @param {Function} fn
27456      * @param {Object} scope (optional)
27457      */
27458     sort : function(fn, scope){
27459         var cs = this.childNodes;
27460         var len = cs.length;
27461         if(len > 0){
27462             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
27463             cs.sort(sortFn);
27464             for(var i = 0; i < len; i++){
27465                 var n = cs[i];
27466                 n.previousSibling = cs[i-1];
27467                 n.nextSibling = cs[i+1];
27468                 if(i == 0){
27469                     this.setFirstChild(n);
27470                 }
27471                 if(i == len-1){
27472                     this.setLastChild(n);
27473                 }
27474             }
27475         }
27476     },
27477
27478     /**
27479      * Returns true if this node is an ancestor (at any point) of the passed node.
27480      * @param {Node} node
27481      * @return {Boolean}
27482      */
27483     contains : function(node){
27484         return node.isAncestor(this);
27485     },
27486
27487     /**
27488      * Returns true if the passed node is an ancestor (at any point) of this node.
27489      * @param {Node} node
27490      * @return {Boolean}
27491      */
27492     isAncestor : function(node){
27493         var p = this.parentNode;
27494         while(p){
27495             if(p == node){
27496                 return true;
27497             }
27498             p = p.parentNode;
27499         }
27500         return false;
27501     },
27502
27503     toString : function(){
27504         return "[Node"+(this.id?" "+this.id:"")+"]";
27505     }
27506 });/*
27507  * Based on:
27508  * Ext JS Library 1.1.1
27509  * Copyright(c) 2006-2007, Ext JS, LLC.
27510  *
27511  * Originally Released Under LGPL - original licence link has changed is not relivant.
27512  *
27513  * Fork - LGPL
27514  * <script type="text/javascript">
27515  */
27516
27517
27518 /**
27519  * @class Roo.Shadow
27520  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
27521  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
27522  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
27523  * @constructor
27524  * Create a new Shadow
27525  * @param {Object} config The config object
27526  */
27527 Roo.Shadow = function(config){
27528     Roo.apply(this, config);
27529     if(typeof this.mode != "string"){
27530         this.mode = this.defaultMode;
27531     }
27532     var o = this.offset, a = {h: 0};
27533     var rad = Math.floor(this.offset/2);
27534     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
27535         case "drop":
27536             a.w = 0;
27537             a.l = a.t = o;
27538             a.t -= 1;
27539             if(Roo.isIE){
27540                 a.l -= this.offset + rad;
27541                 a.t -= this.offset + rad;
27542                 a.w -= rad;
27543                 a.h -= rad;
27544                 a.t += 1;
27545             }
27546         break;
27547         case "sides":
27548             a.w = (o*2);
27549             a.l = -o;
27550             a.t = o-1;
27551             if(Roo.isIE){
27552                 a.l -= (this.offset - rad);
27553                 a.t -= this.offset + rad;
27554                 a.l += 1;
27555                 a.w -= (this.offset - rad)*2;
27556                 a.w -= rad + 1;
27557                 a.h -= 1;
27558             }
27559         break;
27560         case "frame":
27561             a.w = a.h = (o*2);
27562             a.l = a.t = -o;
27563             a.t += 1;
27564             a.h -= 2;
27565             if(Roo.isIE){
27566                 a.l -= (this.offset - rad);
27567                 a.t -= (this.offset - rad);
27568                 a.l += 1;
27569                 a.w -= (this.offset + rad + 1);
27570                 a.h -= (this.offset + rad);
27571                 a.h += 1;
27572             }
27573         break;
27574     };
27575
27576     this.adjusts = a;
27577 };
27578
27579 Roo.Shadow.prototype = {
27580     /**
27581      * @cfg {String} mode
27582      * The shadow display mode.  Supports the following options:<br />
27583      * sides: Shadow displays on both sides and bottom only<br />
27584      * frame: Shadow displays equally on all four sides<br />
27585      * drop: Traditional bottom-right drop shadow (default)
27586      */
27587     mode: false,
27588     /**
27589      * @cfg {String} offset
27590      * The number of pixels to offset the shadow from the element (defaults to 4)
27591      */
27592     offset: 4,
27593
27594     // private
27595     defaultMode: "drop",
27596
27597     /**
27598      * Displays the shadow under the target element
27599      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
27600      */
27601     show : function(target){
27602         target = Roo.get(target);
27603         if(!this.el){
27604             this.el = Roo.Shadow.Pool.pull();
27605             if(this.el.dom.nextSibling != target.dom){
27606                 this.el.insertBefore(target);
27607             }
27608         }
27609         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
27610         if(Roo.isIE){
27611             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
27612         }
27613         this.realign(
27614             target.getLeft(true),
27615             target.getTop(true),
27616             target.getWidth(),
27617             target.getHeight()
27618         );
27619         this.el.dom.style.display = "block";
27620     },
27621
27622     /**
27623      * Returns true if the shadow is visible, else false
27624      */
27625     isVisible : function(){
27626         return this.el ? true : false;  
27627     },
27628
27629     /**
27630      * Direct alignment when values are already available. Show must be called at least once before
27631      * calling this method to ensure it is initialized.
27632      * @param {Number} left The target element left position
27633      * @param {Number} top The target element top position
27634      * @param {Number} width The target element width
27635      * @param {Number} height The target element height
27636      */
27637     realign : function(l, t, w, h){
27638         if(!this.el){
27639             return;
27640         }
27641         var a = this.adjusts, d = this.el.dom, s = d.style;
27642         var iea = 0;
27643         s.left = (l+a.l)+"px";
27644         s.top = (t+a.t)+"px";
27645         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
27646  
27647         if(s.width != sws || s.height != shs){
27648             s.width = sws;
27649             s.height = shs;
27650             if(!Roo.isIE){
27651                 var cn = d.childNodes;
27652                 var sww = Math.max(0, (sw-12))+"px";
27653                 cn[0].childNodes[1].style.width = sww;
27654                 cn[1].childNodes[1].style.width = sww;
27655                 cn[2].childNodes[1].style.width = sww;
27656                 cn[1].style.height = Math.max(0, (sh-12))+"px";
27657             }
27658         }
27659     },
27660
27661     /**
27662      * Hides this shadow
27663      */
27664     hide : function(){
27665         if(this.el){
27666             this.el.dom.style.display = "none";
27667             Roo.Shadow.Pool.push(this.el);
27668             delete this.el;
27669         }
27670     },
27671
27672     /**
27673      * Adjust the z-index of this shadow
27674      * @param {Number} zindex The new z-index
27675      */
27676     setZIndex : function(z){
27677         this.zIndex = z;
27678         if(this.el){
27679             this.el.setStyle("z-index", z);
27680         }
27681     }
27682 };
27683
27684 // Private utility class that manages the internal Shadow cache
27685 Roo.Shadow.Pool = function(){
27686     var p = [];
27687     var markup = Roo.isIE ?
27688                  '<div class="x-ie-shadow"></div>' :
27689                  '<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>';
27690     return {
27691         pull : function(){
27692             var sh = p.shift();
27693             if(!sh){
27694                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
27695                 sh.autoBoxAdjust = false;
27696             }
27697             return sh;
27698         },
27699
27700         push : function(sh){
27701             p.push(sh);
27702         }
27703     };
27704 }();/*
27705  * Based on:
27706  * Ext JS Library 1.1.1
27707  * Copyright(c) 2006-2007, Ext JS, LLC.
27708  *
27709  * Originally Released Under LGPL - original licence link has changed is not relivant.
27710  *
27711  * Fork - LGPL
27712  * <script type="text/javascript">
27713  */
27714
27715
27716 /**
27717  * @class Roo.SplitBar
27718  * @extends Roo.util.Observable
27719  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
27720  * <br><br>
27721  * Usage:
27722  * <pre><code>
27723 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
27724                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
27725 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
27726 split.minSize = 100;
27727 split.maxSize = 600;
27728 split.animate = true;
27729 split.on('moved', splitterMoved);
27730 </code></pre>
27731  * @constructor
27732  * Create a new SplitBar
27733  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
27734  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
27735  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27736  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
27737                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
27738                         position of the SplitBar).
27739  */
27740 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
27741     
27742     /** @private */
27743     this.el = Roo.get(dragElement, true);
27744     this.el.dom.unselectable = "on";
27745     /** @private */
27746     this.resizingEl = Roo.get(resizingElement, true);
27747
27748     /**
27749      * @private
27750      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27751      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
27752      * @type Number
27753      */
27754     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
27755     
27756     /**
27757      * The minimum size of the resizing element. (Defaults to 0)
27758      * @type Number
27759      */
27760     this.minSize = 0;
27761     
27762     /**
27763      * The maximum size of the resizing element. (Defaults to 2000)
27764      * @type Number
27765      */
27766     this.maxSize = 2000;
27767     
27768     /**
27769      * Whether to animate the transition to the new size
27770      * @type Boolean
27771      */
27772     this.animate = false;
27773     
27774     /**
27775      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
27776      * @type Boolean
27777      */
27778     this.useShim = false;
27779     
27780     /** @private */
27781     this.shim = null;
27782     
27783     if(!existingProxy){
27784         /** @private */
27785         this.proxy = Roo.SplitBar.createProxy(this.orientation);
27786     }else{
27787         this.proxy = Roo.get(existingProxy).dom;
27788     }
27789     /** @private */
27790     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
27791     
27792     /** @private */
27793     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
27794     
27795     /** @private */
27796     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
27797     
27798     /** @private */
27799     this.dragSpecs = {};
27800     
27801     /**
27802      * @private The adapter to use to positon and resize elements
27803      */
27804     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
27805     this.adapter.init(this);
27806     
27807     if(this.orientation == Roo.SplitBar.HORIZONTAL){
27808         /** @private */
27809         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
27810         this.el.addClass("x-splitbar-h");
27811     }else{
27812         /** @private */
27813         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
27814         this.el.addClass("x-splitbar-v");
27815     }
27816     
27817     this.addEvents({
27818         /**
27819          * @event resize
27820          * Fires when the splitter is moved (alias for {@link #event-moved})
27821          * @param {Roo.SplitBar} this
27822          * @param {Number} newSize the new width or height
27823          */
27824         "resize" : true,
27825         /**
27826          * @event moved
27827          * Fires when the splitter is moved
27828          * @param {Roo.SplitBar} this
27829          * @param {Number} newSize the new width or height
27830          */
27831         "moved" : true,
27832         /**
27833          * @event beforeresize
27834          * Fires before the splitter is dragged
27835          * @param {Roo.SplitBar} this
27836          */
27837         "beforeresize" : true,
27838
27839         "beforeapply" : true
27840     });
27841
27842     Roo.util.Observable.call(this);
27843 };
27844
27845 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
27846     onStartProxyDrag : function(x, y){
27847         this.fireEvent("beforeresize", this);
27848         if(!this.overlay){
27849             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
27850             o.unselectable();
27851             o.enableDisplayMode("block");
27852             // all splitbars share the same overlay
27853             Roo.SplitBar.prototype.overlay = o;
27854         }
27855         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
27856         this.overlay.show();
27857         Roo.get(this.proxy).setDisplayed("block");
27858         var size = this.adapter.getElementSize(this);
27859         this.activeMinSize = this.getMinimumSize();;
27860         this.activeMaxSize = this.getMaximumSize();;
27861         var c1 = size - this.activeMinSize;
27862         var c2 = Math.max(this.activeMaxSize - size, 0);
27863         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27864             this.dd.resetConstraints();
27865             this.dd.setXConstraint(
27866                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
27867                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
27868             );
27869             this.dd.setYConstraint(0, 0);
27870         }else{
27871             this.dd.resetConstraints();
27872             this.dd.setXConstraint(0, 0);
27873             this.dd.setYConstraint(
27874                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
27875                 this.placement == Roo.SplitBar.TOP ? c2 : c1
27876             );
27877          }
27878         this.dragSpecs.startSize = size;
27879         this.dragSpecs.startPoint = [x, y];
27880         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
27881     },
27882     
27883     /** 
27884      * @private Called after the drag operation by the DDProxy
27885      */
27886     onEndProxyDrag : function(e){
27887         Roo.get(this.proxy).setDisplayed(false);
27888         var endPoint = Roo.lib.Event.getXY(e);
27889         if(this.overlay){
27890             this.overlay.hide();
27891         }
27892         var newSize;
27893         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27894             newSize = this.dragSpecs.startSize + 
27895                 (this.placement == Roo.SplitBar.LEFT ?
27896                     endPoint[0] - this.dragSpecs.startPoint[0] :
27897                     this.dragSpecs.startPoint[0] - endPoint[0]
27898                 );
27899         }else{
27900             newSize = this.dragSpecs.startSize + 
27901                 (this.placement == Roo.SplitBar.TOP ?
27902                     endPoint[1] - this.dragSpecs.startPoint[1] :
27903                     this.dragSpecs.startPoint[1] - endPoint[1]
27904                 );
27905         }
27906         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
27907         if(newSize != this.dragSpecs.startSize){
27908             if(this.fireEvent('beforeapply', this, newSize) !== false){
27909                 this.adapter.setElementSize(this, newSize);
27910                 this.fireEvent("moved", this, newSize);
27911                 this.fireEvent("resize", this, newSize);
27912             }
27913         }
27914     },
27915     
27916     /**
27917      * Get the adapter this SplitBar uses
27918      * @return The adapter object
27919      */
27920     getAdapter : function(){
27921         return this.adapter;
27922     },
27923     
27924     /**
27925      * Set the adapter this SplitBar uses
27926      * @param {Object} adapter A SplitBar adapter object
27927      */
27928     setAdapter : function(adapter){
27929         this.adapter = adapter;
27930         this.adapter.init(this);
27931     },
27932     
27933     /**
27934      * Gets the minimum size for the resizing element
27935      * @return {Number} The minimum size
27936      */
27937     getMinimumSize : function(){
27938         return this.minSize;
27939     },
27940     
27941     /**
27942      * Sets the minimum size for the resizing element
27943      * @param {Number} minSize The minimum size
27944      */
27945     setMinimumSize : function(minSize){
27946         this.minSize = minSize;
27947     },
27948     
27949     /**
27950      * Gets the maximum size for the resizing element
27951      * @return {Number} The maximum size
27952      */
27953     getMaximumSize : function(){
27954         return this.maxSize;
27955     },
27956     
27957     /**
27958      * Sets the maximum size for the resizing element
27959      * @param {Number} maxSize The maximum size
27960      */
27961     setMaximumSize : function(maxSize){
27962         this.maxSize = maxSize;
27963     },
27964     
27965     /**
27966      * Sets the initialize size for the resizing element
27967      * @param {Number} size The initial size
27968      */
27969     setCurrentSize : function(size){
27970         var oldAnimate = this.animate;
27971         this.animate = false;
27972         this.adapter.setElementSize(this, size);
27973         this.animate = oldAnimate;
27974     },
27975     
27976     /**
27977      * Destroy this splitbar. 
27978      * @param {Boolean} removeEl True to remove the element
27979      */
27980     destroy : function(removeEl){
27981         if(this.shim){
27982             this.shim.remove();
27983         }
27984         this.dd.unreg();
27985         this.proxy.parentNode.removeChild(this.proxy);
27986         if(removeEl){
27987             this.el.remove();
27988         }
27989     }
27990 });
27991
27992 /**
27993  * @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.
27994  */
27995 Roo.SplitBar.createProxy = function(dir){
27996     var proxy = new Roo.Element(document.createElement("div"));
27997     proxy.unselectable();
27998     var cls = 'x-splitbar-proxy';
27999     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
28000     document.body.appendChild(proxy.dom);
28001     return proxy.dom;
28002 };
28003
28004 /** 
28005  * @class Roo.SplitBar.BasicLayoutAdapter
28006  * Default Adapter. It assumes the splitter and resizing element are not positioned
28007  * elements and only gets/sets the width of the element. Generally used for table based layouts.
28008  */
28009 Roo.SplitBar.BasicLayoutAdapter = function(){
28010 };
28011
28012 Roo.SplitBar.BasicLayoutAdapter.prototype = {
28013     // do nothing for now
28014     init : function(s){
28015     
28016     },
28017     /**
28018      * Called before drag operations to get the current size of the resizing element. 
28019      * @param {Roo.SplitBar} s The SplitBar using this adapter
28020      */
28021      getElementSize : function(s){
28022         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28023             return s.resizingEl.getWidth();
28024         }else{
28025             return s.resizingEl.getHeight();
28026         }
28027     },
28028     
28029     /**
28030      * Called after drag operations to set the size of the resizing element.
28031      * @param {Roo.SplitBar} s The SplitBar using this adapter
28032      * @param {Number} newSize The new size to set
28033      * @param {Function} onComplete A function to be invoked when resizing is complete
28034      */
28035     setElementSize : function(s, newSize, onComplete){
28036         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28037             if(!s.animate){
28038                 s.resizingEl.setWidth(newSize);
28039                 if(onComplete){
28040                     onComplete(s, newSize);
28041                 }
28042             }else{
28043                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
28044             }
28045         }else{
28046             
28047             if(!s.animate){
28048                 s.resizingEl.setHeight(newSize);
28049                 if(onComplete){
28050                     onComplete(s, newSize);
28051                 }
28052             }else{
28053                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
28054             }
28055         }
28056     }
28057 };
28058
28059 /** 
28060  *@class Roo.SplitBar.AbsoluteLayoutAdapter
28061  * @extends Roo.SplitBar.BasicLayoutAdapter
28062  * Adapter that  moves the splitter element to align with the resized sizing element. 
28063  * Used with an absolute positioned SplitBar.
28064  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
28065  * document.body, make sure you assign an id to the body element.
28066  */
28067 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
28068     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
28069     this.container = Roo.get(container);
28070 };
28071
28072 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
28073     init : function(s){
28074         this.basic.init(s);
28075     },
28076     
28077     getElementSize : function(s){
28078         return this.basic.getElementSize(s);
28079     },
28080     
28081     setElementSize : function(s, newSize, onComplete){
28082         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
28083     },
28084     
28085     moveSplitter : function(s){
28086         var yes = Roo.SplitBar;
28087         switch(s.placement){
28088             case yes.LEFT:
28089                 s.el.setX(s.resizingEl.getRight());
28090                 break;
28091             case yes.RIGHT:
28092                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
28093                 break;
28094             case yes.TOP:
28095                 s.el.setY(s.resizingEl.getBottom());
28096                 break;
28097             case yes.BOTTOM:
28098                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
28099                 break;
28100         }
28101     }
28102 };
28103
28104 /**
28105  * Orientation constant - Create a vertical SplitBar
28106  * @static
28107  * @type Number
28108  */
28109 Roo.SplitBar.VERTICAL = 1;
28110
28111 /**
28112  * Orientation constant - Create a horizontal SplitBar
28113  * @static
28114  * @type Number
28115  */
28116 Roo.SplitBar.HORIZONTAL = 2;
28117
28118 /**
28119  * Placement constant - The resizing element is to the left of the splitter element
28120  * @static
28121  * @type Number
28122  */
28123 Roo.SplitBar.LEFT = 1;
28124
28125 /**
28126  * Placement constant - The resizing element is to the right of the splitter element
28127  * @static
28128  * @type Number
28129  */
28130 Roo.SplitBar.RIGHT = 2;
28131
28132 /**
28133  * Placement constant - The resizing element is positioned above the splitter element
28134  * @static
28135  * @type Number
28136  */
28137 Roo.SplitBar.TOP = 3;
28138
28139 /**
28140  * Placement constant - The resizing element is positioned under splitter element
28141  * @static
28142  * @type Number
28143  */
28144 Roo.SplitBar.BOTTOM = 4;
28145 /*
28146  * Based on:
28147  * Ext JS Library 1.1.1
28148  * Copyright(c) 2006-2007, Ext JS, LLC.
28149  *
28150  * Originally Released Under LGPL - original licence link has changed is not relivant.
28151  *
28152  * Fork - LGPL
28153  * <script type="text/javascript">
28154  */
28155
28156 /**
28157  * @class Roo.View
28158  * @extends Roo.util.Observable
28159  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
28160  * This class also supports single and multi selection modes. <br>
28161  * Create a data model bound view:
28162  <pre><code>
28163  var store = new Roo.data.Store(...);
28164
28165  var view = new Roo.View({
28166     el : "my-element",
28167     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
28168  
28169     singleSelect: true,
28170     selectedClass: "ydataview-selected",
28171     store: store
28172  });
28173
28174  // listen for node click?
28175  view.on("click", function(vw, index, node, e){
28176  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28177  });
28178
28179  // load XML data
28180  dataModel.load("foobar.xml");
28181  </code></pre>
28182  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
28183  * <br><br>
28184  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
28185  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
28186  * 
28187  * Note: old style constructor is still suported (container, template, config)
28188  * 
28189  * @constructor
28190  * Create a new View
28191  * @param {Object} config The config object
28192  * 
28193  */
28194 Roo.View = function(config, depreciated_tpl, depreciated_config){
28195     
28196     this.parent = false;
28197     
28198     if (typeof(depreciated_tpl) == 'undefined') {
28199         // new way.. - universal constructor.
28200         Roo.apply(this, config);
28201         this.el  = Roo.get(this.el);
28202     } else {
28203         // old format..
28204         this.el  = Roo.get(config);
28205         this.tpl = depreciated_tpl;
28206         Roo.apply(this, depreciated_config);
28207     }
28208     this.wrapEl  = this.el.wrap().wrap();
28209     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
28210     
28211     
28212     if(typeof(this.tpl) == "string"){
28213         this.tpl = new Roo.Template(this.tpl);
28214     } else {
28215         // support xtype ctors..
28216         this.tpl = new Roo.factory(this.tpl, Roo);
28217     }
28218     
28219     
28220     this.tpl.compile();
28221     
28222     /** @private */
28223     this.addEvents({
28224         /**
28225          * @event beforeclick
28226          * Fires before a click is processed. Returns false to cancel the default action.
28227          * @param {Roo.View} this
28228          * @param {Number} index The index of the target node
28229          * @param {HTMLElement} node The target node
28230          * @param {Roo.EventObject} e The raw event object
28231          */
28232             "beforeclick" : true,
28233         /**
28234          * @event click
28235          * Fires when a template node is clicked.
28236          * @param {Roo.View} this
28237          * @param {Number} index The index of the target node
28238          * @param {HTMLElement} node The target node
28239          * @param {Roo.EventObject} e The raw event object
28240          */
28241             "click" : true,
28242         /**
28243          * @event dblclick
28244          * Fires when a template node is double clicked.
28245          * @param {Roo.View} this
28246          * @param {Number} index The index of the target node
28247          * @param {HTMLElement} node The target node
28248          * @param {Roo.EventObject} e The raw event object
28249          */
28250             "dblclick" : true,
28251         /**
28252          * @event contextmenu
28253          * Fires when a template node is right clicked.
28254          * @param {Roo.View} this
28255          * @param {Number} index The index of the target node
28256          * @param {HTMLElement} node The target node
28257          * @param {Roo.EventObject} e The raw event object
28258          */
28259             "contextmenu" : true,
28260         /**
28261          * @event selectionchange
28262          * Fires when the selected nodes change.
28263          * @param {Roo.View} this
28264          * @param {Array} selections Array of the selected nodes
28265          */
28266             "selectionchange" : true,
28267     
28268         /**
28269          * @event beforeselect
28270          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
28271          * @param {Roo.View} this
28272          * @param {HTMLElement} node The node to be selected
28273          * @param {Array} selections Array of currently selected nodes
28274          */
28275             "beforeselect" : true,
28276         /**
28277          * @event preparedata
28278          * Fires on every row to render, to allow you to change the data.
28279          * @param {Roo.View} this
28280          * @param {Object} data to be rendered (change this)
28281          */
28282           "preparedata" : true
28283           
28284           
28285         });
28286
28287
28288
28289     this.el.on({
28290         "click": this.onClick,
28291         "dblclick": this.onDblClick,
28292         "contextmenu": this.onContextMenu,
28293         scope:this
28294     });
28295
28296     this.selections = [];
28297     this.nodes = [];
28298     this.cmp = new Roo.CompositeElementLite([]);
28299     if(this.store){
28300         this.store = Roo.factory(this.store, Roo.data);
28301         this.setStore(this.store, true);
28302     }
28303     
28304     if ( this.footer && this.footer.xtype) {
28305            
28306          var fctr = this.wrapEl.appendChild(document.createElement("div"));
28307         
28308         this.footer.dataSource = this.store;
28309         this.footer.container = fctr;
28310         this.footer = Roo.factory(this.footer, Roo);
28311         fctr.insertFirst(this.el);
28312         
28313         // this is a bit insane - as the paging toolbar seems to detach the el..
28314 //        dom.parentNode.parentNode.parentNode
28315          // they get detached?
28316     }
28317     
28318     
28319     Roo.View.superclass.constructor.call(this);
28320     
28321     
28322 };
28323
28324 Roo.extend(Roo.View, Roo.util.Observable, {
28325     
28326      /**
28327      * @cfg {Roo.data.Store} store Data store to load data from.
28328      */
28329     store : false,
28330     
28331     /**
28332      * @cfg {String|Roo.Element} el The container element.
28333      */
28334     el : '',
28335     
28336     /**
28337      * @cfg {String|Roo.Template} tpl The template used by this View 
28338      */
28339     tpl : false,
28340     /**
28341      * @cfg {String} dataName the named area of the template to use as the data area
28342      *                          Works with domtemplates roo-name="name"
28343      */
28344     dataName: false,
28345     /**
28346      * @cfg {String} selectedClass The css class to add to selected nodes
28347      */
28348     selectedClass : "x-view-selected",
28349      /**
28350      * @cfg {String} emptyText The empty text to show when nothing is loaded.
28351      */
28352     emptyText : "",
28353     
28354     /**
28355      * @cfg {String} text to display on mask (default Loading)
28356      */
28357     mask : false,
28358     /**
28359      * @cfg {Boolean} multiSelect Allow multiple selection
28360      */
28361     multiSelect : false,
28362     /**
28363      * @cfg {Boolean} singleSelect Allow single selection
28364      */
28365     singleSelect:  false,
28366     
28367     /**
28368      * @cfg {Boolean} toggleSelect - selecting 
28369      */
28370     toggleSelect : false,
28371     
28372     /**
28373      * @cfg {Boolean} tickable - selecting 
28374      */
28375     tickable : false,
28376     
28377     /**
28378      * Returns the element this view is bound to.
28379      * @return {Roo.Element}
28380      */
28381     getEl : function(){
28382         return this.wrapEl;
28383     },
28384     
28385     
28386
28387     /**
28388      * Refreshes the view. - called by datachanged on the store. - do not call directly.
28389      */
28390     refresh : function(){
28391         //Roo.log('refresh');
28392         var t = this.tpl;
28393         
28394         // if we are using something like 'domtemplate', then
28395         // the what gets used is:
28396         // t.applySubtemplate(NAME, data, wrapping data..)
28397         // the outer template then get' applied with
28398         //     the store 'extra data'
28399         // and the body get's added to the
28400         //      roo-name="data" node?
28401         //      <span class='roo-tpl-{name}'></span> ?????
28402         
28403         
28404         
28405         this.clearSelections();
28406         this.el.update("");
28407         var html = [];
28408         var records = this.store.getRange();
28409         if(records.length < 1) {
28410             
28411             // is this valid??  = should it render a template??
28412             
28413             this.el.update(this.emptyText);
28414             return;
28415         }
28416         var el = this.el;
28417         if (this.dataName) {
28418             this.el.update(t.apply(this.store.meta)); //????
28419             el = this.el.child('.roo-tpl-' + this.dataName);
28420         }
28421         
28422         for(var i = 0, len = records.length; i < len; i++){
28423             var data = this.prepareData(records[i].data, i, records[i]);
28424             this.fireEvent("preparedata", this, data, i, records[i]);
28425             
28426             var d = Roo.apply({}, data);
28427             
28428             if(this.tickable){
28429                 Roo.apply(d, {'roo-id' : Roo.id()});
28430                 
28431                 var _this = this;
28432             
28433                 Roo.each(this.parent.item, function(item){
28434                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
28435                         return;
28436                     }
28437                     Roo.apply(d, {'roo-data-checked' : 'checked'});
28438                 });
28439             }
28440             
28441             html[html.length] = Roo.util.Format.trim(
28442                 this.dataName ?
28443                     t.applySubtemplate(this.dataName, d, this.store.meta) :
28444                     t.apply(d)
28445             );
28446         }
28447         
28448         
28449         
28450         el.update(html.join(""));
28451         this.nodes = el.dom.childNodes;
28452         this.updateIndexes(0);
28453     },
28454     
28455
28456     /**
28457      * Function to override to reformat the data that is sent to
28458      * the template for each node.
28459      * DEPRICATED - use the preparedata event handler.
28460      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
28461      * a JSON object for an UpdateManager bound view).
28462      */
28463     prepareData : function(data, index, record)
28464     {
28465         this.fireEvent("preparedata", this, data, index, record);
28466         return data;
28467     },
28468
28469     onUpdate : function(ds, record){
28470         // Roo.log('on update');   
28471         this.clearSelections();
28472         var index = this.store.indexOf(record);
28473         var n = this.nodes[index];
28474         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
28475         n.parentNode.removeChild(n);
28476         this.updateIndexes(index, index);
28477     },
28478
28479     
28480     
28481 // --------- FIXME     
28482     onAdd : function(ds, records, index)
28483     {
28484         //Roo.log(['on Add', ds, records, index] );        
28485         this.clearSelections();
28486         if(this.nodes.length == 0){
28487             this.refresh();
28488             return;
28489         }
28490         var n = this.nodes[index];
28491         for(var i = 0, len = records.length; i < len; i++){
28492             var d = this.prepareData(records[i].data, i, records[i]);
28493             if(n){
28494                 this.tpl.insertBefore(n, d);
28495             }else{
28496                 
28497                 this.tpl.append(this.el, d);
28498             }
28499         }
28500         this.updateIndexes(index);
28501     },
28502
28503     onRemove : function(ds, record, index){
28504        // Roo.log('onRemove');
28505         this.clearSelections();
28506         var el = this.dataName  ?
28507             this.el.child('.roo-tpl-' + this.dataName) :
28508             this.el; 
28509         
28510         el.dom.removeChild(this.nodes[index]);
28511         this.updateIndexes(index);
28512     },
28513
28514     /**
28515      * Refresh an individual node.
28516      * @param {Number} index
28517      */
28518     refreshNode : function(index){
28519         this.onUpdate(this.store, this.store.getAt(index));
28520     },
28521
28522     updateIndexes : function(startIndex, endIndex){
28523         var ns = this.nodes;
28524         startIndex = startIndex || 0;
28525         endIndex = endIndex || ns.length - 1;
28526         for(var i = startIndex; i <= endIndex; i++){
28527             ns[i].nodeIndex = i;
28528         }
28529     },
28530
28531     /**
28532      * Changes the data store this view uses and refresh the view.
28533      * @param {Store} store
28534      */
28535     setStore : function(store, initial){
28536         if(!initial && this.store){
28537             this.store.un("datachanged", this.refresh);
28538             this.store.un("add", this.onAdd);
28539             this.store.un("remove", this.onRemove);
28540             this.store.un("update", this.onUpdate);
28541             this.store.un("clear", this.refresh);
28542             this.store.un("beforeload", this.onBeforeLoad);
28543             this.store.un("load", this.onLoad);
28544             this.store.un("loadexception", this.onLoad);
28545         }
28546         if(store){
28547           
28548             store.on("datachanged", this.refresh, this);
28549             store.on("add", this.onAdd, this);
28550             store.on("remove", this.onRemove, this);
28551             store.on("update", this.onUpdate, this);
28552             store.on("clear", this.refresh, this);
28553             store.on("beforeload", this.onBeforeLoad, this);
28554             store.on("load", this.onLoad, this);
28555             store.on("loadexception", this.onLoad, this);
28556         }
28557         
28558         if(store){
28559             this.refresh();
28560         }
28561     },
28562     /**
28563      * onbeforeLoad - masks the loading area.
28564      *
28565      */
28566     onBeforeLoad : function(store,opts)
28567     {
28568          //Roo.log('onBeforeLoad');   
28569         if (!opts.add) {
28570             this.el.update("");
28571         }
28572         this.el.mask(this.mask ? this.mask : "Loading" ); 
28573     },
28574     onLoad : function ()
28575     {
28576         this.el.unmask();
28577     },
28578     
28579
28580     /**
28581      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
28582      * @param {HTMLElement} node
28583      * @return {HTMLElement} The template node
28584      */
28585     findItemFromChild : function(node){
28586         var el = this.dataName  ?
28587             this.el.child('.roo-tpl-' + this.dataName,true) :
28588             this.el.dom; 
28589         
28590         if(!node || node.parentNode == el){
28591                     return node;
28592             }
28593             var p = node.parentNode;
28594             while(p && p != el){
28595             if(p.parentNode == el){
28596                 return p;
28597             }
28598             p = p.parentNode;
28599         }
28600             return null;
28601     },
28602
28603     /** @ignore */
28604     onClick : function(e){
28605         var item = this.findItemFromChild(e.getTarget());
28606         if(item){
28607             var index = this.indexOf(item);
28608             if(this.onItemClick(item, index, e) !== false){
28609                 this.fireEvent("click", this, index, item, e);
28610             }
28611         }else{
28612             this.clearSelections();
28613         }
28614     },
28615
28616     /** @ignore */
28617     onContextMenu : function(e){
28618         var item = this.findItemFromChild(e.getTarget());
28619         if(item){
28620             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
28621         }
28622     },
28623
28624     /** @ignore */
28625     onDblClick : function(e){
28626         var item = this.findItemFromChild(e.getTarget());
28627         if(item){
28628             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
28629         }
28630     },
28631
28632     onItemClick : function(item, index, e)
28633     {
28634         if(this.fireEvent("beforeclick", this, index, item, e) === false){
28635             return false;
28636         }
28637         if (this.toggleSelect) {
28638             var m = this.isSelected(item) ? 'unselect' : 'select';
28639             //Roo.log(m);
28640             var _t = this;
28641             _t[m](item, true, false);
28642             return true;
28643         }
28644         if(this.multiSelect || this.singleSelect){
28645             if(this.multiSelect && e.shiftKey && this.lastSelection){
28646                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
28647             }else{
28648                 this.select(item, this.multiSelect && e.ctrlKey);
28649                 this.lastSelection = item;
28650             }
28651             
28652             if(!this.tickable){
28653                 e.preventDefault();
28654             }
28655             
28656         }
28657         return true;
28658     },
28659
28660     /**
28661      * Get the number of selected nodes.
28662      * @return {Number}
28663      */
28664     getSelectionCount : function(){
28665         return this.selections.length;
28666     },
28667
28668     /**
28669      * Get the currently selected nodes.
28670      * @return {Array} An array of HTMLElements
28671      */
28672     getSelectedNodes : function(){
28673         return this.selections;
28674     },
28675
28676     /**
28677      * Get the indexes of the selected nodes.
28678      * @return {Array}
28679      */
28680     getSelectedIndexes : function(){
28681         var indexes = [], s = this.selections;
28682         for(var i = 0, len = s.length; i < len; i++){
28683             indexes.push(s[i].nodeIndex);
28684         }
28685         return indexes;
28686     },
28687
28688     /**
28689      * Clear all selections
28690      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
28691      */
28692     clearSelections : function(suppressEvent){
28693         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
28694             this.cmp.elements = this.selections;
28695             this.cmp.removeClass(this.selectedClass);
28696             this.selections = [];
28697             if(!suppressEvent){
28698                 this.fireEvent("selectionchange", this, this.selections);
28699             }
28700         }
28701     },
28702
28703     /**
28704      * Returns true if the passed node is selected
28705      * @param {HTMLElement/Number} node The node or node index
28706      * @return {Boolean}
28707      */
28708     isSelected : function(node){
28709         var s = this.selections;
28710         if(s.length < 1){
28711             return false;
28712         }
28713         node = this.getNode(node);
28714         return s.indexOf(node) !== -1;
28715     },
28716
28717     /**
28718      * Selects nodes.
28719      * @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
28720      * @param {Boolean} keepExisting (optional) true to keep existing selections
28721      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28722      */
28723     select : function(nodeInfo, keepExisting, suppressEvent){
28724         if(nodeInfo instanceof Array){
28725             if(!keepExisting){
28726                 this.clearSelections(true);
28727             }
28728             for(var i = 0, len = nodeInfo.length; i < len; i++){
28729                 this.select(nodeInfo[i], true, true);
28730             }
28731             return;
28732         } 
28733         var node = this.getNode(nodeInfo);
28734         if(!node || this.isSelected(node)){
28735             return; // already selected.
28736         }
28737         if(!keepExisting){
28738             this.clearSelections(true);
28739         }
28740         
28741         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
28742             Roo.fly(node).addClass(this.selectedClass);
28743             this.selections.push(node);
28744             if(!suppressEvent){
28745                 this.fireEvent("selectionchange", this, this.selections);
28746             }
28747         }
28748         
28749         
28750     },
28751       /**
28752      * Unselects nodes.
28753      * @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
28754      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
28755      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28756      */
28757     unselect : function(nodeInfo, keepExisting, suppressEvent)
28758     {
28759         if(nodeInfo instanceof Array){
28760             Roo.each(this.selections, function(s) {
28761                 this.unselect(s, nodeInfo);
28762             }, this);
28763             return;
28764         }
28765         var node = this.getNode(nodeInfo);
28766         if(!node || !this.isSelected(node)){
28767             //Roo.log("not selected");
28768             return; // not selected.
28769         }
28770         // fireevent???
28771         var ns = [];
28772         Roo.each(this.selections, function(s) {
28773             if (s == node ) {
28774                 Roo.fly(node).removeClass(this.selectedClass);
28775
28776                 return;
28777             }
28778             ns.push(s);
28779         },this);
28780         
28781         this.selections= ns;
28782         this.fireEvent("selectionchange", this, this.selections);
28783     },
28784
28785     /**
28786      * Gets a template node.
28787      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28788      * @return {HTMLElement} The node or null if it wasn't found
28789      */
28790     getNode : function(nodeInfo){
28791         if(typeof nodeInfo == "string"){
28792             return document.getElementById(nodeInfo);
28793         }else if(typeof nodeInfo == "number"){
28794             return this.nodes[nodeInfo];
28795         }
28796         return nodeInfo;
28797     },
28798
28799     /**
28800      * Gets a range template nodes.
28801      * @param {Number} startIndex
28802      * @param {Number} endIndex
28803      * @return {Array} An array of nodes
28804      */
28805     getNodes : function(start, end){
28806         var ns = this.nodes;
28807         start = start || 0;
28808         end = typeof end == "undefined" ? ns.length - 1 : end;
28809         var nodes = [];
28810         if(start <= end){
28811             for(var i = start; i <= end; i++){
28812                 nodes.push(ns[i]);
28813             }
28814         } else{
28815             for(var i = start; i >= end; i--){
28816                 nodes.push(ns[i]);
28817             }
28818         }
28819         return nodes;
28820     },
28821
28822     /**
28823      * Finds the index of the passed node
28824      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28825      * @return {Number} The index of the node or -1
28826      */
28827     indexOf : function(node){
28828         node = this.getNode(node);
28829         if(typeof node.nodeIndex == "number"){
28830             return node.nodeIndex;
28831         }
28832         var ns = this.nodes;
28833         for(var i = 0, len = ns.length; i < len; i++){
28834             if(ns[i] == node){
28835                 return i;
28836             }
28837         }
28838         return -1;
28839     }
28840 });
28841 /*
28842  * Based on:
28843  * Ext JS Library 1.1.1
28844  * Copyright(c) 2006-2007, Ext JS, LLC.
28845  *
28846  * Originally Released Under LGPL - original licence link has changed is not relivant.
28847  *
28848  * Fork - LGPL
28849  * <script type="text/javascript">
28850  */
28851
28852 /**
28853  * @class Roo.JsonView
28854  * @extends Roo.View
28855  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
28856 <pre><code>
28857 var view = new Roo.JsonView({
28858     container: "my-element",
28859     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
28860     multiSelect: true, 
28861     jsonRoot: "data" 
28862 });
28863
28864 // listen for node click?
28865 view.on("click", function(vw, index, node, e){
28866     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28867 });
28868
28869 // direct load of JSON data
28870 view.load("foobar.php");
28871
28872 // Example from my blog list
28873 var tpl = new Roo.Template(
28874     '&lt;div class="entry"&gt;' +
28875     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
28876     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
28877     "&lt;/div&gt;&lt;hr /&gt;"
28878 );
28879
28880 var moreView = new Roo.JsonView({
28881     container :  "entry-list", 
28882     template : tpl,
28883     jsonRoot: "posts"
28884 });
28885 moreView.on("beforerender", this.sortEntries, this);
28886 moreView.load({
28887     url: "/blog/get-posts.php",
28888     params: "allposts=true",
28889     text: "Loading Blog Entries..."
28890 });
28891 </code></pre>
28892
28893 * Note: old code is supported with arguments : (container, template, config)
28894
28895
28896  * @constructor
28897  * Create a new JsonView
28898  * 
28899  * @param {Object} config The config object
28900  * 
28901  */
28902 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
28903     
28904     
28905     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
28906
28907     var um = this.el.getUpdateManager();
28908     um.setRenderer(this);
28909     um.on("update", this.onLoad, this);
28910     um.on("failure", this.onLoadException, this);
28911
28912     /**
28913      * @event beforerender
28914      * Fires before rendering of the downloaded JSON data.
28915      * @param {Roo.JsonView} this
28916      * @param {Object} data The JSON data loaded
28917      */
28918     /**
28919      * @event load
28920      * Fires when data is loaded.
28921      * @param {Roo.JsonView} this
28922      * @param {Object} data The JSON data loaded
28923      * @param {Object} response The raw Connect response object
28924      */
28925     /**
28926      * @event loadexception
28927      * Fires when loading fails.
28928      * @param {Roo.JsonView} this
28929      * @param {Object} response The raw Connect response object
28930      */
28931     this.addEvents({
28932         'beforerender' : true,
28933         'load' : true,
28934         'loadexception' : true
28935     });
28936 };
28937 Roo.extend(Roo.JsonView, Roo.View, {
28938     /**
28939      * @type {String} The root property in the loaded JSON object that contains the data
28940      */
28941     jsonRoot : "",
28942
28943     /**
28944      * Refreshes the view.
28945      */
28946     refresh : function(){
28947         this.clearSelections();
28948         this.el.update("");
28949         var html = [];
28950         var o = this.jsonData;
28951         if(o && o.length > 0){
28952             for(var i = 0, len = o.length; i < len; i++){
28953                 var data = this.prepareData(o[i], i, o);
28954                 html[html.length] = this.tpl.apply(data);
28955             }
28956         }else{
28957             html.push(this.emptyText);
28958         }
28959         this.el.update(html.join(""));
28960         this.nodes = this.el.dom.childNodes;
28961         this.updateIndexes(0);
28962     },
28963
28964     /**
28965      * 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.
28966      * @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:
28967      <pre><code>
28968      view.load({
28969          url: "your-url.php",
28970          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
28971          callback: yourFunction,
28972          scope: yourObject, //(optional scope)
28973          discardUrl: false,
28974          nocache: false,
28975          text: "Loading...",
28976          timeout: 30,
28977          scripts: false
28978      });
28979      </code></pre>
28980      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
28981      * 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.
28982      * @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}
28983      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
28984      * @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.
28985      */
28986     load : function(){
28987         var um = this.el.getUpdateManager();
28988         um.update.apply(um, arguments);
28989     },
28990
28991     // note - render is a standard framework call...
28992     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
28993     render : function(el, response){
28994         
28995         this.clearSelections();
28996         this.el.update("");
28997         var o;
28998         try{
28999             if (response != '') {
29000                 o = Roo.util.JSON.decode(response.responseText);
29001                 if(this.jsonRoot){
29002                     
29003                     o = o[this.jsonRoot];
29004                 }
29005             }
29006         } catch(e){
29007         }
29008         /**
29009          * The current JSON data or null
29010          */
29011         this.jsonData = o;
29012         this.beforeRender();
29013         this.refresh();
29014     },
29015
29016 /**
29017  * Get the number of records in the current JSON dataset
29018  * @return {Number}
29019  */
29020     getCount : function(){
29021         return this.jsonData ? this.jsonData.length : 0;
29022     },
29023
29024 /**
29025  * Returns the JSON object for the specified node(s)
29026  * @param {HTMLElement/Array} node The node or an array of nodes
29027  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
29028  * you get the JSON object for the node
29029  */
29030     getNodeData : function(node){
29031         if(node instanceof Array){
29032             var data = [];
29033             for(var i = 0, len = node.length; i < len; i++){
29034                 data.push(this.getNodeData(node[i]));
29035             }
29036             return data;
29037         }
29038         return this.jsonData[this.indexOf(node)] || null;
29039     },
29040
29041     beforeRender : function(){
29042         this.snapshot = this.jsonData;
29043         if(this.sortInfo){
29044             this.sort.apply(this, this.sortInfo);
29045         }
29046         this.fireEvent("beforerender", this, this.jsonData);
29047     },
29048
29049     onLoad : function(el, o){
29050         this.fireEvent("load", this, this.jsonData, o);
29051     },
29052
29053     onLoadException : function(el, o){
29054         this.fireEvent("loadexception", this, o);
29055     },
29056
29057 /**
29058  * Filter the data by a specific property.
29059  * @param {String} property A property on your JSON objects
29060  * @param {String/RegExp} value Either string that the property values
29061  * should start with, or a RegExp to test against the property
29062  */
29063     filter : function(property, value){
29064         if(this.jsonData){
29065             var data = [];
29066             var ss = this.snapshot;
29067             if(typeof value == "string"){
29068                 var vlen = value.length;
29069                 if(vlen == 0){
29070                     this.clearFilter();
29071                     return;
29072                 }
29073                 value = value.toLowerCase();
29074                 for(var i = 0, len = ss.length; i < len; i++){
29075                     var o = ss[i];
29076                     if(o[property].substr(0, vlen).toLowerCase() == value){
29077                         data.push(o);
29078                     }
29079                 }
29080             } else if(value.exec){ // regex?
29081                 for(var i = 0, len = ss.length; i < len; i++){
29082                     var o = ss[i];
29083                     if(value.test(o[property])){
29084                         data.push(o);
29085                     }
29086                 }
29087             } else{
29088                 return;
29089             }
29090             this.jsonData = data;
29091             this.refresh();
29092         }
29093     },
29094
29095 /**
29096  * Filter by a function. The passed function will be called with each
29097  * object in the current dataset. If the function returns true the value is kept,
29098  * otherwise it is filtered.
29099  * @param {Function} fn
29100  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
29101  */
29102     filterBy : function(fn, scope){
29103         if(this.jsonData){
29104             var data = [];
29105             var ss = this.snapshot;
29106             for(var i = 0, len = ss.length; i < len; i++){
29107                 var o = ss[i];
29108                 if(fn.call(scope || this, o)){
29109                     data.push(o);
29110                 }
29111             }
29112             this.jsonData = data;
29113             this.refresh();
29114         }
29115     },
29116
29117 /**
29118  * Clears the current filter.
29119  */
29120     clearFilter : function(){
29121         if(this.snapshot && this.jsonData != this.snapshot){
29122             this.jsonData = this.snapshot;
29123             this.refresh();
29124         }
29125     },
29126
29127
29128 /**
29129  * Sorts the data for this view and refreshes it.
29130  * @param {String} property A property on your JSON objects to sort on
29131  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
29132  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
29133  */
29134     sort : function(property, dir, sortType){
29135         this.sortInfo = Array.prototype.slice.call(arguments, 0);
29136         if(this.jsonData){
29137             var p = property;
29138             var dsc = dir && dir.toLowerCase() == "desc";
29139             var f = function(o1, o2){
29140                 var v1 = sortType ? sortType(o1[p]) : o1[p];
29141                 var v2 = sortType ? sortType(o2[p]) : o2[p];
29142                 ;
29143                 if(v1 < v2){
29144                     return dsc ? +1 : -1;
29145                 } else if(v1 > v2){
29146                     return dsc ? -1 : +1;
29147                 } else{
29148                     return 0;
29149                 }
29150             };
29151             this.jsonData.sort(f);
29152             this.refresh();
29153             if(this.jsonData != this.snapshot){
29154                 this.snapshot.sort(f);
29155             }
29156         }
29157     }
29158 });/*
29159  * Based on:
29160  * Ext JS Library 1.1.1
29161  * Copyright(c) 2006-2007, Ext JS, LLC.
29162  *
29163  * Originally Released Under LGPL - original licence link has changed is not relivant.
29164  *
29165  * Fork - LGPL
29166  * <script type="text/javascript">
29167  */
29168  
29169
29170 /**
29171  * @class Roo.ColorPalette
29172  * @extends Roo.Component
29173  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
29174  * Here's an example of typical usage:
29175  * <pre><code>
29176 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
29177 cp.render('my-div');
29178
29179 cp.on('select', function(palette, selColor){
29180     // do something with selColor
29181 });
29182 </code></pre>
29183  * @constructor
29184  * Create a new ColorPalette
29185  * @param {Object} config The config object
29186  */
29187 Roo.ColorPalette = function(config){
29188     Roo.ColorPalette.superclass.constructor.call(this, config);
29189     this.addEvents({
29190         /**
29191              * @event select
29192              * Fires when a color is selected
29193              * @param {ColorPalette} this
29194              * @param {String} color The 6-digit color hex code (without the # symbol)
29195              */
29196         select: true
29197     });
29198
29199     if(this.handler){
29200         this.on("select", this.handler, this.scope, true);
29201     }
29202 };
29203 Roo.extend(Roo.ColorPalette, Roo.Component, {
29204     /**
29205      * @cfg {String} itemCls
29206      * The CSS class to apply to the containing element (defaults to "x-color-palette")
29207      */
29208     itemCls : "x-color-palette",
29209     /**
29210      * @cfg {String} value
29211      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
29212      * the hex codes are case-sensitive.
29213      */
29214     value : null,
29215     clickEvent:'click',
29216     // private
29217     ctype: "Roo.ColorPalette",
29218
29219     /**
29220      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
29221      */
29222     allowReselect : false,
29223
29224     /**
29225      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
29226      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
29227      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
29228      * of colors with the width setting until the box is symmetrical.</p>
29229      * <p>You can override individual colors if needed:</p>
29230      * <pre><code>
29231 var cp = new Roo.ColorPalette();
29232 cp.colors[0] = "FF0000";  // change the first box to red
29233 </code></pre>
29234
29235 Or you can provide a custom array of your own for complete control:
29236 <pre><code>
29237 var cp = new Roo.ColorPalette();
29238 cp.colors = ["000000", "993300", "333300"];
29239 </code></pre>
29240      * @type Array
29241      */
29242     colors : [
29243         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
29244         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
29245         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
29246         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
29247         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
29248     ],
29249
29250     // private
29251     onRender : function(container, position){
29252         var t = new Roo.MasterTemplate(
29253             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
29254         );
29255         var c = this.colors;
29256         for(var i = 0, len = c.length; i < len; i++){
29257             t.add([c[i]]);
29258         }
29259         var el = document.createElement("div");
29260         el.className = this.itemCls;
29261         t.overwrite(el);
29262         container.dom.insertBefore(el, position);
29263         this.el = Roo.get(el);
29264         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
29265         if(this.clickEvent != 'click'){
29266             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
29267         }
29268     },
29269
29270     // private
29271     afterRender : function(){
29272         Roo.ColorPalette.superclass.afterRender.call(this);
29273         if(this.value){
29274             var s = this.value;
29275             this.value = null;
29276             this.select(s);
29277         }
29278     },
29279
29280     // private
29281     handleClick : function(e, t){
29282         e.preventDefault();
29283         if(!this.disabled){
29284             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
29285             this.select(c.toUpperCase());
29286         }
29287     },
29288
29289     /**
29290      * Selects the specified color in the palette (fires the select event)
29291      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
29292      */
29293     select : function(color){
29294         color = color.replace("#", "");
29295         if(color != this.value || this.allowReselect){
29296             var el = this.el;
29297             if(this.value){
29298                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
29299             }
29300             el.child("a.color-"+color).addClass("x-color-palette-sel");
29301             this.value = color;
29302             this.fireEvent("select", this, color);
29303         }
29304     }
29305 });/*
29306  * Based on:
29307  * Ext JS Library 1.1.1
29308  * Copyright(c) 2006-2007, Ext JS, LLC.
29309  *
29310  * Originally Released Under LGPL - original licence link has changed is not relivant.
29311  *
29312  * Fork - LGPL
29313  * <script type="text/javascript">
29314  */
29315  
29316 /**
29317  * @class Roo.DatePicker
29318  * @extends Roo.Component
29319  * Simple date picker class.
29320  * @constructor
29321  * Create a new DatePicker
29322  * @param {Object} config The config object
29323  */
29324 Roo.DatePicker = function(config){
29325     Roo.DatePicker.superclass.constructor.call(this, config);
29326
29327     this.value = config && config.value ?
29328                  config.value.clearTime() : new Date().clearTime();
29329
29330     this.addEvents({
29331         /**
29332              * @event select
29333              * Fires when a date is selected
29334              * @param {DatePicker} this
29335              * @param {Date} date The selected date
29336              */
29337         'select': true,
29338         /**
29339              * @event monthchange
29340              * Fires when the displayed month changes 
29341              * @param {DatePicker} this
29342              * @param {Date} date The selected month
29343              */
29344         'monthchange': true
29345     });
29346
29347     if(this.handler){
29348         this.on("select", this.handler,  this.scope || this);
29349     }
29350     // build the disabledDatesRE
29351     if(!this.disabledDatesRE && this.disabledDates){
29352         var dd = this.disabledDates;
29353         var re = "(?:";
29354         for(var i = 0; i < dd.length; i++){
29355             re += dd[i];
29356             if(i != dd.length-1) {
29357                 re += "|";
29358             }
29359         }
29360         this.disabledDatesRE = new RegExp(re + ")");
29361     }
29362 };
29363
29364 Roo.extend(Roo.DatePicker, Roo.Component, {
29365     /**
29366      * @cfg {String} todayText
29367      * The text to display on the button that selects the current date (defaults to "Today")
29368      */
29369     todayText : "Today",
29370     /**
29371      * @cfg {String} okText
29372      * The text to display on the ok button
29373      */
29374     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
29375     /**
29376      * @cfg {String} cancelText
29377      * The text to display on the cancel button
29378      */
29379     cancelText : "Cancel",
29380     /**
29381      * @cfg {String} todayTip
29382      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
29383      */
29384     todayTip : "{0} (Spacebar)",
29385     /**
29386      * @cfg {Date} minDate
29387      * Minimum allowable date (JavaScript date object, defaults to null)
29388      */
29389     minDate : null,
29390     /**
29391      * @cfg {Date} maxDate
29392      * Maximum allowable date (JavaScript date object, defaults to null)
29393      */
29394     maxDate : null,
29395     /**
29396      * @cfg {String} minText
29397      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
29398      */
29399     minText : "This date is before the minimum date",
29400     /**
29401      * @cfg {String} maxText
29402      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
29403      */
29404     maxText : "This date is after the maximum date",
29405     /**
29406      * @cfg {String} format
29407      * The default date format string which can be overriden for localization support.  The format must be
29408      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
29409      */
29410     format : "m/d/y",
29411     /**
29412      * @cfg {Array} disabledDays
29413      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
29414      */
29415     disabledDays : null,
29416     /**
29417      * @cfg {String} disabledDaysText
29418      * The tooltip to display when the date falls on a disabled day (defaults to "")
29419      */
29420     disabledDaysText : "",
29421     /**
29422      * @cfg {RegExp} disabledDatesRE
29423      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
29424      */
29425     disabledDatesRE : null,
29426     /**
29427      * @cfg {String} disabledDatesText
29428      * The tooltip text to display when the date falls on a disabled date (defaults to "")
29429      */
29430     disabledDatesText : "",
29431     /**
29432      * @cfg {Boolean} constrainToViewport
29433      * True to constrain the date picker to the viewport (defaults to true)
29434      */
29435     constrainToViewport : true,
29436     /**
29437      * @cfg {Array} monthNames
29438      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
29439      */
29440     monthNames : Date.monthNames,
29441     /**
29442      * @cfg {Array} dayNames
29443      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
29444      */
29445     dayNames : Date.dayNames,
29446     /**
29447      * @cfg {String} nextText
29448      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
29449      */
29450     nextText: 'Next Month (Control+Right)',
29451     /**
29452      * @cfg {String} prevText
29453      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
29454      */
29455     prevText: 'Previous Month (Control+Left)',
29456     /**
29457      * @cfg {String} monthYearText
29458      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
29459      */
29460     monthYearText: 'Choose a month (Control+Up/Down to move years)',
29461     /**
29462      * @cfg {Number} startDay
29463      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
29464      */
29465     startDay : 0,
29466     /**
29467      * @cfg {Bool} showClear
29468      * Show a clear button (usefull for date form elements that can be blank.)
29469      */
29470     
29471     showClear: false,
29472     
29473     /**
29474      * Sets the value of the date field
29475      * @param {Date} value The date to set
29476      */
29477     setValue : function(value){
29478         var old = this.value;
29479         
29480         if (typeof(value) == 'string') {
29481          
29482             value = Date.parseDate(value, this.format);
29483         }
29484         if (!value) {
29485             value = new Date();
29486         }
29487         
29488         this.value = value.clearTime(true);
29489         if(this.el){
29490             this.update(this.value);
29491         }
29492     },
29493
29494     /**
29495      * Gets the current selected value of the date field
29496      * @return {Date} The selected date
29497      */
29498     getValue : function(){
29499         return this.value;
29500     },
29501
29502     // private
29503     focus : function(){
29504         if(this.el){
29505             this.update(this.activeDate);
29506         }
29507     },
29508
29509     // privateval
29510     onRender : function(container, position){
29511         
29512         var m = [
29513              '<table cellspacing="0">',
29514                 '<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>',
29515                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
29516         var dn = this.dayNames;
29517         for(var i = 0; i < 7; i++){
29518             var d = this.startDay+i;
29519             if(d > 6){
29520                 d = d-7;
29521             }
29522             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
29523         }
29524         m[m.length] = "</tr></thead><tbody><tr>";
29525         for(var i = 0; i < 42; i++) {
29526             if(i % 7 == 0 && i != 0){
29527                 m[m.length] = "</tr><tr>";
29528             }
29529             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
29530         }
29531         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
29532             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
29533
29534         var el = document.createElement("div");
29535         el.className = "x-date-picker";
29536         el.innerHTML = m.join("");
29537
29538         container.dom.insertBefore(el, position);
29539
29540         this.el = Roo.get(el);
29541         this.eventEl = Roo.get(el.firstChild);
29542
29543         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
29544             handler: this.showPrevMonth,
29545             scope: this,
29546             preventDefault:true,
29547             stopDefault:true
29548         });
29549
29550         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
29551             handler: this.showNextMonth,
29552             scope: this,
29553             preventDefault:true,
29554             stopDefault:true
29555         });
29556
29557         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
29558
29559         this.monthPicker = this.el.down('div.x-date-mp');
29560         this.monthPicker.enableDisplayMode('block');
29561         
29562         var kn = new Roo.KeyNav(this.eventEl, {
29563             "left" : function(e){
29564                 e.ctrlKey ?
29565                     this.showPrevMonth() :
29566                     this.update(this.activeDate.add("d", -1));
29567             },
29568
29569             "right" : function(e){
29570                 e.ctrlKey ?
29571                     this.showNextMonth() :
29572                     this.update(this.activeDate.add("d", 1));
29573             },
29574
29575             "up" : function(e){
29576                 e.ctrlKey ?
29577                     this.showNextYear() :
29578                     this.update(this.activeDate.add("d", -7));
29579             },
29580
29581             "down" : function(e){
29582                 e.ctrlKey ?
29583                     this.showPrevYear() :
29584                     this.update(this.activeDate.add("d", 7));
29585             },
29586
29587             "pageUp" : function(e){
29588                 this.showNextMonth();
29589             },
29590
29591             "pageDown" : function(e){
29592                 this.showPrevMonth();
29593             },
29594
29595             "enter" : function(e){
29596                 e.stopPropagation();
29597                 return true;
29598             },
29599
29600             scope : this
29601         });
29602
29603         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
29604
29605         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
29606
29607         this.el.unselectable();
29608         
29609         this.cells = this.el.select("table.x-date-inner tbody td");
29610         this.textNodes = this.el.query("table.x-date-inner tbody span");
29611
29612         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
29613             text: "&#160;",
29614             tooltip: this.monthYearText
29615         });
29616
29617         this.mbtn.on('click', this.showMonthPicker, this);
29618         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
29619
29620
29621         var today = (new Date()).dateFormat(this.format);
29622         
29623         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
29624         if (this.showClear) {
29625             baseTb.add( new Roo.Toolbar.Fill());
29626         }
29627         baseTb.add({
29628             text: String.format(this.todayText, today),
29629             tooltip: String.format(this.todayTip, today),
29630             handler: this.selectToday,
29631             scope: this
29632         });
29633         
29634         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
29635             
29636         //});
29637         if (this.showClear) {
29638             
29639             baseTb.add( new Roo.Toolbar.Fill());
29640             baseTb.add({
29641                 text: '&#160;',
29642                 cls: 'x-btn-icon x-btn-clear',
29643                 handler: function() {
29644                     //this.value = '';
29645                     this.fireEvent("select", this, '');
29646                 },
29647                 scope: this
29648             });
29649         }
29650         
29651         
29652         if(Roo.isIE){
29653             this.el.repaint();
29654         }
29655         this.update(this.value);
29656     },
29657
29658     createMonthPicker : function(){
29659         if(!this.monthPicker.dom.firstChild){
29660             var buf = ['<table border="0" cellspacing="0">'];
29661             for(var i = 0; i < 6; i++){
29662                 buf.push(
29663                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
29664                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
29665                     i == 0 ?
29666                     '<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>' :
29667                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
29668                 );
29669             }
29670             buf.push(
29671                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
29672                     this.okText,
29673                     '</button><button type="button" class="x-date-mp-cancel">',
29674                     this.cancelText,
29675                     '</button></td></tr>',
29676                 '</table>'
29677             );
29678             this.monthPicker.update(buf.join(''));
29679             this.monthPicker.on('click', this.onMonthClick, this);
29680             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
29681
29682             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
29683             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
29684
29685             this.mpMonths.each(function(m, a, i){
29686                 i += 1;
29687                 if((i%2) == 0){
29688                     m.dom.xmonth = 5 + Math.round(i * .5);
29689                 }else{
29690                     m.dom.xmonth = Math.round((i-1) * .5);
29691                 }
29692             });
29693         }
29694     },
29695
29696     showMonthPicker : function(){
29697         this.createMonthPicker();
29698         var size = this.el.getSize();
29699         this.monthPicker.setSize(size);
29700         this.monthPicker.child('table').setSize(size);
29701
29702         this.mpSelMonth = (this.activeDate || this.value).getMonth();
29703         this.updateMPMonth(this.mpSelMonth);
29704         this.mpSelYear = (this.activeDate || this.value).getFullYear();
29705         this.updateMPYear(this.mpSelYear);
29706
29707         this.monthPicker.slideIn('t', {duration:.2});
29708     },
29709
29710     updateMPYear : function(y){
29711         this.mpyear = y;
29712         var ys = this.mpYears.elements;
29713         for(var i = 1; i <= 10; i++){
29714             var td = ys[i-1], y2;
29715             if((i%2) == 0){
29716                 y2 = y + Math.round(i * .5);
29717                 td.firstChild.innerHTML = y2;
29718                 td.xyear = y2;
29719             }else{
29720                 y2 = y - (5-Math.round(i * .5));
29721                 td.firstChild.innerHTML = y2;
29722                 td.xyear = y2;
29723             }
29724             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
29725         }
29726     },
29727
29728     updateMPMonth : function(sm){
29729         this.mpMonths.each(function(m, a, i){
29730             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
29731         });
29732     },
29733
29734     selectMPMonth: function(m){
29735         
29736     },
29737
29738     onMonthClick : function(e, t){
29739         e.stopEvent();
29740         var el = new Roo.Element(t), pn;
29741         if(el.is('button.x-date-mp-cancel')){
29742             this.hideMonthPicker();
29743         }
29744         else if(el.is('button.x-date-mp-ok')){
29745             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29746             this.hideMonthPicker();
29747         }
29748         else if(pn = el.up('td.x-date-mp-month', 2)){
29749             this.mpMonths.removeClass('x-date-mp-sel');
29750             pn.addClass('x-date-mp-sel');
29751             this.mpSelMonth = pn.dom.xmonth;
29752         }
29753         else if(pn = el.up('td.x-date-mp-year', 2)){
29754             this.mpYears.removeClass('x-date-mp-sel');
29755             pn.addClass('x-date-mp-sel');
29756             this.mpSelYear = pn.dom.xyear;
29757         }
29758         else if(el.is('a.x-date-mp-prev')){
29759             this.updateMPYear(this.mpyear-10);
29760         }
29761         else if(el.is('a.x-date-mp-next')){
29762             this.updateMPYear(this.mpyear+10);
29763         }
29764     },
29765
29766     onMonthDblClick : function(e, t){
29767         e.stopEvent();
29768         var el = new Roo.Element(t), pn;
29769         if(pn = el.up('td.x-date-mp-month', 2)){
29770             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
29771             this.hideMonthPicker();
29772         }
29773         else if(pn = el.up('td.x-date-mp-year', 2)){
29774             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29775             this.hideMonthPicker();
29776         }
29777     },
29778
29779     hideMonthPicker : function(disableAnim){
29780         if(this.monthPicker){
29781             if(disableAnim === true){
29782                 this.monthPicker.hide();
29783             }else{
29784                 this.monthPicker.slideOut('t', {duration:.2});
29785             }
29786         }
29787     },
29788
29789     // private
29790     showPrevMonth : function(e){
29791         this.update(this.activeDate.add("mo", -1));
29792     },
29793
29794     // private
29795     showNextMonth : function(e){
29796         this.update(this.activeDate.add("mo", 1));
29797     },
29798
29799     // private
29800     showPrevYear : function(){
29801         this.update(this.activeDate.add("y", -1));
29802     },
29803
29804     // private
29805     showNextYear : function(){
29806         this.update(this.activeDate.add("y", 1));
29807     },
29808
29809     // private
29810     handleMouseWheel : function(e){
29811         var delta = e.getWheelDelta();
29812         if(delta > 0){
29813             this.showPrevMonth();
29814             e.stopEvent();
29815         } else if(delta < 0){
29816             this.showNextMonth();
29817             e.stopEvent();
29818         }
29819     },
29820
29821     // private
29822     handleDateClick : function(e, t){
29823         e.stopEvent();
29824         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
29825             this.setValue(new Date(t.dateValue));
29826             this.fireEvent("select", this, this.value);
29827         }
29828     },
29829
29830     // private
29831     selectToday : function(){
29832         this.setValue(new Date().clearTime());
29833         this.fireEvent("select", this, this.value);
29834     },
29835
29836     // private
29837     update : function(date)
29838     {
29839         var vd = this.activeDate;
29840         this.activeDate = date;
29841         if(vd && this.el){
29842             var t = date.getTime();
29843             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
29844                 this.cells.removeClass("x-date-selected");
29845                 this.cells.each(function(c){
29846                    if(c.dom.firstChild.dateValue == t){
29847                        c.addClass("x-date-selected");
29848                        setTimeout(function(){
29849                             try{c.dom.firstChild.focus();}catch(e){}
29850                        }, 50);
29851                        return false;
29852                    }
29853                 });
29854                 return;
29855             }
29856         }
29857         
29858         var days = date.getDaysInMonth();
29859         var firstOfMonth = date.getFirstDateOfMonth();
29860         var startingPos = firstOfMonth.getDay()-this.startDay;
29861
29862         if(startingPos <= this.startDay){
29863             startingPos += 7;
29864         }
29865
29866         var pm = date.add("mo", -1);
29867         var prevStart = pm.getDaysInMonth()-startingPos;
29868
29869         var cells = this.cells.elements;
29870         var textEls = this.textNodes;
29871         days += startingPos;
29872
29873         // convert everything to numbers so it's fast
29874         var day = 86400000;
29875         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
29876         var today = new Date().clearTime().getTime();
29877         var sel = date.clearTime().getTime();
29878         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
29879         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
29880         var ddMatch = this.disabledDatesRE;
29881         var ddText = this.disabledDatesText;
29882         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
29883         var ddaysText = this.disabledDaysText;
29884         var format = this.format;
29885
29886         var setCellClass = function(cal, cell){
29887             cell.title = "";
29888             var t = d.getTime();
29889             cell.firstChild.dateValue = t;
29890             if(t == today){
29891                 cell.className += " x-date-today";
29892                 cell.title = cal.todayText;
29893             }
29894             if(t == sel){
29895                 cell.className += " x-date-selected";
29896                 setTimeout(function(){
29897                     try{cell.firstChild.focus();}catch(e){}
29898                 }, 50);
29899             }
29900             // disabling
29901             if(t < min) {
29902                 cell.className = " x-date-disabled";
29903                 cell.title = cal.minText;
29904                 return;
29905             }
29906             if(t > max) {
29907                 cell.className = " x-date-disabled";
29908                 cell.title = cal.maxText;
29909                 return;
29910             }
29911             if(ddays){
29912                 if(ddays.indexOf(d.getDay()) != -1){
29913                     cell.title = ddaysText;
29914                     cell.className = " x-date-disabled";
29915                 }
29916             }
29917             if(ddMatch && format){
29918                 var fvalue = d.dateFormat(format);
29919                 if(ddMatch.test(fvalue)){
29920                     cell.title = ddText.replace("%0", fvalue);
29921                     cell.className = " x-date-disabled";
29922                 }
29923             }
29924         };
29925
29926         var i = 0;
29927         for(; i < startingPos; i++) {
29928             textEls[i].innerHTML = (++prevStart);
29929             d.setDate(d.getDate()+1);
29930             cells[i].className = "x-date-prevday";
29931             setCellClass(this, cells[i]);
29932         }
29933         for(; i < days; i++){
29934             intDay = i - startingPos + 1;
29935             textEls[i].innerHTML = (intDay);
29936             d.setDate(d.getDate()+1);
29937             cells[i].className = "x-date-active";
29938             setCellClass(this, cells[i]);
29939         }
29940         var extraDays = 0;
29941         for(; i < 42; i++) {
29942              textEls[i].innerHTML = (++extraDays);
29943              d.setDate(d.getDate()+1);
29944              cells[i].className = "x-date-nextday";
29945              setCellClass(this, cells[i]);
29946         }
29947
29948         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
29949         this.fireEvent('monthchange', this, date);
29950         
29951         if(!this.internalRender){
29952             var main = this.el.dom.firstChild;
29953             var w = main.offsetWidth;
29954             this.el.setWidth(w + this.el.getBorderWidth("lr"));
29955             Roo.fly(main).setWidth(w);
29956             this.internalRender = true;
29957             // opera does not respect the auto grow header center column
29958             // then, after it gets a width opera refuses to recalculate
29959             // without a second pass
29960             if(Roo.isOpera && !this.secondPass){
29961                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
29962                 this.secondPass = true;
29963                 this.update.defer(10, this, [date]);
29964             }
29965         }
29966         
29967         
29968     }
29969 });        /*
29970  * Based on:
29971  * Ext JS Library 1.1.1
29972  * Copyright(c) 2006-2007, Ext JS, LLC.
29973  *
29974  * Originally Released Under LGPL - original licence link has changed is not relivant.
29975  *
29976  * Fork - LGPL
29977  * <script type="text/javascript">
29978  */
29979 /**
29980  * @class Roo.TabPanel
29981  * @extends Roo.util.Observable
29982  * A lightweight tab container.
29983  * <br><br>
29984  * Usage:
29985  * <pre><code>
29986 // basic tabs 1, built from existing content
29987 var tabs = new Roo.TabPanel("tabs1");
29988 tabs.addTab("script", "View Script");
29989 tabs.addTab("markup", "View Markup");
29990 tabs.activate("script");
29991
29992 // more advanced tabs, built from javascript
29993 var jtabs = new Roo.TabPanel("jtabs");
29994 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
29995
29996 // set up the UpdateManager
29997 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
29998 var updater = tab2.getUpdateManager();
29999 updater.setDefaultUrl("ajax1.htm");
30000 tab2.on('activate', updater.refresh, updater, true);
30001
30002 // Use setUrl for Ajax loading
30003 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
30004 tab3.setUrl("ajax2.htm", null, true);
30005
30006 // Disabled tab
30007 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
30008 tab4.disable();
30009
30010 jtabs.activate("jtabs-1");
30011  * </code></pre>
30012  * @constructor
30013  * Create a new TabPanel.
30014  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
30015  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
30016  */
30017 Roo.TabPanel = function(container, config){
30018     /**
30019     * The container element for this TabPanel.
30020     * @type Roo.Element
30021     */
30022     this.el = Roo.get(container, true);
30023     if(config){
30024         if(typeof config == "boolean"){
30025             this.tabPosition = config ? "bottom" : "top";
30026         }else{
30027             Roo.apply(this, config);
30028         }
30029     }
30030     if(this.tabPosition == "bottom"){
30031         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30032         this.el.addClass("x-tabs-bottom");
30033     }
30034     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
30035     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
30036     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
30037     if(Roo.isIE){
30038         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
30039     }
30040     if(this.tabPosition != "bottom"){
30041         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
30042          * @type Roo.Element
30043          */
30044         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30045         this.el.addClass("x-tabs-top");
30046     }
30047     this.items = [];
30048
30049     this.bodyEl.setStyle("position", "relative");
30050
30051     this.active = null;
30052     this.activateDelegate = this.activate.createDelegate(this);
30053
30054     this.addEvents({
30055         /**
30056          * @event tabchange
30057          * Fires when the active tab changes
30058          * @param {Roo.TabPanel} this
30059          * @param {Roo.TabPanelItem} activePanel The new active tab
30060          */
30061         "tabchange": true,
30062         /**
30063          * @event beforetabchange
30064          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
30065          * @param {Roo.TabPanel} this
30066          * @param {Object} e Set cancel to true on this object to cancel the tab change
30067          * @param {Roo.TabPanelItem} tab The tab being changed to
30068          */
30069         "beforetabchange" : true
30070     });
30071
30072     Roo.EventManager.onWindowResize(this.onResize, this);
30073     this.cpad = this.el.getPadding("lr");
30074     this.hiddenCount = 0;
30075
30076
30077     // toolbar on the tabbar support...
30078     if (this.toolbar) {
30079         var tcfg = this.toolbar;
30080         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
30081         this.toolbar = new Roo.Toolbar(tcfg);
30082         if (Roo.isSafari) {
30083             var tbl = tcfg.container.child('table', true);
30084             tbl.setAttribute('width', '100%');
30085         }
30086         
30087     }
30088    
30089
30090
30091     Roo.TabPanel.superclass.constructor.call(this);
30092 };
30093
30094 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
30095     /*
30096      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
30097      */
30098     tabPosition : "top",
30099     /*
30100      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
30101      */
30102     currentTabWidth : 0,
30103     /*
30104      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
30105      */
30106     minTabWidth : 40,
30107     /*
30108      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
30109      */
30110     maxTabWidth : 250,
30111     /*
30112      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
30113      */
30114     preferredTabWidth : 175,
30115     /*
30116      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
30117      */
30118     resizeTabs : false,
30119     /*
30120      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
30121      */
30122     monitorResize : true,
30123     /*
30124      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
30125      */
30126     toolbar : false,
30127
30128     /**
30129      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
30130      * @param {String} id The id of the div to use <b>or create</b>
30131      * @param {String} text The text for the tab
30132      * @param {String} content (optional) Content to put in the TabPanelItem body
30133      * @param {Boolean} closable (optional) True to create a close icon on the tab
30134      * @return {Roo.TabPanelItem} The created TabPanelItem
30135      */
30136     addTab : function(id, text, content, closable){
30137         var item = new Roo.TabPanelItem(this, id, text, closable);
30138         this.addTabItem(item);
30139         if(content){
30140             item.setContent(content);
30141         }
30142         return item;
30143     },
30144
30145     /**
30146      * Returns the {@link Roo.TabPanelItem} with the specified id/index
30147      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
30148      * @return {Roo.TabPanelItem}
30149      */
30150     getTab : function(id){
30151         return this.items[id];
30152     },
30153
30154     /**
30155      * Hides the {@link Roo.TabPanelItem} with the specified id/index
30156      * @param {String/Number} id The id or index of the TabPanelItem to hide.
30157      */
30158     hideTab : function(id){
30159         var t = this.items[id];
30160         if(!t.isHidden()){
30161            t.setHidden(true);
30162            this.hiddenCount++;
30163            this.autoSizeTabs();
30164         }
30165     },
30166
30167     /**
30168      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
30169      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
30170      */
30171     unhideTab : function(id){
30172         var t = this.items[id];
30173         if(t.isHidden()){
30174            t.setHidden(false);
30175            this.hiddenCount--;
30176            this.autoSizeTabs();
30177         }
30178     },
30179
30180     /**
30181      * Adds an existing {@link Roo.TabPanelItem}.
30182      * @param {Roo.TabPanelItem} item The TabPanelItem to add
30183      */
30184     addTabItem : function(item){
30185         this.items[item.id] = item;
30186         this.items.push(item);
30187         if(this.resizeTabs){
30188            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
30189            this.autoSizeTabs();
30190         }else{
30191             item.autoSize();
30192         }
30193     },
30194
30195     /**
30196      * Removes a {@link Roo.TabPanelItem}.
30197      * @param {String/Number} id The id or index of the TabPanelItem to remove.
30198      */
30199     removeTab : function(id){
30200         var items = this.items;
30201         var tab = items[id];
30202         if(!tab) { return; }
30203         var index = items.indexOf(tab);
30204         if(this.active == tab && items.length > 1){
30205             var newTab = this.getNextAvailable(index);
30206             if(newTab) {
30207                 newTab.activate();
30208             }
30209         }
30210         this.stripEl.dom.removeChild(tab.pnode.dom);
30211         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
30212             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
30213         }
30214         items.splice(index, 1);
30215         delete this.items[tab.id];
30216         tab.fireEvent("close", tab);
30217         tab.purgeListeners();
30218         this.autoSizeTabs();
30219     },
30220
30221     getNextAvailable : function(start){
30222         var items = this.items;
30223         var index = start;
30224         // look for a next tab that will slide over to
30225         // replace the one being removed
30226         while(index < items.length){
30227             var item = items[++index];
30228             if(item && !item.isHidden()){
30229                 return item;
30230             }
30231         }
30232         // if one isn't found select the previous tab (on the left)
30233         index = start;
30234         while(index >= 0){
30235             var item = items[--index];
30236             if(item && !item.isHidden()){
30237                 return item;
30238             }
30239         }
30240         return null;
30241     },
30242
30243     /**
30244      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
30245      * @param {String/Number} id The id or index of the TabPanelItem to disable.
30246      */
30247     disableTab : function(id){
30248         var tab = this.items[id];
30249         if(tab && this.active != tab){
30250             tab.disable();
30251         }
30252     },
30253
30254     /**
30255      * Enables a {@link Roo.TabPanelItem} that is disabled.
30256      * @param {String/Number} id The id or index of the TabPanelItem to enable.
30257      */
30258     enableTab : function(id){
30259         var tab = this.items[id];
30260         tab.enable();
30261     },
30262
30263     /**
30264      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
30265      * @param {String/Number} id The id or index of the TabPanelItem to activate.
30266      * @return {Roo.TabPanelItem} The TabPanelItem.
30267      */
30268     activate : function(id){
30269         var tab = this.items[id];
30270         if(!tab){
30271             return null;
30272         }
30273         if(tab == this.active || tab.disabled){
30274             return tab;
30275         }
30276         var e = {};
30277         this.fireEvent("beforetabchange", this, e, tab);
30278         if(e.cancel !== true && !tab.disabled){
30279             if(this.active){
30280                 this.active.hide();
30281             }
30282             this.active = this.items[id];
30283             this.active.show();
30284             this.fireEvent("tabchange", this, this.active);
30285         }
30286         return tab;
30287     },
30288
30289     /**
30290      * Gets the active {@link Roo.TabPanelItem}.
30291      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
30292      */
30293     getActiveTab : function(){
30294         return this.active;
30295     },
30296
30297     /**
30298      * Updates the tab body element to fit the height of the container element
30299      * for overflow scrolling
30300      * @param {Number} targetHeight (optional) Override the starting height from the elements height
30301      */
30302     syncHeight : function(targetHeight){
30303         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
30304         var bm = this.bodyEl.getMargins();
30305         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
30306         this.bodyEl.setHeight(newHeight);
30307         return newHeight;
30308     },
30309
30310     onResize : function(){
30311         if(this.monitorResize){
30312             this.autoSizeTabs();
30313         }
30314     },
30315
30316     /**
30317      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
30318      */
30319     beginUpdate : function(){
30320         this.updating = true;
30321     },
30322
30323     /**
30324      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
30325      */
30326     endUpdate : function(){
30327         this.updating = false;
30328         this.autoSizeTabs();
30329     },
30330
30331     /**
30332      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
30333      */
30334     autoSizeTabs : function(){
30335         var count = this.items.length;
30336         var vcount = count - this.hiddenCount;
30337         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
30338             return;
30339         }
30340         var w = Math.max(this.el.getWidth() - this.cpad, 10);
30341         var availWidth = Math.floor(w / vcount);
30342         var b = this.stripBody;
30343         if(b.getWidth() > w){
30344             var tabs = this.items;
30345             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
30346             if(availWidth < this.minTabWidth){
30347                 /*if(!this.sleft){    // incomplete scrolling code
30348                     this.createScrollButtons();
30349                 }
30350                 this.showScroll();
30351                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
30352             }
30353         }else{
30354             if(this.currentTabWidth < this.preferredTabWidth){
30355                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
30356             }
30357         }
30358     },
30359
30360     /**
30361      * Returns the number of tabs in this TabPanel.
30362      * @return {Number}
30363      */
30364      getCount : function(){
30365          return this.items.length;
30366      },
30367
30368     /**
30369      * Resizes all the tabs to the passed width
30370      * @param {Number} The new width
30371      */
30372     setTabWidth : function(width){
30373         this.currentTabWidth = width;
30374         for(var i = 0, len = this.items.length; i < len; i++) {
30375                 if(!this.items[i].isHidden()) {
30376                 this.items[i].setWidth(width);
30377             }
30378         }
30379     },
30380
30381     /**
30382      * Destroys this TabPanel
30383      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
30384      */
30385     destroy : function(removeEl){
30386         Roo.EventManager.removeResizeListener(this.onResize, this);
30387         for(var i = 0, len = this.items.length; i < len; i++){
30388             this.items[i].purgeListeners();
30389         }
30390         if(removeEl === true){
30391             this.el.update("");
30392             this.el.remove();
30393         }
30394     }
30395 });
30396
30397 /**
30398  * @class Roo.TabPanelItem
30399  * @extends Roo.util.Observable
30400  * Represents an individual item (tab plus body) in a TabPanel.
30401  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
30402  * @param {String} id The id of this TabPanelItem
30403  * @param {String} text The text for the tab of this TabPanelItem
30404  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
30405  */
30406 Roo.TabPanelItem = function(tabPanel, id, text, closable){
30407     /**
30408      * The {@link Roo.TabPanel} this TabPanelItem belongs to
30409      * @type Roo.TabPanel
30410      */
30411     this.tabPanel = tabPanel;
30412     /**
30413      * The id for this TabPanelItem
30414      * @type String
30415      */
30416     this.id = id;
30417     /** @private */
30418     this.disabled = false;
30419     /** @private */
30420     this.text = text;
30421     /** @private */
30422     this.loaded = false;
30423     this.closable = closable;
30424
30425     /**
30426      * The body element for this TabPanelItem.
30427      * @type Roo.Element
30428      */
30429     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
30430     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
30431     this.bodyEl.setStyle("display", "block");
30432     this.bodyEl.setStyle("zoom", "1");
30433     this.hideAction();
30434
30435     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
30436     /** @private */
30437     this.el = Roo.get(els.el, true);
30438     this.inner = Roo.get(els.inner, true);
30439     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
30440     this.pnode = Roo.get(els.el.parentNode, true);
30441     this.el.on("mousedown", this.onTabMouseDown, this);
30442     this.el.on("click", this.onTabClick, this);
30443     /** @private */
30444     if(closable){
30445         var c = Roo.get(els.close, true);
30446         c.dom.title = this.closeText;
30447         c.addClassOnOver("close-over");
30448         c.on("click", this.closeClick, this);
30449      }
30450
30451     this.addEvents({
30452          /**
30453          * @event activate
30454          * Fires when this tab becomes the active tab.
30455          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30456          * @param {Roo.TabPanelItem} this
30457          */
30458         "activate": true,
30459         /**
30460          * @event beforeclose
30461          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
30462          * @param {Roo.TabPanelItem} this
30463          * @param {Object} e Set cancel to true on this object to cancel the close.
30464          */
30465         "beforeclose": true,
30466         /**
30467          * @event close
30468          * Fires when this tab is closed.
30469          * @param {Roo.TabPanelItem} this
30470          */
30471          "close": true,
30472         /**
30473          * @event deactivate
30474          * Fires when this tab is no longer the active tab.
30475          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30476          * @param {Roo.TabPanelItem} this
30477          */
30478          "deactivate" : true
30479     });
30480     this.hidden = false;
30481
30482     Roo.TabPanelItem.superclass.constructor.call(this);
30483 };
30484
30485 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
30486     purgeListeners : function(){
30487        Roo.util.Observable.prototype.purgeListeners.call(this);
30488        this.el.removeAllListeners();
30489     },
30490     /**
30491      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
30492      */
30493     show : function(){
30494         this.pnode.addClass("on");
30495         this.showAction();
30496         if(Roo.isOpera){
30497             this.tabPanel.stripWrap.repaint();
30498         }
30499         this.fireEvent("activate", this.tabPanel, this);
30500     },
30501
30502     /**
30503      * Returns true if this tab is the active tab.
30504      * @return {Boolean}
30505      */
30506     isActive : function(){
30507         return this.tabPanel.getActiveTab() == this;
30508     },
30509
30510     /**
30511      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
30512      */
30513     hide : function(){
30514         this.pnode.removeClass("on");
30515         this.hideAction();
30516         this.fireEvent("deactivate", this.tabPanel, this);
30517     },
30518
30519     hideAction : function(){
30520         this.bodyEl.hide();
30521         this.bodyEl.setStyle("position", "absolute");
30522         this.bodyEl.setLeft("-20000px");
30523         this.bodyEl.setTop("-20000px");
30524     },
30525
30526     showAction : function(){
30527         this.bodyEl.setStyle("position", "relative");
30528         this.bodyEl.setTop("");
30529         this.bodyEl.setLeft("");
30530         this.bodyEl.show();
30531     },
30532
30533     /**
30534      * Set the tooltip for the tab.
30535      * @param {String} tooltip The tab's tooltip
30536      */
30537     setTooltip : function(text){
30538         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
30539             this.textEl.dom.qtip = text;
30540             this.textEl.dom.removeAttribute('title');
30541         }else{
30542             this.textEl.dom.title = text;
30543         }
30544     },
30545
30546     onTabClick : function(e){
30547         e.preventDefault();
30548         this.tabPanel.activate(this.id);
30549     },
30550
30551     onTabMouseDown : function(e){
30552         e.preventDefault();
30553         this.tabPanel.activate(this.id);
30554     },
30555
30556     getWidth : function(){
30557         return this.inner.getWidth();
30558     },
30559
30560     setWidth : function(width){
30561         var iwidth = width - this.pnode.getPadding("lr");
30562         this.inner.setWidth(iwidth);
30563         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
30564         this.pnode.setWidth(width);
30565     },
30566
30567     /**
30568      * Show or hide the tab
30569      * @param {Boolean} hidden True to hide or false to show.
30570      */
30571     setHidden : function(hidden){
30572         this.hidden = hidden;
30573         this.pnode.setStyle("display", hidden ? "none" : "");
30574     },
30575
30576     /**
30577      * Returns true if this tab is "hidden"
30578      * @return {Boolean}
30579      */
30580     isHidden : function(){
30581         return this.hidden;
30582     },
30583
30584     /**
30585      * Returns the text for this tab
30586      * @return {String}
30587      */
30588     getText : function(){
30589         return this.text;
30590     },
30591
30592     autoSize : function(){
30593         //this.el.beginMeasure();
30594         this.textEl.setWidth(1);
30595         /*
30596          *  #2804 [new] Tabs in Roojs
30597          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
30598          */
30599         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
30600         //this.el.endMeasure();
30601     },
30602
30603     /**
30604      * Sets the text for the tab (Note: this also sets the tooltip text)
30605      * @param {String} text The tab's text and tooltip
30606      */
30607     setText : function(text){
30608         this.text = text;
30609         this.textEl.update(text);
30610         this.setTooltip(text);
30611         if(!this.tabPanel.resizeTabs){
30612             this.autoSize();
30613         }
30614     },
30615     /**
30616      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
30617      */
30618     activate : function(){
30619         this.tabPanel.activate(this.id);
30620     },
30621
30622     /**
30623      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
30624      */
30625     disable : function(){
30626         if(this.tabPanel.active != this){
30627             this.disabled = true;
30628             this.pnode.addClass("disabled");
30629         }
30630     },
30631
30632     /**
30633      * Enables this TabPanelItem if it was previously disabled.
30634      */
30635     enable : function(){
30636         this.disabled = false;
30637         this.pnode.removeClass("disabled");
30638     },
30639
30640     /**
30641      * Sets the content for this TabPanelItem.
30642      * @param {String} content The content
30643      * @param {Boolean} loadScripts true to look for and load scripts
30644      */
30645     setContent : function(content, loadScripts){
30646         this.bodyEl.update(content, loadScripts);
30647     },
30648
30649     /**
30650      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
30651      * @return {Roo.UpdateManager} The UpdateManager
30652      */
30653     getUpdateManager : function(){
30654         return this.bodyEl.getUpdateManager();
30655     },
30656
30657     /**
30658      * Set a URL to be used to load the content for this TabPanelItem.
30659      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
30660      * @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)
30661      * @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)
30662      * @return {Roo.UpdateManager} The UpdateManager
30663      */
30664     setUrl : function(url, params, loadOnce){
30665         if(this.refreshDelegate){
30666             this.un('activate', this.refreshDelegate);
30667         }
30668         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
30669         this.on("activate", this.refreshDelegate);
30670         return this.bodyEl.getUpdateManager();
30671     },
30672
30673     /** @private */
30674     _handleRefresh : function(url, params, loadOnce){
30675         if(!loadOnce || !this.loaded){
30676             var updater = this.bodyEl.getUpdateManager();
30677             updater.update(url, params, this._setLoaded.createDelegate(this));
30678         }
30679     },
30680
30681     /**
30682      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
30683      *   Will fail silently if the setUrl method has not been called.
30684      *   This does not activate the panel, just updates its content.
30685      */
30686     refresh : function(){
30687         if(this.refreshDelegate){
30688            this.loaded = false;
30689            this.refreshDelegate();
30690         }
30691     },
30692
30693     /** @private */
30694     _setLoaded : function(){
30695         this.loaded = true;
30696     },
30697
30698     /** @private */
30699     closeClick : function(e){
30700         var o = {};
30701         e.stopEvent();
30702         this.fireEvent("beforeclose", this, o);
30703         if(o.cancel !== true){
30704             this.tabPanel.removeTab(this.id);
30705         }
30706     },
30707     /**
30708      * The text displayed in the tooltip for the close icon.
30709      * @type String
30710      */
30711     closeText : "Close this tab"
30712 });
30713
30714 /** @private */
30715 Roo.TabPanel.prototype.createStrip = function(container){
30716     var strip = document.createElement("div");
30717     strip.className = "x-tabs-wrap";
30718     container.appendChild(strip);
30719     return strip;
30720 };
30721 /** @private */
30722 Roo.TabPanel.prototype.createStripList = function(strip){
30723     // div wrapper for retard IE
30724     // returns the "tr" element.
30725     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
30726         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
30727         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
30728     return strip.firstChild.firstChild.firstChild.firstChild;
30729 };
30730 /** @private */
30731 Roo.TabPanel.prototype.createBody = function(container){
30732     var body = document.createElement("div");
30733     Roo.id(body, "tab-body");
30734     Roo.fly(body).addClass("x-tabs-body");
30735     container.appendChild(body);
30736     return body;
30737 };
30738 /** @private */
30739 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
30740     var body = Roo.getDom(id);
30741     if(!body){
30742         body = document.createElement("div");
30743         body.id = id;
30744     }
30745     Roo.fly(body).addClass("x-tabs-item-body");
30746     bodyEl.insertBefore(body, bodyEl.firstChild);
30747     return body;
30748 };
30749 /** @private */
30750 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
30751     var td = document.createElement("td");
30752     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
30753     //stripEl.appendChild(td);
30754     if(closable){
30755         td.className = "x-tabs-closable";
30756         if(!this.closeTpl){
30757             this.closeTpl = new Roo.Template(
30758                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30759                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
30760                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
30761             );
30762         }
30763         var el = this.closeTpl.overwrite(td, {"text": text});
30764         var close = el.getElementsByTagName("div")[0];
30765         var inner = el.getElementsByTagName("em")[0];
30766         return {"el": el, "close": close, "inner": inner};
30767     } else {
30768         if(!this.tabTpl){
30769             this.tabTpl = new Roo.Template(
30770                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30771                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
30772             );
30773         }
30774         var el = this.tabTpl.overwrite(td, {"text": text});
30775         var inner = el.getElementsByTagName("em")[0];
30776         return {"el": el, "inner": inner};
30777     }
30778 };/*
30779  * Based on:
30780  * Ext JS Library 1.1.1
30781  * Copyright(c) 2006-2007, Ext JS, LLC.
30782  *
30783  * Originally Released Under LGPL - original licence link has changed is not relivant.
30784  *
30785  * Fork - LGPL
30786  * <script type="text/javascript">
30787  */
30788
30789 /**
30790  * @class Roo.Button
30791  * @extends Roo.util.Observable
30792  * Simple Button class
30793  * @cfg {String} text The button text
30794  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
30795  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
30796  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
30797  * @cfg {Object} scope The scope of the handler
30798  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
30799  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
30800  * @cfg {Boolean} hidden True to start hidden (defaults to false)
30801  * @cfg {Boolean} disabled True to start disabled (defaults to false)
30802  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
30803  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
30804    applies if enableToggle = true)
30805  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
30806  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
30807   an {@link Roo.util.ClickRepeater} config object (defaults to false).
30808  * @constructor
30809  * Create a new button
30810  * @param {Object} config The config object
30811  */
30812 Roo.Button = function(renderTo, config)
30813 {
30814     if (!config) {
30815         config = renderTo;
30816         renderTo = config.renderTo || false;
30817     }
30818     
30819     Roo.apply(this, config);
30820     this.addEvents({
30821         /**
30822              * @event click
30823              * Fires when this button is clicked
30824              * @param {Button} this
30825              * @param {EventObject} e The click event
30826              */
30827             "click" : true,
30828         /**
30829              * @event toggle
30830              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
30831              * @param {Button} this
30832              * @param {Boolean} pressed
30833              */
30834             "toggle" : true,
30835         /**
30836              * @event mouseover
30837              * Fires when the mouse hovers over the button
30838              * @param {Button} this
30839              * @param {Event} e The event object
30840              */
30841         'mouseover' : true,
30842         /**
30843              * @event mouseout
30844              * Fires when the mouse exits the button
30845              * @param {Button} this
30846              * @param {Event} e The event object
30847              */
30848         'mouseout': true,
30849          /**
30850              * @event render
30851              * Fires when the button is rendered
30852              * @param {Button} this
30853              */
30854         'render': true
30855     });
30856     if(this.menu){
30857         this.menu = Roo.menu.MenuMgr.get(this.menu);
30858     }
30859     // register listeners first!!  - so render can be captured..
30860     Roo.util.Observable.call(this);
30861     if(renderTo){
30862         this.render(renderTo);
30863     }
30864     
30865   
30866 };
30867
30868 Roo.extend(Roo.Button, Roo.util.Observable, {
30869     /**
30870      * 
30871      */
30872     
30873     /**
30874      * Read-only. True if this button is hidden
30875      * @type Boolean
30876      */
30877     hidden : false,
30878     /**
30879      * Read-only. True if this button is disabled
30880      * @type Boolean
30881      */
30882     disabled : false,
30883     /**
30884      * Read-only. True if this button is pressed (only if enableToggle = true)
30885      * @type Boolean
30886      */
30887     pressed : false,
30888
30889     /**
30890      * @cfg {Number} tabIndex 
30891      * The DOM tabIndex for this button (defaults to undefined)
30892      */
30893     tabIndex : undefined,
30894
30895     /**
30896      * @cfg {Boolean} enableToggle
30897      * True to enable pressed/not pressed toggling (defaults to false)
30898      */
30899     enableToggle: false,
30900     /**
30901      * @cfg {Roo.menu.Menu} menu
30902      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
30903      */
30904     menu : undefined,
30905     /**
30906      * @cfg {String} menuAlign
30907      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
30908      */
30909     menuAlign : "tl-bl?",
30910
30911     /**
30912      * @cfg {String} iconCls
30913      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
30914      */
30915     iconCls : undefined,
30916     /**
30917      * @cfg {String} type
30918      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
30919      */
30920     type : 'button',
30921
30922     // private
30923     menuClassTarget: 'tr',
30924
30925     /**
30926      * @cfg {String} clickEvent
30927      * The type of event to map to the button's event handler (defaults to 'click')
30928      */
30929     clickEvent : 'click',
30930
30931     /**
30932      * @cfg {Boolean} handleMouseEvents
30933      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
30934      */
30935     handleMouseEvents : true,
30936
30937     /**
30938      * @cfg {String} tooltipType
30939      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
30940      */
30941     tooltipType : 'qtip',
30942
30943     /**
30944      * @cfg {String} cls
30945      * A CSS class to apply to the button's main element.
30946      */
30947     
30948     /**
30949      * @cfg {Roo.Template} template (Optional)
30950      * An {@link Roo.Template} with which to create the Button's main element. This Template must
30951      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
30952      * require code modifications if required elements (e.g. a button) aren't present.
30953      */
30954
30955     // private
30956     render : function(renderTo){
30957         var btn;
30958         if(this.hideParent){
30959             this.parentEl = Roo.get(renderTo);
30960         }
30961         if(!this.dhconfig){
30962             if(!this.template){
30963                 if(!Roo.Button.buttonTemplate){
30964                     // hideous table template
30965                     Roo.Button.buttonTemplate = new Roo.Template(
30966                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
30967                         '<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>',
30968                         "</tr></tbody></table>");
30969                 }
30970                 this.template = Roo.Button.buttonTemplate;
30971             }
30972             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
30973             var btnEl = btn.child("button:first");
30974             btnEl.on('focus', this.onFocus, this);
30975             btnEl.on('blur', this.onBlur, this);
30976             if(this.cls){
30977                 btn.addClass(this.cls);
30978             }
30979             if(this.icon){
30980                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
30981             }
30982             if(this.iconCls){
30983                 btnEl.addClass(this.iconCls);
30984                 if(!this.cls){
30985                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
30986                 }
30987             }
30988             if(this.tabIndex !== undefined){
30989                 btnEl.dom.tabIndex = this.tabIndex;
30990             }
30991             if(this.tooltip){
30992                 if(typeof this.tooltip == 'object'){
30993                     Roo.QuickTips.tips(Roo.apply({
30994                           target: btnEl.id
30995                     }, this.tooltip));
30996                 } else {
30997                     btnEl.dom[this.tooltipType] = this.tooltip;
30998                 }
30999             }
31000         }else{
31001             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
31002         }
31003         this.el = btn;
31004         if(this.id){
31005             this.el.dom.id = this.el.id = this.id;
31006         }
31007         if(this.menu){
31008             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
31009             this.menu.on("show", this.onMenuShow, this);
31010             this.menu.on("hide", this.onMenuHide, this);
31011         }
31012         btn.addClass("x-btn");
31013         if(Roo.isIE && !Roo.isIE7){
31014             this.autoWidth.defer(1, this);
31015         }else{
31016             this.autoWidth();
31017         }
31018         if(this.handleMouseEvents){
31019             btn.on("mouseover", this.onMouseOver, this);
31020             btn.on("mouseout", this.onMouseOut, this);
31021             btn.on("mousedown", this.onMouseDown, this);
31022         }
31023         btn.on(this.clickEvent, this.onClick, this);
31024         //btn.on("mouseup", this.onMouseUp, this);
31025         if(this.hidden){
31026             this.hide();
31027         }
31028         if(this.disabled){
31029             this.disable();
31030         }
31031         Roo.ButtonToggleMgr.register(this);
31032         if(this.pressed){
31033             this.el.addClass("x-btn-pressed");
31034         }
31035         if(this.repeat){
31036             var repeater = new Roo.util.ClickRepeater(btn,
31037                 typeof this.repeat == "object" ? this.repeat : {}
31038             );
31039             repeater.on("click", this.onClick,  this);
31040         }
31041         
31042         this.fireEvent('render', this);
31043         
31044     },
31045     /**
31046      * Returns the button's underlying element
31047      * @return {Roo.Element} The element
31048      */
31049     getEl : function(){
31050         return this.el;  
31051     },
31052     
31053     /**
31054      * Destroys this Button and removes any listeners.
31055      */
31056     destroy : function(){
31057         Roo.ButtonToggleMgr.unregister(this);
31058         this.el.removeAllListeners();
31059         this.purgeListeners();
31060         this.el.remove();
31061     },
31062
31063     // private
31064     autoWidth : function(){
31065         if(this.el){
31066             this.el.setWidth("auto");
31067             if(Roo.isIE7 && Roo.isStrict){
31068                 var ib = this.el.child('button');
31069                 if(ib && ib.getWidth() > 20){
31070                     ib.clip();
31071                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31072                 }
31073             }
31074             if(this.minWidth){
31075                 if(this.hidden){
31076                     this.el.beginMeasure();
31077                 }
31078                 if(this.el.getWidth() < this.minWidth){
31079                     this.el.setWidth(this.minWidth);
31080                 }
31081                 if(this.hidden){
31082                     this.el.endMeasure();
31083                 }
31084             }
31085         }
31086     },
31087
31088     /**
31089      * Assigns this button's click handler
31090      * @param {Function} handler The function to call when the button is clicked
31091      * @param {Object} scope (optional) Scope for the function passed in
31092      */
31093     setHandler : function(handler, scope){
31094         this.handler = handler;
31095         this.scope = scope;  
31096     },
31097     
31098     /**
31099      * Sets this button's text
31100      * @param {String} text The button text
31101      */
31102     setText : function(text){
31103         this.text = text;
31104         if(this.el){
31105             this.el.child("td.x-btn-center button.x-btn-text").update(text);
31106         }
31107         this.autoWidth();
31108     },
31109     
31110     /**
31111      * Gets the text for this button
31112      * @return {String} The button text
31113      */
31114     getText : function(){
31115         return this.text;  
31116     },
31117     
31118     /**
31119      * Show this button
31120      */
31121     show: function(){
31122         this.hidden = false;
31123         if(this.el){
31124             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
31125         }
31126     },
31127     
31128     /**
31129      * Hide this button
31130      */
31131     hide: function(){
31132         this.hidden = true;
31133         if(this.el){
31134             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
31135         }
31136     },
31137     
31138     /**
31139      * Convenience function for boolean show/hide
31140      * @param {Boolean} visible True to show, false to hide
31141      */
31142     setVisible: function(visible){
31143         if(visible) {
31144             this.show();
31145         }else{
31146             this.hide();
31147         }
31148     },
31149     /**
31150          * Similar to toggle, but does not trigger event.
31151          * @param {Boolean} state [required] Force a particular state
31152          */
31153         setPressed : function(state)
31154         {
31155             if(state != this.pressed){
31156             if(state){
31157                 this.el.addClass("x-btn-pressed");
31158                 this.pressed = true;
31159             }else{
31160                 this.el.removeClass("x-btn-pressed");
31161                 this.pressed = false;
31162             }
31163         }
31164         },
31165         
31166     /**
31167      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
31168      * @param {Boolean} state (optional) Force a particular state
31169      */
31170     toggle : function(state){
31171         state = state === undefined ? !this.pressed : state;
31172         if(state != this.pressed){
31173             if(state){
31174                 this.el.addClass("x-btn-pressed");
31175                 this.pressed = true;
31176                 this.fireEvent("toggle", this, true);
31177             }else{
31178                 this.el.removeClass("x-btn-pressed");
31179                 this.pressed = false;
31180                 this.fireEvent("toggle", this, false);
31181             }
31182             if(this.toggleHandler){
31183                 this.toggleHandler.call(this.scope || this, this, state);
31184             }
31185         }
31186     },
31187     
31188         
31189         
31190     /**
31191      * Focus the button
31192      */
31193     focus : function(){
31194         this.el.child('button:first').focus();
31195     },
31196     
31197     /**
31198      * Disable this button
31199      */
31200     disable : function(){
31201         if(this.el){
31202             this.el.addClass("x-btn-disabled");
31203         }
31204         this.disabled = true;
31205     },
31206     
31207     /**
31208      * Enable this button
31209      */
31210     enable : function(){
31211         if(this.el){
31212             this.el.removeClass("x-btn-disabled");
31213         }
31214         this.disabled = false;
31215     },
31216
31217     /**
31218      * Convenience function for boolean enable/disable
31219      * @param {Boolean} enabled True to enable, false to disable
31220      */
31221     setDisabled : function(v){
31222         this[v !== true ? "enable" : "disable"]();
31223     },
31224
31225     // private
31226     onClick : function(e)
31227     {
31228         if(e){
31229             e.preventDefault();
31230         }
31231         if(e.button != 0){
31232             return;
31233         }
31234         if(!this.disabled){
31235             if(this.enableToggle){
31236                 this.toggle();
31237             }
31238             if(this.menu && !this.menu.isVisible()){
31239                 this.menu.show(this.el, this.menuAlign);
31240             }
31241             this.fireEvent("click", this, e);
31242             if(this.handler){
31243                 this.el.removeClass("x-btn-over");
31244                 this.handler.call(this.scope || this, this, e);
31245             }
31246         }
31247     },
31248     // private
31249     onMouseOver : function(e){
31250         if(!this.disabled){
31251             this.el.addClass("x-btn-over");
31252             this.fireEvent('mouseover', this, e);
31253         }
31254     },
31255     // private
31256     onMouseOut : function(e){
31257         if(!e.within(this.el,  true)){
31258             this.el.removeClass("x-btn-over");
31259             this.fireEvent('mouseout', this, e);
31260         }
31261     },
31262     // private
31263     onFocus : function(e){
31264         if(!this.disabled){
31265             this.el.addClass("x-btn-focus");
31266         }
31267     },
31268     // private
31269     onBlur : function(e){
31270         this.el.removeClass("x-btn-focus");
31271     },
31272     // private
31273     onMouseDown : function(e){
31274         if(!this.disabled && e.button == 0){
31275             this.el.addClass("x-btn-click");
31276             Roo.get(document).on('mouseup', this.onMouseUp, this);
31277         }
31278     },
31279     // private
31280     onMouseUp : function(e){
31281         if(e.button == 0){
31282             this.el.removeClass("x-btn-click");
31283             Roo.get(document).un('mouseup', this.onMouseUp, this);
31284         }
31285     },
31286     // private
31287     onMenuShow : function(e){
31288         this.el.addClass("x-btn-menu-active");
31289     },
31290     // private
31291     onMenuHide : function(e){
31292         this.el.removeClass("x-btn-menu-active");
31293     }   
31294 });
31295
31296 // Private utility class used by Button
31297 Roo.ButtonToggleMgr = function(){
31298    var groups = {};
31299    
31300    function toggleGroup(btn, state){
31301        if(state){
31302            var g = groups[btn.toggleGroup];
31303            for(var i = 0, l = g.length; i < l; i++){
31304                if(g[i] != btn){
31305                    g[i].toggle(false);
31306                }
31307            }
31308        }
31309    }
31310    
31311    return {
31312        register : function(btn){
31313            if(!btn.toggleGroup){
31314                return;
31315            }
31316            var g = groups[btn.toggleGroup];
31317            if(!g){
31318                g = groups[btn.toggleGroup] = [];
31319            }
31320            g.push(btn);
31321            btn.on("toggle", toggleGroup);
31322        },
31323        
31324        unregister : function(btn){
31325            if(!btn.toggleGroup){
31326                return;
31327            }
31328            var g = groups[btn.toggleGroup];
31329            if(g){
31330                g.remove(btn);
31331                btn.un("toggle", toggleGroup);
31332            }
31333        }
31334    };
31335 }();/*
31336  * Based on:
31337  * Ext JS Library 1.1.1
31338  * Copyright(c) 2006-2007, Ext JS, LLC.
31339  *
31340  * Originally Released Under LGPL - original licence link has changed is not relivant.
31341  *
31342  * Fork - LGPL
31343  * <script type="text/javascript">
31344  */
31345  
31346 /**
31347  * @class Roo.SplitButton
31348  * @extends Roo.Button
31349  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
31350  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
31351  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
31352  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
31353  * @cfg {String} arrowTooltip The title attribute of the arrow
31354  * @constructor
31355  * Create a new menu button
31356  * @param {String/HTMLElement/Element} renderTo The element to append the button to
31357  * @param {Object} config The config object
31358  */
31359 Roo.SplitButton = function(renderTo, config){
31360     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
31361     /**
31362      * @event arrowclick
31363      * Fires when this button's arrow is clicked
31364      * @param {SplitButton} this
31365      * @param {EventObject} e The click event
31366      */
31367     this.addEvents({"arrowclick":true});
31368 };
31369
31370 Roo.extend(Roo.SplitButton, Roo.Button, {
31371     render : function(renderTo){
31372         // this is one sweet looking template!
31373         var tpl = new Roo.Template(
31374             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
31375             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
31376             '<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>',
31377             "</tbody></table></td><td>",
31378             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
31379             '<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>',
31380             "</tbody></table></td></tr></table>"
31381         );
31382         var btn = tpl.append(renderTo, [this.text, this.type], true);
31383         var btnEl = btn.child("button");
31384         if(this.cls){
31385             btn.addClass(this.cls);
31386         }
31387         if(this.icon){
31388             btnEl.setStyle('background-image', 'url(' +this.icon +')');
31389         }
31390         if(this.iconCls){
31391             btnEl.addClass(this.iconCls);
31392             if(!this.cls){
31393                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
31394             }
31395         }
31396         this.el = btn;
31397         if(this.handleMouseEvents){
31398             btn.on("mouseover", this.onMouseOver, this);
31399             btn.on("mouseout", this.onMouseOut, this);
31400             btn.on("mousedown", this.onMouseDown, this);
31401             btn.on("mouseup", this.onMouseUp, this);
31402         }
31403         btn.on(this.clickEvent, this.onClick, this);
31404         if(this.tooltip){
31405             if(typeof this.tooltip == 'object'){
31406                 Roo.QuickTips.tips(Roo.apply({
31407                       target: btnEl.id
31408                 }, this.tooltip));
31409             } else {
31410                 btnEl.dom[this.tooltipType] = this.tooltip;
31411             }
31412         }
31413         if(this.arrowTooltip){
31414             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
31415         }
31416         if(this.hidden){
31417             this.hide();
31418         }
31419         if(this.disabled){
31420             this.disable();
31421         }
31422         if(this.pressed){
31423             this.el.addClass("x-btn-pressed");
31424         }
31425         if(Roo.isIE && !Roo.isIE7){
31426             this.autoWidth.defer(1, this);
31427         }else{
31428             this.autoWidth();
31429         }
31430         if(this.menu){
31431             this.menu.on("show", this.onMenuShow, this);
31432             this.menu.on("hide", this.onMenuHide, this);
31433         }
31434         this.fireEvent('render', this);
31435     },
31436
31437     // private
31438     autoWidth : function(){
31439         if(this.el){
31440             var tbl = this.el.child("table:first");
31441             var tbl2 = this.el.child("table:last");
31442             this.el.setWidth("auto");
31443             tbl.setWidth("auto");
31444             if(Roo.isIE7 && Roo.isStrict){
31445                 var ib = this.el.child('button:first');
31446                 if(ib && ib.getWidth() > 20){
31447                     ib.clip();
31448                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31449                 }
31450             }
31451             if(this.minWidth){
31452                 if(this.hidden){
31453                     this.el.beginMeasure();
31454                 }
31455                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
31456                     tbl.setWidth(this.minWidth-tbl2.getWidth());
31457                 }
31458                 if(this.hidden){
31459                     this.el.endMeasure();
31460                 }
31461             }
31462             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
31463         } 
31464     },
31465     /**
31466      * Sets this button's click handler
31467      * @param {Function} handler The function to call when the button is clicked
31468      * @param {Object} scope (optional) Scope for the function passed above
31469      */
31470     setHandler : function(handler, scope){
31471         this.handler = handler;
31472         this.scope = scope;  
31473     },
31474     
31475     /**
31476      * Sets this button's arrow click handler
31477      * @param {Function} handler The function to call when the arrow is clicked
31478      * @param {Object} scope (optional) Scope for the function passed above
31479      */
31480     setArrowHandler : function(handler, scope){
31481         this.arrowHandler = handler;
31482         this.scope = scope;  
31483     },
31484     
31485     /**
31486      * Focus the button
31487      */
31488     focus : function(){
31489         if(this.el){
31490             this.el.child("button:first").focus();
31491         }
31492     },
31493
31494     // private
31495     onClick : function(e){
31496         e.preventDefault();
31497         if(!this.disabled){
31498             if(e.getTarget(".x-btn-menu-arrow-wrap")){
31499                 if(this.menu && !this.menu.isVisible()){
31500                     this.menu.show(this.el, this.menuAlign);
31501                 }
31502                 this.fireEvent("arrowclick", this, e);
31503                 if(this.arrowHandler){
31504                     this.arrowHandler.call(this.scope || this, this, e);
31505                 }
31506             }else{
31507                 this.fireEvent("click", this, e);
31508                 if(this.handler){
31509                     this.handler.call(this.scope || this, this, e);
31510                 }
31511             }
31512         }
31513     },
31514     // private
31515     onMouseDown : function(e){
31516         if(!this.disabled){
31517             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
31518         }
31519     },
31520     // private
31521     onMouseUp : function(e){
31522         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
31523     }   
31524 });
31525
31526
31527 // backwards compat
31528 Roo.MenuButton = Roo.SplitButton;/*
31529  * Based on:
31530  * Ext JS Library 1.1.1
31531  * Copyright(c) 2006-2007, Ext JS, LLC.
31532  *
31533  * Originally Released Under LGPL - original licence link has changed is not relivant.
31534  *
31535  * Fork - LGPL
31536  * <script type="text/javascript">
31537  */
31538
31539 /**
31540  * @class Roo.Toolbar
31541  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field 
31542  * Basic Toolbar class.
31543  * @constructor
31544  * Creates a new Toolbar
31545  * @param {Object} container The config object
31546  */ 
31547 Roo.Toolbar = function(container, buttons, config)
31548 {
31549     /// old consturctor format still supported..
31550     if(container instanceof Array){ // omit the container for later rendering
31551         buttons = container;
31552         config = buttons;
31553         container = null;
31554     }
31555     if (typeof(container) == 'object' && container.xtype) {
31556         config = container;
31557         container = config.container;
31558         buttons = config.buttons || []; // not really - use items!!
31559     }
31560     var xitems = [];
31561     if (config && config.items) {
31562         xitems = config.items;
31563         delete config.items;
31564     }
31565     Roo.apply(this, config);
31566     this.buttons = buttons;
31567     
31568     if(container){
31569         this.render(container);
31570     }
31571     this.xitems = xitems;
31572     Roo.each(xitems, function(b) {
31573         this.add(b);
31574     }, this);
31575     
31576 };
31577
31578 Roo.Toolbar.prototype = {
31579     /**
31580      * @cfg {Array} items
31581      * array of button configs or elements to add (will be converted to a MixedCollection)
31582      */
31583     items: false,
31584     /**
31585      * @cfg {String/HTMLElement/Element} container
31586      * The id or element that will contain the toolbar
31587      */
31588     // private
31589     render : function(ct){
31590         this.el = Roo.get(ct);
31591         if(this.cls){
31592             this.el.addClass(this.cls);
31593         }
31594         // using a table allows for vertical alignment
31595         // 100% width is needed by Safari...
31596         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
31597         this.tr = this.el.child("tr", true);
31598         var autoId = 0;
31599         this.items = new Roo.util.MixedCollection(false, function(o){
31600             return o.id || ("item" + (++autoId));
31601         });
31602         if(this.buttons){
31603             this.add.apply(this, this.buttons);
31604             delete this.buttons;
31605         }
31606     },
31607
31608     /**
31609      * Adds element(s) to the toolbar -- this function takes a variable number of 
31610      * arguments of mixed type and adds them to the toolbar.
31611      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
31612      * <ul>
31613      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
31614      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
31615      * <li>Field: Any form field (equivalent to {@link #addField})</li>
31616      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
31617      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
31618      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
31619      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
31620      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
31621      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
31622      * </ul>
31623      * @param {Mixed} arg2
31624      * @param {Mixed} etc.
31625      */
31626     add : function(){
31627         var a = arguments, l = a.length;
31628         for(var i = 0; i < l; i++){
31629             this._add(a[i]);
31630         }
31631     },
31632     // private..
31633     _add : function(el) {
31634         
31635         if (el.xtype) {
31636             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
31637         }
31638         
31639         if (el.applyTo){ // some kind of form field
31640             return this.addField(el);
31641         } 
31642         if (el.render){ // some kind of Toolbar.Item
31643             return this.addItem(el);
31644         }
31645         if (typeof el == "string"){ // string
31646             if(el == "separator" || el == "-"){
31647                 return this.addSeparator();
31648             }
31649             if (el == " "){
31650                 return this.addSpacer();
31651             }
31652             if(el == "->"){
31653                 return this.addFill();
31654             }
31655             return this.addText(el);
31656             
31657         }
31658         if(el.tagName){ // element
31659             return this.addElement(el);
31660         }
31661         if(typeof el == "object"){ // must be button config?
31662             return this.addButton(el);
31663         }
31664         // and now what?!?!
31665         return false;
31666         
31667     },
31668     
31669     /**
31670      * Add an Xtype element
31671      * @param {Object} xtype Xtype Object
31672      * @return {Object} created Object
31673      */
31674     addxtype : function(e){
31675         return this.add(e);  
31676     },
31677     
31678     /**
31679      * Returns the Element for this toolbar.
31680      * @return {Roo.Element}
31681      */
31682     getEl : function(){
31683         return this.el;  
31684     },
31685     
31686     /**
31687      * Adds a separator
31688      * @return {Roo.Toolbar.Item} The separator item
31689      */
31690     addSeparator : function(){
31691         return this.addItem(new Roo.Toolbar.Separator());
31692     },
31693
31694     /**
31695      * Adds a spacer element
31696      * @return {Roo.Toolbar.Spacer} The spacer item
31697      */
31698     addSpacer : function(){
31699         return this.addItem(new Roo.Toolbar.Spacer());
31700     },
31701
31702     /**
31703      * Adds a fill element that forces subsequent additions to the right side of the toolbar
31704      * @return {Roo.Toolbar.Fill} The fill item
31705      */
31706     addFill : function(){
31707         return this.addItem(new Roo.Toolbar.Fill());
31708     },
31709
31710     /**
31711      * Adds any standard HTML element to the toolbar
31712      * @param {String/HTMLElement/Element} el The element or id of the element to add
31713      * @return {Roo.Toolbar.Item} The element's item
31714      */
31715     addElement : function(el){
31716         return this.addItem(new Roo.Toolbar.Item(el));
31717     },
31718     /**
31719      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
31720      * @type Roo.util.MixedCollection  
31721      */
31722     items : false,
31723      
31724     /**
31725      * Adds any Toolbar.Item or subclass
31726      * @param {Roo.Toolbar.Item} item
31727      * @return {Roo.Toolbar.Item} The item
31728      */
31729     addItem : function(item){
31730         var td = this.nextBlock();
31731         item.render(td);
31732         this.items.add(item);
31733         return item;
31734     },
31735     
31736     /**
31737      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
31738      * @param {Object/Array} config A button config or array of configs
31739      * @return {Roo.Toolbar.Button/Array}
31740      */
31741     addButton : function(config){
31742         if(config instanceof Array){
31743             var buttons = [];
31744             for(var i = 0, len = config.length; i < len; i++) {
31745                 buttons.push(this.addButton(config[i]));
31746             }
31747             return buttons;
31748         }
31749         var b = config;
31750         if(!(config instanceof Roo.Toolbar.Button)){
31751             b = config.split ?
31752                 new Roo.Toolbar.SplitButton(config) :
31753                 new Roo.Toolbar.Button(config);
31754         }
31755         var td = this.nextBlock();
31756         b.render(td);
31757         this.items.add(b);
31758         return b;
31759     },
31760     
31761     /**
31762      * Adds text to the toolbar
31763      * @param {String} text The text to add
31764      * @return {Roo.Toolbar.Item} The element's item
31765      */
31766     addText : function(text){
31767         return this.addItem(new Roo.Toolbar.TextItem(text));
31768     },
31769     
31770     /**
31771      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
31772      * @param {Number} index The index where the item is to be inserted
31773      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
31774      * @return {Roo.Toolbar.Button/Item}
31775      */
31776     insertButton : function(index, item){
31777         if(item instanceof Array){
31778             var buttons = [];
31779             for(var i = 0, len = item.length; i < len; i++) {
31780                buttons.push(this.insertButton(index + i, item[i]));
31781             }
31782             return buttons;
31783         }
31784         if (!(item instanceof Roo.Toolbar.Button)){
31785            item = new Roo.Toolbar.Button(item);
31786         }
31787         var td = document.createElement("td");
31788         this.tr.insertBefore(td, this.tr.childNodes[index]);
31789         item.render(td);
31790         this.items.insert(index, item);
31791         return item;
31792     },
31793     
31794     /**
31795      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
31796      * @param {Object} config
31797      * @return {Roo.Toolbar.Item} The element's item
31798      */
31799     addDom : function(config, returnEl){
31800         var td = this.nextBlock();
31801         Roo.DomHelper.overwrite(td, config);
31802         var ti = new Roo.Toolbar.Item(td.firstChild);
31803         ti.render(td);
31804         this.items.add(ti);
31805         return ti;
31806     },
31807
31808     /**
31809      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
31810      * @type Roo.util.MixedCollection  
31811      */
31812     fields : false,
31813     
31814     /**
31815      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
31816      * Note: the field should not have been rendered yet. For a field that has already been
31817      * rendered, use {@link #addElement}.
31818      * @param {Roo.form.Field} field
31819      * @return {Roo.ToolbarItem}
31820      */
31821      
31822       
31823     addField : function(field) {
31824         if (!this.fields) {
31825             var autoId = 0;
31826             this.fields = new Roo.util.MixedCollection(false, function(o){
31827                 return o.id || ("item" + (++autoId));
31828             });
31829
31830         }
31831         
31832         var td = this.nextBlock();
31833         field.render(td);
31834         var ti = new Roo.Toolbar.Item(td.firstChild);
31835         ti.render(td);
31836         this.items.add(ti);
31837         this.fields.add(field);
31838         return ti;
31839     },
31840     /**
31841      * Hide the toolbar
31842      * @method hide
31843      */
31844      
31845       
31846     hide : function()
31847     {
31848         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
31849         this.el.child('div').hide();
31850     },
31851     /**
31852      * Show the toolbar
31853      * @method show
31854      */
31855     show : function()
31856     {
31857         this.el.child('div').show();
31858     },
31859       
31860     // private
31861     nextBlock : function(){
31862         var td = document.createElement("td");
31863         this.tr.appendChild(td);
31864         return td;
31865     },
31866
31867     // private
31868     destroy : function(){
31869         if(this.items){ // rendered?
31870             Roo.destroy.apply(Roo, this.items.items);
31871         }
31872         if(this.fields){ // rendered?
31873             Roo.destroy.apply(Roo, this.fields.items);
31874         }
31875         Roo.Element.uncache(this.el, this.tr);
31876     }
31877 };
31878
31879 /**
31880  * @class Roo.Toolbar.Item
31881  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
31882  * @constructor
31883  * Creates a new Item
31884  * @param {HTMLElement} el 
31885  */
31886 Roo.Toolbar.Item = function(el){
31887     var cfg = {};
31888     if (typeof (el.xtype) != 'undefined') {
31889         cfg = el;
31890         el = cfg.el;
31891     }
31892     
31893     this.el = Roo.getDom(el);
31894     this.id = Roo.id(this.el);
31895     this.hidden = false;
31896     
31897     this.addEvents({
31898          /**
31899              * @event render
31900              * Fires when the button is rendered
31901              * @param {Button} this
31902              */
31903         'render': true
31904     });
31905     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
31906 };
31907 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
31908 //Roo.Toolbar.Item.prototype = {
31909     
31910     /**
31911      * Get this item's HTML Element
31912      * @return {HTMLElement}
31913      */
31914     getEl : function(){
31915        return this.el;  
31916     },
31917
31918     // private
31919     render : function(td){
31920         
31921          this.td = td;
31922         td.appendChild(this.el);
31923         
31924         this.fireEvent('render', this);
31925     },
31926     
31927     /**
31928      * Removes and destroys this item.
31929      */
31930     destroy : function(){
31931         this.td.parentNode.removeChild(this.td);
31932     },
31933     
31934     /**
31935      * Shows this item.
31936      */
31937     show: function(){
31938         this.hidden = false;
31939         this.td.style.display = "";
31940     },
31941     
31942     /**
31943      * Hides this item.
31944      */
31945     hide: function(){
31946         this.hidden = true;
31947         this.td.style.display = "none";
31948     },
31949     
31950     /**
31951      * Convenience function for boolean show/hide.
31952      * @param {Boolean} visible true to show/false to hide
31953      */
31954     setVisible: function(visible){
31955         if(visible) {
31956             this.show();
31957         }else{
31958             this.hide();
31959         }
31960     },
31961     
31962     /**
31963      * Try to focus this item.
31964      */
31965     focus : function(){
31966         Roo.fly(this.el).focus();
31967     },
31968     
31969     /**
31970      * Disables this item.
31971      */
31972     disable : function(){
31973         Roo.fly(this.td).addClass("x-item-disabled");
31974         this.disabled = true;
31975         this.el.disabled = true;
31976     },
31977     
31978     /**
31979      * Enables this item.
31980      */
31981     enable : function(){
31982         Roo.fly(this.td).removeClass("x-item-disabled");
31983         this.disabled = false;
31984         this.el.disabled = false;
31985     }
31986 });
31987
31988
31989 /**
31990  * @class Roo.Toolbar.Separator
31991  * @extends Roo.Toolbar.Item
31992  * A simple toolbar separator class
31993  * @constructor
31994  * Creates a new Separator
31995  */
31996 Roo.Toolbar.Separator = function(cfg){
31997     
31998     var s = document.createElement("span");
31999     s.className = "ytb-sep";
32000     if (cfg) {
32001         cfg.el = s;
32002     }
32003     
32004     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
32005 };
32006 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
32007     enable:Roo.emptyFn,
32008     disable:Roo.emptyFn,
32009     focus:Roo.emptyFn
32010 });
32011
32012 /**
32013  * @class Roo.Toolbar.Spacer
32014  * @extends Roo.Toolbar.Item
32015  * A simple element that adds extra horizontal space to a toolbar.
32016  * @constructor
32017  * Creates a new Spacer
32018  */
32019 Roo.Toolbar.Spacer = function(cfg){
32020     var s = document.createElement("div");
32021     s.className = "ytb-spacer";
32022     if (cfg) {
32023         cfg.el = s;
32024     }
32025     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
32026 };
32027 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
32028     enable:Roo.emptyFn,
32029     disable:Roo.emptyFn,
32030     focus:Roo.emptyFn
32031 });
32032
32033 /**
32034  * @class Roo.Toolbar.Fill
32035  * @extends Roo.Toolbar.Spacer
32036  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
32037  * @constructor
32038  * Creates a new Spacer
32039  */
32040 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
32041     // private
32042     render : function(td){
32043         td.style.width = '100%';
32044         Roo.Toolbar.Fill.superclass.render.call(this, td);
32045     }
32046 });
32047
32048 /**
32049  * @class Roo.Toolbar.TextItem
32050  * @extends Roo.Toolbar.Item
32051  * A simple class that renders text directly into a toolbar.
32052  * @constructor
32053  * Creates a new TextItem
32054  * @cfg {string} text 
32055  */
32056 Roo.Toolbar.TextItem = function(cfg){
32057     var  text = cfg || "";
32058     if (typeof(cfg) == 'object') {
32059         text = cfg.text || "";
32060     }  else {
32061         cfg = null;
32062     }
32063     var s = document.createElement("span");
32064     s.className = "ytb-text";
32065     s.innerHTML = text;
32066     if (cfg) {
32067         cfg.el  = s;
32068     }
32069     
32070     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
32071 };
32072 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
32073     
32074      
32075     enable:Roo.emptyFn,
32076     disable:Roo.emptyFn,
32077     focus:Roo.emptyFn,
32078      /**
32079      * Shows this button
32080      */
32081     show: function(){
32082         this.hidden = false;
32083         this.el.style.display = "";
32084     },
32085     
32086     /**
32087      * Hides this button
32088      */
32089     hide: function(){
32090         this.hidden = true;
32091         this.el.style.display = "none";
32092     }
32093     
32094 });
32095
32096 /**
32097  * @class Roo.Toolbar.Button
32098  * @extends Roo.Button
32099  * A button that renders into a toolbar.
32100  * @constructor
32101  * Creates a new Button
32102  * @param {Object} config A standard {@link Roo.Button} config object
32103  */
32104 Roo.Toolbar.Button = function(config){
32105     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
32106 };
32107 Roo.extend(Roo.Toolbar.Button, Roo.Button,
32108 {
32109     
32110     
32111     render : function(td){
32112         this.td = td;
32113         Roo.Toolbar.Button.superclass.render.call(this, td);
32114     },
32115     
32116     /**
32117      * Removes and destroys this button
32118      */
32119     destroy : function(){
32120         Roo.Toolbar.Button.superclass.destroy.call(this);
32121         this.td.parentNode.removeChild(this.td);
32122     },
32123     
32124     /**
32125      * Shows this button
32126      */
32127     show: function(){
32128         this.hidden = false;
32129         this.td.style.display = "";
32130     },
32131     
32132     /**
32133      * Hides this button
32134      */
32135     hide: function(){
32136         this.hidden = true;
32137         this.td.style.display = "none";
32138     },
32139
32140     /**
32141      * Disables this item
32142      */
32143     disable : function(){
32144         Roo.fly(this.td).addClass("x-item-disabled");
32145         this.disabled = true;
32146     },
32147
32148     /**
32149      * Enables this item
32150      */
32151     enable : function(){
32152         Roo.fly(this.td).removeClass("x-item-disabled");
32153         this.disabled = false;
32154     }
32155 });
32156 // backwards compat
32157 Roo.ToolbarButton = Roo.Toolbar.Button;
32158
32159 /**
32160  * @class Roo.Toolbar.SplitButton
32161  * @extends Roo.SplitButton
32162  * A menu button that renders into a toolbar.
32163  * @constructor
32164  * Creates a new SplitButton
32165  * @param {Object} config A standard {@link Roo.SplitButton} config object
32166  */
32167 Roo.Toolbar.SplitButton = function(config){
32168     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
32169 };
32170 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
32171     render : function(td){
32172         this.td = td;
32173         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
32174     },
32175     
32176     /**
32177      * Removes and destroys this button
32178      */
32179     destroy : function(){
32180         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
32181         this.td.parentNode.removeChild(this.td);
32182     },
32183     
32184     /**
32185      * Shows this button
32186      */
32187     show: function(){
32188         this.hidden = false;
32189         this.td.style.display = "";
32190     },
32191     
32192     /**
32193      * Hides this button
32194      */
32195     hide: function(){
32196         this.hidden = true;
32197         this.td.style.display = "none";
32198     }
32199 });
32200
32201 // backwards compat
32202 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
32203  * Based on:
32204  * Ext JS Library 1.1.1
32205  * Copyright(c) 2006-2007, Ext JS, LLC.
32206  *
32207  * Originally Released Under LGPL - original licence link has changed is not relivant.
32208  *
32209  * Fork - LGPL
32210  * <script type="text/javascript">
32211  */
32212  
32213 /**
32214  * @class Roo.PagingToolbar
32215  * @extends Roo.Toolbar
32216  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field
32217  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
32218  * @constructor
32219  * Create a new PagingToolbar
32220  * @param {Object} config The config object
32221  */
32222 Roo.PagingToolbar = function(el, ds, config)
32223 {
32224     // old args format still supported... - xtype is prefered..
32225     if (typeof(el) == 'object' && el.xtype) {
32226         // created from xtype...
32227         config = el;
32228         ds = el.dataSource;
32229         el = config.container;
32230     }
32231     var items = [];
32232     if (config.items) {
32233         items = config.items;
32234         config.items = [];
32235     }
32236     
32237     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
32238     this.ds = ds;
32239     this.cursor = 0;
32240     this.renderButtons(this.el);
32241     this.bind(ds);
32242     
32243     // supprot items array.
32244    
32245     Roo.each(items, function(e) {
32246         this.add(Roo.factory(e));
32247     },this);
32248     
32249 };
32250
32251 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
32252    
32253     /**
32254      * @cfg {String/HTMLElement/Element} container
32255      * container The id or element that will contain the toolbar
32256      */
32257     /**
32258      * @cfg {Boolean} displayInfo
32259      * True to display the displayMsg (defaults to false)
32260      */
32261     
32262     
32263     /**
32264      * @cfg {Number} pageSize
32265      * The number of records to display per page (defaults to 20)
32266      */
32267     pageSize: 20,
32268     /**
32269      * @cfg {String} displayMsg
32270      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
32271      */
32272     displayMsg : 'Displaying {0} - {1} of {2}',
32273     /**
32274      * @cfg {String} emptyMsg
32275      * The message to display when no records are found (defaults to "No data to display")
32276      */
32277     emptyMsg : 'No data to display',
32278     /**
32279      * Customizable piece of the default paging text (defaults to "Page")
32280      * @type String
32281      */
32282     beforePageText : "Page",
32283     /**
32284      * Customizable piece of the default paging text (defaults to "of %0")
32285      * @type String
32286      */
32287     afterPageText : "of {0}",
32288     /**
32289      * Customizable piece of the default paging text (defaults to "First Page")
32290      * @type String
32291      */
32292     firstText : "First Page",
32293     /**
32294      * Customizable piece of the default paging text (defaults to "Previous Page")
32295      * @type String
32296      */
32297     prevText : "Previous Page",
32298     /**
32299      * Customizable piece of the default paging text (defaults to "Next Page")
32300      * @type String
32301      */
32302     nextText : "Next Page",
32303     /**
32304      * Customizable piece of the default paging text (defaults to "Last Page")
32305      * @type String
32306      */
32307     lastText : "Last Page",
32308     /**
32309      * Customizable piece of the default paging text (defaults to "Refresh")
32310      * @type String
32311      */
32312     refreshText : "Refresh",
32313
32314     // private
32315     renderButtons : function(el){
32316         Roo.PagingToolbar.superclass.render.call(this, el);
32317         this.first = this.addButton({
32318             tooltip: this.firstText,
32319             cls: "x-btn-icon x-grid-page-first",
32320             disabled: true,
32321             handler: this.onClick.createDelegate(this, ["first"])
32322         });
32323         this.prev = this.addButton({
32324             tooltip: this.prevText,
32325             cls: "x-btn-icon x-grid-page-prev",
32326             disabled: true,
32327             handler: this.onClick.createDelegate(this, ["prev"])
32328         });
32329         //this.addSeparator();
32330         this.add(this.beforePageText);
32331         this.field = Roo.get(this.addDom({
32332            tag: "input",
32333            type: "text",
32334            size: "3",
32335            value: "1",
32336            cls: "x-grid-page-number"
32337         }).el);
32338         this.field.on("keydown", this.onPagingKeydown, this);
32339         this.field.on("focus", function(){this.dom.select();});
32340         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
32341         this.field.setHeight(18);
32342         //this.addSeparator();
32343         this.next = this.addButton({
32344             tooltip: this.nextText,
32345             cls: "x-btn-icon x-grid-page-next",
32346             disabled: true,
32347             handler: this.onClick.createDelegate(this, ["next"])
32348         });
32349         this.last = this.addButton({
32350             tooltip: this.lastText,
32351             cls: "x-btn-icon x-grid-page-last",
32352             disabled: true,
32353             handler: this.onClick.createDelegate(this, ["last"])
32354         });
32355         //this.addSeparator();
32356         this.loading = this.addButton({
32357             tooltip: this.refreshText,
32358             cls: "x-btn-icon x-grid-loading",
32359             handler: this.onClick.createDelegate(this, ["refresh"])
32360         });
32361
32362         if(this.displayInfo){
32363             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
32364         }
32365     },
32366
32367     // private
32368     updateInfo : function(){
32369         if(this.displayEl){
32370             var count = this.ds.getCount();
32371             var msg = count == 0 ?
32372                 this.emptyMsg :
32373                 String.format(
32374                     this.displayMsg,
32375                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
32376                 );
32377             this.displayEl.update(msg);
32378         }
32379     },
32380
32381     // private
32382     onLoad : function(ds, r, o){
32383        this.cursor = o.params ? o.params.start : 0;
32384        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
32385
32386        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
32387        this.field.dom.value = ap;
32388        this.first.setDisabled(ap == 1);
32389        this.prev.setDisabled(ap == 1);
32390        this.next.setDisabled(ap == ps);
32391        this.last.setDisabled(ap == ps);
32392        this.loading.enable();
32393        this.updateInfo();
32394     },
32395
32396     // private
32397     getPageData : function(){
32398         var total = this.ds.getTotalCount();
32399         return {
32400             total : total,
32401             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
32402             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
32403         };
32404     },
32405
32406     // private
32407     onLoadError : function(){
32408         this.loading.enable();
32409     },
32410
32411     // private
32412     onPagingKeydown : function(e){
32413         var k = e.getKey();
32414         var d = this.getPageData();
32415         if(k == e.RETURN){
32416             var v = this.field.dom.value, pageNum;
32417             if(!v || isNaN(pageNum = parseInt(v, 10))){
32418                 this.field.dom.value = d.activePage;
32419                 return;
32420             }
32421             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
32422             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32423             e.stopEvent();
32424         }
32425         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))
32426         {
32427           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
32428           this.field.dom.value = pageNum;
32429           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
32430           e.stopEvent();
32431         }
32432         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
32433         {
32434           var v = this.field.dom.value, pageNum; 
32435           var increment = (e.shiftKey) ? 10 : 1;
32436           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
32437             increment *= -1;
32438           }
32439           if(!v || isNaN(pageNum = parseInt(v, 10))) {
32440             this.field.dom.value = d.activePage;
32441             return;
32442           }
32443           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
32444           {
32445             this.field.dom.value = parseInt(v, 10) + increment;
32446             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
32447             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32448           }
32449           e.stopEvent();
32450         }
32451     },
32452
32453     // private
32454     beforeLoad : function(){
32455         if(this.loading){
32456             this.loading.disable();
32457         }
32458     },
32459     /**
32460      * event that occurs when you click on the navigation buttons - can be used to trigger load of a grid.
32461      * @param {String} which (first|prev|next|last|refresh)  which button to press.
32462      *
32463      */
32464     // private
32465     onClick : function(which){
32466         var ds = this.ds;
32467         switch(which){
32468             case "first":
32469                 ds.load({params:{start: 0, limit: this.pageSize}});
32470             break;
32471             case "prev":
32472                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
32473             break;
32474             case "next":
32475                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
32476             break;
32477             case "last":
32478                 var total = ds.getTotalCount();
32479                 var extra = total % this.pageSize;
32480                 var lastStart = extra ? (total - extra) : total-this.pageSize;
32481                 ds.load({params:{start: lastStart, limit: this.pageSize}});
32482             break;
32483             case "refresh":
32484                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
32485             break;
32486         }
32487     },
32488
32489     /**
32490      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
32491      * @param {Roo.data.Store} store The data store to unbind
32492      */
32493     unbind : function(ds){
32494         ds.un("beforeload", this.beforeLoad, this);
32495         ds.un("load", this.onLoad, this);
32496         ds.un("loadexception", this.onLoadError, this);
32497         ds.un("remove", this.updateInfo, this);
32498         ds.un("add", this.updateInfo, this);
32499         this.ds = undefined;
32500     },
32501
32502     /**
32503      * Binds the paging toolbar to the specified {@link Roo.data.Store}
32504      * @param {Roo.data.Store} store The data store to bind
32505      */
32506     bind : function(ds){
32507         ds.on("beforeload", this.beforeLoad, this);
32508         ds.on("load", this.onLoad, this);
32509         ds.on("loadexception", this.onLoadError, this);
32510         ds.on("remove", this.updateInfo, this);
32511         ds.on("add", this.updateInfo, this);
32512         this.ds = ds;
32513     }
32514 });/*
32515  * Based on:
32516  * Ext JS Library 1.1.1
32517  * Copyright(c) 2006-2007, Ext JS, LLC.
32518  *
32519  * Originally Released Under LGPL - original licence link has changed is not relivant.
32520  *
32521  * Fork - LGPL
32522  * <script type="text/javascript">
32523  */
32524
32525 /**
32526  * @class Roo.Resizable
32527  * @extends Roo.util.Observable
32528  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
32529  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
32530  * 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
32531  * the element will be wrapped for you automatically.</p>
32532  * <p>Here is the list of valid resize handles:</p>
32533  * <pre>
32534 Value   Description
32535 ------  -------------------
32536  'n'     north
32537  's'     south
32538  'e'     east
32539  'w'     west
32540  'nw'    northwest
32541  'sw'    southwest
32542  'se'    southeast
32543  'ne'    northeast
32544  'hd'    horizontal drag
32545  'all'   all
32546 </pre>
32547  * <p>Here's an example showing the creation of a typical Resizable:</p>
32548  * <pre><code>
32549 var resizer = new Roo.Resizable("element-id", {
32550     handles: 'all',
32551     minWidth: 200,
32552     minHeight: 100,
32553     maxWidth: 500,
32554     maxHeight: 400,
32555     pinned: true
32556 });
32557 resizer.on("resize", myHandler);
32558 </code></pre>
32559  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
32560  * resizer.east.setDisplayed(false);</p>
32561  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
32562  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
32563  * resize operation's new size (defaults to [0, 0])
32564  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
32565  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
32566  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
32567  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
32568  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
32569  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
32570  * @cfg {Number} width The width of the element in pixels (defaults to null)
32571  * @cfg {Number} height The height of the element in pixels (defaults to null)
32572  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
32573  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
32574  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
32575  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
32576  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
32577  * in favor of the handles config option (defaults to false)
32578  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
32579  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
32580  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
32581  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
32582  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
32583  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
32584  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
32585  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
32586  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
32587  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
32588  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
32589  * @constructor
32590  * Create a new resizable component
32591  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
32592  * @param {Object} config configuration options
32593   */
32594 Roo.Resizable = function(el, config)
32595 {
32596     this.el = Roo.get(el);
32597
32598     if(config && config.wrap){
32599         config.resizeChild = this.el;
32600         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
32601         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
32602         this.el.setStyle("overflow", "hidden");
32603         this.el.setPositioning(config.resizeChild.getPositioning());
32604         config.resizeChild.clearPositioning();
32605         if(!config.width || !config.height){
32606             var csize = config.resizeChild.getSize();
32607             this.el.setSize(csize.width, csize.height);
32608         }
32609         if(config.pinned && !config.adjustments){
32610             config.adjustments = "auto";
32611         }
32612     }
32613
32614     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
32615     this.proxy.unselectable();
32616     this.proxy.enableDisplayMode('block');
32617
32618     Roo.apply(this, config);
32619
32620     if(this.pinned){
32621         this.disableTrackOver = true;
32622         this.el.addClass("x-resizable-pinned");
32623     }
32624     // if the element isn't positioned, make it relative
32625     var position = this.el.getStyle("position");
32626     if(position != "absolute" && position != "fixed"){
32627         this.el.setStyle("position", "relative");
32628     }
32629     if(!this.handles){ // no handles passed, must be legacy style
32630         this.handles = 's,e,se';
32631         if(this.multiDirectional){
32632             this.handles += ',n,w';
32633         }
32634     }
32635     if(this.handles == "all"){
32636         this.handles = "n s e w ne nw se sw";
32637     }
32638     var hs = this.handles.split(/\s*?[,;]\s*?| /);
32639     var ps = Roo.Resizable.positions;
32640     for(var i = 0, len = hs.length; i < len; i++){
32641         if(hs[i] && ps[hs[i]]){
32642             var pos = ps[hs[i]];
32643             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
32644         }
32645     }
32646     // legacy
32647     this.corner = this.southeast;
32648     
32649     // updateBox = the box can move..
32650     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
32651         this.updateBox = true;
32652     }
32653
32654     this.activeHandle = null;
32655
32656     if(this.resizeChild){
32657         if(typeof this.resizeChild == "boolean"){
32658             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
32659         }else{
32660             this.resizeChild = Roo.get(this.resizeChild, true);
32661         }
32662     }
32663     
32664     if(this.adjustments == "auto"){
32665         var rc = this.resizeChild;
32666         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
32667         if(rc && (hw || hn)){
32668             rc.position("relative");
32669             rc.setLeft(hw ? hw.el.getWidth() : 0);
32670             rc.setTop(hn ? hn.el.getHeight() : 0);
32671         }
32672         this.adjustments = [
32673             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
32674             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
32675         ];
32676     }
32677
32678     if(this.draggable){
32679         this.dd = this.dynamic ?
32680             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
32681         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
32682     }
32683
32684     // public events
32685     this.addEvents({
32686         /**
32687          * @event beforeresize
32688          * Fired before resize is allowed. Set enabled to false to cancel resize.
32689          * @param {Roo.Resizable} this
32690          * @param {Roo.EventObject} e The mousedown event
32691          */
32692         "beforeresize" : true,
32693         /**
32694          * @event resizing
32695          * Fired a resizing.
32696          * @param {Roo.Resizable} this
32697          * @param {Number} x The new x position
32698          * @param {Number} y The new y position
32699          * @param {Number} w The new w width
32700          * @param {Number} h The new h hight
32701          * @param {Roo.EventObject} e The mouseup event
32702          */
32703         "resizing" : true,
32704         /**
32705          * @event resize
32706          * Fired after a resize.
32707          * @param {Roo.Resizable} this
32708          * @param {Number} width The new width
32709          * @param {Number} height The new height
32710          * @param {Roo.EventObject} e The mouseup event
32711          */
32712         "resize" : true
32713     });
32714
32715     if(this.width !== null && this.height !== null){
32716         this.resizeTo(this.width, this.height);
32717     }else{
32718         this.updateChildSize();
32719     }
32720     if(Roo.isIE){
32721         this.el.dom.style.zoom = 1;
32722     }
32723     Roo.Resizable.superclass.constructor.call(this);
32724 };
32725
32726 Roo.extend(Roo.Resizable, Roo.util.Observable, {
32727         resizeChild : false,
32728         adjustments : [0, 0],
32729         minWidth : 5,
32730         minHeight : 5,
32731         maxWidth : 10000,
32732         maxHeight : 10000,
32733         enabled : true,
32734         animate : false,
32735         duration : .35,
32736         dynamic : false,
32737         handles : false,
32738         multiDirectional : false,
32739         disableTrackOver : false,
32740         easing : 'easeOutStrong',
32741         widthIncrement : 0,
32742         heightIncrement : 0,
32743         pinned : false,
32744         width : null,
32745         height : null,
32746         preserveRatio : false,
32747         transparent: false,
32748         minX: 0,
32749         minY: 0,
32750         draggable: false,
32751
32752         /**
32753          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
32754          */
32755         constrainTo: undefined,
32756         /**
32757          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
32758          */
32759         resizeRegion: undefined,
32760
32761
32762     /**
32763      * Perform a manual resize
32764      * @param {Number} width
32765      * @param {Number} height
32766      */
32767     resizeTo : function(width, height){
32768         this.el.setSize(width, height);
32769         this.updateChildSize();
32770         this.fireEvent("resize", this, width, height, null);
32771     },
32772
32773     // private
32774     startSizing : function(e, handle){
32775         this.fireEvent("beforeresize", this, e);
32776         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
32777
32778             if(!this.overlay){
32779                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
32780                 this.overlay.unselectable();
32781                 this.overlay.enableDisplayMode("block");
32782                 this.overlay.on("mousemove", this.onMouseMove, this);
32783                 this.overlay.on("mouseup", this.onMouseUp, this);
32784             }
32785             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
32786
32787             this.resizing = true;
32788             this.startBox = this.el.getBox();
32789             this.startPoint = e.getXY();
32790             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
32791                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
32792
32793             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32794             this.overlay.show();
32795
32796             if(this.constrainTo) {
32797                 var ct = Roo.get(this.constrainTo);
32798                 this.resizeRegion = ct.getRegion().adjust(
32799                     ct.getFrameWidth('t'),
32800                     ct.getFrameWidth('l'),
32801                     -ct.getFrameWidth('b'),
32802                     -ct.getFrameWidth('r')
32803                 );
32804             }
32805
32806             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
32807             this.proxy.show();
32808             this.proxy.setBox(this.startBox);
32809             if(!this.dynamic){
32810                 this.proxy.setStyle('visibility', 'visible');
32811             }
32812         }
32813     },
32814
32815     // private
32816     onMouseDown : function(handle, e){
32817         if(this.enabled){
32818             e.stopEvent();
32819             this.activeHandle = handle;
32820             this.startSizing(e, handle);
32821         }
32822     },
32823
32824     // private
32825     onMouseUp : function(e){
32826         var size = this.resizeElement();
32827         this.resizing = false;
32828         this.handleOut();
32829         this.overlay.hide();
32830         this.proxy.hide();
32831         this.fireEvent("resize", this, size.width, size.height, e);
32832     },
32833
32834     // private
32835     updateChildSize : function(){
32836         
32837         if(this.resizeChild){
32838             var el = this.el;
32839             var child = this.resizeChild;
32840             var adj = this.adjustments;
32841             if(el.dom.offsetWidth){
32842                 var b = el.getSize(true);
32843                 child.setSize(b.width+adj[0], b.height+adj[1]);
32844             }
32845             // Second call here for IE
32846             // The first call enables instant resizing and
32847             // the second call corrects scroll bars if they
32848             // exist
32849             if(Roo.isIE){
32850                 setTimeout(function(){
32851                     if(el.dom.offsetWidth){
32852                         var b = el.getSize(true);
32853                         child.setSize(b.width+adj[0], b.height+adj[1]);
32854                     }
32855                 }, 10);
32856             }
32857         }
32858     },
32859
32860     // private
32861     snap : function(value, inc, min){
32862         if(!inc || !value) {
32863             return value;
32864         }
32865         var newValue = value;
32866         var m = value % inc;
32867         if(m > 0){
32868             if(m > (inc/2)){
32869                 newValue = value + (inc-m);
32870             }else{
32871                 newValue = value - m;
32872             }
32873         }
32874         return Math.max(min, newValue);
32875     },
32876
32877     // private
32878     resizeElement : function(){
32879         var box = this.proxy.getBox();
32880         if(this.updateBox){
32881             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
32882         }else{
32883             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
32884         }
32885         this.updateChildSize();
32886         if(!this.dynamic){
32887             this.proxy.hide();
32888         }
32889         return box;
32890     },
32891
32892     // private
32893     constrain : function(v, diff, m, mx){
32894         if(v - diff < m){
32895             diff = v - m;
32896         }else if(v - diff > mx){
32897             diff = mx - v;
32898         }
32899         return diff;
32900     },
32901
32902     // private
32903     onMouseMove : function(e){
32904         
32905         if(this.enabled){
32906             try{// try catch so if something goes wrong the user doesn't get hung
32907
32908             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
32909                 return;
32910             }
32911
32912             //var curXY = this.startPoint;
32913             var curSize = this.curSize || this.startBox;
32914             var x = this.startBox.x, y = this.startBox.y;
32915             var ox = x, oy = y;
32916             var w = curSize.width, h = curSize.height;
32917             var ow = w, oh = h;
32918             var mw = this.minWidth, mh = this.minHeight;
32919             var mxw = this.maxWidth, mxh = this.maxHeight;
32920             var wi = this.widthIncrement;
32921             var hi = this.heightIncrement;
32922
32923             var eventXY = e.getXY();
32924             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
32925             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
32926
32927             var pos = this.activeHandle.position;
32928
32929             switch(pos){
32930                 case "east":
32931                     w += diffX;
32932                     w = Math.min(Math.max(mw, w), mxw);
32933                     break;
32934              
32935                 case "south":
32936                     h += diffY;
32937                     h = Math.min(Math.max(mh, h), mxh);
32938                     break;
32939                 case "southeast":
32940                     w += diffX;
32941                     h += diffY;
32942                     w = Math.min(Math.max(mw, w), mxw);
32943                     h = Math.min(Math.max(mh, h), mxh);
32944                     break;
32945                 case "north":
32946                     diffY = this.constrain(h, diffY, mh, mxh);
32947                     y += diffY;
32948                     h -= diffY;
32949                     break;
32950                 case "hdrag":
32951                     
32952                     if (wi) {
32953                         var adiffX = Math.abs(diffX);
32954                         var sub = (adiffX % wi); // how much 
32955                         if (sub > (wi/2)) { // far enough to snap
32956                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
32957                         } else {
32958                             // remove difference.. 
32959                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
32960                         }
32961                     }
32962                     x += diffX;
32963                     x = Math.max(this.minX, x);
32964                     break;
32965                 case "west":
32966                     diffX = this.constrain(w, diffX, mw, mxw);
32967                     x += diffX;
32968                     w -= diffX;
32969                     break;
32970                 case "northeast":
32971                     w += diffX;
32972                     w = Math.min(Math.max(mw, w), mxw);
32973                     diffY = this.constrain(h, diffY, mh, mxh);
32974                     y += diffY;
32975                     h -= diffY;
32976                     break;
32977                 case "northwest":
32978                     diffX = this.constrain(w, diffX, mw, mxw);
32979                     diffY = this.constrain(h, diffY, mh, mxh);
32980                     y += diffY;
32981                     h -= diffY;
32982                     x += diffX;
32983                     w -= diffX;
32984                     break;
32985                case "southwest":
32986                     diffX = this.constrain(w, diffX, mw, mxw);
32987                     h += diffY;
32988                     h = Math.min(Math.max(mh, h), mxh);
32989                     x += diffX;
32990                     w -= diffX;
32991                     break;
32992             }
32993
32994             var sw = this.snap(w, wi, mw);
32995             var sh = this.snap(h, hi, mh);
32996             if(sw != w || sh != h){
32997                 switch(pos){
32998                     case "northeast":
32999                         y -= sh - h;
33000                     break;
33001                     case "north":
33002                         y -= sh - h;
33003                         break;
33004                     case "southwest":
33005                         x -= sw - w;
33006                     break;
33007                     case "west":
33008                         x -= sw - w;
33009                         break;
33010                     case "northwest":
33011                         x -= sw - w;
33012                         y -= sh - h;
33013                     break;
33014                 }
33015                 w = sw;
33016                 h = sh;
33017             }
33018
33019             if(this.preserveRatio){
33020                 switch(pos){
33021                     case "southeast":
33022                     case "east":
33023                         h = oh * (w/ow);
33024                         h = Math.min(Math.max(mh, h), mxh);
33025                         w = ow * (h/oh);
33026                        break;
33027                     case "south":
33028                         w = ow * (h/oh);
33029                         w = Math.min(Math.max(mw, w), mxw);
33030                         h = oh * (w/ow);
33031                         break;
33032                     case "northeast":
33033                         w = ow * (h/oh);
33034                         w = Math.min(Math.max(mw, w), mxw);
33035                         h = oh * (w/ow);
33036                     break;
33037                     case "north":
33038                         var tw = w;
33039                         w = ow * (h/oh);
33040                         w = Math.min(Math.max(mw, w), mxw);
33041                         h = oh * (w/ow);
33042                         x += (tw - w) / 2;
33043                         break;
33044                     case "southwest":
33045                         h = oh * (w/ow);
33046                         h = Math.min(Math.max(mh, h), mxh);
33047                         var tw = w;
33048                         w = ow * (h/oh);
33049                         x += tw - w;
33050                         break;
33051                     case "west":
33052                         var th = h;
33053                         h = oh * (w/ow);
33054                         h = Math.min(Math.max(mh, h), mxh);
33055                         y += (th - h) / 2;
33056                         var tw = w;
33057                         w = ow * (h/oh);
33058                         x += tw - w;
33059                        break;
33060                     case "northwest":
33061                         var tw = w;
33062                         var th = h;
33063                         h = oh * (w/ow);
33064                         h = Math.min(Math.max(mh, h), mxh);
33065                         w = ow * (h/oh);
33066                         y += th - h;
33067                         x += tw - w;
33068                        break;
33069
33070                 }
33071             }
33072             if (pos == 'hdrag') {
33073                 w = ow;
33074             }
33075             this.proxy.setBounds(x, y, w, h);
33076             if(this.dynamic){
33077                 this.resizeElement();
33078             }
33079             }catch(e){}
33080         }
33081         this.fireEvent("resizing", this, x, y, w, h, e);
33082     },
33083
33084     // private
33085     handleOver : function(){
33086         if(this.enabled){
33087             this.el.addClass("x-resizable-over");
33088         }
33089     },
33090
33091     // private
33092     handleOut : function(){
33093         if(!this.resizing){
33094             this.el.removeClass("x-resizable-over");
33095         }
33096     },
33097
33098     /**
33099      * Returns the element this component is bound to.
33100      * @return {Roo.Element}
33101      */
33102     getEl : function(){
33103         return this.el;
33104     },
33105
33106     /**
33107      * Returns the resizeChild element (or null).
33108      * @return {Roo.Element}
33109      */
33110     getResizeChild : function(){
33111         return this.resizeChild;
33112     },
33113     groupHandler : function()
33114     {
33115         
33116     },
33117     /**
33118      * Destroys this resizable. If the element was wrapped and
33119      * removeEl is not true then the element remains.
33120      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
33121      */
33122     destroy : function(removeEl){
33123         this.proxy.remove();
33124         if(this.overlay){
33125             this.overlay.removeAllListeners();
33126             this.overlay.remove();
33127         }
33128         var ps = Roo.Resizable.positions;
33129         for(var k in ps){
33130             if(typeof ps[k] != "function" && this[ps[k]]){
33131                 var h = this[ps[k]];
33132                 h.el.removeAllListeners();
33133                 h.el.remove();
33134             }
33135         }
33136         if(removeEl){
33137             this.el.update("");
33138             this.el.remove();
33139         }
33140     }
33141 });
33142
33143 // private
33144 // hash to map config positions to true positions
33145 Roo.Resizable.positions = {
33146     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
33147     hd: "hdrag"
33148 };
33149
33150 // private
33151 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
33152     if(!this.tpl){
33153         // only initialize the template if resizable is used
33154         var tpl = Roo.DomHelper.createTemplate(
33155             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
33156         );
33157         tpl.compile();
33158         Roo.Resizable.Handle.prototype.tpl = tpl;
33159     }
33160     this.position = pos;
33161     this.rz = rz;
33162     // show north drag fro topdra
33163     var handlepos = pos == 'hdrag' ? 'north' : pos;
33164     
33165     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
33166     if (pos == 'hdrag') {
33167         this.el.setStyle('cursor', 'pointer');
33168     }
33169     this.el.unselectable();
33170     if(transparent){
33171         this.el.setOpacity(0);
33172     }
33173     this.el.on("mousedown", this.onMouseDown, this);
33174     if(!disableTrackOver){
33175         this.el.on("mouseover", this.onMouseOver, this);
33176         this.el.on("mouseout", this.onMouseOut, this);
33177     }
33178 };
33179
33180 // private
33181 Roo.Resizable.Handle.prototype = {
33182     afterResize : function(rz){
33183         Roo.log('after?');
33184         // do nothing
33185     },
33186     // private
33187     onMouseDown : function(e){
33188         this.rz.onMouseDown(this, e);
33189     },
33190     // private
33191     onMouseOver : function(e){
33192         this.rz.handleOver(this, e);
33193     },
33194     // private
33195     onMouseOut : function(e){
33196         this.rz.handleOut(this, e);
33197     }
33198 };/*
33199  * Based on:
33200  * Ext JS Library 1.1.1
33201  * Copyright(c) 2006-2007, Ext JS, LLC.
33202  *
33203  * Originally Released Under LGPL - original licence link has changed is not relivant.
33204  *
33205  * Fork - LGPL
33206  * <script type="text/javascript">
33207  */
33208
33209 /**
33210  * @class Roo.Editor
33211  * @extends Roo.Component
33212  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
33213  * @constructor
33214  * Create a new Editor
33215  * @param {Roo.form.Field} field The Field object (or descendant)
33216  * @param {Object} config The config object
33217  */
33218 Roo.Editor = function(field, config){
33219     Roo.Editor.superclass.constructor.call(this, config);
33220     this.field = field;
33221     this.addEvents({
33222         /**
33223              * @event beforestartedit
33224              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
33225              * false from the handler of this event.
33226              * @param {Editor} this
33227              * @param {Roo.Element} boundEl The underlying element bound to this editor
33228              * @param {Mixed} value The field value being set
33229              */
33230         "beforestartedit" : true,
33231         /**
33232              * @event startedit
33233              * Fires when this editor is displayed
33234              * @param {Roo.Element} boundEl The underlying element bound to this editor
33235              * @param {Mixed} value The starting field value
33236              */
33237         "startedit" : true,
33238         /**
33239              * @event beforecomplete
33240              * Fires after a change has been made to the field, but before the change is reflected in the underlying
33241              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
33242              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
33243              * event will not fire since no edit actually occurred.
33244              * @param {Editor} this
33245              * @param {Mixed} value The current field value
33246              * @param {Mixed} startValue The original field value
33247              */
33248         "beforecomplete" : true,
33249         /**
33250              * @event complete
33251              * Fires after editing is complete and any changed value has been written to the underlying field.
33252              * @param {Editor} this
33253              * @param {Mixed} value The current field value
33254              * @param {Mixed} startValue The original field value
33255              */
33256         "complete" : true,
33257         /**
33258          * @event specialkey
33259          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
33260          * {@link Roo.EventObject#getKey} to determine which key was pressed.
33261          * @param {Roo.form.Field} this
33262          * @param {Roo.EventObject} e The event object
33263          */
33264         "specialkey" : true
33265     });
33266 };
33267
33268 Roo.extend(Roo.Editor, Roo.Component, {
33269     /**
33270      * @cfg {Boolean/String} autosize
33271      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
33272      * or "height" to adopt the height only (defaults to false)
33273      */
33274     /**
33275      * @cfg {Boolean} revertInvalid
33276      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
33277      * validation fails (defaults to true)
33278      */
33279     /**
33280      * @cfg {Boolean} ignoreNoChange
33281      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
33282      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
33283      * will never be ignored.
33284      */
33285     /**
33286      * @cfg {Boolean} hideEl
33287      * False to keep the bound element visible while the editor is displayed (defaults to true)
33288      */
33289     /**
33290      * @cfg {Mixed} value
33291      * The data value of the underlying field (defaults to "")
33292      */
33293     value : "",
33294     /**
33295      * @cfg {String} alignment
33296      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
33297      */
33298     alignment: "c-c?",
33299     /**
33300      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
33301      * for bottom-right shadow (defaults to "frame")
33302      */
33303     shadow : "frame",
33304     /**
33305      * @cfg {Boolean} constrain True to constrain the editor to the viewport
33306      */
33307     constrain : false,
33308     /**
33309      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
33310      */
33311     completeOnEnter : false,
33312     /**
33313      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
33314      */
33315     cancelOnEsc : false,
33316     /**
33317      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
33318      */
33319     updateEl : false,
33320
33321     // private
33322     onRender : function(ct, position){
33323         this.el = new Roo.Layer({
33324             shadow: this.shadow,
33325             cls: "x-editor",
33326             parentEl : ct,
33327             shim : this.shim,
33328             shadowOffset:4,
33329             id: this.id,
33330             constrain: this.constrain
33331         });
33332         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
33333         if(this.field.msgTarget != 'title'){
33334             this.field.msgTarget = 'qtip';
33335         }
33336         this.field.render(this.el);
33337         if(Roo.isGecko){
33338             this.field.el.dom.setAttribute('autocomplete', 'off');
33339         }
33340         this.field.on("specialkey", this.onSpecialKey, this);
33341         if(this.swallowKeys){
33342             this.field.el.swallowEvent(['keydown','keypress']);
33343         }
33344         this.field.show();
33345         this.field.on("blur", this.onBlur, this);
33346         if(this.field.grow){
33347             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
33348         }
33349     },
33350
33351     onSpecialKey : function(field, e)
33352     {
33353         //Roo.log('editor onSpecialKey');
33354         if(this.completeOnEnter && e.getKey() == e.ENTER){
33355             e.stopEvent();
33356             this.completeEdit();
33357             return;
33358         }
33359         // do not fire special key otherwise it might hide close the editor...
33360         if(e.getKey() == e.ENTER){    
33361             return;
33362         }
33363         if(this.cancelOnEsc && e.getKey() == e.ESC){
33364             this.cancelEdit();
33365             return;
33366         } 
33367         this.fireEvent('specialkey', field, e);
33368     
33369     },
33370
33371     /**
33372      * Starts the editing process and shows the editor.
33373      * @param {String/HTMLElement/Element} el The element to edit
33374      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
33375       * to the innerHTML of el.
33376      */
33377     startEdit : function(el, value){
33378         if(this.editing){
33379             this.completeEdit();
33380         }
33381         this.boundEl = Roo.get(el);
33382         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
33383         if(!this.rendered){
33384             this.render(this.parentEl || document.body);
33385         }
33386         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
33387             return;
33388         }
33389         this.startValue = v;
33390         this.field.setValue(v);
33391         if(this.autoSize){
33392             var sz = this.boundEl.getSize();
33393             switch(this.autoSize){
33394                 case "width":
33395                 this.setSize(sz.width,  "");
33396                 break;
33397                 case "height":
33398                 this.setSize("",  sz.height);
33399                 break;
33400                 default:
33401                 this.setSize(sz.width,  sz.height);
33402             }
33403         }
33404         this.el.alignTo(this.boundEl, this.alignment);
33405         this.editing = true;
33406         if(Roo.QuickTips){
33407             Roo.QuickTips.disable();
33408         }
33409         this.show();
33410     },
33411
33412     /**
33413      * Sets the height and width of this editor.
33414      * @param {Number} width The new width
33415      * @param {Number} height The new height
33416      */
33417     setSize : function(w, h){
33418         this.field.setSize(w, h);
33419         if(this.el){
33420             this.el.sync();
33421         }
33422     },
33423
33424     /**
33425      * Realigns the editor to the bound field based on the current alignment config value.
33426      */
33427     realign : function(){
33428         this.el.alignTo(this.boundEl, this.alignment);
33429     },
33430
33431     /**
33432      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
33433      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
33434      */
33435     completeEdit : function(remainVisible){
33436         if(!this.editing){
33437             return;
33438         }
33439         var v = this.getValue();
33440         if(this.revertInvalid !== false && !this.field.isValid()){
33441             v = this.startValue;
33442             this.cancelEdit(true);
33443         }
33444         if(String(v) === String(this.startValue) && this.ignoreNoChange){
33445             this.editing = false;
33446             this.hide();
33447             return;
33448         }
33449         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
33450             this.editing = false;
33451             if(this.updateEl && this.boundEl){
33452                 this.boundEl.update(v);
33453             }
33454             if(remainVisible !== true){
33455                 this.hide();
33456             }
33457             this.fireEvent("complete", this, v, this.startValue);
33458         }
33459     },
33460
33461     // private
33462     onShow : function(){
33463         this.el.show();
33464         if(this.hideEl !== false){
33465             this.boundEl.hide();
33466         }
33467         this.field.show();
33468         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
33469             this.fixIEFocus = true;
33470             this.deferredFocus.defer(50, this);
33471         }else{
33472             this.field.focus();
33473         }
33474         this.fireEvent("startedit", this.boundEl, this.startValue);
33475     },
33476
33477     deferredFocus : function(){
33478         if(this.editing){
33479             this.field.focus();
33480         }
33481     },
33482
33483     /**
33484      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
33485      * reverted to the original starting value.
33486      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
33487      * cancel (defaults to false)
33488      */
33489     cancelEdit : function(remainVisible){
33490         if(this.editing){
33491             this.setValue(this.startValue);
33492             if(remainVisible !== true){
33493                 this.hide();
33494             }
33495         }
33496     },
33497
33498     // private
33499     onBlur : function(){
33500         if(this.allowBlur !== true && this.editing){
33501             this.completeEdit();
33502         }
33503     },
33504
33505     // private
33506     onHide : function(){
33507         if(this.editing){
33508             this.completeEdit();
33509             return;
33510         }
33511         this.field.blur();
33512         if(this.field.collapse){
33513             this.field.collapse();
33514         }
33515         this.el.hide();
33516         if(this.hideEl !== false){
33517             this.boundEl.show();
33518         }
33519         if(Roo.QuickTips){
33520             Roo.QuickTips.enable();
33521         }
33522     },
33523
33524     /**
33525      * Sets the data value of the editor
33526      * @param {Mixed} value Any valid value supported by the underlying field
33527      */
33528     setValue : function(v){
33529         this.field.setValue(v);
33530     },
33531
33532     /**
33533      * Gets the data value of the editor
33534      * @return {Mixed} The data value
33535      */
33536     getValue : function(){
33537         return this.field.getValue();
33538     }
33539 });/*
33540  * Based on:
33541  * Ext JS Library 1.1.1
33542  * Copyright(c) 2006-2007, Ext JS, LLC.
33543  *
33544  * Originally Released Under LGPL - original licence link has changed is not relivant.
33545  *
33546  * Fork - LGPL
33547  * <script type="text/javascript">
33548  */
33549  
33550 /**
33551  * @class Roo.BasicDialog
33552  * @extends Roo.util.Observable
33553  * @parent none builder
33554  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
33555  * <pre><code>
33556 var dlg = new Roo.BasicDialog("my-dlg", {
33557     height: 200,
33558     width: 300,
33559     minHeight: 100,
33560     minWidth: 150,
33561     modal: true,
33562     proxyDrag: true,
33563     shadow: true
33564 });
33565 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
33566 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
33567 dlg.addButton('Cancel', dlg.hide, dlg);
33568 dlg.show();
33569 </code></pre>
33570   <b>A Dialog should always be a direct child of the body element.</b>
33571  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
33572  * @cfg {String} title Default text to display in the title bar (defaults to null)
33573  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33574  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33575  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
33576  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
33577  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
33578  * (defaults to null with no animation)
33579  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
33580  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
33581  * property for valid values (defaults to 'all')
33582  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
33583  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
33584  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
33585  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
33586  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
33587  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
33588  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
33589  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
33590  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
33591  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
33592  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
33593  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
33594  * draggable = true (defaults to false)
33595  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
33596  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
33597  * shadow (defaults to false)
33598  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
33599  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
33600  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
33601  * @cfg {Array} buttons Array of buttons
33602  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
33603  * @constructor
33604  * Create a new BasicDialog.
33605  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
33606  * @param {Object} config Configuration options
33607  */
33608 Roo.BasicDialog = function(el, config){
33609     this.el = Roo.get(el);
33610     var dh = Roo.DomHelper;
33611     if(!this.el && config && config.autoCreate){
33612         if(typeof config.autoCreate == "object"){
33613             if(!config.autoCreate.id){
33614                 config.autoCreate.id = el;
33615             }
33616             this.el = dh.append(document.body,
33617                         config.autoCreate, true);
33618         }else{
33619             this.el = dh.append(document.body,
33620                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
33621         }
33622     }
33623     el = this.el;
33624     el.setDisplayed(true);
33625     el.hide = this.hideAction;
33626     this.id = el.id;
33627     el.addClass("x-dlg");
33628
33629     Roo.apply(this, config);
33630
33631     this.proxy = el.createProxy("x-dlg-proxy");
33632     this.proxy.hide = this.hideAction;
33633     this.proxy.setOpacity(.5);
33634     this.proxy.hide();
33635
33636     if(config.width){
33637         el.setWidth(config.width);
33638     }
33639     if(config.height){
33640         el.setHeight(config.height);
33641     }
33642     this.size = el.getSize();
33643     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
33644         this.xy = [config.x,config.y];
33645     }else{
33646         this.xy = el.getCenterXY(true);
33647     }
33648     /** The header element @type Roo.Element */
33649     this.header = el.child("> .x-dlg-hd");
33650     /** The body element @type Roo.Element */
33651     this.body = el.child("> .x-dlg-bd");
33652     /** The footer element @type Roo.Element */
33653     this.footer = el.child("> .x-dlg-ft");
33654
33655     if(!this.header){
33656         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
33657     }
33658     if(!this.body){
33659         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
33660     }
33661
33662     this.header.unselectable();
33663     if(this.title){
33664         this.header.update(this.title);
33665     }
33666     // this element allows the dialog to be focused for keyboard event
33667     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
33668     this.focusEl.swallowEvent("click", true);
33669
33670     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
33671
33672     // wrap the body and footer for special rendering
33673     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
33674     if(this.footer){
33675         this.bwrap.dom.appendChild(this.footer.dom);
33676     }
33677
33678     this.bg = this.el.createChild({
33679         tag: "div", cls:"x-dlg-bg",
33680         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
33681     });
33682     this.centerBg = this.bg.child("div.x-dlg-bg-center");
33683
33684
33685     if(this.autoScroll !== false && !this.autoTabs){
33686         this.body.setStyle("overflow", "auto");
33687     }
33688
33689     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
33690
33691     if(this.closable !== false){
33692         this.el.addClass("x-dlg-closable");
33693         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
33694         this.close.on("click", this.closeClick, this);
33695         this.close.addClassOnOver("x-dlg-close-over");
33696     }
33697     if(this.collapsible !== false){
33698         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
33699         this.collapseBtn.on("click", this.collapseClick, this);
33700         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
33701         this.header.on("dblclick", this.collapseClick, this);
33702     }
33703     if(this.resizable !== false){
33704         this.el.addClass("x-dlg-resizable");
33705         this.resizer = new Roo.Resizable(el, {
33706             minWidth: this.minWidth || 80,
33707             minHeight:this.minHeight || 80,
33708             handles: this.resizeHandles || "all",
33709             pinned: true
33710         });
33711         this.resizer.on("beforeresize", this.beforeResize, this);
33712         this.resizer.on("resize", this.onResize, this);
33713     }
33714     if(this.draggable !== false){
33715         el.addClass("x-dlg-draggable");
33716         if (!this.proxyDrag) {
33717             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
33718         }
33719         else {
33720             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
33721         }
33722         dd.setHandleElId(this.header.id);
33723         dd.endDrag = this.endMove.createDelegate(this);
33724         dd.startDrag = this.startMove.createDelegate(this);
33725         dd.onDrag = this.onDrag.createDelegate(this);
33726         dd.scroll = false;
33727         this.dd = dd;
33728     }
33729     if(this.modal){
33730         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
33731         this.mask.enableDisplayMode("block");
33732         this.mask.hide();
33733         this.el.addClass("x-dlg-modal");
33734     }
33735     if(this.shadow){
33736         this.shadow = new Roo.Shadow({
33737             mode : typeof this.shadow == "string" ? this.shadow : "sides",
33738             offset : this.shadowOffset
33739         });
33740     }else{
33741         this.shadowOffset = 0;
33742     }
33743     if(Roo.useShims && this.shim !== false){
33744         this.shim = this.el.createShim();
33745         this.shim.hide = this.hideAction;
33746         this.shim.hide();
33747     }else{
33748         this.shim = false;
33749     }
33750     if(this.autoTabs){
33751         this.initTabs();
33752     }
33753     if (this.buttons) { 
33754         var bts= this.buttons;
33755         this.buttons = [];
33756         Roo.each(bts, function(b) {
33757             this.addButton(b);
33758         }, this);
33759     }
33760     
33761     
33762     this.addEvents({
33763         /**
33764          * @event keydown
33765          * Fires when a key is pressed
33766          * @param {Roo.BasicDialog} this
33767          * @param {Roo.EventObject} e
33768          */
33769         "keydown" : true,
33770         /**
33771          * @event move
33772          * Fires when this dialog is moved by the user.
33773          * @param {Roo.BasicDialog} this
33774          * @param {Number} x The new page X
33775          * @param {Number} y The new page Y
33776          */
33777         "move" : true,
33778         /**
33779          * @event resize
33780          * Fires when this dialog is resized by the user.
33781          * @param {Roo.BasicDialog} this
33782          * @param {Number} width The new width
33783          * @param {Number} height The new height
33784          */
33785         "resize" : true,
33786         /**
33787          * @event beforehide
33788          * Fires before this dialog is hidden.
33789          * @param {Roo.BasicDialog} this
33790          */
33791         "beforehide" : true,
33792         /**
33793          * @event hide
33794          * Fires when this dialog is hidden.
33795          * @param {Roo.BasicDialog} this
33796          */
33797         "hide" : true,
33798         /**
33799          * @event beforeshow
33800          * Fires before this dialog is shown.
33801          * @param {Roo.BasicDialog} this
33802          */
33803         "beforeshow" : true,
33804         /**
33805          * @event show
33806          * Fires when this dialog is shown.
33807          * @param {Roo.BasicDialog} this
33808          */
33809         "show" : true
33810     });
33811     el.on("keydown", this.onKeyDown, this);
33812     el.on("mousedown", this.toFront, this);
33813     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
33814     this.el.hide();
33815     Roo.DialogManager.register(this);
33816     Roo.BasicDialog.superclass.constructor.call(this);
33817 };
33818
33819 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
33820     shadowOffset: Roo.isIE ? 6 : 5,
33821     minHeight: 80,
33822     minWidth: 200,
33823     minButtonWidth: 75,
33824     defaultButton: null,
33825     buttonAlign: "right",
33826     tabTag: 'div',
33827     firstShow: true,
33828
33829     /**
33830      * Sets the dialog title text
33831      * @param {String} text The title text to display
33832      * @return {Roo.BasicDialog} this
33833      */
33834     setTitle : function(text){
33835         this.header.update(text);
33836         return this;
33837     },
33838
33839     // private
33840     closeClick : function(){
33841         this.hide();
33842     },
33843
33844     // private
33845     collapseClick : function(){
33846         this[this.collapsed ? "expand" : "collapse"]();
33847     },
33848
33849     /**
33850      * Collapses the dialog to its minimized state (only the title bar is visible).
33851      * Equivalent to the user clicking the collapse dialog button.
33852      */
33853     collapse : function(){
33854         if(!this.collapsed){
33855             this.collapsed = true;
33856             this.el.addClass("x-dlg-collapsed");
33857             this.restoreHeight = this.el.getHeight();
33858             this.resizeTo(this.el.getWidth(), this.header.getHeight());
33859         }
33860     },
33861
33862     /**
33863      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
33864      * clicking the expand dialog button.
33865      */
33866     expand : function(){
33867         if(this.collapsed){
33868             this.collapsed = false;
33869             this.el.removeClass("x-dlg-collapsed");
33870             this.resizeTo(this.el.getWidth(), this.restoreHeight);
33871         }
33872     },
33873
33874     /**
33875      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
33876      * @return {Roo.TabPanel} The tabs component
33877      */
33878     initTabs : function(){
33879         var tabs = this.getTabs();
33880         while(tabs.getTab(0)){
33881             tabs.removeTab(0);
33882         }
33883         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
33884             var dom = el.dom;
33885             tabs.addTab(Roo.id(dom), dom.title);
33886             dom.title = "";
33887         });
33888         tabs.activate(0);
33889         return tabs;
33890     },
33891
33892     // private
33893     beforeResize : function(){
33894         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
33895     },
33896
33897     // private
33898     onResize : function(){
33899         this.refreshSize();
33900         this.syncBodyHeight();
33901         this.adjustAssets();
33902         this.focus();
33903         this.fireEvent("resize", this, this.size.width, this.size.height);
33904     },
33905
33906     // private
33907     onKeyDown : function(e){
33908         if(this.isVisible()){
33909             this.fireEvent("keydown", this, e);
33910         }
33911     },
33912
33913     /**
33914      * Resizes the dialog.
33915      * @param {Number} width
33916      * @param {Number} height
33917      * @return {Roo.BasicDialog} this
33918      */
33919     resizeTo : function(width, height){
33920         this.el.setSize(width, height);
33921         this.size = {width: width, height: height};
33922         this.syncBodyHeight();
33923         if(this.fixedcenter){
33924             this.center();
33925         }
33926         if(this.isVisible()){
33927             this.constrainXY();
33928             this.adjustAssets();
33929         }
33930         this.fireEvent("resize", this, width, height);
33931         return this;
33932     },
33933
33934
33935     /**
33936      * Resizes the dialog to fit the specified content size.
33937      * @param {Number} width
33938      * @param {Number} height
33939      * @return {Roo.BasicDialog} this
33940      */
33941     setContentSize : function(w, h){
33942         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
33943         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
33944         //if(!this.el.isBorderBox()){
33945             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
33946             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
33947         //}
33948         if(this.tabs){
33949             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
33950             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
33951         }
33952         this.resizeTo(w, h);
33953         return this;
33954     },
33955
33956     /**
33957      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
33958      * executed in response to a particular key being pressed while the dialog is active.
33959      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
33960      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
33961      * @param {Function} fn The function to call
33962      * @param {Object} scope (optional) The scope of the function
33963      * @return {Roo.BasicDialog} this
33964      */
33965     addKeyListener : function(key, fn, scope){
33966         var keyCode, shift, ctrl, alt;
33967         if(typeof key == "object" && !(key instanceof Array)){
33968             keyCode = key["key"];
33969             shift = key["shift"];
33970             ctrl = key["ctrl"];
33971             alt = key["alt"];
33972         }else{
33973             keyCode = key;
33974         }
33975         var handler = function(dlg, e){
33976             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
33977                 var k = e.getKey();
33978                 if(keyCode instanceof Array){
33979                     for(var i = 0, len = keyCode.length; i < len; i++){
33980                         if(keyCode[i] == k){
33981                           fn.call(scope || window, dlg, k, e);
33982                           return;
33983                         }
33984                     }
33985                 }else{
33986                     if(k == keyCode){
33987                         fn.call(scope || window, dlg, k, e);
33988                     }
33989                 }
33990             }
33991         };
33992         this.on("keydown", handler);
33993         return this;
33994     },
33995
33996     /**
33997      * Returns the TabPanel component (creates it if it doesn't exist).
33998      * Note: If you wish to simply check for the existence of tabs without creating them,
33999      * check for a null 'tabs' property.
34000      * @return {Roo.TabPanel} The tabs component
34001      */
34002     getTabs : function(){
34003         if(!this.tabs){
34004             this.el.addClass("x-dlg-auto-tabs");
34005             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
34006             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
34007         }
34008         return this.tabs;
34009     },
34010
34011     /**
34012      * Adds a button to the footer section of the dialog.
34013      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
34014      * object or a valid Roo.DomHelper element config
34015      * @param {Function} handler The function called when the button is clicked
34016      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
34017      * @return {Roo.Button} The new button
34018      */
34019     addButton : function(config, handler, scope){
34020         var dh = Roo.DomHelper;
34021         if(!this.footer){
34022             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
34023         }
34024         if(!this.btnContainer){
34025             var tb = this.footer.createChild({
34026
34027                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
34028                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
34029             }, null, true);
34030             this.btnContainer = tb.firstChild.firstChild.firstChild;
34031         }
34032         var bconfig = {
34033             handler: handler,
34034             scope: scope,
34035             minWidth: this.minButtonWidth,
34036             hideParent:true
34037         };
34038         if(typeof config == "string"){
34039             bconfig.text = config;
34040         }else{
34041             if(config.tag){
34042                 bconfig.dhconfig = config;
34043             }else{
34044                 Roo.apply(bconfig, config);
34045             }
34046         }
34047         var fc = false;
34048         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
34049             bconfig.position = Math.max(0, bconfig.position);
34050             fc = this.btnContainer.childNodes[bconfig.position];
34051         }
34052          
34053         var btn = new Roo.Button(
34054             fc ? 
34055                 this.btnContainer.insertBefore(document.createElement("td"),fc)
34056                 : this.btnContainer.appendChild(document.createElement("td")),
34057             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
34058             bconfig
34059         );
34060         this.syncBodyHeight();
34061         if(!this.buttons){
34062             /**
34063              * Array of all the buttons that have been added to this dialog via addButton
34064              * @type Array
34065              */
34066             this.buttons = [];
34067         }
34068         this.buttons.push(btn);
34069         return btn;
34070     },
34071
34072     /**
34073      * Sets the default button to be focused when the dialog is displayed.
34074      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
34075      * @return {Roo.BasicDialog} this
34076      */
34077     setDefaultButton : function(btn){
34078         this.defaultButton = btn;
34079         return this;
34080     },
34081
34082     // private
34083     getHeaderFooterHeight : function(safe){
34084         var height = 0;
34085         if(this.header){
34086            height += this.header.getHeight();
34087         }
34088         if(this.footer){
34089            var fm = this.footer.getMargins();
34090             height += (this.footer.getHeight()+fm.top+fm.bottom);
34091         }
34092         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
34093         height += this.centerBg.getPadding("tb");
34094         return height;
34095     },
34096
34097     // private
34098     syncBodyHeight : function()
34099     {
34100         var bd = this.body, // the text
34101             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
34102             bw = this.bwrap;
34103         var height = this.size.height - this.getHeaderFooterHeight(false);
34104         bd.setHeight(height-bd.getMargins("tb"));
34105         var hh = this.header.getHeight();
34106         var h = this.size.height-hh;
34107         cb.setHeight(h);
34108         
34109         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
34110         bw.setHeight(h-cb.getPadding("tb"));
34111         
34112         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
34113         bd.setWidth(bw.getWidth(true));
34114         if(this.tabs){
34115             this.tabs.syncHeight();
34116             if(Roo.isIE){
34117                 this.tabs.el.repaint();
34118             }
34119         }
34120     },
34121
34122     /**
34123      * Restores the previous state of the dialog if Roo.state is configured.
34124      * @return {Roo.BasicDialog} this
34125      */
34126     restoreState : function(){
34127         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
34128         if(box && box.width){
34129             this.xy = [box.x, box.y];
34130             this.resizeTo(box.width, box.height);
34131         }
34132         return this;
34133     },
34134
34135     // private
34136     beforeShow : function(){
34137         this.expand();
34138         if(this.fixedcenter){
34139             this.xy = this.el.getCenterXY(true);
34140         }
34141         if(this.modal){
34142             Roo.get(document.body).addClass("x-body-masked");
34143             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34144             this.mask.show();
34145         }
34146         this.constrainXY();
34147     },
34148
34149     // private
34150     animShow : function(){
34151         var b = Roo.get(this.animateTarget).getBox();
34152         this.proxy.setSize(b.width, b.height);
34153         this.proxy.setLocation(b.x, b.y);
34154         this.proxy.show();
34155         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
34156                     true, .35, this.showEl.createDelegate(this));
34157     },
34158
34159     /**
34160      * Shows the dialog.
34161      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
34162      * @return {Roo.BasicDialog} this
34163      */
34164     show : function(animateTarget){
34165         if (this.fireEvent("beforeshow", this) === false){
34166             return;
34167         }
34168         if(this.syncHeightBeforeShow){
34169             this.syncBodyHeight();
34170         }else if(this.firstShow){
34171             this.firstShow = false;
34172             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
34173         }
34174         this.animateTarget = animateTarget || this.animateTarget;
34175         if(!this.el.isVisible()){
34176             this.beforeShow();
34177             if(this.animateTarget && Roo.get(this.animateTarget)){
34178                 this.animShow();
34179             }else{
34180                 this.showEl();
34181             }
34182         }
34183         return this;
34184     },
34185
34186     // private
34187     showEl : function(){
34188         this.proxy.hide();
34189         this.el.setXY(this.xy);
34190         this.el.show();
34191         this.adjustAssets(true);
34192         this.toFront();
34193         this.focus();
34194         // IE peekaboo bug - fix found by Dave Fenwick
34195         if(Roo.isIE){
34196             this.el.repaint();
34197         }
34198         this.fireEvent("show", this);
34199     },
34200
34201     /**
34202      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
34203      * dialog itself will receive focus.
34204      */
34205     focus : function(){
34206         if(this.defaultButton){
34207             this.defaultButton.focus();
34208         }else{
34209             this.focusEl.focus();
34210         }
34211     },
34212
34213     // private
34214     constrainXY : function(){
34215         if(this.constraintoviewport !== false){
34216             if(!this.viewSize){
34217                 if(this.container){
34218                     var s = this.container.getSize();
34219                     this.viewSize = [s.width, s.height];
34220                 }else{
34221                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
34222                 }
34223             }
34224             var s = Roo.get(this.container||document).getScroll();
34225
34226             var x = this.xy[0], y = this.xy[1];
34227             var w = this.size.width, h = this.size.height;
34228             var vw = this.viewSize[0], vh = this.viewSize[1];
34229             // only move it if it needs it
34230             var moved = false;
34231             // first validate right/bottom
34232             if(x + w > vw+s.left){
34233                 x = vw - w;
34234                 moved = true;
34235             }
34236             if(y + h > vh+s.top){
34237                 y = vh - h;
34238                 moved = true;
34239             }
34240             // then make sure top/left isn't negative
34241             if(x < s.left){
34242                 x = s.left;
34243                 moved = true;
34244             }
34245             if(y < s.top){
34246                 y = s.top;
34247                 moved = true;
34248             }
34249             if(moved){
34250                 // cache xy
34251                 this.xy = [x, y];
34252                 if(this.isVisible()){
34253                     this.el.setLocation(x, y);
34254                     this.adjustAssets();
34255                 }
34256             }
34257         }
34258     },
34259
34260     // private
34261     onDrag : function(){
34262         if(!this.proxyDrag){
34263             this.xy = this.el.getXY();
34264             this.adjustAssets();
34265         }
34266     },
34267
34268     // private
34269     adjustAssets : function(doShow){
34270         var x = this.xy[0], y = this.xy[1];
34271         var w = this.size.width, h = this.size.height;
34272         if(doShow === true){
34273             if(this.shadow){
34274                 this.shadow.show(this.el);
34275             }
34276             if(this.shim){
34277                 this.shim.show();
34278             }
34279         }
34280         if(this.shadow && this.shadow.isVisible()){
34281             this.shadow.show(this.el);
34282         }
34283         if(this.shim && this.shim.isVisible()){
34284             this.shim.setBounds(x, y, w, h);
34285         }
34286     },
34287
34288     // private
34289     adjustViewport : function(w, h){
34290         if(!w || !h){
34291             w = Roo.lib.Dom.getViewWidth();
34292             h = Roo.lib.Dom.getViewHeight();
34293         }
34294         // cache the size
34295         this.viewSize = [w, h];
34296         if(this.modal && this.mask.isVisible()){
34297             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
34298             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34299         }
34300         if(this.isVisible()){
34301             this.constrainXY();
34302         }
34303     },
34304
34305     /**
34306      * Destroys this dialog and all its supporting elements (including any tabs, shim,
34307      * shadow, proxy, mask, etc.)  Also removes all event listeners.
34308      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
34309      */
34310     destroy : function(removeEl){
34311         if(this.isVisible()){
34312             this.animateTarget = null;
34313             this.hide();
34314         }
34315         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
34316         if(this.tabs){
34317             this.tabs.destroy(removeEl);
34318         }
34319         Roo.destroy(
34320              this.shim,
34321              this.proxy,
34322              this.resizer,
34323              this.close,
34324              this.mask
34325         );
34326         if(this.dd){
34327             this.dd.unreg();
34328         }
34329         if(this.buttons){
34330            for(var i = 0, len = this.buttons.length; i < len; i++){
34331                this.buttons[i].destroy();
34332            }
34333         }
34334         this.el.removeAllListeners();
34335         if(removeEl === true){
34336             this.el.update("");
34337             this.el.remove();
34338         }
34339         Roo.DialogManager.unregister(this);
34340     },
34341
34342     // private
34343     startMove : function(){
34344         if(this.proxyDrag){
34345             this.proxy.show();
34346         }
34347         if(this.constraintoviewport !== false){
34348             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
34349         }
34350     },
34351
34352     // private
34353     endMove : function(){
34354         if(!this.proxyDrag){
34355             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
34356         }else{
34357             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
34358             this.proxy.hide();
34359         }
34360         this.refreshSize();
34361         this.adjustAssets();
34362         this.focus();
34363         this.fireEvent("move", this, this.xy[0], this.xy[1]);
34364     },
34365
34366     /**
34367      * Brings this dialog to the front of any other visible dialogs
34368      * @return {Roo.BasicDialog} this
34369      */
34370     toFront : function(){
34371         Roo.DialogManager.bringToFront(this);
34372         return this;
34373     },
34374
34375     /**
34376      * Sends this dialog to the back (under) of any other visible dialogs
34377      * @return {Roo.BasicDialog} this
34378      */
34379     toBack : function(){
34380         Roo.DialogManager.sendToBack(this);
34381         return this;
34382     },
34383
34384     /**
34385      * Centers this dialog in the viewport
34386      * @return {Roo.BasicDialog} this
34387      */
34388     center : function(){
34389         var xy = this.el.getCenterXY(true);
34390         this.moveTo(xy[0], xy[1]);
34391         return this;
34392     },
34393
34394     /**
34395      * Moves the dialog's top-left corner to the specified point
34396      * @param {Number} x
34397      * @param {Number} y
34398      * @return {Roo.BasicDialog} this
34399      */
34400     moveTo : function(x, y){
34401         this.xy = [x,y];
34402         if(this.isVisible()){
34403             this.el.setXY(this.xy);
34404             this.adjustAssets();
34405         }
34406         return this;
34407     },
34408
34409     /**
34410      * Aligns the dialog to the specified element
34411      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34412      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
34413      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34414      * @return {Roo.BasicDialog} this
34415      */
34416     alignTo : function(element, position, offsets){
34417         this.xy = this.el.getAlignToXY(element, position, offsets);
34418         if(this.isVisible()){
34419             this.el.setXY(this.xy);
34420             this.adjustAssets();
34421         }
34422         return this;
34423     },
34424
34425     /**
34426      * Anchors an element to another element and realigns it when the window is resized.
34427      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34428      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
34429      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34430      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
34431      * is a number, it is used as the buffer delay (defaults to 50ms).
34432      * @return {Roo.BasicDialog} this
34433      */
34434     anchorTo : function(el, alignment, offsets, monitorScroll){
34435         var action = function(){
34436             this.alignTo(el, alignment, offsets);
34437         };
34438         Roo.EventManager.onWindowResize(action, this);
34439         var tm = typeof monitorScroll;
34440         if(tm != 'undefined'){
34441             Roo.EventManager.on(window, 'scroll', action, this,
34442                 {buffer: tm == 'number' ? monitorScroll : 50});
34443         }
34444         action.call(this);
34445         return this;
34446     },
34447
34448     /**
34449      * Returns true if the dialog is visible
34450      * @return {Boolean}
34451      */
34452     isVisible : function(){
34453         return this.el.isVisible();
34454     },
34455
34456     // private
34457     animHide : function(callback){
34458         var b = Roo.get(this.animateTarget).getBox();
34459         this.proxy.show();
34460         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
34461         this.el.hide();
34462         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
34463                     this.hideEl.createDelegate(this, [callback]));
34464     },
34465
34466     /**
34467      * Hides the dialog.
34468      * @param {Function} callback (optional) Function to call when the dialog is hidden
34469      * @return {Roo.BasicDialog} this
34470      */
34471     hide : function(callback){
34472         if (this.fireEvent("beforehide", this) === false){
34473             return;
34474         }
34475         if(this.shadow){
34476             this.shadow.hide();
34477         }
34478         if(this.shim) {
34479           this.shim.hide();
34480         }
34481         // sometimes animateTarget seems to get set.. causing problems...
34482         // this just double checks..
34483         if(this.animateTarget && Roo.get(this.animateTarget)) {
34484            this.animHide(callback);
34485         }else{
34486             this.el.hide();
34487             this.hideEl(callback);
34488         }
34489         return this;
34490     },
34491
34492     // private
34493     hideEl : function(callback){
34494         this.proxy.hide();
34495         if(this.modal){
34496             this.mask.hide();
34497             Roo.get(document.body).removeClass("x-body-masked");
34498         }
34499         this.fireEvent("hide", this);
34500         if(typeof callback == "function"){
34501             callback();
34502         }
34503     },
34504
34505     // private
34506     hideAction : function(){
34507         this.setLeft("-10000px");
34508         this.setTop("-10000px");
34509         this.setStyle("visibility", "hidden");
34510     },
34511
34512     // private
34513     refreshSize : function(){
34514         this.size = this.el.getSize();
34515         this.xy = this.el.getXY();
34516         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
34517     },
34518
34519     // private
34520     // z-index is managed by the DialogManager and may be overwritten at any time
34521     setZIndex : function(index){
34522         if(this.modal){
34523             this.mask.setStyle("z-index", index);
34524         }
34525         if(this.shim){
34526             this.shim.setStyle("z-index", ++index);
34527         }
34528         if(this.shadow){
34529             this.shadow.setZIndex(++index);
34530         }
34531         this.el.setStyle("z-index", ++index);
34532         if(this.proxy){
34533             this.proxy.setStyle("z-index", ++index);
34534         }
34535         if(this.resizer){
34536             this.resizer.proxy.setStyle("z-index", ++index);
34537         }
34538
34539         this.lastZIndex = index;
34540     },
34541
34542     /**
34543      * Returns the element for this dialog
34544      * @return {Roo.Element} The underlying dialog Element
34545      */
34546     getEl : function(){
34547         return this.el;
34548     }
34549 });
34550
34551 /**
34552  * @class Roo.DialogManager
34553  * Provides global access to BasicDialogs that have been created and
34554  * support for z-indexing (layering) multiple open dialogs.
34555  */
34556 Roo.DialogManager = function(){
34557     var list = {};
34558     var accessList = [];
34559     var front = null;
34560
34561     // private
34562     var sortDialogs = function(d1, d2){
34563         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
34564     };
34565
34566     // private
34567     var orderDialogs = function(){
34568         accessList.sort(sortDialogs);
34569         var seed = Roo.DialogManager.zseed;
34570         for(var i = 0, len = accessList.length; i < len; i++){
34571             var dlg = accessList[i];
34572             if(dlg){
34573                 dlg.setZIndex(seed + (i*10));
34574             }
34575         }
34576     };
34577
34578     return {
34579         /**
34580          * The starting z-index for BasicDialogs (defaults to 9000)
34581          * @type Number The z-index value
34582          */
34583         zseed : 9000,
34584
34585         // private
34586         register : function(dlg){
34587             list[dlg.id] = dlg;
34588             accessList.push(dlg);
34589         },
34590
34591         // private
34592         unregister : function(dlg){
34593             delete list[dlg.id];
34594             var i=0;
34595             var len=0;
34596             if(!accessList.indexOf){
34597                 for(  i = 0, len = accessList.length; i < len; i++){
34598                     if(accessList[i] == dlg){
34599                         accessList.splice(i, 1);
34600                         return;
34601                     }
34602                 }
34603             }else{
34604                  i = accessList.indexOf(dlg);
34605                 if(i != -1){
34606                     accessList.splice(i, 1);
34607                 }
34608             }
34609         },
34610
34611         /**
34612          * Gets a registered dialog by id
34613          * @param {String/Object} id The id of the dialog or a dialog
34614          * @return {Roo.BasicDialog} this
34615          */
34616         get : function(id){
34617             return typeof id == "object" ? id : list[id];
34618         },
34619
34620         /**
34621          * Brings the specified dialog to the front
34622          * @param {String/Object} dlg The id of the dialog or a dialog
34623          * @return {Roo.BasicDialog} this
34624          */
34625         bringToFront : function(dlg){
34626             dlg = this.get(dlg);
34627             if(dlg != front){
34628                 front = dlg;
34629                 dlg._lastAccess = new Date().getTime();
34630                 orderDialogs();
34631             }
34632             return dlg;
34633         },
34634
34635         /**
34636          * Sends the specified dialog to the back
34637          * @param {String/Object} dlg The id of the dialog or a dialog
34638          * @return {Roo.BasicDialog} this
34639          */
34640         sendToBack : function(dlg){
34641             dlg = this.get(dlg);
34642             dlg._lastAccess = -(new Date().getTime());
34643             orderDialogs();
34644             return dlg;
34645         },
34646
34647         /**
34648          * Hides all dialogs
34649          */
34650         hideAll : function(){
34651             for(var id in list){
34652                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
34653                     list[id].hide();
34654                 }
34655             }
34656         }
34657     };
34658 }();
34659
34660 /**
34661  * @class Roo.LayoutDialog
34662  * @extends Roo.BasicDialog
34663  * @children Roo.ContentPanel
34664  * @parent builder none
34665  * Dialog which provides adjustments for working with a layout in a Dialog.
34666  * Add your necessary layout config options to the dialog's config.<br>
34667  * Example usage (including a nested layout):
34668  * <pre><code>
34669 if(!dialog){
34670     dialog = new Roo.LayoutDialog("download-dlg", {
34671         modal: true,
34672         width:600,
34673         height:450,
34674         shadow:true,
34675         minWidth:500,
34676         minHeight:350,
34677         autoTabs:true,
34678         proxyDrag:true,
34679         // layout config merges with the dialog config
34680         center:{
34681             tabPosition: "top",
34682             alwaysShowTabs: true
34683         }
34684     });
34685     dialog.addKeyListener(27, dialog.hide, dialog);
34686     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
34687     dialog.addButton("Build It!", this.getDownload, this);
34688
34689     // we can even add nested layouts
34690     var innerLayout = new Roo.BorderLayout("dl-inner", {
34691         east: {
34692             initialSize: 200,
34693             autoScroll:true,
34694             split:true
34695         },
34696         center: {
34697             autoScroll:true
34698         }
34699     });
34700     innerLayout.beginUpdate();
34701     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
34702     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
34703     innerLayout.endUpdate(true);
34704
34705     var layout = dialog.getLayout();
34706     layout.beginUpdate();
34707     layout.add("center", new Roo.ContentPanel("standard-panel",
34708                         {title: "Download the Source", fitToFrame:true}));
34709     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
34710                {title: "Build your own roo.js"}));
34711     layout.getRegion("center").showPanel(sp);
34712     layout.endUpdate();
34713 }
34714 </code></pre>
34715     * @constructor
34716     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
34717     * @param {Object} config configuration options
34718   */
34719 Roo.LayoutDialog = function(el, cfg){
34720     
34721     var config=  cfg;
34722     if (typeof(cfg) == 'undefined') {
34723         config = Roo.apply({}, el);
34724         // not sure why we use documentElement here.. - it should always be body.
34725         // IE7 borks horribly if we use documentElement.
34726         // webkit also does not like documentElement - it creates a body element...
34727         el = Roo.get( document.body || document.documentElement ).createChild();
34728         //config.autoCreate = true;
34729     }
34730     
34731     
34732     config.autoTabs = false;
34733     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
34734     this.body.setStyle({overflow:"hidden", position:"relative"});
34735     this.layout = new Roo.BorderLayout(this.body.dom, config);
34736     this.layout.monitorWindowResize = false;
34737     this.el.addClass("x-dlg-auto-layout");
34738     // fix case when center region overwrites center function
34739     this.center = Roo.BasicDialog.prototype.center;
34740     this.on("show", this.layout.layout, this.layout, true);
34741     if (config.items) {
34742         var xitems = config.items;
34743         delete config.items;
34744         Roo.each(xitems, this.addxtype, this);
34745     }
34746     
34747     
34748 };
34749 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
34750     
34751     
34752     /**
34753      * @cfg {Roo.LayoutRegion} east  
34754      */
34755     /**
34756      * @cfg {Roo.LayoutRegion} west
34757      */
34758     /**
34759      * @cfg {Roo.LayoutRegion} south
34760      */
34761     /**
34762      * @cfg {Roo.LayoutRegion} north
34763      */
34764     /**
34765      * @cfg {Roo.LayoutRegion} center
34766      */
34767     /**
34768      * @cfg {Roo.Button} buttons[]  Bottom buttons..
34769      */
34770     
34771     
34772     /**
34773      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
34774      * @deprecated
34775      */
34776     endUpdate : function(){
34777         this.layout.endUpdate();
34778     },
34779
34780     /**
34781      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
34782      *  @deprecated
34783      */
34784     beginUpdate : function(){
34785         this.layout.beginUpdate();
34786     },
34787
34788     /**
34789      * Get the BorderLayout for this dialog
34790      * @return {Roo.BorderLayout}
34791      */
34792     getLayout : function(){
34793         return this.layout;
34794     },
34795
34796     showEl : function(){
34797         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
34798         if(Roo.isIE7){
34799             this.layout.layout();
34800         }
34801     },
34802
34803     // private
34804     // Use the syncHeightBeforeShow config option to control this automatically
34805     syncBodyHeight : function(){
34806         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
34807         if(this.layout){this.layout.layout();}
34808     },
34809     
34810       /**
34811      * Add an xtype element (actually adds to the layout.)
34812      * @return {Object} xdata xtype object data.
34813      */
34814     
34815     addxtype : function(c) {
34816         return this.layout.addxtype(c);
34817     }
34818 });/*
34819  * Based on:
34820  * Ext JS Library 1.1.1
34821  * Copyright(c) 2006-2007, Ext JS, LLC.
34822  *
34823  * Originally Released Under LGPL - original licence link has changed is not relivant.
34824  *
34825  * Fork - LGPL
34826  * <script type="text/javascript">
34827  */
34828  
34829 /**
34830  * @class Roo.MessageBox
34831  * @static
34832  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
34833  * Example usage:
34834  *<pre><code>
34835 // Basic alert:
34836 Roo.Msg.alert('Status', 'Changes saved successfully.');
34837
34838 // Prompt for user data:
34839 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
34840     if (btn == 'ok'){
34841         // process text value...
34842     }
34843 });
34844
34845 // Show a dialog using config options:
34846 Roo.Msg.show({
34847    title:'Save Changes?',
34848    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
34849    buttons: Roo.Msg.YESNOCANCEL,
34850    fn: processResult,
34851    animEl: 'elId'
34852 });
34853 </code></pre>
34854  * @static
34855  */
34856 Roo.MessageBox = function(){
34857     var dlg, opt, mask, waitTimer;
34858     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
34859     var buttons, activeTextEl, bwidth;
34860
34861     // private
34862     var handleButton = function(button){
34863         dlg.hide();
34864         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
34865     };
34866
34867     // private
34868     var handleHide = function(){
34869         if(opt && opt.cls){
34870             dlg.el.removeClass(opt.cls);
34871         }
34872         if(waitTimer){
34873             Roo.TaskMgr.stop(waitTimer);
34874             waitTimer = null;
34875         }
34876     };
34877
34878     // private
34879     var updateButtons = function(b){
34880         var width = 0;
34881         if(!b){
34882             buttons["ok"].hide();
34883             buttons["cancel"].hide();
34884             buttons["yes"].hide();
34885             buttons["no"].hide();
34886             dlg.footer.dom.style.display = 'none';
34887             return width;
34888         }
34889         dlg.footer.dom.style.display = '';
34890         for(var k in buttons){
34891             if(typeof buttons[k] != "function"){
34892                 if(b[k]){
34893                     buttons[k].show();
34894                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
34895                     width += buttons[k].el.getWidth()+15;
34896                 }else{
34897                     buttons[k].hide();
34898                 }
34899             }
34900         }
34901         return width;
34902     };
34903
34904     // private
34905     var handleEsc = function(d, k, e){
34906         if(opt && opt.closable !== false){
34907             dlg.hide();
34908         }
34909         if(e){
34910             e.stopEvent();
34911         }
34912     };
34913
34914     return {
34915         /**
34916          * Returns a reference to the underlying {@link Roo.BasicDialog} element
34917          * @return {Roo.BasicDialog} The BasicDialog element
34918          */
34919         getDialog : function(){
34920            if(!dlg){
34921                 dlg = new Roo.BasicDialog("x-msg-box", {
34922                     autoCreate : true,
34923                     shadow: true,
34924                     draggable: true,
34925                     resizable:false,
34926                     constraintoviewport:false,
34927                     fixedcenter:true,
34928                     collapsible : false,
34929                     shim:true,
34930                     modal: true,
34931                     width:400, height:100,
34932                     buttonAlign:"center",
34933                     closeClick : function(){
34934                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
34935                             handleButton("no");
34936                         }else{
34937                             handleButton("cancel");
34938                         }
34939                     }
34940                 });
34941               
34942                 dlg.on("hide", handleHide);
34943                 mask = dlg.mask;
34944                 dlg.addKeyListener(27, handleEsc);
34945                 buttons = {};
34946                 var bt = this.buttonText;
34947                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
34948                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
34949                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
34950                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
34951                 bodyEl = dlg.body.createChild({
34952
34953                     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>'
34954                 });
34955                 msgEl = bodyEl.dom.firstChild;
34956                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
34957                 textboxEl.enableDisplayMode();
34958                 textboxEl.addKeyListener([10,13], function(){
34959                     if(dlg.isVisible() && opt && opt.buttons){
34960                         if(opt.buttons.ok){
34961                             handleButton("ok");
34962                         }else if(opt.buttons.yes){
34963                             handleButton("yes");
34964                         }
34965                     }
34966                 });
34967                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
34968                 textareaEl.enableDisplayMode();
34969                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
34970                 progressEl.enableDisplayMode();
34971                 var pf = progressEl.dom.firstChild;
34972                 if (pf) {
34973                     pp = Roo.get(pf.firstChild);
34974                     pp.setHeight(pf.offsetHeight);
34975                 }
34976                 
34977             }
34978             return dlg;
34979         },
34980
34981         /**
34982          * Updates the message box body text
34983          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
34984          * the XHTML-compliant non-breaking space character '&amp;#160;')
34985          * @return {Roo.MessageBox} This message box
34986          */
34987         updateText : function(text){
34988             if(!dlg.isVisible() && !opt.width){
34989                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
34990             }
34991             msgEl.innerHTML = text || '&#160;';
34992       
34993             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
34994             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
34995             var w = Math.max(
34996                     Math.min(opt.width || cw , this.maxWidth), 
34997                     Math.max(opt.minWidth || this.minWidth, bwidth)
34998             );
34999             if(opt.prompt){
35000                 activeTextEl.setWidth(w);
35001             }
35002             if(dlg.isVisible()){
35003                 dlg.fixedcenter = false;
35004             }
35005             // to big, make it scroll. = But as usual stupid IE does not support
35006             // !important..
35007             
35008             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
35009                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
35010                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
35011             } else {
35012                 bodyEl.dom.style.height = '';
35013                 bodyEl.dom.style.overflowY = '';
35014             }
35015             if (cw > w) {
35016                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
35017             } else {
35018                 bodyEl.dom.style.overflowX = '';
35019             }
35020             
35021             dlg.setContentSize(w, bodyEl.getHeight());
35022             if(dlg.isVisible()){
35023                 dlg.fixedcenter = true;
35024             }
35025             return this;
35026         },
35027
35028         /**
35029          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
35030          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
35031          * @param {Number} value Any number between 0 and 1 (e.g., .5)
35032          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
35033          * @return {Roo.MessageBox} This message box
35034          */
35035         updateProgress : function(value, text){
35036             if(text){
35037                 this.updateText(text);
35038             }
35039             if (pp) { // weird bug on my firefox - for some reason this is not defined
35040                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
35041             }
35042             return this;
35043         },        
35044
35045         /**
35046          * Returns true if the message box is currently displayed
35047          * @return {Boolean} True if the message box is visible, else false
35048          */
35049         isVisible : function(){
35050             return dlg && dlg.isVisible();  
35051         },
35052
35053         /**
35054          * Hides the message box if it is displayed
35055          */
35056         hide : function(){
35057             if(this.isVisible()){
35058                 dlg.hide();
35059             }  
35060         },
35061
35062         /**
35063          * Displays a new message box, or reinitializes an existing message box, based on the config options
35064          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
35065          * The following config object properties are supported:
35066          * <pre>
35067 Property    Type             Description
35068 ----------  ---------------  ------------------------------------------------------------------------------------
35069 animEl            String/Element   An id or Element from which the message box should animate as it opens and
35070                                    closes (defaults to undefined)
35071 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
35072                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
35073 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
35074                                    progress and wait dialogs will ignore this property and always hide the
35075                                    close button as they can only be closed programmatically.
35076 cls               String           A custom CSS class to apply to the message box element
35077 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
35078                                    displayed (defaults to 75)
35079 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
35080                                    function will be btn (the name of the button that was clicked, if applicable,
35081                                    e.g. "ok"), and text (the value of the active text field, if applicable).
35082                                    Progress and wait dialogs will ignore this option since they do not respond to
35083                                    user actions and can only be closed programmatically, so any required function
35084                                    should be called by the same code after it closes the dialog.
35085 icon              String           A CSS class that provides a background image to be used as an icon for
35086                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
35087 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
35088 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
35089 modal             Boolean          False to allow user interaction with the page while the message box is
35090                                    displayed (defaults to true)
35091 msg               String           A string that will replace the existing message box body text (defaults
35092                                    to the XHTML-compliant non-breaking space character '&#160;')
35093 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
35094 progress          Boolean          True to display a progress bar (defaults to false)
35095 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
35096 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
35097 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
35098 title             String           The title text
35099 value             String           The string value to set into the active textbox element if displayed
35100 wait              Boolean          True to display a progress bar (defaults to false)
35101 width             Number           The width of the dialog in pixels
35102 </pre>
35103          *
35104          * Example usage:
35105          * <pre><code>
35106 Roo.Msg.show({
35107    title: 'Address',
35108    msg: 'Please enter your address:',
35109    width: 300,
35110    buttons: Roo.MessageBox.OKCANCEL,
35111    multiline: true,
35112    fn: saveAddress,
35113    animEl: 'addAddressBtn'
35114 });
35115 </code></pre>
35116          * @param {Object} config Configuration options
35117          * @return {Roo.MessageBox} This message box
35118          */
35119         show : function(options)
35120         {
35121             
35122             // this causes nightmares if you show one dialog after another
35123             // especially on callbacks..
35124              
35125             if(this.isVisible()){
35126                 
35127                 this.hide();
35128                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
35129                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
35130                 Roo.log("New Dialog Message:" +  options.msg )
35131                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
35132                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
35133                 
35134             }
35135             var d = this.getDialog();
35136             opt = options;
35137             d.setTitle(opt.title || "&#160;");
35138             d.close.setDisplayed(opt.closable !== false);
35139             activeTextEl = textboxEl;
35140             opt.prompt = opt.prompt || (opt.multiline ? true : false);
35141             if(opt.prompt){
35142                 if(opt.multiline){
35143                     textboxEl.hide();
35144                     textareaEl.show();
35145                     textareaEl.setHeight(typeof opt.multiline == "number" ?
35146                         opt.multiline : this.defaultTextHeight);
35147                     activeTextEl = textareaEl;
35148                 }else{
35149                     textboxEl.show();
35150                     textareaEl.hide();
35151                 }
35152             }else{
35153                 textboxEl.hide();
35154                 textareaEl.hide();
35155             }
35156             progressEl.setDisplayed(opt.progress === true);
35157             this.updateProgress(0);
35158             activeTextEl.dom.value = opt.value || "";
35159             if(opt.prompt){
35160                 dlg.setDefaultButton(activeTextEl);
35161             }else{
35162                 var bs = opt.buttons;
35163                 var db = null;
35164                 if(bs && bs.ok){
35165                     db = buttons["ok"];
35166                 }else if(bs && bs.yes){
35167                     db = buttons["yes"];
35168                 }
35169                 dlg.setDefaultButton(db);
35170             }
35171             bwidth = updateButtons(opt.buttons);
35172             this.updateText(opt.msg);
35173             if(opt.cls){
35174                 d.el.addClass(opt.cls);
35175             }
35176             d.proxyDrag = opt.proxyDrag === true;
35177             d.modal = opt.modal !== false;
35178             d.mask = opt.modal !== false ? mask : false;
35179             if(!d.isVisible()){
35180                 // force it to the end of the z-index stack so it gets a cursor in FF
35181                 document.body.appendChild(dlg.el.dom);
35182                 d.animateTarget = null;
35183                 d.show(options.animEl);
35184             }
35185             dlg.toFront();
35186             return this;
35187         },
35188
35189         /**
35190          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
35191          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
35192          * and closing the message box when the process is complete.
35193          * @param {String} title The title bar text
35194          * @param {String} msg The message box body text
35195          * @return {Roo.MessageBox} This message box
35196          */
35197         progress : function(title, msg){
35198             this.show({
35199                 title : title,
35200                 msg : msg,
35201                 buttons: false,
35202                 progress:true,
35203                 closable:false,
35204                 minWidth: this.minProgressWidth,
35205                 modal : true
35206             });
35207             return this;
35208         },
35209
35210         /**
35211          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
35212          * If a callback function is passed it will be called after the user clicks the button, and the
35213          * id of the button that was clicked will be passed as the only parameter to the callback
35214          * (could also be the top-right close button).
35215          * @param {String} title The title bar text
35216          * @param {String} msg The message box body text
35217          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35218          * @param {Object} scope (optional) The scope of the callback function
35219          * @return {Roo.MessageBox} This message box
35220          */
35221         alert : function(title, msg, fn, scope){
35222             this.show({
35223                 title : title,
35224                 msg : msg,
35225                 buttons: this.OK,
35226                 fn: fn,
35227                 scope : scope,
35228                 modal : true
35229             });
35230             return this;
35231         },
35232
35233         /**
35234          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
35235          * interaction while waiting for a long-running process to complete that does not have defined intervals.
35236          * You are responsible for closing the message box when the process is complete.
35237          * @param {String} msg The message box body text
35238          * @param {String} title (optional) The title bar text
35239          * @return {Roo.MessageBox} This message box
35240          */
35241         wait : function(msg, title){
35242             this.show({
35243                 title : title,
35244                 msg : msg,
35245                 buttons: false,
35246                 closable:false,
35247                 progress:true,
35248                 modal:true,
35249                 width:300,
35250                 wait:true
35251             });
35252             waitTimer = Roo.TaskMgr.start({
35253                 run: function(i){
35254                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
35255                 },
35256                 interval: 1000
35257             });
35258             return this;
35259         },
35260
35261         /**
35262          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
35263          * If a callback function is passed it will be called after the user clicks either button, and the id of the
35264          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
35265          * @param {String} title The title bar text
35266          * @param {String} msg The message box body text
35267          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35268          * @param {Object} scope (optional) The scope of the callback function
35269          * @return {Roo.MessageBox} This message box
35270          */
35271         confirm : function(title, msg, fn, scope){
35272             this.show({
35273                 title : title,
35274                 msg : msg,
35275                 buttons: this.YESNO,
35276                 fn: fn,
35277                 scope : scope,
35278                 modal : true
35279             });
35280             return this;
35281         },
35282
35283         /**
35284          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
35285          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
35286          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
35287          * (could also be the top-right close button) and the text that was entered will be passed as the two
35288          * parameters to the callback.
35289          * @param {String} title The title bar text
35290          * @param {String} msg The message box body text
35291          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35292          * @param {Object} scope (optional) The scope of the callback function
35293          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
35294          * property, or the height in pixels to create the textbox (defaults to false / single-line)
35295          * @return {Roo.MessageBox} This message box
35296          */
35297         prompt : function(title, msg, fn, scope, multiline){
35298             this.show({
35299                 title : title,
35300                 msg : msg,
35301                 buttons: this.OKCANCEL,
35302                 fn: fn,
35303                 minWidth:250,
35304                 scope : scope,
35305                 prompt:true,
35306                 multiline: multiline,
35307                 modal : true
35308             });
35309             return this;
35310         },
35311
35312         /**
35313          * Button config that displays a single OK button
35314          * @type Object
35315          */
35316         OK : {ok:true},
35317         /**
35318          * Button config that displays Yes and No buttons
35319          * @type Object
35320          */
35321         YESNO : {yes:true, no:true},
35322         /**
35323          * Button config that displays OK and Cancel buttons
35324          * @type Object
35325          */
35326         OKCANCEL : {ok:true, cancel:true},
35327         /**
35328          * Button config that displays Yes, No and Cancel buttons
35329          * @type Object
35330          */
35331         YESNOCANCEL : {yes:true, no:true, cancel:true},
35332
35333         /**
35334          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
35335          * @type Number
35336          */
35337         defaultTextHeight : 75,
35338         /**
35339          * The maximum width in pixels of the message box (defaults to 600)
35340          * @type Number
35341          */
35342         maxWidth : 600,
35343         /**
35344          * The minimum width in pixels of the message box (defaults to 100)
35345          * @type Number
35346          */
35347         minWidth : 100,
35348         /**
35349          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
35350          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
35351          * @type Number
35352          */
35353         minProgressWidth : 250,
35354         /**
35355          * An object containing the default button text strings that can be overriden for localized language support.
35356          * Supported properties are: ok, cancel, yes and no.
35357          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
35358          * @type Object
35359          */
35360         buttonText : {
35361             ok : "OK",
35362             cancel : "Cancel",
35363             yes : "Yes",
35364             no : "No"
35365         }
35366     };
35367 }();
35368
35369 /**
35370  * Shorthand for {@link Roo.MessageBox}
35371  */
35372 Roo.Msg = Roo.MessageBox;/*
35373  * Based on:
35374  * Ext JS Library 1.1.1
35375  * Copyright(c) 2006-2007, Ext JS, LLC.
35376  *
35377  * Originally Released Under LGPL - original licence link has changed is not relivant.
35378  *
35379  * Fork - LGPL
35380  * <script type="text/javascript">
35381  */
35382 /**
35383  * @class Roo.QuickTips
35384  * Provides attractive and customizable tooltips for any element.
35385  * @static
35386  */
35387 Roo.QuickTips = function(){
35388     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
35389     var ce, bd, xy, dd;
35390     var visible = false, disabled = true, inited = false;
35391     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
35392     
35393     var onOver = function(e){
35394         if(disabled){
35395             return;
35396         }
35397         var t = e.getTarget();
35398         if(!t || t.nodeType !== 1 || t == document || t == document.body){
35399             return;
35400         }
35401         if(ce && t == ce.el){
35402             clearTimeout(hideProc);
35403             return;
35404         }
35405         if(t && tagEls[t.id]){
35406             tagEls[t.id].el = t;
35407             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
35408             return;
35409         }
35410         var ttp, et = Roo.fly(t);
35411         var ns = cfg.namespace;
35412         if(tm.interceptTitles && t.title){
35413             ttp = t.title;
35414             t.qtip = ttp;
35415             t.removeAttribute("title");
35416             e.preventDefault();
35417         }else{
35418             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
35419         }
35420         if(ttp){
35421             showProc = show.defer(tm.showDelay, tm, [{
35422                 el: t, 
35423                 text: ttp.replace(/\\n/g,'<br/>'),
35424                 width: et.getAttributeNS(ns, cfg.width),
35425                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
35426                 title: et.getAttributeNS(ns, cfg.title),
35427                     cls: et.getAttributeNS(ns, cfg.cls)
35428             }]);
35429         }
35430     };
35431     
35432     var onOut = function(e){
35433         clearTimeout(showProc);
35434         var t = e.getTarget();
35435         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
35436             hideProc = setTimeout(hide, tm.hideDelay);
35437         }
35438     };
35439     
35440     var onMove = function(e){
35441         if(disabled){
35442             return;
35443         }
35444         xy = e.getXY();
35445         xy[1] += 18;
35446         if(tm.trackMouse && ce){
35447             el.setXY(xy);
35448         }
35449     };
35450     
35451     var onDown = function(e){
35452         clearTimeout(showProc);
35453         clearTimeout(hideProc);
35454         if(!e.within(el)){
35455             if(tm.hideOnClick){
35456                 hide();
35457                 tm.disable();
35458                 tm.enable.defer(100, tm);
35459             }
35460         }
35461     };
35462     
35463     var getPad = function(){
35464         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
35465     };
35466
35467     var show = function(o){
35468         if(disabled){
35469             return;
35470         }
35471         clearTimeout(dismissProc);
35472         ce = o;
35473         if(removeCls){ // in case manually hidden
35474             el.removeClass(removeCls);
35475             removeCls = null;
35476         }
35477         if(ce.cls){
35478             el.addClass(ce.cls);
35479             removeCls = ce.cls;
35480         }
35481         if(ce.title){
35482             tipTitle.update(ce.title);
35483             tipTitle.show();
35484         }else{
35485             tipTitle.update('');
35486             tipTitle.hide();
35487         }
35488         el.dom.style.width  = tm.maxWidth+'px';
35489         //tipBody.dom.style.width = '';
35490         tipBodyText.update(o.text);
35491         var p = getPad(), w = ce.width;
35492         if(!w){
35493             var td = tipBodyText.dom;
35494             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
35495             if(aw > tm.maxWidth){
35496                 w = tm.maxWidth;
35497             }else if(aw < tm.minWidth){
35498                 w = tm.minWidth;
35499             }else{
35500                 w = aw;
35501             }
35502         }
35503         //tipBody.setWidth(w);
35504         el.setWidth(parseInt(w, 10) + p);
35505         if(ce.autoHide === false){
35506             close.setDisplayed(true);
35507             if(dd){
35508                 dd.unlock();
35509             }
35510         }else{
35511             close.setDisplayed(false);
35512             if(dd){
35513                 dd.lock();
35514             }
35515         }
35516         if(xy){
35517             el.avoidY = xy[1]-18;
35518             el.setXY(xy);
35519         }
35520         if(tm.animate){
35521             el.setOpacity(.1);
35522             el.setStyle("visibility", "visible");
35523             el.fadeIn({callback: afterShow});
35524         }else{
35525             afterShow();
35526         }
35527     };
35528     
35529     var afterShow = function(){
35530         if(ce){
35531             el.show();
35532             esc.enable();
35533             if(tm.autoDismiss && ce.autoHide !== false){
35534                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
35535             }
35536         }
35537     };
35538     
35539     var hide = function(noanim){
35540         clearTimeout(dismissProc);
35541         clearTimeout(hideProc);
35542         ce = null;
35543         if(el.isVisible()){
35544             esc.disable();
35545             if(noanim !== true && tm.animate){
35546                 el.fadeOut({callback: afterHide});
35547             }else{
35548                 afterHide();
35549             } 
35550         }
35551     };
35552     
35553     var afterHide = function(){
35554         el.hide();
35555         if(removeCls){
35556             el.removeClass(removeCls);
35557             removeCls = null;
35558         }
35559     };
35560     
35561     return {
35562         /**
35563         * @cfg {Number} minWidth
35564         * The minimum width of the quick tip (defaults to 40)
35565         */
35566        minWidth : 40,
35567         /**
35568         * @cfg {Number} maxWidth
35569         * The maximum width of the quick tip (defaults to 300)
35570         */
35571        maxWidth : 300,
35572         /**
35573         * @cfg {Boolean} interceptTitles
35574         * True to automatically use the element's DOM title value if available (defaults to false)
35575         */
35576        interceptTitles : false,
35577         /**
35578         * @cfg {Boolean} trackMouse
35579         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
35580         */
35581        trackMouse : false,
35582         /**
35583         * @cfg {Boolean} hideOnClick
35584         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
35585         */
35586        hideOnClick : true,
35587         /**
35588         * @cfg {Number} showDelay
35589         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
35590         */
35591        showDelay : 500,
35592         /**
35593         * @cfg {Number} hideDelay
35594         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
35595         */
35596        hideDelay : 200,
35597         /**
35598         * @cfg {Boolean} autoHide
35599         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
35600         * Used in conjunction with hideDelay.
35601         */
35602        autoHide : true,
35603         /**
35604         * @cfg {Boolean}
35605         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
35606         * (defaults to true).  Used in conjunction with autoDismissDelay.
35607         */
35608        autoDismiss : true,
35609         /**
35610         * @cfg {Number}
35611         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
35612         */
35613        autoDismissDelay : 5000,
35614        /**
35615         * @cfg {Boolean} animate
35616         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
35617         */
35618        animate : false,
35619
35620        /**
35621         * @cfg {String} title
35622         * Title text to display (defaults to '').  This can be any valid HTML markup.
35623         */
35624         title: '',
35625        /**
35626         * @cfg {String} text
35627         * Body text to display (defaults to '').  This can be any valid HTML markup.
35628         */
35629         text : '',
35630        /**
35631         * @cfg {String} cls
35632         * A CSS class to apply to the base quick tip element (defaults to '').
35633         */
35634         cls : '',
35635        /**
35636         * @cfg {Number} width
35637         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
35638         * minWidth or maxWidth.
35639         */
35640         width : null,
35641
35642     /**
35643      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
35644      * or display QuickTips in a page.
35645      */
35646        init : function(){
35647           tm = Roo.QuickTips;
35648           cfg = tm.tagConfig;
35649           if(!inited){
35650               if(!Roo.isReady){ // allow calling of init() before onReady
35651                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
35652                   return;
35653               }
35654               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
35655               el.fxDefaults = {stopFx: true};
35656               // maximum custom styling
35657               //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>');
35658               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>');              
35659               tipTitle = el.child('h3');
35660               tipTitle.enableDisplayMode("block");
35661               tipBody = el.child('div.x-tip-bd');
35662               tipBodyText = el.child('div.x-tip-bd-inner');
35663               //bdLeft = el.child('div.x-tip-bd-left');
35664               //bdRight = el.child('div.x-tip-bd-right');
35665               close = el.child('div.x-tip-close');
35666               close.enableDisplayMode("block");
35667               close.on("click", hide);
35668               var d = Roo.get(document);
35669               d.on("mousedown", onDown);
35670               d.on("mouseover", onOver);
35671               d.on("mouseout", onOut);
35672               d.on("mousemove", onMove);
35673               esc = d.addKeyListener(27, hide);
35674               esc.disable();
35675               if(Roo.dd.DD){
35676                   dd = el.initDD("default", null, {
35677                       onDrag : function(){
35678                           el.sync();  
35679                       }
35680                   });
35681                   dd.setHandleElId(tipTitle.id);
35682                   dd.lock();
35683               }
35684               inited = true;
35685           }
35686           this.enable(); 
35687        },
35688
35689     /**
35690      * Configures a new quick tip instance and assigns it to a target element.  The following config options
35691      * are supported:
35692      * <pre>
35693 Property    Type                   Description
35694 ----------  ---------------------  ------------------------------------------------------------------------
35695 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
35696      * </ul>
35697      * @param {Object} config The config object
35698      */
35699        register : function(config){
35700            var cs = config instanceof Array ? config : arguments;
35701            for(var i = 0, len = cs.length; i < len; i++) {
35702                var c = cs[i];
35703                var target = c.target;
35704                if(target){
35705                    if(target instanceof Array){
35706                        for(var j = 0, jlen = target.length; j < jlen; j++){
35707                            tagEls[target[j]] = c;
35708                        }
35709                    }else{
35710                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
35711                    }
35712                }
35713            }
35714        },
35715
35716     /**
35717      * Removes this quick tip from its element and destroys it.
35718      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
35719      */
35720        unregister : function(el){
35721            delete tagEls[Roo.id(el)];
35722        },
35723
35724     /**
35725      * Enable this quick tip.
35726      */
35727        enable : function(){
35728            if(inited && disabled){
35729                locks.pop();
35730                if(locks.length < 1){
35731                    disabled = false;
35732                }
35733            }
35734        },
35735
35736     /**
35737      * Disable this quick tip.
35738      */
35739        disable : function(){
35740           disabled = true;
35741           clearTimeout(showProc);
35742           clearTimeout(hideProc);
35743           clearTimeout(dismissProc);
35744           if(ce){
35745               hide(true);
35746           }
35747           locks.push(1);
35748        },
35749
35750     /**
35751      * Returns true if the quick tip is enabled, else false.
35752      */
35753        isEnabled : function(){
35754             return !disabled;
35755        },
35756
35757         // private
35758        tagConfig : {
35759            namespace : "roo", // was ext?? this may break..
35760            alt_namespace : "ext",
35761            attribute : "qtip",
35762            width : "width",
35763            target : "target",
35764            title : "qtitle",
35765            hide : "hide",
35766            cls : "qclass"
35767        }
35768    };
35769 }();
35770
35771 // backwards compat
35772 Roo.QuickTips.tips = Roo.QuickTips.register;/*
35773  * Based on:
35774  * Ext JS Library 1.1.1
35775  * Copyright(c) 2006-2007, Ext JS, LLC.
35776  *
35777  * Originally Released Under LGPL - original licence link has changed is not relivant.
35778  *
35779  * Fork - LGPL
35780  * <script type="text/javascript">
35781  */
35782  
35783
35784 /**
35785  * @class Roo.tree.TreePanel
35786  * @extends Roo.data.Tree
35787  * @cfg {Roo.tree.TreeNode} root The root node
35788  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
35789  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
35790  * @cfg {Boolean} enableDD true to enable drag and drop
35791  * @cfg {Boolean} enableDrag true to enable just drag
35792  * @cfg {Boolean} enableDrop true to enable just drop
35793  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
35794  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
35795  * @cfg {String} ddGroup The DD group this TreePanel belongs to
35796  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
35797  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
35798  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
35799  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
35800  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
35801  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
35802  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
35803  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
35804  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
35805  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
35806  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
35807  * @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>
35808  * @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>
35809  * 
35810  * @constructor
35811  * @param {String/HTMLElement/Element} el The container element
35812  * @param {Object} config
35813  */
35814 Roo.tree.TreePanel = function(el, config){
35815     var root = false;
35816     var loader = false;
35817     if (config.root) {
35818         root = config.root;
35819         delete config.root;
35820     }
35821     if (config.loader) {
35822         loader = config.loader;
35823         delete config.loader;
35824     }
35825     
35826     Roo.apply(this, config);
35827     Roo.tree.TreePanel.superclass.constructor.call(this);
35828     this.el = Roo.get(el);
35829     this.el.addClass('x-tree');
35830     //console.log(root);
35831     if (root) {
35832         this.setRootNode( Roo.factory(root, Roo.tree));
35833     }
35834     if (loader) {
35835         this.loader = Roo.factory(loader, Roo.tree);
35836     }
35837    /**
35838     * Read-only. The id of the container element becomes this TreePanel's id.
35839     */
35840     this.id = this.el.id;
35841     this.addEvents({
35842         /**
35843         * @event beforeload
35844         * Fires before a node is loaded, return false to cancel
35845         * @param {Node} node The node being loaded
35846         */
35847         "beforeload" : true,
35848         /**
35849         * @event load
35850         * Fires when a node is loaded
35851         * @param {Node} node The node that was loaded
35852         */
35853         "load" : true,
35854         /**
35855         * @event textchange
35856         * Fires when the text for a node is changed
35857         * @param {Node} node The node
35858         * @param {String} text The new text
35859         * @param {String} oldText The old text
35860         */
35861         "textchange" : true,
35862         /**
35863         * @event beforeexpand
35864         * Fires before a node is expanded, return false to cancel.
35865         * @param {Node} node The node
35866         * @param {Boolean} deep
35867         * @param {Boolean} anim
35868         */
35869         "beforeexpand" : true,
35870         /**
35871         * @event beforecollapse
35872         * Fires before a node is collapsed, return false to cancel.
35873         * @param {Node} node The node
35874         * @param {Boolean} deep
35875         * @param {Boolean} anim
35876         */
35877         "beforecollapse" : true,
35878         /**
35879         * @event expand
35880         * Fires when a node is expanded
35881         * @param {Node} node The node
35882         */
35883         "expand" : true,
35884         /**
35885         * @event disabledchange
35886         * Fires when the disabled status of a node changes
35887         * @param {Node} node The node
35888         * @param {Boolean} disabled
35889         */
35890         "disabledchange" : true,
35891         /**
35892         * @event collapse
35893         * Fires when a node is collapsed
35894         * @param {Node} node The node
35895         */
35896         "collapse" : true,
35897         /**
35898         * @event beforeclick
35899         * Fires before click processing on a node. Return false to cancel the default action.
35900         * @param {Node} node The node
35901         * @param {Roo.EventObject} e The event object
35902         */
35903         "beforeclick":true,
35904         /**
35905         * @event checkchange
35906         * Fires when a node with a checkbox's checked property changes
35907         * @param {Node} this This node
35908         * @param {Boolean} checked
35909         */
35910         "checkchange":true,
35911         /**
35912         * @event click
35913         * Fires when a node is clicked
35914         * @param {Node} node The node
35915         * @param {Roo.EventObject} e The event object
35916         */
35917         "click":true,
35918         /**
35919         * @event dblclick
35920         * Fires when a node is double clicked
35921         * @param {Node} node The node
35922         * @param {Roo.EventObject} e The event object
35923         */
35924         "dblclick":true,
35925         /**
35926         * @event contextmenu
35927         * Fires when a node is right clicked
35928         * @param {Node} node The node
35929         * @param {Roo.EventObject} e The event object
35930         */
35931         "contextmenu":true,
35932         /**
35933         * @event beforechildrenrendered
35934         * Fires right before the child nodes for a node are rendered
35935         * @param {Node} node The node
35936         */
35937         "beforechildrenrendered":true,
35938         /**
35939         * @event startdrag
35940         * Fires when a node starts being dragged
35941         * @param {Roo.tree.TreePanel} this
35942         * @param {Roo.tree.TreeNode} node
35943         * @param {event} e The raw browser event
35944         */ 
35945        "startdrag" : true,
35946        /**
35947         * @event enddrag
35948         * Fires when a drag operation is complete
35949         * @param {Roo.tree.TreePanel} this
35950         * @param {Roo.tree.TreeNode} node
35951         * @param {event} e The raw browser event
35952         */
35953        "enddrag" : true,
35954        /**
35955         * @event dragdrop
35956         * Fires when a dragged node is dropped on a valid DD target
35957         * @param {Roo.tree.TreePanel} this
35958         * @param {Roo.tree.TreeNode} node
35959         * @param {DD} dd The dd it was dropped on
35960         * @param {event} e The raw browser event
35961         */
35962        "dragdrop" : true,
35963        /**
35964         * @event beforenodedrop
35965         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
35966         * passed to handlers has the following properties:<br />
35967         * <ul style="padding:5px;padding-left:16px;">
35968         * <li>tree - The TreePanel</li>
35969         * <li>target - The node being targeted for the drop</li>
35970         * <li>data - The drag data from the drag source</li>
35971         * <li>point - The point of the drop - append, above or below</li>
35972         * <li>source - The drag source</li>
35973         * <li>rawEvent - Raw mouse event</li>
35974         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
35975         * to be inserted by setting them on this object.</li>
35976         * <li>cancel - Set this to true to cancel the drop.</li>
35977         * </ul>
35978         * @param {Object} dropEvent
35979         */
35980        "beforenodedrop" : true,
35981        /**
35982         * @event nodedrop
35983         * Fires after a DD object is dropped on a node in this tree. The dropEvent
35984         * passed to handlers has the following properties:<br />
35985         * <ul style="padding:5px;padding-left:16px;">
35986         * <li>tree - The TreePanel</li>
35987         * <li>target - The node being targeted for the drop</li>
35988         * <li>data - The drag data from the drag source</li>
35989         * <li>point - The point of the drop - append, above or below</li>
35990         * <li>source - The drag source</li>
35991         * <li>rawEvent - Raw mouse event</li>
35992         * <li>dropNode - Dropped node(s).</li>
35993         * </ul>
35994         * @param {Object} dropEvent
35995         */
35996        "nodedrop" : true,
35997         /**
35998         * @event nodedragover
35999         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
36000         * passed to handlers has the following properties:<br />
36001         * <ul style="padding:5px;padding-left:16px;">
36002         * <li>tree - The TreePanel</li>
36003         * <li>target - The node being targeted for the drop</li>
36004         * <li>data - The drag data from the drag source</li>
36005         * <li>point - The point of the drop - append, above or below</li>
36006         * <li>source - The drag source</li>
36007         * <li>rawEvent - Raw mouse event</li>
36008         * <li>dropNode - Drop node(s) provided by the source.</li>
36009         * <li>cancel - Set this to true to signal drop not allowed.</li>
36010         * </ul>
36011         * @param {Object} dragOverEvent
36012         */
36013        "nodedragover" : true,
36014        /**
36015         * @event appendnode
36016         * Fires when append node to the tree
36017         * @param {Roo.tree.TreePanel} this
36018         * @param {Roo.tree.TreeNode} node
36019         * @param {Number} index The index of the newly appended node
36020         */
36021        "appendnode" : true
36022         
36023     });
36024     if(this.singleExpand){
36025        this.on("beforeexpand", this.restrictExpand, this);
36026     }
36027     if (this.editor) {
36028         this.editor.tree = this;
36029         this.editor = Roo.factory(this.editor, Roo.tree);
36030     }
36031     
36032     if (this.selModel) {
36033         this.selModel = Roo.factory(this.selModel, Roo.tree);
36034     }
36035    
36036 };
36037 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
36038     rootVisible : true,
36039     animate: Roo.enableFx,
36040     lines : true,
36041     enableDD : false,
36042     hlDrop : Roo.enableFx,
36043   
36044     renderer: false,
36045     
36046     rendererTip: false,
36047     // private
36048     restrictExpand : function(node){
36049         var p = node.parentNode;
36050         if(p){
36051             if(p.expandedChild && p.expandedChild.parentNode == p){
36052                 p.expandedChild.collapse();
36053             }
36054             p.expandedChild = node;
36055         }
36056     },
36057
36058     // private override
36059     setRootNode : function(node){
36060         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
36061         if(!this.rootVisible){
36062             node.ui = new Roo.tree.RootTreeNodeUI(node);
36063         }
36064         return node;
36065     },
36066
36067     /**
36068      * Returns the container element for this TreePanel
36069      */
36070     getEl : function(){
36071         return this.el;
36072     },
36073
36074     /**
36075      * Returns the default TreeLoader for this TreePanel
36076      */
36077     getLoader : function(){
36078         return this.loader;
36079     },
36080
36081     /**
36082      * Expand all nodes
36083      */
36084     expandAll : function(){
36085         this.root.expand(true);
36086     },
36087
36088     /**
36089      * Collapse all nodes
36090      */
36091     collapseAll : function(){
36092         this.root.collapse(true);
36093     },
36094
36095     /**
36096      * Returns the selection model used by this TreePanel
36097      */
36098     getSelectionModel : function(){
36099         if(!this.selModel){
36100             this.selModel = new Roo.tree.DefaultSelectionModel();
36101         }
36102         return this.selModel;
36103     },
36104
36105     /**
36106      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
36107      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
36108      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
36109      * @return {Array}
36110      */
36111     getChecked : function(a, startNode){
36112         startNode = startNode || this.root;
36113         var r = [];
36114         var f = function(){
36115             if(this.attributes.checked){
36116                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
36117             }
36118         }
36119         startNode.cascade(f);
36120         return r;
36121     },
36122
36123     /**
36124      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36125      * @param {String} path
36126      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36127      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
36128      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
36129      */
36130     expandPath : function(path, attr, callback){
36131         attr = attr || "id";
36132         var keys = path.split(this.pathSeparator);
36133         var curNode = this.root;
36134         if(curNode.attributes[attr] != keys[1]){ // invalid root
36135             if(callback){
36136                 callback(false, null);
36137             }
36138             return;
36139         }
36140         var index = 1;
36141         var f = function(){
36142             if(++index == keys.length){
36143                 if(callback){
36144                     callback(true, curNode);
36145                 }
36146                 return;
36147             }
36148             var c = curNode.findChild(attr, keys[index]);
36149             if(!c){
36150                 if(callback){
36151                     callback(false, curNode);
36152                 }
36153                 return;
36154             }
36155             curNode = c;
36156             c.expand(false, false, f);
36157         };
36158         curNode.expand(false, false, f);
36159     },
36160
36161     /**
36162      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36163      * @param {String} path
36164      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36165      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
36166      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
36167      */
36168     selectPath : function(path, attr, callback){
36169         attr = attr || "id";
36170         var keys = path.split(this.pathSeparator);
36171         var v = keys.pop();
36172         if(keys.length > 0){
36173             var f = function(success, node){
36174                 if(success && node){
36175                     var n = node.findChild(attr, v);
36176                     if(n){
36177                         n.select();
36178                         if(callback){
36179                             callback(true, n);
36180                         }
36181                     }else if(callback){
36182                         callback(false, n);
36183                     }
36184                 }else{
36185                     if(callback){
36186                         callback(false, n);
36187                     }
36188                 }
36189             };
36190             this.expandPath(keys.join(this.pathSeparator), attr, f);
36191         }else{
36192             this.root.select();
36193             if(callback){
36194                 callback(true, this.root);
36195             }
36196         }
36197     },
36198
36199     getTreeEl : function(){
36200         return this.el;
36201     },
36202
36203     /**
36204      * Trigger rendering of this TreePanel
36205      */
36206     render : function(){
36207         if (this.innerCt) {
36208             return this; // stop it rendering more than once!!
36209         }
36210         
36211         this.innerCt = this.el.createChild({tag:"ul",
36212                cls:"x-tree-root-ct " +
36213                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
36214
36215         if(this.containerScroll){
36216             Roo.dd.ScrollManager.register(this.el);
36217         }
36218         if((this.enableDD || this.enableDrop) && !this.dropZone){
36219            /**
36220             * The dropZone used by this tree if drop is enabled
36221             * @type Roo.tree.TreeDropZone
36222             */
36223              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
36224                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
36225            });
36226         }
36227         if((this.enableDD || this.enableDrag) && !this.dragZone){
36228            /**
36229             * The dragZone used by this tree if drag is enabled
36230             * @type Roo.tree.TreeDragZone
36231             */
36232             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
36233                ddGroup: this.ddGroup || "TreeDD",
36234                scroll: this.ddScroll
36235            });
36236         }
36237         this.getSelectionModel().init(this);
36238         if (!this.root) {
36239             Roo.log("ROOT not set in tree");
36240             return this;
36241         }
36242         this.root.render();
36243         if(!this.rootVisible){
36244             this.root.renderChildren();
36245         }
36246         return this;
36247     }
36248 });/*
36249  * Based on:
36250  * Ext JS Library 1.1.1
36251  * Copyright(c) 2006-2007, Ext JS, LLC.
36252  *
36253  * Originally Released Under LGPL - original licence link has changed is not relivant.
36254  *
36255  * Fork - LGPL
36256  * <script type="text/javascript">
36257  */
36258  
36259
36260 /**
36261  * @class Roo.tree.DefaultSelectionModel
36262  * @extends Roo.util.Observable
36263  * The default single selection for a TreePanel.
36264  * @param {Object} cfg Configuration
36265  */
36266 Roo.tree.DefaultSelectionModel = function(cfg){
36267    this.selNode = null;
36268    
36269    
36270    
36271    this.addEvents({
36272        /**
36273         * @event selectionchange
36274         * Fires when the selected node changes
36275         * @param {DefaultSelectionModel} this
36276         * @param {TreeNode} node the new selection
36277         */
36278        "selectionchange" : true,
36279
36280        /**
36281         * @event beforeselect
36282         * Fires before the selected node changes, return false to cancel the change
36283         * @param {DefaultSelectionModel} this
36284         * @param {TreeNode} node the new selection
36285         * @param {TreeNode} node the old selection
36286         */
36287        "beforeselect" : true
36288    });
36289    
36290     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
36291 };
36292
36293 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
36294     init : function(tree){
36295         this.tree = tree;
36296         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36297         tree.on("click", this.onNodeClick, this);
36298     },
36299     
36300     onNodeClick : function(node, e){
36301         if (e.ctrlKey && this.selNode == node)  {
36302             this.unselect(node);
36303             return;
36304         }
36305         this.select(node);
36306     },
36307     
36308     /**
36309      * Select a node.
36310      * @param {TreeNode} node The node to select
36311      * @return {TreeNode} The selected node
36312      */
36313     select : function(node){
36314         var last = this.selNode;
36315         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
36316             if(last){
36317                 last.ui.onSelectedChange(false);
36318             }
36319             this.selNode = node;
36320             node.ui.onSelectedChange(true);
36321             this.fireEvent("selectionchange", this, node, last);
36322         }
36323         return node;
36324     },
36325     
36326     /**
36327      * Deselect a node.
36328      * @param {TreeNode} node The node to unselect
36329      */
36330     unselect : function(node){
36331         if(this.selNode == node){
36332             this.clearSelections();
36333         }    
36334     },
36335     
36336     /**
36337      * Clear all selections
36338      */
36339     clearSelections : function(){
36340         var n = this.selNode;
36341         if(n){
36342             n.ui.onSelectedChange(false);
36343             this.selNode = null;
36344             this.fireEvent("selectionchange", this, null);
36345         }
36346         return n;
36347     },
36348     
36349     /**
36350      * Get the selected node
36351      * @return {TreeNode} The selected node
36352      */
36353     getSelectedNode : function(){
36354         return this.selNode;    
36355     },
36356     
36357     /**
36358      * Returns true if the node is selected
36359      * @param {TreeNode} node The node to check
36360      * @return {Boolean}
36361      */
36362     isSelected : function(node){
36363         return this.selNode == node;  
36364     },
36365
36366     /**
36367      * Selects the node above the selected node in the tree, intelligently walking the nodes
36368      * @return TreeNode The new selection
36369      */
36370     selectPrevious : function(){
36371         var s = this.selNode || this.lastSelNode;
36372         if(!s){
36373             return null;
36374         }
36375         var ps = s.previousSibling;
36376         if(ps){
36377             if(!ps.isExpanded() || ps.childNodes.length < 1){
36378                 return this.select(ps);
36379             } else{
36380                 var lc = ps.lastChild;
36381                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
36382                     lc = lc.lastChild;
36383                 }
36384                 return this.select(lc);
36385             }
36386         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
36387             return this.select(s.parentNode);
36388         }
36389         return null;
36390     },
36391
36392     /**
36393      * Selects the node above the selected node in the tree, intelligently walking the nodes
36394      * @return TreeNode The new selection
36395      */
36396     selectNext : function(){
36397         var s = this.selNode || this.lastSelNode;
36398         if(!s){
36399             return null;
36400         }
36401         if(s.firstChild && s.isExpanded()){
36402              return this.select(s.firstChild);
36403          }else if(s.nextSibling){
36404              return this.select(s.nextSibling);
36405          }else if(s.parentNode){
36406             var newS = null;
36407             s.parentNode.bubble(function(){
36408                 if(this.nextSibling){
36409                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
36410                     return false;
36411                 }
36412             });
36413             return newS;
36414          }
36415         return null;
36416     },
36417
36418     onKeyDown : function(e){
36419         var s = this.selNode || this.lastSelNode;
36420         // undesirable, but required
36421         var sm = this;
36422         if(!s){
36423             return;
36424         }
36425         var k = e.getKey();
36426         switch(k){
36427              case e.DOWN:
36428                  e.stopEvent();
36429                  this.selectNext();
36430              break;
36431              case e.UP:
36432                  e.stopEvent();
36433                  this.selectPrevious();
36434              break;
36435              case e.RIGHT:
36436                  e.preventDefault();
36437                  if(s.hasChildNodes()){
36438                      if(!s.isExpanded()){
36439                          s.expand();
36440                      }else if(s.firstChild){
36441                          this.select(s.firstChild, e);
36442                      }
36443                  }
36444              break;
36445              case e.LEFT:
36446                  e.preventDefault();
36447                  if(s.hasChildNodes() && s.isExpanded()){
36448                      s.collapse();
36449                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
36450                      this.select(s.parentNode, e);
36451                  }
36452              break;
36453         };
36454     }
36455 });
36456
36457 /**
36458  * @class Roo.tree.MultiSelectionModel
36459  * @extends Roo.util.Observable
36460  * Multi selection for a TreePanel.
36461  * @param {Object} cfg Configuration
36462  */
36463 Roo.tree.MultiSelectionModel = function(){
36464    this.selNodes = [];
36465    this.selMap = {};
36466    this.addEvents({
36467        /**
36468         * @event selectionchange
36469         * Fires when the selected nodes change
36470         * @param {MultiSelectionModel} this
36471         * @param {Array} nodes Array of the selected nodes
36472         */
36473        "selectionchange" : true
36474    });
36475    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
36476    
36477 };
36478
36479 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
36480     init : function(tree){
36481         this.tree = tree;
36482         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36483         tree.on("click", this.onNodeClick, this);
36484     },
36485     
36486     onNodeClick : function(node, e){
36487         this.select(node, e, e.ctrlKey);
36488     },
36489     
36490     /**
36491      * Select a node.
36492      * @param {TreeNode} node The node to select
36493      * @param {EventObject} e (optional) An event associated with the selection
36494      * @param {Boolean} keepExisting True to retain existing selections
36495      * @return {TreeNode} The selected node
36496      */
36497     select : function(node, e, keepExisting){
36498         if(keepExisting !== true){
36499             this.clearSelections(true);
36500         }
36501         if(this.isSelected(node)){
36502             this.lastSelNode = node;
36503             return node;
36504         }
36505         this.selNodes.push(node);
36506         this.selMap[node.id] = node;
36507         this.lastSelNode = node;
36508         node.ui.onSelectedChange(true);
36509         this.fireEvent("selectionchange", this, this.selNodes);
36510         return node;
36511     },
36512     
36513     /**
36514      * Deselect a node.
36515      * @param {TreeNode} node The node to unselect
36516      */
36517     unselect : function(node){
36518         if(this.selMap[node.id]){
36519             node.ui.onSelectedChange(false);
36520             var sn = this.selNodes;
36521             var index = -1;
36522             if(sn.indexOf){
36523                 index = sn.indexOf(node);
36524             }else{
36525                 for(var i = 0, len = sn.length; i < len; i++){
36526                     if(sn[i] == node){
36527                         index = i;
36528                         break;
36529                     }
36530                 }
36531             }
36532             if(index != -1){
36533                 this.selNodes.splice(index, 1);
36534             }
36535             delete this.selMap[node.id];
36536             this.fireEvent("selectionchange", this, this.selNodes);
36537         }
36538     },
36539     
36540     /**
36541      * Clear all selections
36542      */
36543     clearSelections : function(suppressEvent){
36544         var sn = this.selNodes;
36545         if(sn.length > 0){
36546             for(var i = 0, len = sn.length; i < len; i++){
36547                 sn[i].ui.onSelectedChange(false);
36548             }
36549             this.selNodes = [];
36550             this.selMap = {};
36551             if(suppressEvent !== true){
36552                 this.fireEvent("selectionchange", this, this.selNodes);
36553             }
36554         }
36555     },
36556     
36557     /**
36558      * Returns true if the node is selected
36559      * @param {TreeNode} node The node to check
36560      * @return {Boolean}
36561      */
36562     isSelected : function(node){
36563         return this.selMap[node.id] ? true : false;  
36564     },
36565     
36566     /**
36567      * Returns an array of the selected nodes
36568      * @return {Array}
36569      */
36570     getSelectedNodes : function(){
36571         return this.selNodes;    
36572     },
36573
36574     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
36575
36576     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
36577
36578     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
36579 });/*
36580  * Based on:
36581  * Ext JS Library 1.1.1
36582  * Copyright(c) 2006-2007, Ext JS, LLC.
36583  *
36584  * Originally Released Under LGPL - original licence link has changed is not relivant.
36585  *
36586  * Fork - LGPL
36587  * <script type="text/javascript">
36588  */
36589  
36590 /**
36591  * @class Roo.tree.TreeNode
36592  * @extends Roo.data.Node
36593  * @cfg {String} text The text for this node
36594  * @cfg {Boolean} expanded true to start the node expanded
36595  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
36596  * @cfg {Boolean} allowDrop false if this node cannot be drop on
36597  * @cfg {Boolean} disabled true to start the node disabled
36598  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
36599  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
36600  * @cfg {String} cls A css class to be added to the node
36601  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
36602  * @cfg {String} href URL of the link used for the node (defaults to #)
36603  * @cfg {String} hrefTarget target frame for the link
36604  * @cfg {String} qtip An Ext QuickTip for the node
36605  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
36606  * @cfg {Boolean} singleClickExpand True for single click expand on this node
36607  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
36608  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
36609  * (defaults to undefined with no checkbox rendered)
36610  * @constructor
36611  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
36612  */
36613 Roo.tree.TreeNode = function(attributes){
36614     attributes = attributes || {};
36615     if(typeof attributes == "string"){
36616         attributes = {text: attributes};
36617     }
36618     this.childrenRendered = false;
36619     this.rendered = false;
36620     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
36621     this.expanded = attributes.expanded === true;
36622     this.isTarget = attributes.isTarget !== false;
36623     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
36624     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
36625
36626     /**
36627      * Read-only. The text for this node. To change it use setText().
36628      * @type String
36629      */
36630     this.text = attributes.text;
36631     /**
36632      * True if this node is disabled.
36633      * @type Boolean
36634      */
36635     this.disabled = attributes.disabled === true;
36636
36637     this.addEvents({
36638         /**
36639         * @event textchange
36640         * Fires when the text for this node is changed
36641         * @param {Node} this This node
36642         * @param {String} text The new text
36643         * @param {String} oldText The old text
36644         */
36645         "textchange" : true,
36646         /**
36647         * @event beforeexpand
36648         * Fires before this node is expanded, return false to cancel.
36649         * @param {Node} this This node
36650         * @param {Boolean} deep
36651         * @param {Boolean} anim
36652         */
36653         "beforeexpand" : true,
36654         /**
36655         * @event beforecollapse
36656         * Fires before this node is collapsed, return false to cancel.
36657         * @param {Node} this This node
36658         * @param {Boolean} deep
36659         * @param {Boolean} anim
36660         */
36661         "beforecollapse" : true,
36662         /**
36663         * @event expand
36664         * Fires when this node is expanded
36665         * @param {Node} this This node
36666         */
36667         "expand" : true,
36668         /**
36669         * @event disabledchange
36670         * Fires when the disabled status of this node changes
36671         * @param {Node} this This node
36672         * @param {Boolean} disabled
36673         */
36674         "disabledchange" : true,
36675         /**
36676         * @event collapse
36677         * Fires when this node is collapsed
36678         * @param {Node} this This node
36679         */
36680         "collapse" : true,
36681         /**
36682         * @event beforeclick
36683         * Fires before click processing. Return false to cancel the default action.
36684         * @param {Node} this This node
36685         * @param {Roo.EventObject} e The event object
36686         */
36687         "beforeclick":true,
36688         /**
36689         * @event checkchange
36690         * Fires when a node with a checkbox's checked property changes
36691         * @param {Node} this This node
36692         * @param {Boolean} checked
36693         */
36694         "checkchange":true,
36695         /**
36696         * @event click
36697         * Fires when this node is clicked
36698         * @param {Node} this This node
36699         * @param {Roo.EventObject} e The event object
36700         */
36701         "click":true,
36702         /**
36703         * @event dblclick
36704         * Fires when this node is double clicked
36705         * @param {Node} this This node
36706         * @param {Roo.EventObject} e The event object
36707         */
36708         "dblclick":true,
36709         /**
36710         * @event contextmenu
36711         * Fires when this node is right clicked
36712         * @param {Node} this This node
36713         * @param {Roo.EventObject} e The event object
36714         */
36715         "contextmenu":true,
36716         /**
36717         * @event beforechildrenrendered
36718         * Fires right before the child nodes for this node are rendered
36719         * @param {Node} this This node
36720         */
36721         "beforechildrenrendered":true
36722     });
36723
36724     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
36725
36726     /**
36727      * Read-only. The UI for this node
36728      * @type TreeNodeUI
36729      */
36730     this.ui = new uiClass(this);
36731     
36732     // finally support items[]
36733     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
36734         return;
36735     }
36736     
36737     
36738     Roo.each(this.attributes.items, function(c) {
36739         this.appendChild(Roo.factory(c,Roo.Tree));
36740     }, this);
36741     delete this.attributes.items;
36742     
36743     
36744     
36745 };
36746 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
36747     preventHScroll: true,
36748     /**
36749      * Returns true if this node is expanded
36750      * @return {Boolean}
36751      */
36752     isExpanded : function(){
36753         return this.expanded;
36754     },
36755
36756     /**
36757      * Returns the UI object for this node
36758      * @return {TreeNodeUI}
36759      */
36760     getUI : function(){
36761         return this.ui;
36762     },
36763
36764     // private override
36765     setFirstChild : function(node){
36766         var of = this.firstChild;
36767         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
36768         if(this.childrenRendered && of && node != of){
36769             of.renderIndent(true, true);
36770         }
36771         if(this.rendered){
36772             this.renderIndent(true, true);
36773         }
36774     },
36775
36776     // private override
36777     setLastChild : function(node){
36778         var ol = this.lastChild;
36779         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
36780         if(this.childrenRendered && ol && node != ol){
36781             ol.renderIndent(true, true);
36782         }
36783         if(this.rendered){
36784             this.renderIndent(true, true);
36785         }
36786     },
36787
36788     // these methods are overridden to provide lazy rendering support
36789     // private override
36790     appendChild : function()
36791     {
36792         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
36793         if(node && this.childrenRendered){
36794             node.render();
36795         }
36796         this.ui.updateExpandIcon();
36797         return node;
36798     },
36799
36800     // private override
36801     removeChild : function(node){
36802         this.ownerTree.getSelectionModel().unselect(node);
36803         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
36804         // if it's been rendered remove dom node
36805         if(this.childrenRendered){
36806             node.ui.remove();
36807         }
36808         if(this.childNodes.length < 1){
36809             this.collapse(false, false);
36810         }else{
36811             this.ui.updateExpandIcon();
36812         }
36813         if(!this.firstChild) {
36814             this.childrenRendered = false;
36815         }
36816         return node;
36817     },
36818
36819     // private override
36820     insertBefore : function(node, refNode){
36821         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
36822         if(newNode && refNode && this.childrenRendered){
36823             node.render();
36824         }
36825         this.ui.updateExpandIcon();
36826         return newNode;
36827     },
36828
36829     /**
36830      * Sets the text for this node
36831      * @param {String} text
36832      */
36833     setText : function(text){
36834         var oldText = this.text;
36835         this.text = text;
36836         this.attributes.text = text;
36837         if(this.rendered){ // event without subscribing
36838             this.ui.onTextChange(this, text, oldText);
36839         }
36840         this.fireEvent("textchange", this, text, oldText);
36841     },
36842
36843     /**
36844      * Triggers selection of this node
36845      */
36846     select : function(){
36847         this.getOwnerTree().getSelectionModel().select(this);
36848     },
36849
36850     /**
36851      * Triggers deselection of this node
36852      */
36853     unselect : function(){
36854         this.getOwnerTree().getSelectionModel().unselect(this);
36855     },
36856
36857     /**
36858      * Returns true if this node is selected
36859      * @return {Boolean}
36860      */
36861     isSelected : function(){
36862         return this.getOwnerTree().getSelectionModel().isSelected(this);
36863     },
36864
36865     /**
36866      * Expand this node.
36867      * @param {Boolean} deep (optional) True to expand all children as well
36868      * @param {Boolean} anim (optional) false to cancel the default animation
36869      * @param {Function} callback (optional) A callback to be called when
36870      * expanding this node completes (does not wait for deep expand to complete).
36871      * Called with 1 parameter, this node.
36872      */
36873     expand : function(deep, anim, callback){
36874         if(!this.expanded){
36875             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
36876                 return;
36877             }
36878             if(!this.childrenRendered){
36879                 this.renderChildren();
36880             }
36881             this.expanded = true;
36882             
36883             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
36884                 this.ui.animExpand(function(){
36885                     this.fireEvent("expand", this);
36886                     if(typeof callback == "function"){
36887                         callback(this);
36888                     }
36889                     if(deep === true){
36890                         this.expandChildNodes(true);
36891                     }
36892                 }.createDelegate(this));
36893                 return;
36894             }else{
36895                 this.ui.expand();
36896                 this.fireEvent("expand", this);
36897                 if(typeof callback == "function"){
36898                     callback(this);
36899                 }
36900             }
36901         }else{
36902            if(typeof callback == "function"){
36903                callback(this);
36904            }
36905         }
36906         if(deep === true){
36907             this.expandChildNodes(true);
36908         }
36909     },
36910
36911     isHiddenRoot : function(){
36912         return this.isRoot && !this.getOwnerTree().rootVisible;
36913     },
36914
36915     /**
36916      * Collapse this node.
36917      * @param {Boolean} deep (optional) True to collapse all children as well
36918      * @param {Boolean} anim (optional) false to cancel the default animation
36919      */
36920     collapse : function(deep, anim){
36921         if(this.expanded && !this.isHiddenRoot()){
36922             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
36923                 return;
36924             }
36925             this.expanded = false;
36926             if((this.getOwnerTree().animate && anim !== false) || anim){
36927                 this.ui.animCollapse(function(){
36928                     this.fireEvent("collapse", this);
36929                     if(deep === true){
36930                         this.collapseChildNodes(true);
36931                     }
36932                 }.createDelegate(this));
36933                 return;
36934             }else{
36935                 this.ui.collapse();
36936                 this.fireEvent("collapse", this);
36937             }
36938         }
36939         if(deep === true){
36940             var cs = this.childNodes;
36941             for(var i = 0, len = cs.length; i < len; i++) {
36942                 cs[i].collapse(true, false);
36943             }
36944         }
36945     },
36946
36947     // private
36948     delayedExpand : function(delay){
36949         if(!this.expandProcId){
36950             this.expandProcId = this.expand.defer(delay, this);
36951         }
36952     },
36953
36954     // private
36955     cancelExpand : function(){
36956         if(this.expandProcId){
36957             clearTimeout(this.expandProcId);
36958         }
36959         this.expandProcId = false;
36960     },
36961
36962     /**
36963      * Toggles expanded/collapsed state of the node
36964      */
36965     toggle : function(){
36966         if(this.expanded){
36967             this.collapse();
36968         }else{
36969             this.expand();
36970         }
36971     },
36972
36973     /**
36974      * Ensures all parent nodes are expanded
36975      */
36976     ensureVisible : function(callback){
36977         var tree = this.getOwnerTree();
36978         tree.expandPath(this.parentNode.getPath(), false, function(){
36979             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
36980             Roo.callback(callback);
36981         }.createDelegate(this));
36982     },
36983
36984     /**
36985      * Expand all child nodes
36986      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
36987      */
36988     expandChildNodes : function(deep){
36989         var cs = this.childNodes;
36990         for(var i = 0, len = cs.length; i < len; i++) {
36991                 cs[i].expand(deep);
36992         }
36993     },
36994
36995     /**
36996      * Collapse all child nodes
36997      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
36998      */
36999     collapseChildNodes : function(deep){
37000         var cs = this.childNodes;
37001         for(var i = 0, len = cs.length; i < len; i++) {
37002                 cs[i].collapse(deep);
37003         }
37004     },
37005
37006     /**
37007      * Disables this node
37008      */
37009     disable : function(){
37010         this.disabled = true;
37011         this.unselect();
37012         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37013             this.ui.onDisableChange(this, true);
37014         }
37015         this.fireEvent("disabledchange", this, true);
37016     },
37017
37018     /**
37019      * Enables this node
37020      */
37021     enable : function(){
37022         this.disabled = false;
37023         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37024             this.ui.onDisableChange(this, false);
37025         }
37026         this.fireEvent("disabledchange", this, false);
37027     },
37028
37029     // private
37030     renderChildren : function(suppressEvent){
37031         if(suppressEvent !== false){
37032             this.fireEvent("beforechildrenrendered", this);
37033         }
37034         var cs = this.childNodes;
37035         for(var i = 0, len = cs.length; i < len; i++){
37036             cs[i].render(true);
37037         }
37038         this.childrenRendered = true;
37039     },
37040
37041     // private
37042     sort : function(fn, scope){
37043         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
37044         if(this.childrenRendered){
37045             var cs = this.childNodes;
37046             for(var i = 0, len = cs.length; i < len; i++){
37047                 cs[i].render(true);
37048             }
37049         }
37050     },
37051
37052     // private
37053     render : function(bulkRender){
37054         this.ui.render(bulkRender);
37055         if(!this.rendered){
37056             this.rendered = true;
37057             if(this.expanded){
37058                 this.expanded = false;
37059                 this.expand(false, false);
37060             }
37061         }
37062     },
37063
37064     // private
37065     renderIndent : function(deep, refresh){
37066         if(refresh){
37067             this.ui.childIndent = null;
37068         }
37069         this.ui.renderIndent();
37070         if(deep === true && this.childrenRendered){
37071             var cs = this.childNodes;
37072             for(var i = 0, len = cs.length; i < len; i++){
37073                 cs[i].renderIndent(true, refresh);
37074             }
37075         }
37076     }
37077 });/*
37078  * Based on:
37079  * Ext JS Library 1.1.1
37080  * Copyright(c) 2006-2007, Ext JS, LLC.
37081  *
37082  * Originally Released Under LGPL - original licence link has changed is not relivant.
37083  *
37084  * Fork - LGPL
37085  * <script type="text/javascript">
37086  */
37087  
37088 /**
37089  * @class Roo.tree.AsyncTreeNode
37090  * @extends Roo.tree.TreeNode
37091  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
37092  * @constructor
37093  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
37094  */
37095  Roo.tree.AsyncTreeNode = function(config){
37096     this.loaded = false;
37097     this.loading = false;
37098     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
37099     /**
37100     * @event beforeload
37101     * Fires before this node is loaded, return false to cancel
37102     * @param {Node} this This node
37103     */
37104     this.addEvents({'beforeload':true, 'load': true});
37105     /**
37106     * @event load
37107     * Fires when this node is loaded
37108     * @param {Node} this This node
37109     */
37110     /**
37111      * The loader used by this node (defaults to using the tree's defined loader)
37112      * @type TreeLoader
37113      * @property loader
37114      */
37115 };
37116 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
37117     expand : function(deep, anim, callback){
37118         if(this.loading){ // if an async load is already running, waiting til it's done
37119             var timer;
37120             var f = function(){
37121                 if(!this.loading){ // done loading
37122                     clearInterval(timer);
37123                     this.expand(deep, anim, callback);
37124                 }
37125             }.createDelegate(this);
37126             timer = setInterval(f, 200);
37127             return;
37128         }
37129         if(!this.loaded){
37130             if(this.fireEvent("beforeload", this) === false){
37131                 return;
37132             }
37133             this.loading = true;
37134             this.ui.beforeLoad(this);
37135             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
37136             if(loader){
37137                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
37138                 return;
37139             }
37140         }
37141         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
37142     },
37143     
37144     /**
37145      * Returns true if this node is currently loading
37146      * @return {Boolean}
37147      */
37148     isLoading : function(){
37149         return this.loading;  
37150     },
37151     
37152     loadComplete : function(deep, anim, callback){
37153         this.loading = false;
37154         this.loaded = true;
37155         this.ui.afterLoad(this);
37156         this.fireEvent("load", this);
37157         this.expand(deep, anim, callback);
37158     },
37159     
37160     /**
37161      * Returns true if this node has been loaded
37162      * @return {Boolean}
37163      */
37164     isLoaded : function(){
37165         return this.loaded;
37166     },
37167     
37168     hasChildNodes : function(){
37169         if(!this.isLeaf() && !this.loaded){
37170             return true;
37171         }else{
37172             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
37173         }
37174     },
37175
37176     /**
37177      * Trigger a reload for this node
37178      * @param {Function} callback
37179      */
37180     reload : function(callback){
37181         this.collapse(false, false);
37182         while(this.firstChild){
37183             this.removeChild(this.firstChild);
37184         }
37185         this.childrenRendered = false;
37186         this.loaded = false;
37187         if(this.isHiddenRoot()){
37188             this.expanded = false;
37189         }
37190         this.expand(false, false, callback);
37191     }
37192 });/*
37193  * Based on:
37194  * Ext JS Library 1.1.1
37195  * Copyright(c) 2006-2007, Ext JS, LLC.
37196  *
37197  * Originally Released Under LGPL - original licence link has changed is not relivant.
37198  *
37199  * Fork - LGPL
37200  * <script type="text/javascript">
37201  */
37202  
37203 /**
37204  * @class Roo.tree.TreeNodeUI
37205  * @constructor
37206  * @param {Object} node The node to render
37207  * The TreeNode UI implementation is separate from the
37208  * tree implementation. Unless you are customizing the tree UI,
37209  * you should never have to use this directly.
37210  */
37211 Roo.tree.TreeNodeUI = function(node){
37212     this.node = node;
37213     this.rendered = false;
37214     this.animating = false;
37215     this.emptyIcon = Roo.BLANK_IMAGE_URL;
37216 };
37217
37218 Roo.tree.TreeNodeUI.prototype = {
37219     removeChild : function(node){
37220         if(this.rendered){
37221             this.ctNode.removeChild(node.ui.getEl());
37222         }
37223     },
37224
37225     beforeLoad : function(){
37226          this.addClass("x-tree-node-loading");
37227     },
37228
37229     afterLoad : function(){
37230          this.removeClass("x-tree-node-loading");
37231     },
37232
37233     onTextChange : function(node, text, oldText){
37234         if(this.rendered){
37235             this.textNode.innerHTML = text;
37236         }
37237     },
37238
37239     onDisableChange : function(node, state){
37240         this.disabled = state;
37241         if(state){
37242             this.addClass("x-tree-node-disabled");
37243         }else{
37244             this.removeClass("x-tree-node-disabled");
37245         }
37246     },
37247
37248     onSelectedChange : function(state){
37249         if(state){
37250             this.focus();
37251             this.addClass("x-tree-selected");
37252         }else{
37253             //this.blur();
37254             this.removeClass("x-tree-selected");
37255         }
37256     },
37257
37258     onMove : function(tree, node, oldParent, newParent, index, refNode){
37259         this.childIndent = null;
37260         if(this.rendered){
37261             var targetNode = newParent.ui.getContainer();
37262             if(!targetNode){//target not rendered
37263                 this.holder = document.createElement("div");
37264                 this.holder.appendChild(this.wrap);
37265                 return;
37266             }
37267             var insertBefore = refNode ? refNode.ui.getEl() : null;
37268             if(insertBefore){
37269                 targetNode.insertBefore(this.wrap, insertBefore);
37270             }else{
37271                 targetNode.appendChild(this.wrap);
37272             }
37273             this.node.renderIndent(true);
37274         }
37275     },
37276
37277     addClass : function(cls){
37278         if(this.elNode){
37279             Roo.fly(this.elNode).addClass(cls);
37280         }
37281     },
37282
37283     removeClass : function(cls){
37284         if(this.elNode){
37285             Roo.fly(this.elNode).removeClass(cls);
37286         }
37287     },
37288
37289     remove : function(){
37290         if(this.rendered){
37291             this.holder = document.createElement("div");
37292             this.holder.appendChild(this.wrap);
37293         }
37294     },
37295
37296     fireEvent : function(){
37297         return this.node.fireEvent.apply(this.node, arguments);
37298     },
37299
37300     initEvents : function(){
37301         this.node.on("move", this.onMove, this);
37302         var E = Roo.EventManager;
37303         var a = this.anchor;
37304
37305         var el = Roo.fly(a, '_treeui');
37306
37307         if(Roo.isOpera){ // opera render bug ignores the CSS
37308             el.setStyle("text-decoration", "none");
37309         }
37310
37311         el.on("click", this.onClick, this);
37312         el.on("dblclick", this.onDblClick, this);
37313
37314         if(this.checkbox){
37315             Roo.EventManager.on(this.checkbox,
37316                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
37317         }
37318
37319         el.on("contextmenu", this.onContextMenu, this);
37320
37321         var icon = Roo.fly(this.iconNode);
37322         icon.on("click", this.onClick, this);
37323         icon.on("dblclick", this.onDblClick, this);
37324         icon.on("contextmenu", this.onContextMenu, this);
37325         E.on(this.ecNode, "click", this.ecClick, this, true);
37326
37327         if(this.node.disabled){
37328             this.addClass("x-tree-node-disabled");
37329         }
37330         if(this.node.hidden){
37331             this.addClass("x-tree-node-disabled");
37332         }
37333         var ot = this.node.getOwnerTree();
37334         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
37335         if(dd && (!this.node.isRoot || ot.rootVisible)){
37336             Roo.dd.Registry.register(this.elNode, {
37337                 node: this.node,
37338                 handles: this.getDDHandles(),
37339                 isHandle: false
37340             });
37341         }
37342     },
37343
37344     getDDHandles : function(){
37345         return [this.iconNode, this.textNode];
37346     },
37347
37348     hide : function(){
37349         if(this.rendered){
37350             this.wrap.style.display = "none";
37351         }
37352     },
37353
37354     show : function(){
37355         if(this.rendered){
37356             this.wrap.style.display = "";
37357         }
37358     },
37359
37360     onContextMenu : function(e){
37361         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
37362             e.preventDefault();
37363             this.focus();
37364             this.fireEvent("contextmenu", this.node, e);
37365         }
37366     },
37367
37368     onClick : function(e){
37369         if(this.dropping){
37370             e.stopEvent();
37371             return;
37372         }
37373         if(this.fireEvent("beforeclick", this.node, e) !== false){
37374             if(!this.disabled && this.node.attributes.href){
37375                 this.fireEvent("click", this.node, e);
37376                 return;
37377             }
37378             e.preventDefault();
37379             if(this.disabled){
37380                 return;
37381             }
37382
37383             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
37384                 this.node.toggle();
37385             }
37386
37387             this.fireEvent("click", this.node, e);
37388         }else{
37389             e.stopEvent();
37390         }
37391     },
37392
37393     onDblClick : function(e){
37394         e.preventDefault();
37395         if(this.disabled){
37396             return;
37397         }
37398         if(this.checkbox){
37399             this.toggleCheck();
37400         }
37401         if(!this.animating && this.node.hasChildNodes()){
37402             this.node.toggle();
37403         }
37404         this.fireEvent("dblclick", this.node, e);
37405     },
37406
37407     onCheckChange : function(){
37408         var checked = this.checkbox.checked;
37409         this.node.attributes.checked = checked;
37410         this.fireEvent('checkchange', this.node, checked);
37411     },
37412
37413     ecClick : function(e){
37414         if(!this.animating && this.node.hasChildNodes()){
37415             this.node.toggle();
37416         }
37417     },
37418
37419     startDrop : function(){
37420         this.dropping = true;
37421     },
37422
37423     // delayed drop so the click event doesn't get fired on a drop
37424     endDrop : function(){
37425        setTimeout(function(){
37426            this.dropping = false;
37427        }.createDelegate(this), 50);
37428     },
37429
37430     expand : function(){
37431         this.updateExpandIcon();
37432         this.ctNode.style.display = "";
37433     },
37434
37435     focus : function(){
37436         if(!this.node.preventHScroll){
37437             try{this.anchor.focus();
37438             }catch(e){}
37439         }else if(!Roo.isIE){
37440             try{
37441                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
37442                 var l = noscroll.scrollLeft;
37443                 this.anchor.focus();
37444                 noscroll.scrollLeft = l;
37445             }catch(e){}
37446         }
37447     },
37448
37449     toggleCheck : function(value){
37450         var cb = this.checkbox;
37451         if(cb){
37452             cb.checked = (value === undefined ? !cb.checked : value);
37453         }
37454     },
37455
37456     blur : function(){
37457         try{
37458             this.anchor.blur();
37459         }catch(e){}
37460     },
37461
37462     animExpand : function(callback){
37463         var ct = Roo.get(this.ctNode);
37464         ct.stopFx();
37465         if(!this.node.hasChildNodes()){
37466             this.updateExpandIcon();
37467             this.ctNode.style.display = "";
37468             Roo.callback(callback);
37469             return;
37470         }
37471         this.animating = true;
37472         this.updateExpandIcon();
37473
37474         ct.slideIn('t', {
37475            callback : function(){
37476                this.animating = false;
37477                Roo.callback(callback);
37478             },
37479             scope: this,
37480             duration: this.node.ownerTree.duration || .25
37481         });
37482     },
37483
37484     highlight : function(){
37485         var tree = this.node.getOwnerTree();
37486         Roo.fly(this.wrap).highlight(
37487             tree.hlColor || "C3DAF9",
37488             {endColor: tree.hlBaseColor}
37489         );
37490     },
37491
37492     collapse : function(){
37493         this.updateExpandIcon();
37494         this.ctNode.style.display = "none";
37495     },
37496
37497     animCollapse : function(callback){
37498         var ct = Roo.get(this.ctNode);
37499         ct.enableDisplayMode('block');
37500         ct.stopFx();
37501
37502         this.animating = true;
37503         this.updateExpandIcon();
37504
37505         ct.slideOut('t', {
37506             callback : function(){
37507                this.animating = false;
37508                Roo.callback(callback);
37509             },
37510             scope: this,
37511             duration: this.node.ownerTree.duration || .25
37512         });
37513     },
37514
37515     getContainer : function(){
37516         return this.ctNode;
37517     },
37518
37519     getEl : function(){
37520         return this.wrap;
37521     },
37522
37523     appendDDGhost : function(ghostNode){
37524         ghostNode.appendChild(this.elNode.cloneNode(true));
37525     },
37526
37527     getDDRepairXY : function(){
37528         return Roo.lib.Dom.getXY(this.iconNode);
37529     },
37530
37531     onRender : function(){
37532         this.render();
37533     },
37534
37535     render : function(bulkRender){
37536         var n = this.node, a = n.attributes;
37537         var targetNode = n.parentNode ?
37538               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
37539
37540         if(!this.rendered){
37541             this.rendered = true;
37542
37543             this.renderElements(n, a, targetNode, bulkRender);
37544
37545             if(a.qtip){
37546                if(this.textNode.setAttributeNS){
37547                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
37548                    if(a.qtipTitle){
37549                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
37550                    }
37551                }else{
37552                    this.textNode.setAttribute("ext:qtip", a.qtip);
37553                    if(a.qtipTitle){
37554                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
37555                    }
37556                }
37557             }else if(a.qtipCfg){
37558                 a.qtipCfg.target = Roo.id(this.textNode);
37559                 Roo.QuickTips.register(a.qtipCfg);
37560             }
37561             this.initEvents();
37562             if(!this.node.expanded){
37563                 this.updateExpandIcon();
37564             }
37565         }else{
37566             if(bulkRender === true) {
37567                 targetNode.appendChild(this.wrap);
37568             }
37569         }
37570     },
37571
37572     renderElements : function(n, a, targetNode, bulkRender)
37573     {
37574         // add some indent caching, this helps performance when rendering a large tree
37575         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37576         var t = n.getOwnerTree();
37577         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
37578         if (typeof(n.attributes.html) != 'undefined') {
37579             txt = n.attributes.html;
37580         }
37581         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
37582         var cb = typeof a.checked == 'boolean';
37583         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37584         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
37585             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
37586             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
37587             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
37588             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
37589             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
37590              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
37591                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
37592             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37593             "</li>"];
37594
37595         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37596             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37597                                 n.nextSibling.ui.getEl(), buf.join(""));
37598         }else{
37599             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37600         }
37601
37602         this.elNode = this.wrap.childNodes[0];
37603         this.ctNode = this.wrap.childNodes[1];
37604         var cs = this.elNode.childNodes;
37605         this.indentNode = cs[0];
37606         this.ecNode = cs[1];
37607         this.iconNode = cs[2];
37608         var index = 3;
37609         if(cb){
37610             this.checkbox = cs[3];
37611             index++;
37612         }
37613         this.anchor = cs[index];
37614         this.textNode = cs[index].firstChild;
37615     },
37616
37617     getAnchor : function(){
37618         return this.anchor;
37619     },
37620
37621     getTextEl : function(){
37622         return this.textNode;
37623     },
37624
37625     getIconEl : function(){
37626         return this.iconNode;
37627     },
37628
37629     isChecked : function(){
37630         return this.checkbox ? this.checkbox.checked : false;
37631     },
37632
37633     updateExpandIcon : function(){
37634         if(this.rendered){
37635             var n = this.node, c1, c2;
37636             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
37637             var hasChild = n.hasChildNodes();
37638             if(hasChild){
37639                 if(n.expanded){
37640                     cls += "-minus";
37641                     c1 = "x-tree-node-collapsed";
37642                     c2 = "x-tree-node-expanded";
37643                 }else{
37644                     cls += "-plus";
37645                     c1 = "x-tree-node-expanded";
37646                     c2 = "x-tree-node-collapsed";
37647                 }
37648                 if(this.wasLeaf){
37649                     this.removeClass("x-tree-node-leaf");
37650                     this.wasLeaf = false;
37651                 }
37652                 if(this.c1 != c1 || this.c2 != c2){
37653                     Roo.fly(this.elNode).replaceClass(c1, c2);
37654                     this.c1 = c1; this.c2 = c2;
37655                 }
37656             }else{
37657                 // this changes non-leafs into leafs if they have no children.
37658                 // it's not very rational behaviour..
37659                 
37660                 if(!this.wasLeaf && this.node.leaf){
37661                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
37662                     delete this.c1;
37663                     delete this.c2;
37664                     this.wasLeaf = true;
37665                 }
37666             }
37667             var ecc = "x-tree-ec-icon "+cls;
37668             if(this.ecc != ecc){
37669                 this.ecNode.className = ecc;
37670                 this.ecc = ecc;
37671             }
37672         }
37673     },
37674
37675     getChildIndent : function(){
37676         if(!this.childIndent){
37677             var buf = [];
37678             var p = this.node;
37679             while(p){
37680                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
37681                     if(!p.isLast()) {
37682                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
37683                     } else {
37684                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
37685                     }
37686                 }
37687                 p = p.parentNode;
37688             }
37689             this.childIndent = buf.join("");
37690         }
37691         return this.childIndent;
37692     },
37693
37694     renderIndent : function(){
37695         if(this.rendered){
37696             var indent = "";
37697             var p = this.node.parentNode;
37698             if(p){
37699                 indent = p.ui.getChildIndent();
37700             }
37701             if(this.indentMarkup != indent){ // don't rerender if not required
37702                 this.indentNode.innerHTML = indent;
37703                 this.indentMarkup = indent;
37704             }
37705             this.updateExpandIcon();
37706         }
37707     }
37708 };
37709
37710 Roo.tree.RootTreeNodeUI = function(){
37711     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
37712 };
37713 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
37714     render : function(){
37715         if(!this.rendered){
37716             var targetNode = this.node.ownerTree.innerCt.dom;
37717             this.node.expanded = true;
37718             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
37719             this.wrap = this.ctNode = targetNode.firstChild;
37720         }
37721     },
37722     collapse : function(){
37723     },
37724     expand : function(){
37725     }
37726 });/*
37727  * Based on:
37728  * Ext JS Library 1.1.1
37729  * Copyright(c) 2006-2007, Ext JS, LLC.
37730  *
37731  * Originally Released Under LGPL - original licence link has changed is not relivant.
37732  *
37733  * Fork - LGPL
37734  * <script type="text/javascript">
37735  */
37736 /**
37737  * @class Roo.tree.TreeLoader
37738  * @extends Roo.util.Observable
37739  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
37740  * nodes from a specified URL. The response must be a javascript Array definition
37741  * who's elements are node definition objects. eg:
37742  * <pre><code>
37743 {  success : true,
37744    data :      [
37745    
37746     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
37747     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
37748     ]
37749 }
37750
37751
37752 </code></pre>
37753  * <br><br>
37754  * The old style respose with just an array is still supported, but not recommended.
37755  * <br><br>
37756  *
37757  * A server request is sent, and child nodes are loaded only when a node is expanded.
37758  * The loading node's id is passed to the server under the parameter name "node" to
37759  * enable the server to produce the correct child nodes.
37760  * <br><br>
37761  * To pass extra parameters, an event handler may be attached to the "beforeload"
37762  * event, and the parameters specified in the TreeLoader's baseParams property:
37763  * <pre><code>
37764     myTreeLoader.on("beforeload", function(treeLoader, node) {
37765         this.baseParams.category = node.attributes.category;
37766     }, this);
37767     
37768 </code></pre>
37769  *
37770  * This would pass an HTTP parameter called "category" to the server containing
37771  * the value of the Node's "category" attribute.
37772  * @constructor
37773  * Creates a new Treeloader.
37774  * @param {Object} config A config object containing config properties.
37775  */
37776 Roo.tree.TreeLoader = function(config){
37777     this.baseParams = {};
37778     this.requestMethod = "POST";
37779     Roo.apply(this, config);
37780
37781     this.addEvents({
37782     
37783         /**
37784          * @event beforeload
37785          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
37786          * @param {Object} This TreeLoader object.
37787          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37788          * @param {Object} callback The callback function specified in the {@link #load} call.
37789          */
37790         beforeload : true,
37791         /**
37792          * @event load
37793          * Fires when the node has been successfuly loaded.
37794          * @param {Object} This TreeLoader object.
37795          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37796          * @param {Object} response The response object containing the data from the server.
37797          */
37798         load : true,
37799         /**
37800          * @event loadexception
37801          * Fires if the network request failed.
37802          * @param {Object} This TreeLoader object.
37803          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37804          * @param {Object} response The response object containing the data from the server.
37805          */
37806         loadexception : true,
37807         /**
37808          * @event create
37809          * Fires before a node is created, enabling you to return custom Node types 
37810          * @param {Object} This TreeLoader object.
37811          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
37812          */
37813         create : true
37814     });
37815
37816     Roo.tree.TreeLoader.superclass.constructor.call(this);
37817 };
37818
37819 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
37820     /**
37821     * @cfg {String} dataUrl The URL from which to request a Json string which
37822     * specifies an array of node definition object representing the child nodes
37823     * to be loaded.
37824     */
37825     /**
37826     * @cfg {String} requestMethod either GET or POST
37827     * defaults to POST (due to BC)
37828     * to be loaded.
37829     */
37830     /**
37831     * @cfg {Object} baseParams (optional) An object containing properties which
37832     * specify HTTP parameters to be passed to each request for child nodes.
37833     */
37834     /**
37835     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
37836     * created by this loader. If the attributes sent by the server have an attribute in this object,
37837     * they take priority.
37838     */
37839     /**
37840     * @cfg {Object} uiProviders (optional) An object containing properties which
37841     * 
37842     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
37843     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
37844     * <i>uiProvider</i> attribute of a returned child node is a string rather
37845     * than a reference to a TreeNodeUI implementation, this that string value
37846     * is used as a property name in the uiProviders object. You can define the provider named
37847     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
37848     */
37849     uiProviders : {},
37850
37851     /**
37852     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
37853     * child nodes before loading.
37854     */
37855     clearOnLoad : true,
37856
37857     /**
37858     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
37859     * property on loading, rather than expecting an array. (eg. more compatible to a standard
37860     * Grid query { data : [ .....] }
37861     */
37862     
37863     root : false,
37864      /**
37865     * @cfg {String} queryParam (optional) 
37866     * Name of the query as it will be passed on the querystring (defaults to 'node')
37867     * eg. the request will be ?node=[id]
37868     */
37869     
37870     
37871     queryParam: false,
37872     
37873     /**
37874      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
37875      * This is called automatically when a node is expanded, but may be used to reload
37876      * a node (or append new children if the {@link #clearOnLoad} option is false.)
37877      * @param {Roo.tree.TreeNode} node
37878      * @param {Function} callback
37879      */
37880     load : function(node, callback){
37881         if(this.clearOnLoad){
37882             while(node.firstChild){
37883                 node.removeChild(node.firstChild);
37884             }
37885         }
37886         if(node.attributes.children){ // preloaded json children
37887             var cs = node.attributes.children;
37888             for(var i = 0, len = cs.length; i < len; i++){
37889                 node.appendChild(this.createNode(cs[i]));
37890             }
37891             if(typeof callback == "function"){
37892                 callback();
37893             }
37894         }else if(this.dataUrl){
37895             this.requestData(node, callback);
37896         }
37897     },
37898
37899     getParams: function(node){
37900         var buf = [], bp = this.baseParams;
37901         for(var key in bp){
37902             if(typeof bp[key] != "function"){
37903                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
37904             }
37905         }
37906         var n = this.queryParam === false ? 'node' : this.queryParam;
37907         buf.push(n + "=", encodeURIComponent(node.id));
37908         return buf.join("");
37909     },
37910
37911     requestData : function(node, callback){
37912         if(this.fireEvent("beforeload", this, node, callback) !== false){
37913             this.transId = Roo.Ajax.request({
37914                 method:this.requestMethod,
37915                 url: this.dataUrl||this.url,
37916                 success: this.handleResponse,
37917                 failure: this.handleFailure,
37918                 scope: this,
37919                 argument: {callback: callback, node: node},
37920                 params: this.getParams(node)
37921             });
37922         }else{
37923             // if the load is cancelled, make sure we notify
37924             // the node that we are done
37925             if(typeof callback == "function"){
37926                 callback();
37927             }
37928         }
37929     },
37930
37931     isLoading : function(){
37932         return this.transId ? true : false;
37933     },
37934
37935     abort : function(){
37936         if(this.isLoading()){
37937             Roo.Ajax.abort(this.transId);
37938         }
37939     },
37940
37941     // private
37942     createNode : function(attr)
37943     {
37944         // apply baseAttrs, nice idea Corey!
37945         if(this.baseAttrs){
37946             Roo.applyIf(attr, this.baseAttrs);
37947         }
37948         if(this.applyLoader !== false){
37949             attr.loader = this;
37950         }
37951         // uiProvider = depreciated..
37952         
37953         if(typeof(attr.uiProvider) == 'string'){
37954            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
37955                 /**  eval:var:attr */ eval(attr.uiProvider);
37956         }
37957         if(typeof(this.uiProviders['default']) != 'undefined') {
37958             attr.uiProvider = this.uiProviders['default'];
37959         }
37960         
37961         this.fireEvent('create', this, attr);
37962         
37963         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
37964         return(attr.leaf ?
37965                         new Roo.tree.TreeNode(attr) :
37966                         new Roo.tree.AsyncTreeNode(attr));
37967     },
37968
37969     processResponse : function(response, node, callback)
37970     {
37971         var json = response.responseText;
37972         try {
37973             
37974             var o = Roo.decode(json);
37975             
37976             if (this.root === false && typeof(o.success) != undefined) {
37977                 this.root = 'data'; // the default behaviour for list like data..
37978                 }
37979                 
37980             if (this.root !== false &&  !o.success) {
37981                 // it's a failure condition.
37982                 var a = response.argument;
37983                 this.fireEvent("loadexception", this, a.node, response);
37984                 Roo.log("Load failed - should have a handler really");
37985                 return;
37986             }
37987             
37988             
37989             
37990             if (this.root !== false) {
37991                  o = o[this.root];
37992             }
37993             
37994             for(var i = 0, len = o.length; i < len; i++){
37995                 var n = this.createNode(o[i]);
37996                 if(n){
37997                     node.appendChild(n);
37998                 }
37999             }
38000             if(typeof callback == "function"){
38001                 callback(this, node);
38002             }
38003         }catch(e){
38004             this.handleFailure(response);
38005         }
38006     },
38007
38008     handleResponse : function(response){
38009         this.transId = false;
38010         var a = response.argument;
38011         this.processResponse(response, a.node, a.callback);
38012         this.fireEvent("load", this, a.node, response);
38013     },
38014
38015     handleFailure : function(response)
38016     {
38017         // should handle failure better..
38018         this.transId = false;
38019         var a = response.argument;
38020         this.fireEvent("loadexception", this, a.node, response);
38021         if(typeof a.callback == "function"){
38022             a.callback(this, a.node);
38023         }
38024     }
38025 });/*
38026  * Based on:
38027  * Ext JS Library 1.1.1
38028  * Copyright(c) 2006-2007, Ext JS, LLC.
38029  *
38030  * Originally Released Under LGPL - original licence link has changed is not relivant.
38031  *
38032  * Fork - LGPL
38033  * <script type="text/javascript">
38034  */
38035
38036 /**
38037 * @class Roo.tree.TreeFilter
38038 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
38039 * @param {TreePanel} tree
38040 * @param {Object} config (optional)
38041  */
38042 Roo.tree.TreeFilter = function(tree, config){
38043     this.tree = tree;
38044     this.filtered = {};
38045     Roo.apply(this, config);
38046 };
38047
38048 Roo.tree.TreeFilter.prototype = {
38049     clearBlank:false,
38050     reverse:false,
38051     autoClear:false,
38052     remove:false,
38053
38054      /**
38055      * Filter the data by a specific attribute.
38056      * @param {String/RegExp} value Either string that the attribute value
38057      * should start with or a RegExp to test against the attribute
38058      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
38059      * @param {TreeNode} startNode (optional) The node to start the filter at.
38060      */
38061     filter : function(value, attr, startNode){
38062         attr = attr || "text";
38063         var f;
38064         if(typeof value == "string"){
38065             var vlen = value.length;
38066             // auto clear empty filter
38067             if(vlen == 0 && this.clearBlank){
38068                 this.clear();
38069                 return;
38070             }
38071             value = value.toLowerCase();
38072             f = function(n){
38073                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
38074             };
38075         }else if(value.exec){ // regex?
38076             f = function(n){
38077                 return value.test(n.attributes[attr]);
38078             };
38079         }else{
38080             throw 'Illegal filter type, must be string or regex';
38081         }
38082         this.filterBy(f, null, startNode);
38083         },
38084
38085     /**
38086      * Filter by a function. The passed function will be called with each
38087      * node in the tree (or from the startNode). If the function returns true, the node is kept
38088      * otherwise it is filtered. If a node is filtered, its children are also filtered.
38089      * @param {Function} fn The filter function
38090      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
38091      */
38092     filterBy : function(fn, scope, startNode){
38093         startNode = startNode || this.tree.root;
38094         if(this.autoClear){
38095             this.clear();
38096         }
38097         var af = this.filtered, rv = this.reverse;
38098         var f = function(n){
38099             if(n == startNode){
38100                 return true;
38101             }
38102             if(af[n.id]){
38103                 return false;
38104             }
38105             var m = fn.call(scope || n, n);
38106             if(!m || rv){
38107                 af[n.id] = n;
38108                 n.ui.hide();
38109                 return false;
38110             }
38111             return true;
38112         };
38113         startNode.cascade(f);
38114         if(this.remove){
38115            for(var id in af){
38116                if(typeof id != "function"){
38117                    var n = af[id];
38118                    if(n && n.parentNode){
38119                        n.parentNode.removeChild(n);
38120                    }
38121                }
38122            }
38123         }
38124     },
38125
38126     /**
38127      * Clears the current filter. Note: with the "remove" option
38128      * set a filter cannot be cleared.
38129      */
38130     clear : function(){
38131         var t = this.tree;
38132         var af = this.filtered;
38133         for(var id in af){
38134             if(typeof id != "function"){
38135                 var n = af[id];
38136                 if(n){
38137                     n.ui.show();
38138                 }
38139             }
38140         }
38141         this.filtered = {};
38142     }
38143 };
38144 /*
38145  * Based on:
38146  * Ext JS Library 1.1.1
38147  * Copyright(c) 2006-2007, Ext JS, LLC.
38148  *
38149  * Originally Released Under LGPL - original licence link has changed is not relivant.
38150  *
38151  * Fork - LGPL
38152  * <script type="text/javascript">
38153  */
38154  
38155
38156 /**
38157  * @class Roo.tree.TreeSorter
38158  * Provides sorting of nodes in a TreePanel
38159  * 
38160  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
38161  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
38162  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
38163  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
38164  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
38165  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
38166  * @constructor
38167  * @param {TreePanel} tree
38168  * @param {Object} config
38169  */
38170 Roo.tree.TreeSorter = function(tree, config){
38171     Roo.apply(this, config);
38172     tree.on("beforechildrenrendered", this.doSort, this);
38173     tree.on("append", this.updateSort, this);
38174     tree.on("insert", this.updateSort, this);
38175     
38176     var dsc = this.dir && this.dir.toLowerCase() == "desc";
38177     var p = this.property || "text";
38178     var sortType = this.sortType;
38179     var fs = this.folderSort;
38180     var cs = this.caseSensitive === true;
38181     var leafAttr = this.leafAttr || 'leaf';
38182
38183     this.sortFn = function(n1, n2){
38184         if(fs){
38185             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
38186                 return 1;
38187             }
38188             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
38189                 return -1;
38190             }
38191         }
38192         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
38193         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
38194         if(v1 < v2){
38195                         return dsc ? +1 : -1;
38196                 }else if(v1 > v2){
38197                         return dsc ? -1 : +1;
38198         }else{
38199                 return 0;
38200         }
38201     };
38202 };
38203
38204 Roo.tree.TreeSorter.prototype = {
38205     doSort : function(node){
38206         node.sort(this.sortFn);
38207     },
38208     
38209     compareNodes : function(n1, n2){
38210         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
38211     },
38212     
38213     updateSort : function(tree, node){
38214         if(node.childrenRendered){
38215             this.doSort.defer(1, this, [node]);
38216         }
38217     }
38218 };/*
38219  * Based on:
38220  * Ext JS Library 1.1.1
38221  * Copyright(c) 2006-2007, Ext JS, LLC.
38222  *
38223  * Originally Released Under LGPL - original licence link has changed is not relivant.
38224  *
38225  * Fork - LGPL
38226  * <script type="text/javascript">
38227  */
38228
38229 if(Roo.dd.DropZone){
38230     
38231 Roo.tree.TreeDropZone = function(tree, config){
38232     this.allowParentInsert = false;
38233     this.allowContainerDrop = false;
38234     this.appendOnly = false;
38235     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
38236     this.tree = tree;
38237     this.lastInsertClass = "x-tree-no-status";
38238     this.dragOverData = {};
38239 };
38240
38241 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
38242     ddGroup : "TreeDD",
38243     scroll:  true,
38244     
38245     expandDelay : 1000,
38246     
38247     expandNode : function(node){
38248         if(node.hasChildNodes() && !node.isExpanded()){
38249             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
38250         }
38251     },
38252     
38253     queueExpand : function(node){
38254         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
38255     },
38256     
38257     cancelExpand : function(){
38258         if(this.expandProcId){
38259             clearTimeout(this.expandProcId);
38260             this.expandProcId = false;
38261         }
38262     },
38263     
38264     isValidDropPoint : function(n, pt, dd, e, data){
38265         if(!n || !data){ return false; }
38266         var targetNode = n.node;
38267         var dropNode = data.node;
38268         // default drop rules
38269         if(!(targetNode && targetNode.isTarget && pt)){
38270             return false;
38271         }
38272         if(pt == "append" && targetNode.allowChildren === false){
38273             return false;
38274         }
38275         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
38276             return false;
38277         }
38278         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
38279             return false;
38280         }
38281         // reuse the object
38282         var overEvent = this.dragOverData;
38283         overEvent.tree = this.tree;
38284         overEvent.target = targetNode;
38285         overEvent.data = data;
38286         overEvent.point = pt;
38287         overEvent.source = dd;
38288         overEvent.rawEvent = e;
38289         overEvent.dropNode = dropNode;
38290         overEvent.cancel = false;  
38291         var result = this.tree.fireEvent("nodedragover", overEvent);
38292         return overEvent.cancel === false && result !== false;
38293     },
38294     
38295     getDropPoint : function(e, n, dd)
38296     {
38297         var tn = n.node;
38298         if(tn.isRoot){
38299             return tn.allowChildren !== false ? "append" : false; // always append for root
38300         }
38301         var dragEl = n.ddel;
38302         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
38303         var y = Roo.lib.Event.getPageY(e);
38304         //var noAppend = tn.allowChildren === false || tn.isLeaf();
38305         
38306         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
38307         var noAppend = tn.allowChildren === false;
38308         if(this.appendOnly || tn.parentNode.allowChildren === false){
38309             return noAppend ? false : "append";
38310         }
38311         var noBelow = false;
38312         if(!this.allowParentInsert){
38313             noBelow = tn.hasChildNodes() && tn.isExpanded();
38314         }
38315         var q = (b - t) / (noAppend ? 2 : 3);
38316         if(y >= t && y < (t + q)){
38317             return "above";
38318         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
38319             return "below";
38320         }else{
38321             return "append";
38322         }
38323     },
38324     
38325     onNodeEnter : function(n, dd, e, data)
38326     {
38327         this.cancelExpand();
38328     },
38329     
38330     onNodeOver : function(n, dd, e, data)
38331     {
38332        
38333         var pt = this.getDropPoint(e, n, dd);
38334         var node = n.node;
38335         
38336         // auto node expand check
38337         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
38338             this.queueExpand(node);
38339         }else if(pt != "append"){
38340             this.cancelExpand();
38341         }
38342         
38343         // set the insert point style on the target node
38344         var returnCls = this.dropNotAllowed;
38345         if(this.isValidDropPoint(n, pt, dd, e, data)){
38346            if(pt){
38347                var el = n.ddel;
38348                var cls;
38349                if(pt == "above"){
38350                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
38351                    cls = "x-tree-drag-insert-above";
38352                }else if(pt == "below"){
38353                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
38354                    cls = "x-tree-drag-insert-below";
38355                }else{
38356                    returnCls = "x-tree-drop-ok-append";
38357                    cls = "x-tree-drag-append";
38358                }
38359                if(this.lastInsertClass != cls){
38360                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
38361                    this.lastInsertClass = cls;
38362                }
38363            }
38364        }
38365        return returnCls;
38366     },
38367     
38368     onNodeOut : function(n, dd, e, data){
38369         
38370         this.cancelExpand();
38371         this.removeDropIndicators(n);
38372     },
38373     
38374     onNodeDrop : function(n, dd, e, data){
38375         var point = this.getDropPoint(e, n, dd);
38376         var targetNode = n.node;
38377         targetNode.ui.startDrop();
38378         if(!this.isValidDropPoint(n, point, dd, e, data)){
38379             targetNode.ui.endDrop();
38380             return false;
38381         }
38382         // first try to find the drop node
38383         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
38384         var dropEvent = {
38385             tree : this.tree,
38386             target: targetNode,
38387             data: data,
38388             point: point,
38389             source: dd,
38390             rawEvent: e,
38391             dropNode: dropNode,
38392             cancel: !dropNode   
38393         };
38394         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
38395         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
38396             targetNode.ui.endDrop();
38397             return false;
38398         }
38399         // allow target changing
38400         targetNode = dropEvent.target;
38401         if(point == "append" && !targetNode.isExpanded()){
38402             targetNode.expand(false, null, function(){
38403                 this.completeDrop(dropEvent);
38404             }.createDelegate(this));
38405         }else{
38406             this.completeDrop(dropEvent);
38407         }
38408         return true;
38409     },
38410     
38411     completeDrop : function(de){
38412         var ns = de.dropNode, p = de.point, t = de.target;
38413         if(!(ns instanceof Array)){
38414             ns = [ns];
38415         }
38416         var n;
38417         for(var i = 0, len = ns.length; i < len; i++){
38418             n = ns[i];
38419             if(p == "above"){
38420                 t.parentNode.insertBefore(n, t);
38421             }else if(p == "below"){
38422                 t.parentNode.insertBefore(n, t.nextSibling);
38423             }else{
38424                 t.appendChild(n);
38425             }
38426         }
38427         n.ui.focus();
38428         if(this.tree.hlDrop){
38429             n.ui.highlight();
38430         }
38431         t.ui.endDrop();
38432         this.tree.fireEvent("nodedrop", de);
38433     },
38434     
38435     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
38436         if(this.tree.hlDrop){
38437             dropNode.ui.focus();
38438             dropNode.ui.highlight();
38439         }
38440         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
38441     },
38442     
38443     getTree : function(){
38444         return this.tree;
38445     },
38446     
38447     removeDropIndicators : function(n){
38448         if(n && n.ddel){
38449             var el = n.ddel;
38450             Roo.fly(el).removeClass([
38451                     "x-tree-drag-insert-above",
38452                     "x-tree-drag-insert-below",
38453                     "x-tree-drag-append"]);
38454             this.lastInsertClass = "_noclass";
38455         }
38456     },
38457     
38458     beforeDragDrop : function(target, e, id){
38459         this.cancelExpand();
38460         return true;
38461     },
38462     
38463     afterRepair : function(data){
38464         if(data && Roo.enableFx){
38465             data.node.ui.highlight();
38466         }
38467         this.hideProxy();
38468     } 
38469     
38470 });
38471
38472 }
38473 /*
38474  * Based on:
38475  * Ext JS Library 1.1.1
38476  * Copyright(c) 2006-2007, Ext JS, LLC.
38477  *
38478  * Originally Released Under LGPL - original licence link has changed is not relivant.
38479  *
38480  * Fork - LGPL
38481  * <script type="text/javascript">
38482  */
38483  
38484
38485 if(Roo.dd.DragZone){
38486 Roo.tree.TreeDragZone = function(tree, config){
38487     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
38488     this.tree = tree;
38489 };
38490
38491 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
38492     ddGroup : "TreeDD",
38493    
38494     onBeforeDrag : function(data, e){
38495         var n = data.node;
38496         return n && n.draggable && !n.disabled;
38497     },
38498      
38499     
38500     onInitDrag : function(e){
38501         var data = this.dragData;
38502         this.tree.getSelectionModel().select(data.node);
38503         this.proxy.update("");
38504         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
38505         this.tree.fireEvent("startdrag", this.tree, data.node, e);
38506     },
38507     
38508     getRepairXY : function(e, data){
38509         return data.node.ui.getDDRepairXY();
38510     },
38511     
38512     onEndDrag : function(data, e){
38513         this.tree.fireEvent("enddrag", this.tree, data.node, e);
38514         
38515         
38516     },
38517     
38518     onValidDrop : function(dd, e, id){
38519         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
38520         this.hideProxy();
38521     },
38522     
38523     beforeInvalidDrop : function(e, id){
38524         // this scrolls the original position back into view
38525         var sm = this.tree.getSelectionModel();
38526         sm.clearSelections();
38527         sm.select(this.dragData.node);
38528     }
38529 });
38530 }/*
38531  * Based on:
38532  * Ext JS Library 1.1.1
38533  * Copyright(c) 2006-2007, Ext JS, LLC.
38534  *
38535  * Originally Released Under LGPL - original licence link has changed is not relivant.
38536  *
38537  * Fork - LGPL
38538  * <script type="text/javascript">
38539  */
38540 /**
38541  * @class Roo.tree.TreeEditor
38542  * @extends Roo.Editor
38543  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
38544  * as the editor field.
38545  * @constructor
38546  * @param {Object} config (used to be the tree panel.)
38547  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
38548  * 
38549  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
38550  * @cfg {Roo.form.TextField} field [required] The field configuration
38551  *
38552  * 
38553  */
38554 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
38555     var tree = config;
38556     var field;
38557     if (oldconfig) { // old style..
38558         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
38559     } else {
38560         // new style..
38561         tree = config.tree;
38562         config.field = config.field  || {};
38563         config.field.xtype = 'TextField';
38564         field = Roo.factory(config.field, Roo.form);
38565     }
38566     config = config || {};
38567     
38568     
38569     this.addEvents({
38570         /**
38571          * @event beforenodeedit
38572          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
38573          * false from the handler of this event.
38574          * @param {Editor} this
38575          * @param {Roo.tree.Node} node 
38576          */
38577         "beforenodeedit" : true
38578     });
38579     
38580     //Roo.log(config);
38581     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
38582
38583     this.tree = tree;
38584
38585     tree.on('beforeclick', this.beforeNodeClick, this);
38586     tree.getTreeEl().on('mousedown', this.hide, this);
38587     this.on('complete', this.updateNode, this);
38588     this.on('beforestartedit', this.fitToTree, this);
38589     this.on('startedit', this.bindScroll, this, {delay:10});
38590     this.on('specialkey', this.onSpecialKey, this);
38591 };
38592
38593 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
38594     /**
38595      * @cfg {String} alignment
38596      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
38597      */
38598     alignment: "l-l",
38599     // inherit
38600     autoSize: false,
38601     /**
38602      * @cfg {Boolean} hideEl
38603      * True to hide the bound element while the editor is displayed (defaults to false)
38604      */
38605     hideEl : false,
38606     /**
38607      * @cfg {String} cls
38608      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
38609      */
38610     cls: "x-small-editor x-tree-editor",
38611     /**
38612      * @cfg {Boolean} shim
38613      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
38614      */
38615     shim:false,
38616     // inherit
38617     shadow:"frame",
38618     /**
38619      * @cfg {Number} maxWidth
38620      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
38621      * the containing tree element's size, it will be automatically limited for you to the container width, taking
38622      * scroll and client offsets into account prior to each edit.
38623      */
38624     maxWidth: 250,
38625
38626     editDelay : 350,
38627
38628     // private
38629     fitToTree : function(ed, el){
38630         var td = this.tree.getTreeEl().dom, nd = el.dom;
38631         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
38632             td.scrollLeft = nd.offsetLeft;
38633         }
38634         var w = Math.min(
38635                 this.maxWidth,
38636                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
38637         this.setSize(w, '');
38638         
38639         return this.fireEvent('beforenodeedit', this, this.editNode);
38640         
38641     },
38642
38643     // private
38644     triggerEdit : function(node){
38645         this.completeEdit();
38646         this.editNode = node;
38647         this.startEdit(node.ui.textNode, node.text);
38648     },
38649
38650     // private
38651     bindScroll : function(){
38652         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
38653     },
38654
38655     // private
38656     beforeNodeClick : function(node, e){
38657         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
38658         this.lastClick = new Date();
38659         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
38660             e.stopEvent();
38661             this.triggerEdit(node);
38662             return false;
38663         }
38664         return true;
38665     },
38666
38667     // private
38668     updateNode : function(ed, value){
38669         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
38670         this.editNode.setText(value);
38671     },
38672
38673     // private
38674     onHide : function(){
38675         Roo.tree.TreeEditor.superclass.onHide.call(this);
38676         if(this.editNode){
38677             this.editNode.ui.focus();
38678         }
38679     },
38680
38681     // private
38682     onSpecialKey : function(field, e){
38683         var k = e.getKey();
38684         if(k == e.ESC){
38685             e.stopEvent();
38686             this.cancelEdit();
38687         }else if(k == e.ENTER && !e.hasModifier()){
38688             e.stopEvent();
38689             this.completeEdit();
38690         }
38691     }
38692 });//<Script type="text/javascript">
38693 /*
38694  * Based on:
38695  * Ext JS Library 1.1.1
38696  * Copyright(c) 2006-2007, Ext JS, LLC.
38697  *
38698  * Originally Released Under LGPL - original licence link has changed is not relivant.
38699  *
38700  * Fork - LGPL
38701  * <script type="text/javascript">
38702  */
38703  
38704 /**
38705  * Not documented??? - probably should be...
38706  */
38707
38708 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
38709     //focus: Roo.emptyFn, // prevent odd scrolling behavior
38710     
38711     renderElements : function(n, a, targetNode, bulkRender){
38712         //consel.log("renderElements?");
38713         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
38714
38715         var t = n.getOwnerTree();
38716         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
38717         
38718         var cols = t.columns;
38719         var bw = t.borderWidth;
38720         var c = cols[0];
38721         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
38722          var cb = typeof a.checked == "boolean";
38723         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38724         var colcls = 'x-t-' + tid + '-c0';
38725         var buf = [
38726             '<li class="x-tree-node">',
38727             
38728                 
38729                 '<div class="x-tree-node-el ', a.cls,'">',
38730                     // extran...
38731                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
38732                 
38733                 
38734                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
38735                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
38736                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
38737                            (a.icon ? ' x-tree-node-inline-icon' : ''),
38738                            (a.iconCls ? ' '+a.iconCls : ''),
38739                            '" unselectable="on" />',
38740                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
38741                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
38742                              
38743                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38744                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
38745                             '<span unselectable="on" qtip="' + tx + '">',
38746                              tx,
38747                              '</span></a>' ,
38748                     '</div>',
38749                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38750                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
38751                  ];
38752         for(var i = 1, len = cols.length; i < len; i++){
38753             c = cols[i];
38754             colcls = 'x-t-' + tid + '-c' +i;
38755             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38756             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
38757                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
38758                       "</div>");
38759          }
38760          
38761          buf.push(
38762             '</a>',
38763             '<div class="x-clear"></div></div>',
38764             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
38765             "</li>");
38766         
38767         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
38768             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
38769                                 n.nextSibling.ui.getEl(), buf.join(""));
38770         }else{
38771             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
38772         }
38773         var el = this.wrap.firstChild;
38774         this.elRow = el;
38775         this.elNode = el.firstChild;
38776         this.ranchor = el.childNodes[1];
38777         this.ctNode = this.wrap.childNodes[1];
38778         var cs = el.firstChild.childNodes;
38779         this.indentNode = cs[0];
38780         this.ecNode = cs[1];
38781         this.iconNode = cs[2];
38782         var index = 3;
38783         if(cb){
38784             this.checkbox = cs[3];
38785             index++;
38786         }
38787         this.anchor = cs[index];
38788         
38789         this.textNode = cs[index].firstChild;
38790         
38791         //el.on("click", this.onClick, this);
38792         //el.on("dblclick", this.onDblClick, this);
38793         
38794         
38795        // console.log(this);
38796     },
38797     initEvents : function(){
38798         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
38799         
38800             
38801         var a = this.ranchor;
38802
38803         var el = Roo.get(a);
38804
38805         if(Roo.isOpera){ // opera render bug ignores the CSS
38806             el.setStyle("text-decoration", "none");
38807         }
38808
38809         el.on("click", this.onClick, this);
38810         el.on("dblclick", this.onDblClick, this);
38811         el.on("contextmenu", this.onContextMenu, this);
38812         
38813     },
38814     
38815     /*onSelectedChange : function(state){
38816         if(state){
38817             this.focus();
38818             this.addClass("x-tree-selected");
38819         }else{
38820             //this.blur();
38821             this.removeClass("x-tree-selected");
38822         }
38823     },*/
38824     addClass : function(cls){
38825         if(this.elRow){
38826             Roo.fly(this.elRow).addClass(cls);
38827         }
38828         
38829     },
38830     
38831     
38832     removeClass : function(cls){
38833         if(this.elRow){
38834             Roo.fly(this.elRow).removeClass(cls);
38835         }
38836     }
38837
38838     
38839     
38840 });//<Script type="text/javascript">
38841
38842 /*
38843  * Based on:
38844  * Ext JS Library 1.1.1
38845  * Copyright(c) 2006-2007, Ext JS, LLC.
38846  *
38847  * Originally Released Under LGPL - original licence link has changed is not relivant.
38848  *
38849  * Fork - LGPL
38850  * <script type="text/javascript">
38851  */
38852  
38853
38854 /**
38855  * @class Roo.tree.ColumnTree
38856  * @extends Roo.tree.TreePanel
38857  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
38858  * @cfg {int} borderWidth  compined right/left border allowance
38859  * @constructor
38860  * @param {String/HTMLElement/Element} el The container element
38861  * @param {Object} config
38862  */
38863 Roo.tree.ColumnTree =  function(el, config)
38864 {
38865    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
38866    this.addEvents({
38867         /**
38868         * @event resize
38869         * Fire this event on a container when it resizes
38870         * @param {int} w Width
38871         * @param {int} h Height
38872         */
38873        "resize" : true
38874     });
38875     this.on('resize', this.onResize, this);
38876 };
38877
38878 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
38879     //lines:false,
38880     
38881     
38882     borderWidth: Roo.isBorderBox ? 0 : 2, 
38883     headEls : false,
38884     
38885     render : function(){
38886         // add the header.....
38887        
38888         Roo.tree.ColumnTree.superclass.render.apply(this);
38889         
38890         this.el.addClass('x-column-tree');
38891         
38892         this.headers = this.el.createChild(
38893             {cls:'x-tree-headers'},this.innerCt.dom);
38894    
38895         var cols = this.columns, c;
38896         var totalWidth = 0;
38897         this.headEls = [];
38898         var  len = cols.length;
38899         for(var i = 0; i < len; i++){
38900              c = cols[i];
38901              totalWidth += c.width;
38902             this.headEls.push(this.headers.createChild({
38903                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
38904                  cn: {
38905                      cls:'x-tree-hd-text',
38906                      html: c.header
38907                  },
38908                  style:'width:'+(c.width-this.borderWidth)+'px;'
38909              }));
38910         }
38911         this.headers.createChild({cls:'x-clear'});
38912         // prevent floats from wrapping when clipped
38913         this.headers.setWidth(totalWidth);
38914         //this.innerCt.setWidth(totalWidth);
38915         this.innerCt.setStyle({ overflow: 'auto' });
38916         this.onResize(this.width, this.height);
38917              
38918         
38919     },
38920     onResize : function(w,h)
38921     {
38922         this.height = h;
38923         this.width = w;
38924         // resize cols..
38925         this.innerCt.setWidth(this.width);
38926         this.innerCt.setHeight(this.height-20);
38927         
38928         // headers...
38929         var cols = this.columns, c;
38930         var totalWidth = 0;
38931         var expEl = false;
38932         var len = cols.length;
38933         for(var i = 0; i < len; i++){
38934             c = cols[i];
38935             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
38936                 // it's the expander..
38937                 expEl  = this.headEls[i];
38938                 continue;
38939             }
38940             totalWidth += c.width;
38941             
38942         }
38943         if (expEl) {
38944             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
38945         }
38946         this.headers.setWidth(w-20);
38947
38948         
38949         
38950         
38951     }
38952 });
38953 /*
38954  * Based on:
38955  * Ext JS Library 1.1.1
38956  * Copyright(c) 2006-2007, Ext JS, LLC.
38957  *
38958  * Originally Released Under LGPL - original licence link has changed is not relivant.
38959  *
38960  * Fork - LGPL
38961  * <script type="text/javascript">
38962  */
38963  
38964 /**
38965  * @class Roo.menu.Menu
38966  * @extends Roo.util.Observable
38967  * @children Roo.menu.Item Roo.menu.Separator Roo.menu.TextItem
38968  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
38969  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
38970  * @constructor
38971  * Creates a new Menu
38972  * @param {Object} config Configuration options
38973  */
38974 Roo.menu.Menu = function(config){
38975     
38976     Roo.menu.Menu.superclass.constructor.call(this, config);
38977     
38978     this.id = this.id || Roo.id();
38979     this.addEvents({
38980         /**
38981          * @event beforeshow
38982          * Fires before this menu is displayed
38983          * @param {Roo.menu.Menu} this
38984          */
38985         beforeshow : true,
38986         /**
38987          * @event beforehide
38988          * Fires before this menu is hidden
38989          * @param {Roo.menu.Menu} this
38990          */
38991         beforehide : true,
38992         /**
38993          * @event show
38994          * Fires after this menu is displayed
38995          * @param {Roo.menu.Menu} this
38996          */
38997         show : true,
38998         /**
38999          * @event hide
39000          * Fires after this menu is hidden
39001          * @param {Roo.menu.Menu} this
39002          */
39003         hide : true,
39004         /**
39005          * @event click
39006          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
39007          * @param {Roo.menu.Menu} this
39008          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39009          * @param {Roo.EventObject} e
39010          */
39011         click : true,
39012         /**
39013          * @event mouseover
39014          * Fires when the mouse is hovering over this menu
39015          * @param {Roo.menu.Menu} this
39016          * @param {Roo.EventObject} e
39017          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39018          */
39019         mouseover : true,
39020         /**
39021          * @event mouseout
39022          * Fires when the mouse exits this menu
39023          * @param {Roo.menu.Menu} this
39024          * @param {Roo.EventObject} e
39025          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39026          */
39027         mouseout : true,
39028         /**
39029          * @event itemclick
39030          * Fires when a menu item contained in this menu is clicked
39031          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
39032          * @param {Roo.EventObject} e
39033          */
39034         itemclick: true
39035     });
39036     if (this.registerMenu) {
39037         Roo.menu.MenuMgr.register(this);
39038     }
39039     
39040     var mis = this.items;
39041     this.items = new Roo.util.MixedCollection();
39042     if(mis){
39043         this.add.apply(this, mis);
39044     }
39045 };
39046
39047 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
39048     /**
39049      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
39050      */
39051     minWidth : 120,
39052     /**
39053      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
39054      * for bottom-right shadow (defaults to "sides")
39055      */
39056     shadow : "sides",
39057     /**
39058      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
39059      * this menu (defaults to "tl-tr?")
39060      */
39061     subMenuAlign : "tl-tr?",
39062     /**
39063      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
39064      * relative to its element of origin (defaults to "tl-bl?")
39065      */
39066     defaultAlign : "tl-bl?",
39067     /**
39068      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
39069      */
39070     allowOtherMenus : false,
39071     /**
39072      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
39073      */
39074     registerMenu : true,
39075
39076     hidden:true,
39077
39078     // private
39079     render : function(){
39080         if(this.el){
39081             return;
39082         }
39083         var el = this.el = new Roo.Layer({
39084             cls: "x-menu",
39085             shadow:this.shadow,
39086             constrain: false,
39087             parentEl: this.parentEl || document.body,
39088             zindex:15000
39089         });
39090
39091         this.keyNav = new Roo.menu.MenuNav(this);
39092
39093         if(this.plain){
39094             el.addClass("x-menu-plain");
39095         }
39096         if(this.cls){
39097             el.addClass(this.cls);
39098         }
39099         // generic focus element
39100         this.focusEl = el.createChild({
39101             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
39102         });
39103         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
39104         //disabling touch- as it's causing issues ..
39105         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
39106         ul.on('click'   , this.onClick, this);
39107         
39108         
39109         ul.on("mouseover", this.onMouseOver, this);
39110         ul.on("mouseout", this.onMouseOut, this);
39111         this.items.each(function(item){
39112             if (item.hidden) {
39113                 return;
39114             }
39115             
39116             var li = document.createElement("li");
39117             li.className = "x-menu-list-item";
39118             ul.dom.appendChild(li);
39119             item.render(li, this);
39120         }, this);
39121         this.ul = ul;
39122         this.autoWidth();
39123     },
39124
39125     // private
39126     autoWidth : function(){
39127         var el = this.el, ul = this.ul;
39128         if(!el){
39129             return;
39130         }
39131         var w = this.width;
39132         if(w){
39133             el.setWidth(w);
39134         }else if(Roo.isIE){
39135             el.setWidth(this.minWidth);
39136             var t = el.dom.offsetWidth; // force recalc
39137             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
39138         }
39139     },
39140
39141     // private
39142     delayAutoWidth : function(){
39143         if(this.rendered){
39144             if(!this.awTask){
39145                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
39146             }
39147             this.awTask.delay(20);
39148         }
39149     },
39150
39151     // private
39152     findTargetItem : function(e){
39153         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
39154         if(t && t.menuItemId){
39155             return this.items.get(t.menuItemId);
39156         }
39157     },
39158
39159     // private
39160     onClick : function(e){
39161         Roo.log("menu.onClick");
39162         var t = this.findTargetItem(e);
39163         if(!t){
39164             return;
39165         }
39166         Roo.log(e);
39167         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
39168             if(t == this.activeItem && t.shouldDeactivate(e)){
39169                 this.activeItem.deactivate();
39170                 delete this.activeItem;
39171                 return;
39172             }
39173             if(t.canActivate){
39174                 this.setActiveItem(t, true);
39175             }
39176             return;
39177             
39178             
39179         }
39180         
39181         t.onClick(e);
39182         this.fireEvent("click", this, t, e);
39183     },
39184
39185     // private
39186     setActiveItem : function(item, autoExpand){
39187         if(item != this.activeItem){
39188             if(this.activeItem){
39189                 this.activeItem.deactivate();
39190             }
39191             this.activeItem = item;
39192             item.activate(autoExpand);
39193         }else if(autoExpand){
39194             item.expandMenu();
39195         }
39196     },
39197
39198     // private
39199     tryActivate : function(start, step){
39200         var items = this.items;
39201         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
39202             var item = items.get(i);
39203             if(!item.disabled && item.canActivate){
39204                 this.setActiveItem(item, false);
39205                 return item;
39206             }
39207         }
39208         return false;
39209     },
39210
39211     // private
39212     onMouseOver : function(e){
39213         var t;
39214         if(t = this.findTargetItem(e)){
39215             if(t.canActivate && !t.disabled){
39216                 this.setActiveItem(t, true);
39217             }
39218         }
39219         this.fireEvent("mouseover", this, e, t);
39220     },
39221
39222     // private
39223     onMouseOut : function(e){
39224         var t;
39225         if(t = this.findTargetItem(e)){
39226             if(t == this.activeItem && t.shouldDeactivate(e)){
39227                 this.activeItem.deactivate();
39228                 delete this.activeItem;
39229             }
39230         }
39231         this.fireEvent("mouseout", this, e, t);
39232     },
39233
39234     /**
39235      * Read-only.  Returns true if the menu is currently displayed, else false.
39236      * @type Boolean
39237      */
39238     isVisible : function(){
39239         return this.el && !this.hidden;
39240     },
39241
39242     /**
39243      * Displays this menu relative to another element
39244      * @param {String/HTMLElement/Roo.Element} element The element to align to
39245      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
39246      * the element (defaults to this.defaultAlign)
39247      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39248      */
39249     show : function(el, pos, parentMenu){
39250         this.parentMenu = parentMenu;
39251         if(!this.el){
39252             this.render();
39253         }
39254         this.fireEvent("beforeshow", this);
39255         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
39256     },
39257
39258     /**
39259      * Displays this menu at a specific xy position
39260      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
39261      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39262      */
39263     showAt : function(xy, parentMenu, /* private: */_e){
39264         this.parentMenu = parentMenu;
39265         if(!this.el){
39266             this.render();
39267         }
39268         if(_e !== false){
39269             this.fireEvent("beforeshow", this);
39270             xy = this.el.adjustForConstraints(xy);
39271         }
39272         this.el.setXY(xy);
39273         this.el.show();
39274         this.hidden = false;
39275         this.focus();
39276         this.fireEvent("show", this);
39277     },
39278
39279     focus : function(){
39280         if(!this.hidden){
39281             this.doFocus.defer(50, this);
39282         }
39283     },
39284
39285     doFocus : function(){
39286         if(!this.hidden){
39287             this.focusEl.focus();
39288         }
39289     },
39290
39291     /**
39292      * Hides this menu and optionally all parent menus
39293      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
39294      */
39295     hide : function(deep){
39296         if(this.el && this.isVisible()){
39297             this.fireEvent("beforehide", this);
39298             if(this.activeItem){
39299                 this.activeItem.deactivate();
39300                 this.activeItem = null;
39301             }
39302             this.el.hide();
39303             this.hidden = true;
39304             this.fireEvent("hide", this);
39305         }
39306         if(deep === true && this.parentMenu){
39307             this.parentMenu.hide(true);
39308         }
39309     },
39310
39311     /**
39312      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
39313      * Any of the following are valid:
39314      * <ul>
39315      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
39316      * <li>An HTMLElement object which will be converted to a menu item</li>
39317      * <li>A menu item config object that will be created as a new menu item</li>
39318      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
39319      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
39320      * </ul>
39321      * Usage:
39322      * <pre><code>
39323 // Create the menu
39324 var menu = new Roo.menu.Menu();
39325
39326 // Create a menu item to add by reference
39327 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
39328
39329 // Add a bunch of items at once using different methods.
39330 // Only the last item added will be returned.
39331 var item = menu.add(
39332     menuItem,                // add existing item by ref
39333     'Dynamic Item',          // new TextItem
39334     '-',                     // new separator
39335     { text: 'Config Item' }  // new item by config
39336 );
39337 </code></pre>
39338      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
39339      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
39340      */
39341     add : function(){
39342         var a = arguments, l = a.length, item;
39343         for(var i = 0; i < l; i++){
39344             var el = a[i];
39345             if ((typeof(el) == "object") && el.xtype && el.xns) {
39346                 el = Roo.factory(el, Roo.menu);
39347             }
39348             
39349             if(el.render){ // some kind of Item
39350                 item = this.addItem(el);
39351             }else if(typeof el == "string"){ // string
39352                 if(el == "separator" || el == "-"){
39353                     item = this.addSeparator();
39354                 }else{
39355                     item = this.addText(el);
39356                 }
39357             }else if(el.tagName || el.el){ // element
39358                 item = this.addElement(el);
39359             }else if(typeof el == "object"){ // must be menu item config?
39360                 item = this.addMenuItem(el);
39361             }
39362         }
39363         return item;
39364     },
39365
39366     /**
39367      * Returns this menu's underlying {@link Roo.Element} object
39368      * @return {Roo.Element} The element
39369      */
39370     getEl : function(){
39371         if(!this.el){
39372             this.render();
39373         }
39374         return this.el;
39375     },
39376
39377     /**
39378      * Adds a separator bar to the menu
39379      * @return {Roo.menu.Item} The menu item that was added
39380      */
39381     addSeparator : function(){
39382         return this.addItem(new Roo.menu.Separator());
39383     },
39384
39385     /**
39386      * Adds an {@link Roo.Element} object to the menu
39387      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
39388      * @return {Roo.menu.Item} The menu item that was added
39389      */
39390     addElement : function(el){
39391         return this.addItem(new Roo.menu.BaseItem(el));
39392     },
39393
39394     /**
39395      * Adds an existing object based on {@link Roo.menu.Item} to the menu
39396      * @param {Roo.menu.Item} item The menu item to add
39397      * @return {Roo.menu.Item} The menu item that was added
39398      */
39399     addItem : function(item){
39400         this.items.add(item);
39401         if(this.ul){
39402             var li = document.createElement("li");
39403             li.className = "x-menu-list-item";
39404             this.ul.dom.appendChild(li);
39405             item.render(li, this);
39406             this.delayAutoWidth();
39407         }
39408         return item;
39409     },
39410
39411     /**
39412      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
39413      * @param {Object} config A MenuItem config object
39414      * @return {Roo.menu.Item} The menu item that was added
39415      */
39416     addMenuItem : function(config){
39417         if(!(config instanceof Roo.menu.Item)){
39418             if(typeof config.checked == "boolean"){ // must be check menu item config?
39419                 config = new Roo.menu.CheckItem(config);
39420             }else{
39421                 config = new Roo.menu.Item(config);
39422             }
39423         }
39424         return this.addItem(config);
39425     },
39426
39427     /**
39428      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
39429      * @param {String} text The text to display in the menu item
39430      * @return {Roo.menu.Item} The menu item that was added
39431      */
39432     addText : function(text){
39433         return this.addItem(new Roo.menu.TextItem({ text : text }));
39434     },
39435
39436     /**
39437      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
39438      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
39439      * @param {Roo.menu.Item} item The menu item to add
39440      * @return {Roo.menu.Item} The menu item that was added
39441      */
39442     insert : function(index, item){
39443         this.items.insert(index, item);
39444         if(this.ul){
39445             var li = document.createElement("li");
39446             li.className = "x-menu-list-item";
39447             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
39448             item.render(li, this);
39449             this.delayAutoWidth();
39450         }
39451         return item;
39452     },
39453
39454     /**
39455      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
39456      * @param {Roo.menu.Item} item The menu item to remove
39457      */
39458     remove : function(item){
39459         this.items.removeKey(item.id);
39460         item.destroy();
39461     },
39462
39463     /**
39464      * Removes and destroys all items in the menu
39465      */
39466     removeAll : function(){
39467         var f;
39468         while(f = this.items.first()){
39469             this.remove(f);
39470         }
39471     }
39472 });
39473
39474 // MenuNav is a private utility class used internally by the Menu
39475 Roo.menu.MenuNav = function(menu){
39476     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
39477     this.scope = this.menu = menu;
39478 };
39479
39480 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
39481     doRelay : function(e, h){
39482         var k = e.getKey();
39483         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
39484             this.menu.tryActivate(0, 1);
39485             return false;
39486         }
39487         return h.call(this.scope || this, e, this.menu);
39488     },
39489
39490     up : function(e, m){
39491         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
39492             m.tryActivate(m.items.length-1, -1);
39493         }
39494     },
39495
39496     down : function(e, m){
39497         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
39498             m.tryActivate(0, 1);
39499         }
39500     },
39501
39502     right : function(e, m){
39503         if(m.activeItem){
39504             m.activeItem.expandMenu(true);
39505         }
39506     },
39507
39508     left : function(e, m){
39509         m.hide();
39510         if(m.parentMenu && m.parentMenu.activeItem){
39511             m.parentMenu.activeItem.activate();
39512         }
39513     },
39514
39515     enter : function(e, m){
39516         if(m.activeItem){
39517             e.stopPropagation();
39518             m.activeItem.onClick(e);
39519             m.fireEvent("click", this, m.activeItem);
39520             return true;
39521         }
39522     }
39523 });/*
39524  * Based on:
39525  * Ext JS Library 1.1.1
39526  * Copyright(c) 2006-2007, Ext JS, LLC.
39527  *
39528  * Originally Released Under LGPL - original licence link has changed is not relivant.
39529  *
39530  * Fork - LGPL
39531  * <script type="text/javascript">
39532  */
39533  
39534 /**
39535  * @class Roo.menu.MenuMgr
39536  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
39537  * @static
39538  */
39539 Roo.menu.MenuMgr = function(){
39540    var menus, active, groups = {}, attached = false, lastShow = new Date();
39541
39542    // private - called when first menu is created
39543    function init(){
39544        menus = {};
39545        active = new Roo.util.MixedCollection();
39546        Roo.get(document).addKeyListener(27, function(){
39547            if(active.length > 0){
39548                hideAll();
39549            }
39550        });
39551    }
39552
39553    // private
39554    function hideAll(){
39555        if(active && active.length > 0){
39556            var c = active.clone();
39557            c.each(function(m){
39558                m.hide();
39559            });
39560        }
39561    }
39562
39563    // private
39564    function onHide(m){
39565        active.remove(m);
39566        if(active.length < 1){
39567            Roo.get(document).un("mousedown", onMouseDown);
39568            attached = false;
39569        }
39570    }
39571
39572    // private
39573    function onShow(m){
39574        var last = active.last();
39575        lastShow = new Date();
39576        active.add(m);
39577        if(!attached){
39578            Roo.get(document).on("mousedown", onMouseDown);
39579            attached = true;
39580        }
39581        if(m.parentMenu){
39582           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
39583           m.parentMenu.activeChild = m;
39584        }else if(last && last.isVisible()){
39585           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
39586        }
39587    }
39588
39589    // private
39590    function onBeforeHide(m){
39591        if(m.activeChild){
39592            m.activeChild.hide();
39593        }
39594        if(m.autoHideTimer){
39595            clearTimeout(m.autoHideTimer);
39596            delete m.autoHideTimer;
39597        }
39598    }
39599
39600    // private
39601    function onBeforeShow(m){
39602        var pm = m.parentMenu;
39603        if(!pm && !m.allowOtherMenus){
39604            hideAll();
39605        }else if(pm && pm.activeChild && active != m){
39606            pm.activeChild.hide();
39607        }
39608    }
39609
39610    // private
39611    function onMouseDown(e){
39612        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
39613            hideAll();
39614        }
39615    }
39616
39617    // private
39618    function onBeforeCheck(mi, state){
39619        if(state){
39620            var g = groups[mi.group];
39621            for(var i = 0, l = g.length; i < l; i++){
39622                if(g[i] != mi){
39623                    g[i].setChecked(false);
39624                }
39625            }
39626        }
39627    }
39628
39629    return {
39630
39631        /**
39632         * Hides all menus that are currently visible
39633         */
39634        hideAll : function(){
39635             hideAll();  
39636        },
39637
39638        // private
39639        register : function(menu){
39640            if(!menus){
39641                init();
39642            }
39643            menus[menu.id] = menu;
39644            menu.on("beforehide", onBeforeHide);
39645            menu.on("hide", onHide);
39646            menu.on("beforeshow", onBeforeShow);
39647            menu.on("show", onShow);
39648            var g = menu.group;
39649            if(g && menu.events["checkchange"]){
39650                if(!groups[g]){
39651                    groups[g] = [];
39652                }
39653                groups[g].push(menu);
39654                menu.on("checkchange", onCheck);
39655            }
39656        },
39657
39658         /**
39659          * Returns a {@link Roo.menu.Menu} object
39660          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
39661          * be used to generate and return a new Menu instance.
39662          */
39663        get : function(menu){
39664            if(typeof menu == "string"){ // menu id
39665                return menus[menu];
39666            }else if(menu.events){  // menu instance
39667                return menu;
39668            }else if(typeof menu.length == 'number'){ // array of menu items?
39669                return new Roo.menu.Menu({items:menu});
39670            }else{ // otherwise, must be a config
39671                return new Roo.menu.Menu(menu);
39672            }
39673        },
39674
39675        // private
39676        unregister : function(menu){
39677            delete menus[menu.id];
39678            menu.un("beforehide", onBeforeHide);
39679            menu.un("hide", onHide);
39680            menu.un("beforeshow", onBeforeShow);
39681            menu.un("show", onShow);
39682            var g = menu.group;
39683            if(g && menu.events["checkchange"]){
39684                groups[g].remove(menu);
39685                menu.un("checkchange", onCheck);
39686            }
39687        },
39688
39689        // private
39690        registerCheckable : function(menuItem){
39691            var g = menuItem.group;
39692            if(g){
39693                if(!groups[g]){
39694                    groups[g] = [];
39695                }
39696                groups[g].push(menuItem);
39697                menuItem.on("beforecheckchange", onBeforeCheck);
39698            }
39699        },
39700
39701        // private
39702        unregisterCheckable : function(menuItem){
39703            var g = menuItem.group;
39704            if(g){
39705                groups[g].remove(menuItem);
39706                menuItem.un("beforecheckchange", onBeforeCheck);
39707            }
39708        }
39709    };
39710 }();/*
39711  * Based on:
39712  * Ext JS Library 1.1.1
39713  * Copyright(c) 2006-2007, Ext JS, LLC.
39714  *
39715  * Originally Released Under LGPL - original licence link has changed is not relivant.
39716  *
39717  * Fork - LGPL
39718  * <script type="text/javascript">
39719  */
39720  
39721
39722 /**
39723  * @class Roo.menu.BaseItem
39724  * @extends Roo.Component
39725  * @abstract
39726  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
39727  * management and base configuration options shared by all menu components.
39728  * @constructor
39729  * Creates a new BaseItem
39730  * @param {Object} config Configuration options
39731  */
39732 Roo.menu.BaseItem = function(config){
39733     Roo.menu.BaseItem.superclass.constructor.call(this, config);
39734
39735     this.addEvents({
39736         /**
39737          * @event click
39738          * Fires when this item is clicked
39739          * @param {Roo.menu.BaseItem} this
39740          * @param {Roo.EventObject} e
39741          */
39742         click: true,
39743         /**
39744          * @event activate
39745          * Fires when this item is activated
39746          * @param {Roo.menu.BaseItem} this
39747          */
39748         activate : true,
39749         /**
39750          * @event deactivate
39751          * Fires when this item is deactivated
39752          * @param {Roo.menu.BaseItem} this
39753          */
39754         deactivate : true
39755     });
39756
39757     if(this.handler){
39758         this.on("click", this.handler, this.scope, true);
39759     }
39760 };
39761
39762 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
39763     /**
39764      * @cfg {Function} handler
39765      * A function that will handle the click event of this menu item (defaults to undefined)
39766      */
39767     /**
39768      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
39769      */
39770     canActivate : false,
39771     
39772      /**
39773      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
39774      */
39775     hidden: false,
39776     
39777     /**
39778      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
39779      */
39780     activeClass : "x-menu-item-active",
39781     /**
39782      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
39783      */
39784     hideOnClick : true,
39785     /**
39786      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
39787      */
39788     hideDelay : 100,
39789
39790     // private
39791     ctype: "Roo.menu.BaseItem",
39792
39793     // private
39794     actionMode : "container",
39795
39796     // private
39797     render : function(container, parentMenu){
39798         this.parentMenu = parentMenu;
39799         Roo.menu.BaseItem.superclass.render.call(this, container);
39800         this.container.menuItemId = this.id;
39801     },
39802
39803     // private
39804     onRender : function(container, position){
39805         this.el = Roo.get(this.el);
39806         container.dom.appendChild(this.el.dom);
39807     },
39808
39809     // private
39810     onClick : function(e){
39811         if(!this.disabled && this.fireEvent("click", this, e) !== false
39812                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
39813             this.handleClick(e);
39814         }else{
39815             e.stopEvent();
39816         }
39817     },
39818
39819     // private
39820     activate : function(){
39821         if(this.disabled){
39822             return false;
39823         }
39824         var li = this.container;
39825         li.addClass(this.activeClass);
39826         this.region = li.getRegion().adjust(2, 2, -2, -2);
39827         this.fireEvent("activate", this);
39828         return true;
39829     },
39830
39831     // private
39832     deactivate : function(){
39833         this.container.removeClass(this.activeClass);
39834         this.fireEvent("deactivate", this);
39835     },
39836
39837     // private
39838     shouldDeactivate : function(e){
39839         return !this.region || !this.region.contains(e.getPoint());
39840     },
39841
39842     // private
39843     handleClick : function(e){
39844         if(this.hideOnClick){
39845             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
39846         }
39847     },
39848
39849     // private
39850     expandMenu : function(autoActivate){
39851         // do nothing
39852     },
39853
39854     // private
39855     hideMenu : function(){
39856         // do nothing
39857     }
39858 });/*
39859  * Based on:
39860  * Ext JS Library 1.1.1
39861  * Copyright(c) 2006-2007, Ext JS, LLC.
39862  *
39863  * Originally Released Under LGPL - original licence link has changed is not relivant.
39864  *
39865  * Fork - LGPL
39866  * <script type="text/javascript">
39867  */
39868  
39869 /**
39870  * @class Roo.menu.Adapter
39871  * @extends Roo.menu.BaseItem
39872  * @abstract
39873  * 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.
39874  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
39875  * @constructor
39876  * Creates a new Adapter
39877  * @param {Object} config Configuration options
39878  */
39879 Roo.menu.Adapter = function(component, config){
39880     Roo.menu.Adapter.superclass.constructor.call(this, config);
39881     this.component = component;
39882 };
39883 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
39884     // private
39885     canActivate : true,
39886
39887     // private
39888     onRender : function(container, position){
39889         this.component.render(container);
39890         this.el = this.component.getEl();
39891     },
39892
39893     // private
39894     activate : function(){
39895         if(this.disabled){
39896             return false;
39897         }
39898         this.component.focus();
39899         this.fireEvent("activate", this);
39900         return true;
39901     },
39902
39903     // private
39904     deactivate : function(){
39905         this.fireEvent("deactivate", this);
39906     },
39907
39908     // private
39909     disable : function(){
39910         this.component.disable();
39911         Roo.menu.Adapter.superclass.disable.call(this);
39912     },
39913
39914     // private
39915     enable : function(){
39916         this.component.enable();
39917         Roo.menu.Adapter.superclass.enable.call(this);
39918     }
39919 });/*
39920  * Based on:
39921  * Ext JS Library 1.1.1
39922  * Copyright(c) 2006-2007, Ext JS, LLC.
39923  *
39924  * Originally Released Under LGPL - original licence link has changed is not relivant.
39925  *
39926  * Fork - LGPL
39927  * <script type="text/javascript">
39928  */
39929
39930 /**
39931  * @class Roo.menu.TextItem
39932  * @extends Roo.menu.BaseItem
39933  * Adds a static text string to a menu, usually used as either a heading or group separator.
39934  * Note: old style constructor with text is still supported.
39935  * 
39936  * @constructor
39937  * Creates a new TextItem
39938  * @param {Object} cfg Configuration
39939  */
39940 Roo.menu.TextItem = function(cfg){
39941     if (typeof(cfg) == 'string') {
39942         this.text = cfg;
39943     } else {
39944         Roo.apply(this,cfg);
39945     }
39946     
39947     Roo.menu.TextItem.superclass.constructor.call(this);
39948 };
39949
39950 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
39951     /**
39952      * @cfg {String} text Text to show on item.
39953      */
39954     text : '',
39955     
39956     /**
39957      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
39958      */
39959     hideOnClick : false,
39960     /**
39961      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
39962      */
39963     itemCls : "x-menu-text",
39964
39965     // private
39966     onRender : function(){
39967         var s = document.createElement("span");
39968         s.className = this.itemCls;
39969         s.innerHTML = this.text;
39970         this.el = s;
39971         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
39972     }
39973 });/*
39974  * Based on:
39975  * Ext JS Library 1.1.1
39976  * Copyright(c) 2006-2007, Ext JS, LLC.
39977  *
39978  * Originally Released Under LGPL - original licence link has changed is not relivant.
39979  *
39980  * Fork - LGPL
39981  * <script type="text/javascript">
39982  */
39983
39984 /**
39985  * @class Roo.menu.Separator
39986  * @extends Roo.menu.BaseItem
39987  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
39988  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
39989  * @constructor
39990  * @param {Object} config Configuration options
39991  */
39992 Roo.menu.Separator = function(config){
39993     Roo.menu.Separator.superclass.constructor.call(this, config);
39994 };
39995
39996 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
39997     /**
39998      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
39999      */
40000     itemCls : "x-menu-sep",
40001     /**
40002      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
40003      */
40004     hideOnClick : false,
40005
40006     // private
40007     onRender : function(li){
40008         var s = document.createElement("span");
40009         s.className = this.itemCls;
40010         s.innerHTML = "&#160;";
40011         this.el = s;
40012         li.addClass("x-menu-sep-li");
40013         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
40014     }
40015 });/*
40016  * Based on:
40017  * Ext JS Library 1.1.1
40018  * Copyright(c) 2006-2007, Ext JS, LLC.
40019  *
40020  * Originally Released Under LGPL - original licence link has changed is not relivant.
40021  *
40022  * Fork - LGPL
40023  * <script type="text/javascript">
40024  */
40025 /**
40026  * @class Roo.menu.Item
40027  * @extends Roo.menu.BaseItem
40028  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
40029  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
40030  * activation and click handling.
40031  * @constructor
40032  * Creates a new Item
40033  * @param {Object} config Configuration options
40034  */
40035 Roo.menu.Item = function(config){
40036     Roo.menu.Item.superclass.constructor.call(this, config);
40037     if(this.menu){
40038         this.menu = Roo.menu.MenuMgr.get(this.menu);
40039     }
40040 };
40041 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
40042     /**
40043      * @cfg {Roo.menu.Menu} menu
40044      * A Sub menu
40045      */
40046     /**
40047      * @cfg {String} text
40048      * The text to show on the menu item.
40049      */
40050     text: '',
40051      /**
40052      * @cfg {String} html to render in menu
40053      * The text to show on the menu item (HTML version).
40054      */
40055     html: '',
40056     /**
40057      * @cfg {String} icon
40058      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
40059      */
40060     icon: undefined,
40061     /**
40062      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
40063      */
40064     itemCls : "x-menu-item",
40065     /**
40066      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
40067      */
40068     canActivate : true,
40069     /**
40070      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
40071      */
40072     showDelay: 200,
40073     // doc'd in BaseItem
40074     hideDelay: 200,
40075
40076     // private
40077     ctype: "Roo.menu.Item",
40078     
40079     // private
40080     onRender : function(container, position){
40081         var el = document.createElement("a");
40082         el.hideFocus = true;
40083         el.unselectable = "on";
40084         el.href = this.href || "#";
40085         if(this.hrefTarget){
40086             el.target = this.hrefTarget;
40087         }
40088         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
40089         
40090         var html = this.html.length ? this.html  : String.format('{0}',this.text);
40091         
40092         el.innerHTML = String.format(
40093                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
40094                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
40095         this.el = el;
40096         Roo.menu.Item.superclass.onRender.call(this, container, position);
40097     },
40098
40099     /**
40100      * Sets the text to display in this menu item
40101      * @param {String} text The text to display
40102      * @param {Boolean} isHTML true to indicate text is pure html.
40103      */
40104     setText : function(text, isHTML){
40105         if (isHTML) {
40106             this.html = text;
40107         } else {
40108             this.text = text;
40109             this.html = '';
40110         }
40111         if(this.rendered){
40112             var html = this.html.length ? this.html  : String.format('{0}',this.text);
40113      
40114             this.el.update(String.format(
40115                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
40116                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
40117             this.parentMenu.autoWidth();
40118         }
40119     },
40120
40121     // private
40122     handleClick : function(e){
40123         if(!this.href){ // if no link defined, stop the event automatically
40124             e.stopEvent();
40125         }
40126         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
40127     },
40128
40129     // private
40130     activate : function(autoExpand){
40131         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
40132             this.focus();
40133             if(autoExpand){
40134                 this.expandMenu();
40135             }
40136         }
40137         return true;
40138     },
40139
40140     // private
40141     shouldDeactivate : function(e){
40142         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
40143             if(this.menu && this.menu.isVisible()){
40144                 return !this.menu.getEl().getRegion().contains(e.getPoint());
40145             }
40146             return true;
40147         }
40148         return false;
40149     },
40150
40151     // private
40152     deactivate : function(){
40153         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
40154         this.hideMenu();
40155     },
40156
40157     // private
40158     expandMenu : function(autoActivate){
40159         if(!this.disabled && this.menu){
40160             clearTimeout(this.hideTimer);
40161             delete this.hideTimer;
40162             if(!this.menu.isVisible() && !this.showTimer){
40163                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
40164             }else if (this.menu.isVisible() && autoActivate){
40165                 this.menu.tryActivate(0, 1);
40166             }
40167         }
40168     },
40169
40170     // private
40171     deferExpand : function(autoActivate){
40172         delete this.showTimer;
40173         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
40174         if(autoActivate){
40175             this.menu.tryActivate(0, 1);
40176         }
40177     },
40178
40179     // private
40180     hideMenu : function(){
40181         clearTimeout(this.showTimer);
40182         delete this.showTimer;
40183         if(!this.hideTimer && this.menu && this.menu.isVisible()){
40184             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
40185         }
40186     },
40187
40188     // private
40189     deferHide : function(){
40190         delete this.hideTimer;
40191         this.menu.hide();
40192     }
40193 });/*
40194  * Based on:
40195  * Ext JS Library 1.1.1
40196  * Copyright(c) 2006-2007, Ext JS, LLC.
40197  *
40198  * Originally Released Under LGPL - original licence link has changed is not relivant.
40199  *
40200  * Fork - LGPL
40201  * <script type="text/javascript">
40202  */
40203  
40204 /**
40205  * @class Roo.menu.CheckItem
40206  * @extends Roo.menu.Item
40207  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
40208  * @constructor
40209  * Creates a new CheckItem
40210  * @param {Object} config Configuration options
40211  */
40212 Roo.menu.CheckItem = function(config){
40213     Roo.menu.CheckItem.superclass.constructor.call(this, config);
40214     this.addEvents({
40215         /**
40216          * @event beforecheckchange
40217          * Fires before the checked value is set, providing an opportunity to cancel if needed
40218          * @param {Roo.menu.CheckItem} this
40219          * @param {Boolean} checked The new checked value that will be set
40220          */
40221         "beforecheckchange" : true,
40222         /**
40223          * @event checkchange
40224          * Fires after the checked value has been set
40225          * @param {Roo.menu.CheckItem} this
40226          * @param {Boolean} checked The checked value that was set
40227          */
40228         "checkchange" : true
40229     });
40230     if(this.checkHandler){
40231         this.on('checkchange', this.checkHandler, this.scope);
40232     }
40233 };
40234 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
40235     /**
40236      * @cfg {String} group
40237      * All check items with the same group name will automatically be grouped into a single-select
40238      * radio button group (defaults to '')
40239      */
40240     /**
40241      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
40242      */
40243     itemCls : "x-menu-item x-menu-check-item",
40244     /**
40245      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
40246      */
40247     groupClass : "x-menu-group-item",
40248
40249     /**
40250      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
40251      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
40252      * initialized with checked = true will be rendered as checked.
40253      */
40254     checked: false,
40255
40256     // private
40257     ctype: "Roo.menu.CheckItem",
40258
40259     // private
40260     onRender : function(c){
40261         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
40262         if(this.group){
40263             this.el.addClass(this.groupClass);
40264         }
40265         Roo.menu.MenuMgr.registerCheckable(this);
40266         if(this.checked){
40267             this.checked = false;
40268             this.setChecked(true, true);
40269         }
40270     },
40271
40272     // private
40273     destroy : function(){
40274         if(this.rendered){
40275             Roo.menu.MenuMgr.unregisterCheckable(this);
40276         }
40277         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
40278     },
40279
40280     /**
40281      * Set the checked state of this item
40282      * @param {Boolean} checked The new checked value
40283      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
40284      */
40285     setChecked : function(state, suppressEvent){
40286         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
40287             if(this.container){
40288                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
40289             }
40290             this.checked = state;
40291             if(suppressEvent !== true){
40292                 this.fireEvent("checkchange", this, state);
40293             }
40294         }
40295     },
40296
40297     // private
40298     handleClick : function(e){
40299        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
40300            this.setChecked(!this.checked);
40301        }
40302        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
40303     }
40304 });/*
40305  * Based on:
40306  * Ext JS Library 1.1.1
40307  * Copyright(c) 2006-2007, Ext JS, LLC.
40308  *
40309  * Originally Released Under LGPL - original licence link has changed is not relivant.
40310  *
40311  * Fork - LGPL
40312  * <script type="text/javascript">
40313  */
40314  
40315 /**
40316  * @class Roo.menu.DateItem
40317  * @extends Roo.menu.Adapter
40318  * A menu item that wraps the {@link Roo.DatPicker} component.
40319  * @constructor
40320  * Creates a new DateItem
40321  * @param {Object} config Configuration options
40322  */
40323 Roo.menu.DateItem = function(config){
40324     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
40325     /** The Roo.DatePicker object @type Roo.DatePicker */
40326     this.picker = this.component;
40327     this.addEvents({select: true});
40328     
40329     this.picker.on("render", function(picker){
40330         picker.getEl().swallowEvent("click");
40331         picker.container.addClass("x-menu-date-item");
40332     });
40333
40334     this.picker.on("select", this.onSelect, this);
40335 };
40336
40337 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
40338     // private
40339     onSelect : function(picker, date){
40340         this.fireEvent("select", this, date, picker);
40341         Roo.menu.DateItem.superclass.handleClick.call(this);
40342     }
40343 });/*
40344  * Based on:
40345  * Ext JS Library 1.1.1
40346  * Copyright(c) 2006-2007, Ext JS, LLC.
40347  *
40348  * Originally Released Under LGPL - original licence link has changed is not relivant.
40349  *
40350  * Fork - LGPL
40351  * <script type="text/javascript">
40352  */
40353  
40354 /**
40355  * @class Roo.menu.ColorItem
40356  * @extends Roo.menu.Adapter
40357  * A menu item that wraps the {@link Roo.ColorPalette} component.
40358  * @constructor
40359  * Creates a new ColorItem
40360  * @param {Object} config Configuration options
40361  */
40362 Roo.menu.ColorItem = function(config){
40363     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
40364     /** The Roo.ColorPalette object @type Roo.ColorPalette */
40365     this.palette = this.component;
40366     this.relayEvents(this.palette, ["select"]);
40367     if(this.selectHandler){
40368         this.on('select', this.selectHandler, this.scope);
40369     }
40370 };
40371 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
40372  * Based on:
40373  * Ext JS Library 1.1.1
40374  * Copyright(c) 2006-2007, Ext JS, LLC.
40375  *
40376  * Originally Released Under LGPL - original licence link has changed is not relivant.
40377  *
40378  * Fork - LGPL
40379  * <script type="text/javascript">
40380  */
40381  
40382
40383 /**
40384  * @class Roo.menu.DateMenu
40385  * @extends Roo.menu.Menu
40386  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
40387  * @constructor
40388  * Creates a new DateMenu
40389  * @param {Object} config Configuration options
40390  */
40391 Roo.menu.DateMenu = function(config){
40392     Roo.menu.DateMenu.superclass.constructor.call(this, config);
40393     this.plain = true;
40394     var di = new Roo.menu.DateItem(config);
40395     this.add(di);
40396     /**
40397      * The {@link Roo.DatePicker} instance for this DateMenu
40398      * @type DatePicker
40399      */
40400     this.picker = di.picker;
40401     /**
40402      * @event select
40403      * @param {DatePicker} picker
40404      * @param {Date} date
40405      */
40406     this.relayEvents(di, ["select"]);
40407     this.on('beforeshow', function(){
40408         if(this.picker){
40409             this.picker.hideMonthPicker(false);
40410         }
40411     }, this);
40412 };
40413 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
40414     cls:'x-date-menu'
40415 });/*
40416  * Based on:
40417  * Ext JS Library 1.1.1
40418  * Copyright(c) 2006-2007, Ext JS, LLC.
40419  *
40420  * Originally Released Under LGPL - original licence link has changed is not relivant.
40421  *
40422  * Fork - LGPL
40423  * <script type="text/javascript">
40424  */
40425  
40426
40427 /**
40428  * @class Roo.menu.ColorMenu
40429  * @extends Roo.menu.Menu
40430  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
40431  * @constructor
40432  * Creates a new ColorMenu
40433  * @param {Object} config Configuration options
40434  */
40435 Roo.menu.ColorMenu = function(config){
40436     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
40437     this.plain = true;
40438     var ci = new Roo.menu.ColorItem(config);
40439     this.add(ci);
40440     /**
40441      * The {@link Roo.ColorPalette} instance for this ColorMenu
40442      * @type ColorPalette
40443      */
40444     this.palette = ci.palette;
40445     /**
40446      * @event select
40447      * @param {ColorPalette} palette
40448      * @param {String} color
40449      */
40450     this.relayEvents(ci, ["select"]);
40451 };
40452 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
40453  * Based on:
40454  * Ext JS Library 1.1.1
40455  * Copyright(c) 2006-2007, Ext JS, LLC.
40456  *
40457  * Originally Released Under LGPL - original licence link has changed is not relivant.
40458  *
40459  * Fork - LGPL
40460  * <script type="text/javascript">
40461  */
40462  
40463 /**
40464  * @class Roo.form.TextItem
40465  * @extends Roo.BoxComponent
40466  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40467  * @constructor
40468  * Creates a new TextItem
40469  * @param {Object} config Configuration options
40470  */
40471 Roo.form.TextItem = function(config){
40472     Roo.form.TextItem.superclass.constructor.call(this, config);
40473 };
40474
40475 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
40476     
40477     /**
40478      * @cfg {String} tag the tag for this item (default div)
40479      */
40480     tag : 'div',
40481     /**
40482      * @cfg {String} html the content for this item
40483      */
40484     html : '',
40485     
40486     getAutoCreate : function()
40487     {
40488         var cfg = {
40489             id: this.id,
40490             tag: this.tag,
40491             html: this.html,
40492             cls: 'x-form-item'
40493         };
40494         
40495         return cfg;
40496         
40497     },
40498     
40499     onRender : function(ct, position)
40500     {
40501         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
40502         
40503         if(!this.el){
40504             var cfg = this.getAutoCreate();
40505             if(!cfg.name){
40506                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40507             }
40508             if (!cfg.name.length) {
40509                 delete cfg.name;
40510             }
40511             this.el = ct.createChild(cfg, position);
40512         }
40513     },
40514     /*
40515      * setHTML
40516      * @param {String} html update the Contents of the element.
40517      */
40518     setHTML : function(html)
40519     {
40520         this.fieldEl.dom.innerHTML = html;
40521     }
40522     
40523 });/*
40524  * Based on:
40525  * Ext JS Library 1.1.1
40526  * Copyright(c) 2006-2007, Ext JS, LLC.
40527  *
40528  * Originally Released Under LGPL - original licence link has changed is not relivant.
40529  *
40530  * Fork - LGPL
40531  * <script type="text/javascript">
40532  */
40533  
40534 /**
40535  * @class Roo.form.Field
40536  * @extends Roo.BoxComponent
40537  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40538  * @constructor
40539  * Creates a new Field
40540  * @param {Object} config Configuration options
40541  */
40542 Roo.form.Field = function(config){
40543     Roo.form.Field.superclass.constructor.call(this, config);
40544 };
40545
40546 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
40547     /**
40548      * @cfg {String} fieldLabel Label to use when rendering a form.
40549      */
40550        /**
40551      * @cfg {String} qtip Mouse over tip
40552      */
40553      
40554     /**
40555      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
40556      */
40557     invalidClass : "x-form-invalid",
40558     /**
40559      * @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")
40560      */
40561     invalidText : "The value in this field is invalid",
40562     /**
40563      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
40564      */
40565     focusClass : "x-form-focus",
40566     /**
40567      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
40568       automatic validation (defaults to "keyup").
40569      */
40570     validationEvent : "keyup",
40571     /**
40572      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
40573      */
40574     validateOnBlur : true,
40575     /**
40576      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
40577      */
40578     validationDelay : 250,
40579     /**
40580      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40581      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
40582      */
40583     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
40584     /**
40585      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
40586      */
40587     fieldClass : "x-form-field",
40588     /**
40589      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
40590      *<pre>
40591 Value         Description
40592 -----------   ----------------------------------------------------------------------
40593 qtip          Display a quick tip when the user hovers over the field
40594 title         Display a default browser title attribute popup
40595 under         Add a block div beneath the field containing the error text
40596 side          Add an error icon to the right of the field with a popup on hover
40597 [element id]  Add the error text directly to the innerHTML of the specified element
40598 </pre>
40599      */
40600     msgTarget : 'qtip',
40601     /**
40602      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
40603      */
40604     msgFx : 'normal',
40605
40606     /**
40607      * @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.
40608      */
40609     readOnly : false,
40610
40611     /**
40612      * @cfg {Boolean} disabled True to disable the field (defaults to false).
40613      */
40614     disabled : false,
40615
40616     /**
40617      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
40618      */
40619     inputType : undefined,
40620     
40621     /**
40622      * @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).
40623          */
40624         tabIndex : undefined,
40625         
40626     // private
40627     isFormField : true,
40628
40629     // private
40630     hasFocus : false,
40631     /**
40632      * @property {Roo.Element} fieldEl
40633      * Element Containing the rendered Field (with label etc.)
40634      */
40635     /**
40636      * @cfg {Mixed} value A value to initialize this field with.
40637      */
40638     value : undefined,
40639
40640     /**
40641      * @cfg {String} name The field's HTML name attribute.
40642      */
40643     /**
40644      * @cfg {String} cls A CSS class to apply to the field's underlying element.
40645      */
40646     // private
40647     loadedValue : false,
40648      
40649      
40650         // private ??
40651         initComponent : function(){
40652         Roo.form.Field.superclass.initComponent.call(this);
40653         this.addEvents({
40654             /**
40655              * @event focus
40656              * Fires when this field receives input focus.
40657              * @param {Roo.form.Field} this
40658              */
40659             focus : true,
40660             /**
40661              * @event blur
40662              * Fires when this field loses input focus.
40663              * @param {Roo.form.Field} this
40664              */
40665             blur : true,
40666             /**
40667              * @event specialkey
40668              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
40669              * {@link Roo.EventObject#getKey} to determine which key was pressed.
40670              * @param {Roo.form.Field} this
40671              * @param {Roo.EventObject} e The event object
40672              */
40673             specialkey : true,
40674             /**
40675              * @event change
40676              * Fires just before the field blurs if the field value has changed.
40677              * @param {Roo.form.Field} this
40678              * @param {Mixed} newValue The new value
40679              * @param {Mixed} oldValue The original value
40680              */
40681             change : true,
40682             /**
40683              * @event invalid
40684              * Fires after the field has been marked as invalid.
40685              * @param {Roo.form.Field} this
40686              * @param {String} msg The validation message
40687              */
40688             invalid : true,
40689             /**
40690              * @event valid
40691              * Fires after the field has been validated with no errors.
40692              * @param {Roo.form.Field} this
40693              */
40694             valid : true,
40695              /**
40696              * @event keyup
40697              * Fires after the key up
40698              * @param {Roo.form.Field} this
40699              * @param {Roo.EventObject}  e The event Object
40700              */
40701             keyup : true
40702         });
40703     },
40704
40705     /**
40706      * Returns the name attribute of the field if available
40707      * @return {String} name The field name
40708      */
40709     getName: function(){
40710          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
40711     },
40712
40713     // private
40714     onRender : function(ct, position){
40715         Roo.form.Field.superclass.onRender.call(this, ct, position);
40716         if(!this.el){
40717             var cfg = this.getAutoCreate();
40718             if(!cfg.name){
40719                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40720             }
40721             if (!cfg.name.length) {
40722                 delete cfg.name;
40723             }
40724             if(this.inputType){
40725                 cfg.type = this.inputType;
40726             }
40727             this.el = ct.createChild(cfg, position);
40728         }
40729         var type = this.el.dom.type;
40730         if(type){
40731             if(type == 'password'){
40732                 type = 'text';
40733             }
40734             this.el.addClass('x-form-'+type);
40735         }
40736         if(this.readOnly){
40737             this.el.dom.readOnly = true;
40738         }
40739         if(this.tabIndex !== undefined){
40740             this.el.dom.setAttribute('tabIndex', this.tabIndex);
40741         }
40742
40743         this.el.addClass([this.fieldClass, this.cls]);
40744         this.initValue();
40745     },
40746
40747     /**
40748      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
40749      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
40750      * @return {Roo.form.Field} this
40751      */
40752     applyTo : function(target){
40753         this.allowDomMove = false;
40754         this.el = Roo.get(target);
40755         this.render(this.el.dom.parentNode);
40756         return this;
40757     },
40758
40759     // private
40760     initValue : function(){
40761         if(this.value !== undefined){
40762             this.setValue(this.value);
40763         }else if(this.el.dom.value.length > 0){
40764             this.setValue(this.el.dom.value);
40765         }
40766     },
40767
40768     /**
40769      * Returns true if this field has been changed since it was originally loaded and is not disabled.
40770      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
40771      */
40772     isDirty : function() {
40773         if(this.disabled) {
40774             return false;
40775         }
40776         return String(this.getValue()) !== String(this.originalValue);
40777     },
40778
40779     /**
40780      * stores the current value in loadedValue
40781      */
40782     resetHasChanged : function()
40783     {
40784         this.loadedValue = String(this.getValue());
40785     },
40786     /**
40787      * checks the current value against the 'loaded' value.
40788      * Note - will return false if 'resetHasChanged' has not been called first.
40789      */
40790     hasChanged : function()
40791     {
40792         if(this.disabled || this.readOnly) {
40793             return false;
40794         }
40795         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
40796     },
40797     
40798     
40799     
40800     // private
40801     afterRender : function(){
40802         Roo.form.Field.superclass.afterRender.call(this);
40803         this.initEvents();
40804     },
40805
40806     // private
40807     fireKey : function(e){
40808         //Roo.log('field ' + e.getKey());
40809         if(e.isNavKeyPress()){
40810             this.fireEvent("specialkey", this, e);
40811         }
40812     },
40813
40814     /**
40815      * Resets the current field value to the originally loaded value and clears any validation messages
40816      */
40817     reset : function(){
40818         this.setValue(this.resetValue);
40819         this.originalValue = this.getValue();
40820         this.clearInvalid();
40821     },
40822
40823     // private
40824     initEvents : function(){
40825         // safari killled keypress - so keydown is now used..
40826         this.el.on("keydown" , this.fireKey,  this);
40827         this.el.on("focus", this.onFocus,  this);
40828         this.el.on("blur", this.onBlur,  this);
40829         this.el.relayEvent('keyup', this);
40830
40831         // reference to original value for reset
40832         this.originalValue = this.getValue();
40833         this.resetValue =  this.getValue();
40834     },
40835
40836     // private
40837     onFocus : function(){
40838         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40839             this.el.addClass(this.focusClass);
40840         }
40841         if(!this.hasFocus){
40842             this.hasFocus = true;
40843             this.startValue = this.getValue();
40844             this.fireEvent("focus", this);
40845         }
40846     },
40847
40848     beforeBlur : Roo.emptyFn,
40849
40850     // private
40851     onBlur : function(){
40852         this.beforeBlur();
40853         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40854             this.el.removeClass(this.focusClass);
40855         }
40856         this.hasFocus = false;
40857         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
40858             this.validate();
40859         }
40860         var v = this.getValue();
40861         if(String(v) !== String(this.startValue)){
40862             this.fireEvent('change', this, v, this.startValue);
40863         }
40864         this.fireEvent("blur", this);
40865     },
40866
40867     /**
40868      * Returns whether or not the field value is currently valid
40869      * @param {Boolean} preventMark True to disable marking the field invalid
40870      * @return {Boolean} True if the value is valid, else false
40871      */
40872     isValid : function(preventMark){
40873         if(this.disabled){
40874             return true;
40875         }
40876         var restore = this.preventMark;
40877         this.preventMark = preventMark === true;
40878         var v = this.validateValue(this.processValue(this.getRawValue()));
40879         this.preventMark = restore;
40880         return v;
40881     },
40882
40883     /**
40884      * Validates the field value
40885      * @return {Boolean} True if the value is valid, else false
40886      */
40887     validate : function(){
40888         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
40889             this.clearInvalid();
40890             return true;
40891         }
40892         return false;
40893     },
40894
40895     processValue : function(value){
40896         return value;
40897     },
40898
40899     // private
40900     // Subclasses should provide the validation implementation by overriding this
40901     validateValue : function(value){
40902         return true;
40903     },
40904
40905     /**
40906      * Mark this field as invalid
40907      * @param {String} msg The validation message
40908      */
40909     markInvalid : function(msg){
40910         if(!this.rendered || this.preventMark){ // not rendered
40911             return;
40912         }
40913         
40914         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40915         
40916         obj.el.addClass(this.invalidClass);
40917         msg = msg || this.invalidText;
40918         switch(this.msgTarget){
40919             case 'qtip':
40920                 obj.el.dom.qtip = msg;
40921                 obj.el.dom.qclass = 'x-form-invalid-tip';
40922                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
40923                     Roo.QuickTips.enable();
40924                 }
40925                 break;
40926             case 'title':
40927                 this.el.dom.title = msg;
40928                 break;
40929             case 'under':
40930                 if(!this.errorEl){
40931                     var elp = this.el.findParent('.x-form-element', 5, true);
40932                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
40933                     this.errorEl.setWidth(elp.getWidth(true)-20);
40934                 }
40935                 this.errorEl.update(msg);
40936                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
40937                 break;
40938             case 'side':
40939                 if(!this.errorIcon){
40940                     var elp = this.el.findParent('.x-form-element', 5, true);
40941                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
40942                 }
40943                 this.alignErrorIcon();
40944                 this.errorIcon.dom.qtip = msg;
40945                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
40946                 this.errorIcon.show();
40947                 this.on('resize', this.alignErrorIcon, this);
40948                 break;
40949             default:
40950                 var t = Roo.getDom(this.msgTarget);
40951                 t.innerHTML = msg;
40952                 t.style.display = this.msgDisplay;
40953                 break;
40954         }
40955         this.fireEvent('invalid', this, msg);
40956     },
40957
40958     // private
40959     alignErrorIcon : function(){
40960         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
40961     },
40962
40963     /**
40964      * Clear any invalid styles/messages for this field
40965      */
40966     clearInvalid : function(){
40967         if(!this.rendered || this.preventMark){ // not rendered
40968             return;
40969         }
40970         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40971         
40972         obj.el.removeClass(this.invalidClass);
40973         switch(this.msgTarget){
40974             case 'qtip':
40975                 obj.el.dom.qtip = '';
40976                 break;
40977             case 'title':
40978                 this.el.dom.title = '';
40979                 break;
40980             case 'under':
40981                 if(this.errorEl){
40982                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
40983                 }
40984                 break;
40985             case 'side':
40986                 if(this.errorIcon){
40987                     this.errorIcon.dom.qtip = '';
40988                     this.errorIcon.hide();
40989                     this.un('resize', this.alignErrorIcon, this);
40990                 }
40991                 break;
40992             default:
40993                 var t = Roo.getDom(this.msgTarget);
40994                 t.innerHTML = '';
40995                 t.style.display = 'none';
40996                 break;
40997         }
40998         this.fireEvent('valid', this);
40999     },
41000
41001     /**
41002      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
41003      * @return {Mixed} value The field value
41004      */
41005     getRawValue : function(){
41006         var v = this.el.getValue();
41007         
41008         return v;
41009     },
41010
41011     /**
41012      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
41013      * @return {Mixed} value The field value
41014      */
41015     getValue : function(){
41016         var v = this.el.getValue();
41017          
41018         return v;
41019     },
41020
41021     /**
41022      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
41023      * @param {Mixed} value The value to set
41024      */
41025     setRawValue : function(v){
41026         return this.el.dom.value = (v === null || v === undefined ? '' : v);
41027     },
41028
41029     /**
41030      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
41031      * @param {Mixed} value The value to set
41032      */
41033     setValue : function(v){
41034         this.value = v;
41035         if(this.rendered){
41036             this.el.dom.value = (v === null || v === undefined ? '' : v);
41037              this.validate();
41038         }
41039     },
41040
41041     adjustSize : function(w, h){
41042         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
41043         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
41044         return s;
41045     },
41046
41047     adjustWidth : function(tag, w){
41048         tag = tag.toLowerCase();
41049         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
41050             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
41051                 if(tag == 'input'){
41052                     return w + 2;
41053                 }
41054                 if(tag == 'textarea'){
41055                     return w-2;
41056                 }
41057             }else if(Roo.isOpera){
41058                 if(tag == 'input'){
41059                     return w + 2;
41060                 }
41061                 if(tag == 'textarea'){
41062                     return w-2;
41063                 }
41064             }
41065         }
41066         return w;
41067     }
41068 });
41069
41070
41071 // anything other than normal should be considered experimental
41072 Roo.form.Field.msgFx = {
41073     normal : {
41074         show: function(msgEl, f){
41075             msgEl.setDisplayed('block');
41076         },
41077
41078         hide : function(msgEl, f){
41079             msgEl.setDisplayed(false).update('');
41080         }
41081     },
41082
41083     slide : {
41084         show: function(msgEl, f){
41085             msgEl.slideIn('t', {stopFx:true});
41086         },
41087
41088         hide : function(msgEl, f){
41089             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
41090         }
41091     },
41092
41093     slideRight : {
41094         show: function(msgEl, f){
41095             msgEl.fixDisplay();
41096             msgEl.alignTo(f.el, 'tl-tr');
41097             msgEl.slideIn('l', {stopFx:true});
41098         },
41099
41100         hide : function(msgEl, f){
41101             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
41102         }
41103     }
41104 };/*
41105  * Based on:
41106  * Ext JS Library 1.1.1
41107  * Copyright(c) 2006-2007, Ext JS, LLC.
41108  *
41109  * Originally Released Under LGPL - original licence link has changed is not relivant.
41110  *
41111  * Fork - LGPL
41112  * <script type="text/javascript">
41113  */
41114  
41115
41116 /**
41117  * @class Roo.form.TextField
41118  * @extends Roo.form.Field
41119  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
41120  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
41121  * @constructor
41122  * Creates a new TextField
41123  * @param {Object} config Configuration options
41124  */
41125 Roo.form.TextField = function(config){
41126     Roo.form.TextField.superclass.constructor.call(this, config);
41127     this.addEvents({
41128         /**
41129          * @event autosize
41130          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
41131          * according to the default logic, but this event provides a hook for the developer to apply additional
41132          * logic at runtime to resize the field if needed.
41133              * @param {Roo.form.Field} this This text field
41134              * @param {Number} width The new field width
41135              */
41136         autosize : true
41137     });
41138 };
41139
41140 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
41141     /**
41142      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
41143      */
41144     grow : false,
41145     /**
41146      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
41147      */
41148     growMin : 30,
41149     /**
41150      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
41151      */
41152     growMax : 800,
41153     /**
41154      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
41155      */
41156     vtype : null,
41157     /**
41158      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
41159      */
41160     maskRe : null,
41161     /**
41162      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
41163      */
41164     disableKeyFilter : false,
41165     /**
41166      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
41167      */
41168     allowBlank : true,
41169     /**
41170      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
41171      */
41172     minLength : 0,
41173     /**
41174      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
41175      */
41176     maxLength : Number.MAX_VALUE,
41177     /**
41178      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
41179      */
41180     minLengthText : "The minimum length for this field is {0}",
41181     /**
41182      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
41183      */
41184     maxLengthText : "The maximum length for this field is {0}",
41185     /**
41186      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
41187      */
41188     selectOnFocus : false,
41189     /**
41190      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
41191      */    
41192     allowLeadingSpace : false,
41193     /**
41194      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
41195      */
41196     blankText : "This field is required",
41197     /**
41198      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
41199      * If available, this function will be called only after the basic validators all return true, and will be passed the
41200      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
41201      */
41202     validator : null,
41203     /**
41204      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
41205      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
41206      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
41207      */
41208     regex : null,
41209     /**
41210      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
41211      */
41212     regexText : "",
41213     /**
41214      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
41215      */
41216     emptyText : null,
41217    
41218
41219     // private
41220     initEvents : function()
41221     {
41222         if (this.emptyText) {
41223             this.el.attr('placeholder', this.emptyText);
41224         }
41225         
41226         Roo.form.TextField.superclass.initEvents.call(this);
41227         if(this.validationEvent == 'keyup'){
41228             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41229             this.el.on('keyup', this.filterValidation, this);
41230         }
41231         else if(this.validationEvent !== false){
41232             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41233         }
41234         
41235         if(this.selectOnFocus){
41236             this.on("focus", this.preFocus, this);
41237         }
41238         if (!this.allowLeadingSpace) {
41239             this.on('blur', this.cleanLeadingSpace, this);
41240         }
41241         
41242         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41243             this.el.on("keypress", this.filterKeys, this);
41244         }
41245         if(this.grow){
41246             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
41247             this.el.on("click", this.autoSize,  this);
41248         }
41249         if(this.el.is('input[type=password]') && Roo.isSafari){
41250             this.el.on('keydown', this.SafariOnKeyDown, this);
41251         }
41252     },
41253
41254     processValue : function(value){
41255         if(this.stripCharsRe){
41256             var newValue = value.replace(this.stripCharsRe, '');
41257             if(newValue !== value){
41258                 this.setRawValue(newValue);
41259                 return newValue;
41260             }
41261         }
41262         return value;
41263     },
41264
41265     filterValidation : function(e){
41266         if(!e.isNavKeyPress()){
41267             this.validationTask.delay(this.validationDelay);
41268         }
41269     },
41270
41271     // private
41272     onKeyUp : function(e){
41273         if(!e.isNavKeyPress()){
41274             this.autoSize();
41275         }
41276     },
41277     // private - clean the leading white space
41278     cleanLeadingSpace : function(e)
41279     {
41280         if ( this.inputType == 'file') {
41281             return;
41282         }
41283         
41284         this.setValue((this.getValue() + '').replace(/^\s+/,''));
41285     },
41286     /**
41287      * Resets the current field value to the originally-loaded value and clears any validation messages.
41288      *  
41289      */
41290     reset : function(){
41291         Roo.form.TextField.superclass.reset.call(this);
41292        
41293     }, 
41294     // private
41295     preFocus : function(){
41296         
41297         if(this.selectOnFocus){
41298             this.el.dom.select();
41299         }
41300     },
41301
41302     
41303     // private
41304     filterKeys : function(e){
41305         var k = e.getKey();
41306         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
41307             return;
41308         }
41309         var c = e.getCharCode(), cc = String.fromCharCode(c);
41310         if(Roo.isIE && (e.isSpecialKey() || !cc)){
41311             return;
41312         }
41313         if(!this.maskRe.test(cc)){
41314             e.stopEvent();
41315         }
41316     },
41317
41318     setValue : function(v){
41319         
41320         Roo.form.TextField.superclass.setValue.apply(this, arguments);
41321         
41322         this.autoSize();
41323     },
41324
41325     /**
41326      * Validates a value according to the field's validation rules and marks the field as invalid
41327      * if the validation fails
41328      * @param {Mixed} value The value to validate
41329      * @return {Boolean} True if the value is valid, else false
41330      */
41331     validateValue : function(value){
41332         if(value.length < 1)  { // if it's blank
41333              if(this.allowBlank){
41334                 this.clearInvalid();
41335                 return true;
41336              }else{
41337                 this.markInvalid(this.blankText);
41338                 return false;
41339              }
41340         }
41341         if(value.length < this.minLength){
41342             this.markInvalid(String.format(this.minLengthText, this.minLength));
41343             return false;
41344         }
41345         if(value.length > this.maxLength){
41346             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
41347             return false;
41348         }
41349         if(this.vtype){
41350             var vt = Roo.form.VTypes;
41351             if(!vt[this.vtype](value, this)){
41352                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
41353                 return false;
41354             }
41355         }
41356         if(typeof this.validator == "function"){
41357             var msg = this.validator(value);
41358             if(msg !== true){
41359                 this.markInvalid(msg);
41360                 return false;
41361             }
41362         }
41363         if(this.regex && !this.regex.test(value)){
41364             this.markInvalid(this.regexText);
41365             return false;
41366         }
41367         return true;
41368     },
41369
41370     /**
41371      * Selects text in this field
41372      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
41373      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
41374      */
41375     selectText : function(start, end){
41376         var v = this.getRawValue();
41377         if(v.length > 0){
41378             start = start === undefined ? 0 : start;
41379             end = end === undefined ? v.length : end;
41380             var d = this.el.dom;
41381             if(d.setSelectionRange){
41382                 d.setSelectionRange(start, end);
41383             }else if(d.createTextRange){
41384                 var range = d.createTextRange();
41385                 range.moveStart("character", start);
41386                 range.moveEnd("character", v.length-end);
41387                 range.select();
41388             }
41389         }
41390     },
41391
41392     /**
41393      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
41394      * This only takes effect if grow = true, and fires the autosize event.
41395      */
41396     autoSize : function(){
41397         if(!this.grow || !this.rendered){
41398             return;
41399         }
41400         if(!this.metrics){
41401             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
41402         }
41403         var el = this.el;
41404         var v = el.dom.value;
41405         var d = document.createElement('div');
41406         d.appendChild(document.createTextNode(v));
41407         v = d.innerHTML;
41408         d = null;
41409         v += "&#160;";
41410         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
41411         this.el.setWidth(w);
41412         this.fireEvent("autosize", this, w);
41413     },
41414     
41415     // private
41416     SafariOnKeyDown : function(event)
41417     {
41418         // this is a workaround for a password hang bug on chrome/ webkit.
41419         
41420         var isSelectAll = false;
41421         
41422         if(this.el.dom.selectionEnd > 0){
41423             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
41424         }
41425         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
41426             event.preventDefault();
41427             this.setValue('');
41428             return;
41429         }
41430         
41431         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
41432             
41433             event.preventDefault();
41434             // this is very hacky as keydown always get's upper case.
41435             
41436             var cc = String.fromCharCode(event.getCharCode());
41437             
41438             
41439             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
41440             
41441         }
41442         
41443         
41444     }
41445 });/*
41446  * Based on:
41447  * Ext JS Library 1.1.1
41448  * Copyright(c) 2006-2007, Ext JS, LLC.
41449  *
41450  * Originally Released Under LGPL - original licence link has changed is not relivant.
41451  *
41452  * Fork - LGPL
41453  * <script type="text/javascript">
41454  */
41455  
41456 /**
41457  * @class Roo.form.Hidden
41458  * @extends Roo.form.TextField
41459  * Simple Hidden element used on forms 
41460  * 
41461  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
41462  * 
41463  * @constructor
41464  * Creates a new Hidden form element.
41465  * @param {Object} config Configuration options
41466  */
41467
41468
41469
41470 // easy hidden field...
41471 Roo.form.Hidden = function(config){
41472     Roo.form.Hidden.superclass.constructor.call(this, config);
41473 };
41474   
41475 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
41476     fieldLabel:      '',
41477     inputType:      'hidden',
41478     width:          50,
41479     allowBlank:     true,
41480     labelSeparator: '',
41481     hidden:         true,
41482     itemCls :       'x-form-item-display-none'
41483
41484
41485 });
41486
41487
41488 /*
41489  * Based on:
41490  * Ext JS Library 1.1.1
41491  * Copyright(c) 2006-2007, Ext JS, LLC.
41492  *
41493  * Originally Released Under LGPL - original licence link has changed is not relivant.
41494  *
41495  * Fork - LGPL
41496  * <script type="text/javascript">
41497  */
41498  
41499 /**
41500  * @class Roo.form.TriggerField
41501  * @extends Roo.form.TextField
41502  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
41503  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
41504  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
41505  * for which you can provide a custom implementation.  For example:
41506  * <pre><code>
41507 var trigger = new Roo.form.TriggerField();
41508 trigger.onTriggerClick = myTriggerFn;
41509 trigger.applyTo('my-field');
41510 </code></pre>
41511  *
41512  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
41513  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
41514  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41515  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
41516  * @constructor
41517  * Create a new TriggerField.
41518  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
41519  * to the base TextField)
41520  */
41521 Roo.form.TriggerField = function(config){
41522     this.mimicing = false;
41523     Roo.form.TriggerField.superclass.constructor.call(this, config);
41524 };
41525
41526 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
41527     /**
41528      * @cfg {String} triggerClass A CSS class to apply to the trigger
41529      */
41530     /**
41531      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41532      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
41533      */
41534     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
41535     /**
41536      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
41537      */
41538     hideTrigger:false,
41539
41540     /** @cfg {Boolean} grow @hide */
41541     /** @cfg {Number} growMin @hide */
41542     /** @cfg {Number} growMax @hide */
41543
41544     /**
41545      * @hide 
41546      * @method
41547      */
41548     autoSize: Roo.emptyFn,
41549     // private
41550     monitorTab : true,
41551     // private
41552     deferHeight : true,
41553
41554     
41555     actionMode : 'wrap',
41556     // private
41557     onResize : function(w, h){
41558         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
41559         if(typeof w == 'number'){
41560             var x = w - this.trigger.getWidth();
41561             this.el.setWidth(this.adjustWidth('input', x));
41562             this.trigger.setStyle('left', x+'px');
41563         }
41564     },
41565
41566     // private
41567     adjustSize : Roo.BoxComponent.prototype.adjustSize,
41568
41569     // private
41570     getResizeEl : function(){
41571         return this.wrap;
41572     },
41573
41574     // private
41575     getPositionEl : function(){
41576         return this.wrap;
41577     },
41578
41579     // private
41580     alignErrorIcon : function(){
41581         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
41582     },
41583
41584     // private
41585     onRender : function(ct, position){
41586         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
41587         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
41588         this.trigger = this.wrap.createChild(this.triggerConfig ||
41589                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
41590         if(this.hideTrigger){
41591             this.trigger.setDisplayed(false);
41592         }
41593         this.initTrigger();
41594         if(!this.width){
41595             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
41596         }
41597     },
41598
41599     // private
41600     initTrigger : function(){
41601         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
41602         this.trigger.addClassOnOver('x-form-trigger-over');
41603         this.trigger.addClassOnClick('x-form-trigger-click');
41604     },
41605
41606     // private
41607     onDestroy : function(){
41608         if(this.trigger){
41609             this.trigger.removeAllListeners();
41610             this.trigger.remove();
41611         }
41612         if(this.wrap){
41613             this.wrap.remove();
41614         }
41615         Roo.form.TriggerField.superclass.onDestroy.call(this);
41616     },
41617
41618     // private
41619     onFocus : function(){
41620         Roo.form.TriggerField.superclass.onFocus.call(this);
41621         if(!this.mimicing){
41622             this.wrap.addClass('x-trigger-wrap-focus');
41623             this.mimicing = true;
41624             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
41625             if(this.monitorTab){
41626                 this.el.on("keydown", this.checkTab, this);
41627             }
41628         }
41629     },
41630
41631     // private
41632     checkTab : function(e){
41633         if(e.getKey() == e.TAB){
41634             this.triggerBlur();
41635         }
41636     },
41637
41638     // private
41639     onBlur : function(){
41640         // do nothing
41641     },
41642
41643     // private
41644     mimicBlur : function(e, t){
41645         if(!this.wrap.contains(t) && this.validateBlur()){
41646             this.triggerBlur();
41647         }
41648     },
41649
41650     // private
41651     triggerBlur : function(){
41652         this.mimicing = false;
41653         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
41654         if(this.monitorTab){
41655             this.el.un("keydown", this.checkTab, this);
41656         }
41657         this.wrap.removeClass('x-trigger-wrap-focus');
41658         Roo.form.TriggerField.superclass.onBlur.call(this);
41659     },
41660
41661     // private
41662     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
41663     validateBlur : function(e, t){
41664         return true;
41665     },
41666
41667     // private
41668     onDisable : function(){
41669         Roo.form.TriggerField.superclass.onDisable.call(this);
41670         if(this.wrap){
41671             this.wrap.addClass('x-item-disabled');
41672         }
41673     },
41674
41675     // private
41676     onEnable : function(){
41677         Roo.form.TriggerField.superclass.onEnable.call(this);
41678         if(this.wrap){
41679             this.wrap.removeClass('x-item-disabled');
41680         }
41681     },
41682
41683     // private
41684     onShow : function(){
41685         var ae = this.getActionEl();
41686         
41687         if(ae){
41688             ae.dom.style.display = '';
41689             ae.dom.style.visibility = 'visible';
41690         }
41691     },
41692
41693     // private
41694     
41695     onHide : function(){
41696         var ae = this.getActionEl();
41697         ae.dom.style.display = 'none';
41698     },
41699
41700     /**
41701      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
41702      * by an implementing function.
41703      * @method
41704      * @param {EventObject} e
41705      */
41706     onTriggerClick : Roo.emptyFn
41707 });
41708
41709 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
41710 // to be extended by an implementing class.  For an example of implementing this class, see the custom
41711 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
41712 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
41713     initComponent : function(){
41714         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
41715
41716         this.triggerConfig = {
41717             tag:'span', cls:'x-form-twin-triggers', cn:[
41718             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
41719             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
41720         ]};
41721     },
41722
41723     getTrigger : function(index){
41724         return this.triggers[index];
41725     },
41726
41727     initTrigger : function(){
41728         var ts = this.trigger.select('.x-form-trigger', true);
41729         this.wrap.setStyle('overflow', 'hidden');
41730         var triggerField = this;
41731         ts.each(function(t, all, index){
41732             t.hide = function(){
41733                 var w = triggerField.wrap.getWidth();
41734                 this.dom.style.display = 'none';
41735                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41736             };
41737             t.show = function(){
41738                 var w = triggerField.wrap.getWidth();
41739                 this.dom.style.display = '';
41740                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41741             };
41742             var triggerIndex = 'Trigger'+(index+1);
41743
41744             if(this['hide'+triggerIndex]){
41745                 t.dom.style.display = 'none';
41746             }
41747             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
41748             t.addClassOnOver('x-form-trigger-over');
41749             t.addClassOnClick('x-form-trigger-click');
41750         }, this);
41751         this.triggers = ts.elements;
41752     },
41753
41754     onTrigger1Click : Roo.emptyFn,
41755     onTrigger2Click : Roo.emptyFn
41756 });/*
41757  * Based on:
41758  * Ext JS Library 1.1.1
41759  * Copyright(c) 2006-2007, Ext JS, LLC.
41760  *
41761  * Originally Released Under LGPL - original licence link has changed is not relivant.
41762  *
41763  * Fork - LGPL
41764  * <script type="text/javascript">
41765  */
41766  
41767 /**
41768  * @class Roo.form.TextArea
41769  * @extends Roo.form.TextField
41770  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
41771  * support for auto-sizing.
41772  * @constructor
41773  * Creates a new TextArea
41774  * @param {Object} config Configuration options
41775  */
41776 Roo.form.TextArea = function(config){
41777     Roo.form.TextArea.superclass.constructor.call(this, config);
41778     // these are provided exchanges for backwards compat
41779     // minHeight/maxHeight were replaced by growMin/growMax to be
41780     // compatible with TextField growing config values
41781     if(this.minHeight !== undefined){
41782         this.growMin = this.minHeight;
41783     }
41784     if(this.maxHeight !== undefined){
41785         this.growMax = this.maxHeight;
41786     }
41787 };
41788
41789 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
41790     /**
41791      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
41792      */
41793     growMin : 60,
41794     /**
41795      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
41796      */
41797     growMax: 1000,
41798     /**
41799      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
41800      * in the field (equivalent to setting overflow: hidden, defaults to false)
41801      */
41802     preventScrollbars: false,
41803     /**
41804      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41805      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
41806      */
41807
41808     // private
41809     onRender : function(ct, position){
41810         if(!this.el){
41811             this.defaultAutoCreate = {
41812                 tag: "textarea",
41813                 style:"width:300px;height:60px;",
41814                 autocomplete: "new-password"
41815             };
41816         }
41817         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
41818         if(this.grow){
41819             this.textSizeEl = Roo.DomHelper.append(document.body, {
41820                 tag: "pre", cls: "x-form-grow-sizer"
41821             });
41822             if(this.preventScrollbars){
41823                 this.el.setStyle("overflow", "hidden");
41824             }
41825             this.el.setHeight(this.growMin);
41826         }
41827     },
41828
41829     onDestroy : function(){
41830         if(this.textSizeEl){
41831             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
41832         }
41833         Roo.form.TextArea.superclass.onDestroy.call(this);
41834     },
41835
41836     // private
41837     onKeyUp : function(e){
41838         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
41839             this.autoSize();
41840         }
41841     },
41842
41843     /**
41844      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
41845      * This only takes effect if grow = true, and fires the autosize event if the height changes.
41846      */
41847     autoSize : function(){
41848         if(!this.grow || !this.textSizeEl){
41849             return;
41850         }
41851         var el = this.el;
41852         var v = el.dom.value;
41853         var ts = this.textSizeEl;
41854
41855         ts.innerHTML = '';
41856         ts.appendChild(document.createTextNode(v));
41857         v = ts.innerHTML;
41858
41859         Roo.fly(ts).setWidth(this.el.getWidth());
41860         if(v.length < 1){
41861             v = "&#160;&#160;";
41862         }else{
41863             if(Roo.isIE){
41864                 v = v.replace(/\n/g, '<p>&#160;</p>');
41865             }
41866             v += "&#160;\n&#160;";
41867         }
41868         ts.innerHTML = v;
41869         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
41870         if(h != this.lastHeight){
41871             this.lastHeight = h;
41872             this.el.setHeight(h);
41873             this.fireEvent("autosize", this, h);
41874         }
41875     }
41876 });/*
41877  * Based on:
41878  * Ext JS Library 1.1.1
41879  * Copyright(c) 2006-2007, Ext JS, LLC.
41880  *
41881  * Originally Released Under LGPL - original licence link has changed is not relivant.
41882  *
41883  * Fork - LGPL
41884  * <script type="text/javascript">
41885  */
41886  
41887
41888 /**
41889  * @class Roo.form.NumberField
41890  * @extends Roo.form.TextField
41891  * Numeric text field that provides automatic keystroke filtering and numeric validation.
41892  * @constructor
41893  * Creates a new NumberField
41894  * @param {Object} config Configuration options
41895  */
41896 Roo.form.NumberField = function(config){
41897     Roo.form.NumberField.superclass.constructor.call(this, config);
41898 };
41899
41900 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
41901     /**
41902      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
41903      */
41904     fieldClass: "x-form-field x-form-num-field",
41905     /**
41906      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
41907      */
41908     allowDecimals : true,
41909     /**
41910      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
41911      */
41912     decimalSeparator : ".",
41913     /**
41914      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
41915      */
41916     decimalPrecision : 2,
41917     /**
41918      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
41919      */
41920     allowNegative : true,
41921     /**
41922      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
41923      */
41924     minValue : Number.NEGATIVE_INFINITY,
41925     /**
41926      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
41927      */
41928     maxValue : Number.MAX_VALUE,
41929     /**
41930      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
41931      */
41932     minText : "The minimum value for this field is {0}",
41933     /**
41934      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41935      */
41936     maxText : "The maximum value for this field is {0}",
41937     /**
41938      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41939      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41940      */
41941     nanText : "{0} is not a valid number",
41942
41943     // private
41944     initEvents : function(){
41945         Roo.form.NumberField.superclass.initEvents.call(this);
41946         var allowed = "0123456789";
41947         if(this.allowDecimals){
41948             allowed += this.decimalSeparator;
41949         }
41950         if(this.allowNegative){
41951             allowed += "-";
41952         }
41953         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41954         var keyPress = function(e){
41955             var k = e.getKey();
41956             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41957                 return;
41958             }
41959             var c = e.getCharCode();
41960             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41961                 e.stopEvent();
41962             }
41963         };
41964         this.el.on("keypress", keyPress, this);
41965     },
41966
41967     // private
41968     validateValue : function(value){
41969         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
41970             return false;
41971         }
41972         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41973              return true;
41974         }
41975         var num = this.parseValue(value);
41976         if(isNaN(num)){
41977             this.markInvalid(String.format(this.nanText, value));
41978             return false;
41979         }
41980         if(num < this.minValue){
41981             this.markInvalid(String.format(this.minText, this.minValue));
41982             return false;
41983         }
41984         if(num > this.maxValue){
41985             this.markInvalid(String.format(this.maxText, this.maxValue));
41986             return false;
41987         }
41988         return true;
41989     },
41990
41991     getValue : function(){
41992         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
41993     },
41994
41995     // private
41996     parseValue : function(value){
41997         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41998         return isNaN(value) ? '' : value;
41999     },
42000
42001     // private
42002     fixPrecision : function(value){
42003         var nan = isNaN(value);
42004         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
42005             return nan ? '' : value;
42006         }
42007         return parseFloat(value).toFixed(this.decimalPrecision);
42008     },
42009
42010     setValue : function(v){
42011         v = this.fixPrecision(v);
42012         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
42013     },
42014
42015     // private
42016     decimalPrecisionFcn : function(v){
42017         return Math.floor(v);
42018     },
42019
42020     beforeBlur : function(){
42021         var v = this.parseValue(this.getRawValue());
42022         if(v){
42023             this.setValue(v);
42024         }
42025     }
42026 });/*
42027  * Based on:
42028  * Ext JS Library 1.1.1
42029  * Copyright(c) 2006-2007, Ext JS, LLC.
42030  *
42031  * Originally Released Under LGPL - original licence link has changed is not relivant.
42032  *
42033  * Fork - LGPL
42034  * <script type="text/javascript">
42035  */
42036  
42037 /**
42038  * @class Roo.form.DateField
42039  * @extends Roo.form.TriggerField
42040  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42041 * @constructor
42042 * Create a new DateField
42043 * @param {Object} config
42044  */
42045 Roo.form.DateField = function(config)
42046 {
42047     Roo.form.DateField.superclass.constructor.call(this, config);
42048     
42049       this.addEvents({
42050          
42051         /**
42052          * @event select
42053          * Fires when a date is selected
42054              * @param {Roo.form.DateField} combo This combo box
42055              * @param {Date} date The date selected
42056              */
42057         'select' : true
42058          
42059     });
42060     
42061     
42062     if(typeof this.minValue == "string") {
42063         this.minValue = this.parseDate(this.minValue);
42064     }
42065     if(typeof this.maxValue == "string") {
42066         this.maxValue = this.parseDate(this.maxValue);
42067     }
42068     this.ddMatch = null;
42069     if(this.disabledDates){
42070         var dd = this.disabledDates;
42071         var re = "(?:";
42072         for(var i = 0; i < dd.length; i++){
42073             re += dd[i];
42074             if(i != dd.length-1) {
42075                 re += "|";
42076             }
42077         }
42078         this.ddMatch = new RegExp(re + ")");
42079     }
42080 };
42081
42082 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
42083     /**
42084      * @cfg {String} format
42085      * The default date format string which can be overriden for localization support.  The format must be
42086      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42087      */
42088     format : "m/d/y",
42089     /**
42090      * @cfg {String} altFormats
42091      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42092      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42093      */
42094     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
42095     /**
42096      * @cfg {Array} disabledDays
42097      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42098      */
42099     disabledDays : null,
42100     /**
42101      * @cfg {String} disabledDaysText
42102      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42103      */
42104     disabledDaysText : "Disabled",
42105     /**
42106      * @cfg {Array} disabledDates
42107      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42108      * expression so they are very powerful. Some examples:
42109      * <ul>
42110      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42111      * <li>["03/08", "09/16"] would disable those days for every year</li>
42112      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42113      * <li>["03/../2006"] would disable every day in March 2006</li>
42114      * <li>["^03"] would disable every day in every March</li>
42115      * </ul>
42116      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42117      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42118      */
42119     disabledDates : null,
42120     /**
42121      * @cfg {String} disabledDatesText
42122      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42123      */
42124     disabledDatesText : "Disabled",
42125         
42126         
42127         /**
42128      * @cfg {Date/String} zeroValue
42129      * if the date is less that this number, then the field is rendered as empty
42130      * default is 1800
42131      */
42132         zeroValue : '1800-01-01',
42133         
42134         
42135     /**
42136      * @cfg {Date/String} minValue
42137      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42138      * valid format (defaults to null).
42139      */
42140     minValue : null,
42141     /**
42142      * @cfg {Date/String} maxValue
42143      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42144      * valid format (defaults to null).
42145      */
42146     maxValue : null,
42147     /**
42148      * @cfg {String} minText
42149      * The error text to display when the date in the cell is before minValue (defaults to
42150      * 'The date in this field must be after {minValue}').
42151      */
42152     minText : "The date in this field must be equal to or after {0}",
42153     /**
42154      * @cfg {String} maxText
42155      * The error text to display when the date in the cell is after maxValue (defaults to
42156      * 'The date in this field must be before {maxValue}').
42157      */
42158     maxText : "The date in this field must be equal to or before {0}",
42159     /**
42160      * @cfg {String} invalidText
42161      * The error text to display when the date in the field is invalid (defaults to
42162      * '{value} is not a valid date - it must be in the format {format}').
42163      */
42164     invalidText : "{0} is not a valid date - it must be in the format {1}",
42165     /**
42166      * @cfg {String} triggerClass
42167      * An additional CSS class used to style the trigger button.  The trigger will always get the
42168      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42169      * which displays a calendar icon).
42170      */
42171     triggerClass : 'x-form-date-trigger',
42172     
42173
42174     /**
42175      * @cfg {Boolean} useIso
42176      * if enabled, then the date field will use a hidden field to store the 
42177      * real value as iso formated date. default (false)
42178      */ 
42179     useIso : false,
42180     /**
42181      * @cfg {String/Object} autoCreate
42182      * A DomHelper element spec, or true for a default element spec (defaults to
42183      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42184      */ 
42185     // private
42186     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
42187     
42188     // private
42189     hiddenField: false,
42190     
42191     onRender : function(ct, position)
42192     {
42193         Roo.form.DateField.superclass.onRender.call(this, ct, position);
42194         if (this.useIso) {
42195             //this.el.dom.removeAttribute('name'); 
42196             Roo.log("Changing name?");
42197             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
42198             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42199                     'before', true);
42200             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42201             // prevent input submission
42202             this.hiddenName = this.name;
42203         }
42204             
42205             
42206     },
42207     
42208     // private
42209     validateValue : function(value)
42210     {
42211         value = this.formatDate(value);
42212         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
42213             Roo.log('super failed');
42214             return false;
42215         }
42216         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42217              return true;
42218         }
42219         var svalue = value;
42220         value = this.parseDate(value);
42221         if(!value){
42222             Roo.log('parse date failed' + svalue);
42223             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42224             return false;
42225         }
42226         var time = value.getTime();
42227         if(this.minValue && time < this.minValue.getTime()){
42228             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42229             return false;
42230         }
42231         if(this.maxValue && time > this.maxValue.getTime()){
42232             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42233             return false;
42234         }
42235         if(this.disabledDays){
42236             var day = value.getDay();
42237             for(var i = 0; i < this.disabledDays.length; i++) {
42238                 if(day === this.disabledDays[i]){
42239                     this.markInvalid(this.disabledDaysText);
42240                     return false;
42241                 }
42242             }
42243         }
42244         var fvalue = this.formatDate(value);
42245         if(this.ddMatch && this.ddMatch.test(fvalue)){
42246             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42247             return false;
42248         }
42249         return true;
42250     },
42251
42252     // private
42253     // Provides logic to override the default TriggerField.validateBlur which just returns true
42254     validateBlur : function(){
42255         return !this.menu || !this.menu.isVisible();
42256     },
42257     
42258     getName: function()
42259     {
42260         // returns hidden if it's set..
42261         if (!this.rendered) {return ''};
42262         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42263         
42264     },
42265
42266     /**
42267      * Returns the current date value of the date field.
42268      * @return {Date} The date value
42269      */
42270     getValue : function(){
42271         
42272         return  this.hiddenField ?
42273                 this.hiddenField.value :
42274                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
42275     },
42276
42277     /**
42278      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42279      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
42280      * (the default format used is "m/d/y").
42281      * <br />Usage:
42282      * <pre><code>
42283 //All of these calls set the same date value (May 4, 2006)
42284
42285 //Pass a date object:
42286 var dt = new Date('5/4/06');
42287 dateField.setValue(dt);
42288
42289 //Pass a date string (default format):
42290 dateField.setValue('5/4/06');
42291
42292 //Pass a date string (custom format):
42293 dateField.format = 'Y-m-d';
42294 dateField.setValue('2006-5-4');
42295 </code></pre>
42296      * @param {String/Date} date The date or valid date string
42297      */
42298     setValue : function(date){
42299         if (this.hiddenField) {
42300             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42301         }
42302         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42303         // make sure the value field is always stored as a date..
42304         this.value = this.parseDate(date);
42305         
42306         
42307     },
42308
42309     // private
42310     parseDate : function(value){
42311                 
42312                 if (value instanceof Date) {
42313                         if (value < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42314                                 return  '';
42315                         }
42316                         return value;
42317                 }
42318                 
42319                 
42320         if(!value || value instanceof Date){
42321             return value;
42322         }
42323         var v = Date.parseDate(value, this.format);
42324          if (!v && this.useIso) {
42325             v = Date.parseDate(value, 'Y-m-d');
42326         }
42327         if(!v && this.altFormats){
42328             if(!this.altFormatsArray){
42329                 this.altFormatsArray = this.altFormats.split("|");
42330             }
42331             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42332                 v = Date.parseDate(value, this.altFormatsArray[i]);
42333             }
42334         }
42335                 if (v < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42336                         v = '';
42337                 }
42338         return v;
42339     },
42340
42341     // private
42342     formatDate : function(date, fmt){
42343         return (!date || !(date instanceof Date)) ?
42344                date : date.dateFormat(fmt || this.format);
42345     },
42346
42347     // private
42348     menuListeners : {
42349         select: function(m, d){
42350             
42351             this.setValue(d);
42352             this.fireEvent('select', this, d);
42353         },
42354         show : function(){ // retain focus styling
42355             this.onFocus();
42356         },
42357         hide : function(){
42358             this.focus.defer(10, this);
42359             var ml = this.menuListeners;
42360             this.menu.un("select", ml.select,  this);
42361             this.menu.un("show", ml.show,  this);
42362             this.menu.un("hide", ml.hide,  this);
42363         }
42364     },
42365
42366     // private
42367     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42368     onTriggerClick : function(){
42369         if(this.disabled){
42370             return;
42371         }
42372         if(this.menu == null){
42373             this.menu = new Roo.menu.DateMenu();
42374         }
42375         Roo.apply(this.menu.picker,  {
42376             showClear: this.allowBlank,
42377             minDate : this.minValue,
42378             maxDate : this.maxValue,
42379             disabledDatesRE : this.ddMatch,
42380             disabledDatesText : this.disabledDatesText,
42381             disabledDays : this.disabledDays,
42382             disabledDaysText : this.disabledDaysText,
42383             format : this.useIso ? 'Y-m-d' : this.format,
42384             minText : String.format(this.minText, this.formatDate(this.minValue)),
42385             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42386         });
42387         this.menu.on(Roo.apply({}, this.menuListeners, {
42388             scope:this
42389         }));
42390         this.menu.picker.setValue(this.getValue() || new Date());
42391         this.menu.show(this.el, "tl-bl?");
42392     },
42393
42394     beforeBlur : function(){
42395         var v = this.parseDate(this.getRawValue());
42396         if(v){
42397             this.setValue(v);
42398         }
42399     },
42400
42401     /*@
42402      * overide
42403      * 
42404      */
42405     isDirty : function() {
42406         if(this.disabled) {
42407             return false;
42408         }
42409         
42410         if(typeof(this.startValue) === 'undefined'){
42411             return false;
42412         }
42413         
42414         return String(this.getValue()) !== String(this.startValue);
42415         
42416     },
42417     // @overide
42418     cleanLeadingSpace : function(e)
42419     {
42420        return;
42421     }
42422     
42423 });/*
42424  * Based on:
42425  * Ext JS Library 1.1.1
42426  * Copyright(c) 2006-2007, Ext JS, LLC.
42427  *
42428  * Originally Released Under LGPL - original licence link has changed is not relivant.
42429  *
42430  * Fork - LGPL
42431  * <script type="text/javascript">
42432  */
42433  
42434 /**
42435  * @class Roo.form.MonthField
42436  * @extends Roo.form.TriggerField
42437  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42438 * @constructor
42439 * Create a new MonthField
42440 * @param {Object} config
42441  */
42442 Roo.form.MonthField = function(config){
42443     
42444     Roo.form.MonthField.superclass.constructor.call(this, config);
42445     
42446       this.addEvents({
42447          
42448         /**
42449          * @event select
42450          * Fires when a date is selected
42451              * @param {Roo.form.MonthFieeld} combo This combo box
42452              * @param {Date} date The date selected
42453              */
42454         'select' : true
42455          
42456     });
42457     
42458     
42459     if(typeof this.minValue == "string") {
42460         this.minValue = this.parseDate(this.minValue);
42461     }
42462     if(typeof this.maxValue == "string") {
42463         this.maxValue = this.parseDate(this.maxValue);
42464     }
42465     this.ddMatch = null;
42466     if(this.disabledDates){
42467         var dd = this.disabledDates;
42468         var re = "(?:";
42469         for(var i = 0; i < dd.length; i++){
42470             re += dd[i];
42471             if(i != dd.length-1) {
42472                 re += "|";
42473             }
42474         }
42475         this.ddMatch = new RegExp(re + ")");
42476     }
42477 };
42478
42479 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
42480     /**
42481      * @cfg {String} format
42482      * The default date format string which can be overriden for localization support.  The format must be
42483      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42484      */
42485     format : "M Y",
42486     /**
42487      * @cfg {String} altFormats
42488      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42489      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42490      */
42491     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
42492     /**
42493      * @cfg {Array} disabledDays
42494      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42495      */
42496     disabledDays : [0,1,2,3,4,5,6],
42497     /**
42498      * @cfg {String} disabledDaysText
42499      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42500      */
42501     disabledDaysText : "Disabled",
42502     /**
42503      * @cfg {Array} disabledDates
42504      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42505      * expression so they are very powerful. Some examples:
42506      * <ul>
42507      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42508      * <li>["03/08", "09/16"] would disable those days for every year</li>
42509      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42510      * <li>["03/../2006"] would disable every day in March 2006</li>
42511      * <li>["^03"] would disable every day in every March</li>
42512      * </ul>
42513      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42514      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42515      */
42516     disabledDates : null,
42517     /**
42518      * @cfg {String} disabledDatesText
42519      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42520      */
42521     disabledDatesText : "Disabled",
42522     /**
42523      * @cfg {Date/String} minValue
42524      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42525      * valid format (defaults to null).
42526      */
42527     minValue : null,
42528     /**
42529      * @cfg {Date/String} maxValue
42530      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42531      * valid format (defaults to null).
42532      */
42533     maxValue : null,
42534     /**
42535      * @cfg {String} minText
42536      * The error text to display when the date in the cell is before minValue (defaults to
42537      * 'The date in this field must be after {minValue}').
42538      */
42539     minText : "The date in this field must be equal to or after {0}",
42540     /**
42541      * @cfg {String} maxTextf
42542      * The error text to display when the date in the cell is after maxValue (defaults to
42543      * 'The date in this field must be before {maxValue}').
42544      */
42545     maxText : "The date in this field must be equal to or before {0}",
42546     /**
42547      * @cfg {String} invalidText
42548      * The error text to display when the date in the field is invalid (defaults to
42549      * '{value} is not a valid date - it must be in the format {format}').
42550      */
42551     invalidText : "{0} is not a valid date - it must be in the format {1}",
42552     /**
42553      * @cfg {String} triggerClass
42554      * An additional CSS class used to style the trigger button.  The trigger will always get the
42555      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42556      * which displays a calendar icon).
42557      */
42558     triggerClass : 'x-form-date-trigger',
42559     
42560
42561     /**
42562      * @cfg {Boolean} useIso
42563      * if enabled, then the date field will use a hidden field to store the 
42564      * real value as iso formated date. default (true)
42565      */ 
42566     useIso : true,
42567     /**
42568      * @cfg {String/Object} autoCreate
42569      * A DomHelper element spec, or true for a default element spec (defaults to
42570      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42571      */ 
42572     // private
42573     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
42574     
42575     // private
42576     hiddenField: false,
42577     
42578     hideMonthPicker : false,
42579     
42580     onRender : function(ct, position)
42581     {
42582         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
42583         if (this.useIso) {
42584             this.el.dom.removeAttribute('name'); 
42585             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42586                     'before', true);
42587             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42588             // prevent input submission
42589             this.hiddenName = this.name;
42590         }
42591             
42592             
42593     },
42594     
42595     // private
42596     validateValue : function(value)
42597     {
42598         value = this.formatDate(value);
42599         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
42600             return false;
42601         }
42602         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42603              return true;
42604         }
42605         var svalue = value;
42606         value = this.parseDate(value);
42607         if(!value){
42608             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42609             return false;
42610         }
42611         var time = value.getTime();
42612         if(this.minValue && time < this.minValue.getTime()){
42613             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42614             return false;
42615         }
42616         if(this.maxValue && time > this.maxValue.getTime()){
42617             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42618             return false;
42619         }
42620         /*if(this.disabledDays){
42621             var day = value.getDay();
42622             for(var i = 0; i < this.disabledDays.length; i++) {
42623                 if(day === this.disabledDays[i]){
42624                     this.markInvalid(this.disabledDaysText);
42625                     return false;
42626                 }
42627             }
42628         }
42629         */
42630         var fvalue = this.formatDate(value);
42631         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
42632             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42633             return false;
42634         }
42635         */
42636         return true;
42637     },
42638
42639     // private
42640     // Provides logic to override the default TriggerField.validateBlur which just returns true
42641     validateBlur : function(){
42642         return !this.menu || !this.menu.isVisible();
42643     },
42644
42645     /**
42646      * Returns the current date value of the date field.
42647      * @return {Date} The date value
42648      */
42649     getValue : function(){
42650         
42651         
42652         
42653         return  this.hiddenField ?
42654                 this.hiddenField.value :
42655                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
42656     },
42657
42658     /**
42659      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42660      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
42661      * (the default format used is "m/d/y").
42662      * <br />Usage:
42663      * <pre><code>
42664 //All of these calls set the same date value (May 4, 2006)
42665
42666 //Pass a date object:
42667 var dt = new Date('5/4/06');
42668 monthField.setValue(dt);
42669
42670 //Pass a date string (default format):
42671 monthField.setValue('5/4/06');
42672
42673 //Pass a date string (custom format):
42674 monthField.format = 'Y-m-d';
42675 monthField.setValue('2006-5-4');
42676 </code></pre>
42677      * @param {String/Date} date The date or valid date string
42678      */
42679     setValue : function(date){
42680         Roo.log('month setValue' + date);
42681         // can only be first of month..
42682         
42683         var val = this.parseDate(date);
42684         
42685         if (this.hiddenField) {
42686             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42687         }
42688         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42689         this.value = this.parseDate(date);
42690     },
42691
42692     // private
42693     parseDate : function(value){
42694         if(!value || value instanceof Date){
42695             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
42696             return value;
42697         }
42698         var v = Date.parseDate(value, this.format);
42699         if (!v && this.useIso) {
42700             v = Date.parseDate(value, 'Y-m-d');
42701         }
42702         if (v) {
42703             // 
42704             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
42705         }
42706         
42707         
42708         if(!v && this.altFormats){
42709             if(!this.altFormatsArray){
42710                 this.altFormatsArray = this.altFormats.split("|");
42711             }
42712             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42713                 v = Date.parseDate(value, this.altFormatsArray[i]);
42714             }
42715         }
42716         return v;
42717     },
42718
42719     // private
42720     formatDate : function(date, fmt){
42721         return (!date || !(date instanceof Date)) ?
42722                date : date.dateFormat(fmt || this.format);
42723     },
42724
42725     // private
42726     menuListeners : {
42727         select: function(m, d){
42728             this.setValue(d);
42729             this.fireEvent('select', this, d);
42730         },
42731         show : function(){ // retain focus styling
42732             this.onFocus();
42733         },
42734         hide : function(){
42735             this.focus.defer(10, this);
42736             var ml = this.menuListeners;
42737             this.menu.un("select", ml.select,  this);
42738             this.menu.un("show", ml.show,  this);
42739             this.menu.un("hide", ml.hide,  this);
42740         }
42741     },
42742     // private
42743     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42744     onTriggerClick : function(){
42745         if(this.disabled){
42746             return;
42747         }
42748         if(this.menu == null){
42749             this.menu = new Roo.menu.DateMenu();
42750            
42751         }
42752         
42753         Roo.apply(this.menu.picker,  {
42754             
42755             showClear: this.allowBlank,
42756             minDate : this.minValue,
42757             maxDate : this.maxValue,
42758             disabledDatesRE : this.ddMatch,
42759             disabledDatesText : this.disabledDatesText,
42760             
42761             format : this.useIso ? 'Y-m-d' : this.format,
42762             minText : String.format(this.minText, this.formatDate(this.minValue)),
42763             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42764             
42765         });
42766          this.menu.on(Roo.apply({}, this.menuListeners, {
42767             scope:this
42768         }));
42769        
42770         
42771         var m = this.menu;
42772         var p = m.picker;
42773         
42774         // hide month picker get's called when we called by 'before hide';
42775         
42776         var ignorehide = true;
42777         p.hideMonthPicker  = function(disableAnim){
42778             if (ignorehide) {
42779                 return;
42780             }
42781              if(this.monthPicker){
42782                 Roo.log("hideMonthPicker called");
42783                 if(disableAnim === true){
42784                     this.monthPicker.hide();
42785                 }else{
42786                     this.monthPicker.slideOut('t', {duration:.2});
42787                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
42788                     p.fireEvent("select", this, this.value);
42789                     m.hide();
42790                 }
42791             }
42792         }
42793         
42794         Roo.log('picker set value');
42795         Roo.log(this.getValue());
42796         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
42797         m.show(this.el, 'tl-bl?');
42798         ignorehide  = false;
42799         // this will trigger hideMonthPicker..
42800         
42801         
42802         // hidden the day picker
42803         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
42804         
42805         
42806         
42807       
42808         
42809         p.showMonthPicker.defer(100, p);
42810     
42811         
42812        
42813     },
42814
42815     beforeBlur : function(){
42816         var v = this.parseDate(this.getRawValue());
42817         if(v){
42818             this.setValue(v);
42819         }
42820     }
42821
42822     /** @cfg {Boolean} grow @hide */
42823     /** @cfg {Number} growMin @hide */
42824     /** @cfg {Number} growMax @hide */
42825     /**
42826      * @hide
42827      * @method autoSize
42828      */
42829 });/*
42830  * Based on:
42831  * Ext JS Library 1.1.1
42832  * Copyright(c) 2006-2007, Ext JS, LLC.
42833  *
42834  * Originally Released Under LGPL - original licence link has changed is not relivant.
42835  *
42836  * Fork - LGPL
42837  * <script type="text/javascript">
42838  */
42839  
42840
42841 /**
42842  * @class Roo.form.ComboBox
42843  * @extends Roo.form.TriggerField
42844  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
42845  * @constructor
42846  * Create a new ComboBox.
42847  * @param {Object} config Configuration options
42848  */
42849 Roo.form.ComboBox = function(config){
42850     Roo.form.ComboBox.superclass.constructor.call(this, config);
42851     this.addEvents({
42852         /**
42853          * @event expand
42854          * Fires when the dropdown list is expanded
42855              * @param {Roo.form.ComboBox} combo This combo box
42856              */
42857         'expand' : true,
42858         /**
42859          * @event collapse
42860          * Fires when the dropdown list is collapsed
42861              * @param {Roo.form.ComboBox} combo This combo box
42862              */
42863         'collapse' : true,
42864         /**
42865          * @event beforeselect
42866          * Fires before a list item is selected. Return false to cancel the selection.
42867              * @param {Roo.form.ComboBox} combo This combo box
42868              * @param {Roo.data.Record} record The data record returned from the underlying store
42869              * @param {Number} index The index of the selected item in the dropdown list
42870              */
42871         'beforeselect' : true,
42872         /**
42873          * @event select
42874          * Fires when a list item is selected
42875              * @param {Roo.form.ComboBox} combo This combo box
42876              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
42877              * @param {Number} index The index of the selected item in the dropdown list
42878              */
42879         'select' : true,
42880         /**
42881          * @event beforequery
42882          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
42883          * The event object passed has these properties:
42884              * @param {Roo.form.ComboBox} combo This combo box
42885              * @param {String} query The query
42886              * @param {Boolean} forceAll true to force "all" query
42887              * @param {Boolean} cancel true to cancel the query
42888              * @param {Object} e The query event object
42889              */
42890         'beforequery': true,
42891          /**
42892          * @event add
42893          * Fires when the 'add' icon is pressed (add a listener to enable add button)
42894              * @param {Roo.form.ComboBox} combo This combo box
42895              */
42896         'add' : true,
42897         /**
42898          * @event edit
42899          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
42900              * @param {Roo.form.ComboBox} combo This combo box
42901              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
42902              */
42903         'edit' : true
42904         
42905         
42906     });
42907     if(this.transform){
42908         this.allowDomMove = false;
42909         var s = Roo.getDom(this.transform);
42910         if(!this.hiddenName){
42911             this.hiddenName = s.name;
42912         }
42913         if(!this.store){
42914             this.mode = 'local';
42915             var d = [], opts = s.options;
42916             for(var i = 0, len = opts.length;i < len; i++){
42917                 var o = opts[i];
42918                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
42919                 if(o.selected) {
42920                     this.value = value;
42921                 }
42922                 d.push([value, o.text]);
42923             }
42924             this.store = new Roo.data.SimpleStore({
42925                 'id': 0,
42926                 fields: ['value', 'text'],
42927                 data : d
42928             });
42929             this.valueField = 'value';
42930             this.displayField = 'text';
42931         }
42932         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
42933         if(!this.lazyRender){
42934             this.target = true;
42935             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
42936             s.parentNode.removeChild(s); // remove it
42937             this.render(this.el.parentNode);
42938         }else{
42939             s.parentNode.removeChild(s); // remove it
42940         }
42941
42942     }
42943     if (this.store) {
42944         this.store = Roo.factory(this.store, Roo.data);
42945     }
42946     
42947     this.selectedIndex = -1;
42948     if(this.mode == 'local'){
42949         if(config.queryDelay === undefined){
42950             this.queryDelay = 10;
42951         }
42952         if(config.minChars === undefined){
42953             this.minChars = 0;
42954         }
42955     }
42956 };
42957
42958 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
42959     /**
42960      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
42961      */
42962     /**
42963      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
42964      * rendering into an Roo.Editor, defaults to false)
42965      */
42966     /**
42967      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
42968      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
42969      */
42970     /**
42971      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
42972      */
42973     /**
42974      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
42975      * the dropdown list (defaults to undefined, with no header element)
42976      */
42977
42978      /**
42979      * @cfg {String/Roo.Template} tpl The template to use to render the output
42980      */
42981      
42982     // private
42983     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
42984     /**
42985      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
42986      */
42987     listWidth: undefined,
42988     /**
42989      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
42990      * mode = 'remote' or 'text' if mode = 'local')
42991      */
42992     displayField: undefined,
42993     /**
42994      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
42995      * mode = 'remote' or 'value' if mode = 'local'). 
42996      * Note: use of a valueField requires the user make a selection
42997      * in order for a value to be mapped.
42998      */
42999     valueField: undefined,
43000     
43001     
43002     /**
43003      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
43004      * field's data value (defaults to the underlying DOM element's name)
43005      */
43006     hiddenName: undefined,
43007     /**
43008      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
43009      */
43010     listClass: '',
43011     /**
43012      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
43013      */
43014     selectedClass: 'x-combo-selected',
43015     /**
43016      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
43017      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
43018      * which displays a downward arrow icon).
43019      */
43020     triggerClass : 'x-form-arrow-trigger',
43021     /**
43022      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
43023      */
43024     shadow:'sides',
43025     /**
43026      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
43027      * anchor positions (defaults to 'tl-bl')
43028      */
43029     listAlign: 'tl-bl?',
43030     /**
43031      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
43032      */
43033     maxHeight: 300,
43034     /**
43035      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
43036      * query specified by the allQuery config option (defaults to 'query')
43037      */
43038     triggerAction: 'query',
43039     /**
43040      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
43041      * (defaults to 4, does not apply if editable = false)
43042      */
43043     minChars : 4,
43044     /**
43045      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
43046      * delay (typeAheadDelay) if it matches a known value (defaults to false)
43047      */
43048     typeAhead: false,
43049     /**
43050      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
43051      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
43052      */
43053     queryDelay: 500,
43054     /**
43055      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
43056      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
43057      */
43058     pageSize: 0,
43059     /**
43060      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
43061      * when editable = true (defaults to false)
43062      */
43063     selectOnFocus:false,
43064     /**
43065      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
43066      */
43067     queryParam: 'query',
43068     /**
43069      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
43070      * when mode = 'remote' (defaults to 'Loading...')
43071      */
43072     loadingText: 'Loading...',
43073     /**
43074      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
43075      */
43076     resizable: false,
43077     /**
43078      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
43079      */
43080     handleHeight : 8,
43081     /**
43082      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
43083      * traditional select (defaults to true)
43084      */
43085     editable: true,
43086     /**
43087      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
43088      */
43089     allQuery: '',
43090     /**
43091      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
43092      */
43093     mode: 'remote',
43094     /**
43095      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
43096      * listWidth has a higher value)
43097      */
43098     minListWidth : 70,
43099     /**
43100      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
43101      * allow the user to set arbitrary text into the field (defaults to false)
43102      */
43103     forceSelection:false,
43104     /**
43105      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
43106      * if typeAhead = true (defaults to 250)
43107      */
43108     typeAheadDelay : 250,
43109     /**
43110      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
43111      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
43112      */
43113     valueNotFoundText : undefined,
43114     /**
43115      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
43116      */
43117     blockFocus : false,
43118     
43119     /**
43120      * @cfg {Boolean} disableClear Disable showing of clear button.
43121      */
43122     disableClear : false,
43123     /**
43124      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
43125      */
43126     alwaysQuery : false,
43127     
43128     //private
43129     addicon : false,
43130     editicon: false,
43131     
43132     // element that contains real text value.. (when hidden is used..)
43133      
43134     // private
43135     onRender : function(ct, position)
43136     {
43137         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
43138         
43139         if(this.hiddenName){
43140             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
43141                     'before', true);
43142             this.hiddenField.value =
43143                 this.hiddenValue !== undefined ? this.hiddenValue :
43144                 this.value !== undefined ? this.value : '';
43145
43146             // prevent input submission
43147             this.el.dom.removeAttribute('name');
43148              
43149              
43150         }
43151         
43152         if(Roo.isGecko){
43153             this.el.dom.setAttribute('autocomplete', 'off');
43154         }
43155
43156         var cls = 'x-combo-list';
43157
43158         this.list = new Roo.Layer({
43159             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
43160         });
43161
43162         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
43163         this.list.setWidth(lw);
43164         this.list.swallowEvent('mousewheel');
43165         this.assetHeight = 0;
43166
43167         if(this.title){
43168             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
43169             this.assetHeight += this.header.getHeight();
43170         }
43171
43172         this.innerList = this.list.createChild({cls:cls+'-inner'});
43173         this.innerList.on('mouseover', this.onViewOver, this);
43174         this.innerList.on('mousemove', this.onViewMove, this);
43175         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43176         
43177         if(this.allowBlank && !this.pageSize && !this.disableClear){
43178             this.footer = this.list.createChild({cls:cls+'-ft'});
43179             this.pageTb = new Roo.Toolbar(this.footer);
43180            
43181         }
43182         if(this.pageSize){
43183             this.footer = this.list.createChild({cls:cls+'-ft'});
43184             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
43185                     {pageSize: this.pageSize});
43186             
43187         }
43188         
43189         if (this.pageTb && this.allowBlank && !this.disableClear) {
43190             var _this = this;
43191             this.pageTb.add(new Roo.Toolbar.Fill(), {
43192                 cls: 'x-btn-icon x-btn-clear',
43193                 text: '&#160;',
43194                 handler: function()
43195                 {
43196                     _this.collapse();
43197                     _this.clearValue();
43198                     _this.onSelect(false, -1);
43199                 }
43200             });
43201         }
43202         if (this.footer) {
43203             this.assetHeight += this.footer.getHeight();
43204         }
43205         
43206
43207         if(!this.tpl){
43208             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
43209         }
43210
43211         this.view = new Roo.View(this.innerList, this.tpl, {
43212             singleSelect:true,
43213             store: this.store,
43214             selectedClass: this.selectedClass
43215         });
43216
43217         this.view.on('click', this.onViewClick, this);
43218
43219         this.store.on('beforeload', this.onBeforeLoad, this);
43220         this.store.on('load', this.onLoad, this);
43221         this.store.on('loadexception', this.onLoadException, this);
43222
43223         if(this.resizable){
43224             this.resizer = new Roo.Resizable(this.list,  {
43225                pinned:true, handles:'se'
43226             });
43227             this.resizer.on('resize', function(r, w, h){
43228                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
43229                 this.listWidth = w;
43230                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
43231                 this.restrictHeight();
43232             }, this);
43233             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
43234         }
43235         if(!this.editable){
43236             this.editable = true;
43237             this.setEditable(false);
43238         }  
43239         
43240         
43241         if (typeof(this.events.add.listeners) != 'undefined') {
43242             
43243             this.addicon = this.wrap.createChild(
43244                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
43245        
43246             this.addicon.on('click', function(e) {
43247                 this.fireEvent('add', this);
43248             }, this);
43249         }
43250         if (typeof(this.events.edit.listeners) != 'undefined') {
43251             
43252             this.editicon = this.wrap.createChild(
43253                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
43254             if (this.addicon) {
43255                 this.editicon.setStyle('margin-left', '40px');
43256             }
43257             this.editicon.on('click', function(e) {
43258                 
43259                 // we fire even  if inothing is selected..
43260                 this.fireEvent('edit', this, this.lastData );
43261                 
43262             }, this);
43263         }
43264         
43265         
43266         
43267     },
43268
43269     // private
43270     initEvents : function(){
43271         Roo.form.ComboBox.superclass.initEvents.call(this);
43272
43273         this.keyNav = new Roo.KeyNav(this.el, {
43274             "up" : function(e){
43275                 this.inKeyMode = true;
43276                 this.selectPrev();
43277             },
43278
43279             "down" : function(e){
43280                 if(!this.isExpanded()){
43281                     this.onTriggerClick();
43282                 }else{
43283                     this.inKeyMode = true;
43284                     this.selectNext();
43285                 }
43286             },
43287
43288             "enter" : function(e){
43289                 this.onViewClick();
43290                 //return true;
43291             },
43292
43293             "esc" : function(e){
43294                 this.collapse();
43295             },
43296
43297             "tab" : function(e){
43298                 this.onViewClick(false);
43299                 this.fireEvent("specialkey", this, e);
43300                 return true;
43301             },
43302
43303             scope : this,
43304
43305             doRelay : function(foo, bar, hname){
43306                 if(hname == 'down' || this.scope.isExpanded()){
43307                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
43308                 }
43309                 return true;
43310             },
43311
43312             forceKeyDown: true
43313         });
43314         this.queryDelay = Math.max(this.queryDelay || 10,
43315                 this.mode == 'local' ? 10 : 250);
43316         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
43317         if(this.typeAhead){
43318             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
43319         }
43320         if(this.editable !== false){
43321             this.el.on("keyup", this.onKeyUp, this);
43322         }
43323         if(this.forceSelection){
43324             this.on('blur', this.doForce, this);
43325         }
43326     },
43327
43328     onDestroy : function(){
43329         if(this.view){
43330             this.view.setStore(null);
43331             this.view.el.removeAllListeners();
43332             this.view.el.remove();
43333             this.view.purgeListeners();
43334         }
43335         if(this.list){
43336             this.list.destroy();
43337         }
43338         if(this.store){
43339             this.store.un('beforeload', this.onBeforeLoad, this);
43340             this.store.un('load', this.onLoad, this);
43341             this.store.un('loadexception', this.onLoadException, this);
43342         }
43343         Roo.form.ComboBox.superclass.onDestroy.call(this);
43344     },
43345
43346     // private
43347     fireKey : function(e){
43348         if(e.isNavKeyPress() && !this.list.isVisible()){
43349             this.fireEvent("specialkey", this, e);
43350         }
43351     },
43352
43353     // private
43354     onResize: function(w, h){
43355         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
43356         
43357         if(typeof w != 'number'){
43358             // we do not handle it!?!?
43359             return;
43360         }
43361         var tw = this.trigger.getWidth();
43362         tw += this.addicon ? this.addicon.getWidth() : 0;
43363         tw += this.editicon ? this.editicon.getWidth() : 0;
43364         var x = w - tw;
43365         this.el.setWidth( this.adjustWidth('input', x));
43366             
43367         this.trigger.setStyle('left', x+'px');
43368         
43369         if(this.list && this.listWidth === undefined){
43370             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
43371             this.list.setWidth(lw);
43372             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43373         }
43374         
43375     
43376         
43377     },
43378
43379     /**
43380      * Allow or prevent the user from directly editing the field text.  If false is passed,
43381      * the user will only be able to select from the items defined in the dropdown list.  This method
43382      * is the runtime equivalent of setting the 'editable' config option at config time.
43383      * @param {Boolean} value True to allow the user to directly edit the field text
43384      */
43385     setEditable : function(value){
43386         if(value == this.editable){
43387             return;
43388         }
43389         this.editable = value;
43390         if(!value){
43391             this.el.dom.setAttribute('readOnly', true);
43392             this.el.on('mousedown', this.onTriggerClick,  this);
43393             this.el.addClass('x-combo-noedit');
43394         }else{
43395             this.el.dom.setAttribute('readOnly', false);
43396             this.el.un('mousedown', this.onTriggerClick,  this);
43397             this.el.removeClass('x-combo-noedit');
43398         }
43399     },
43400
43401     // private
43402     onBeforeLoad : function(){
43403         if(!this.hasFocus){
43404             return;
43405         }
43406         this.innerList.update(this.loadingText ?
43407                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43408         this.restrictHeight();
43409         this.selectedIndex = -1;
43410     },
43411
43412     // private
43413     onLoad : function(){
43414         if(!this.hasFocus){
43415             return;
43416         }
43417         if(this.store.getCount() > 0){
43418             this.expand();
43419             this.restrictHeight();
43420             if(this.lastQuery == this.allQuery){
43421                 if(this.editable){
43422                     this.el.dom.select();
43423                 }
43424                 if(!this.selectByValue(this.value, true)){
43425                     this.select(0, true);
43426                 }
43427             }else{
43428                 this.selectNext();
43429                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
43430                     this.taTask.delay(this.typeAheadDelay);
43431                 }
43432             }
43433         }else{
43434             this.onEmptyResults();
43435         }
43436         //this.el.focus();
43437     },
43438     // private
43439     onLoadException : function()
43440     {
43441         this.collapse();
43442         Roo.log(this.store.reader.jsonData);
43443         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43444             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43445         }
43446         
43447         
43448     },
43449     // private
43450     onTypeAhead : function(){
43451         if(this.store.getCount() > 0){
43452             var r = this.store.getAt(0);
43453             var newValue = r.data[this.displayField];
43454             var len = newValue.length;
43455             var selStart = this.getRawValue().length;
43456             if(selStart != len){
43457                 this.setRawValue(newValue);
43458                 this.selectText(selStart, newValue.length);
43459             }
43460         }
43461     },
43462
43463     // private
43464     onSelect : function(record, index){
43465         if(this.fireEvent('beforeselect', this, record, index) !== false){
43466             this.setFromData(index > -1 ? record.data : false);
43467             this.collapse();
43468             this.fireEvent('select', this, record, index);
43469         }
43470     },
43471
43472     /**
43473      * Returns the currently selected field value or empty string if no value is set.
43474      * @return {String} value The selected value
43475      */
43476     getValue : function(){
43477         if(this.valueField){
43478             return typeof this.value != 'undefined' ? this.value : '';
43479         }
43480         return Roo.form.ComboBox.superclass.getValue.call(this);
43481     },
43482
43483     /**
43484      * Clears any text/value currently set in the field
43485      */
43486     clearValue : function(){
43487         if(this.hiddenField){
43488             this.hiddenField.value = '';
43489         }
43490         this.value = '';
43491         this.setRawValue('');
43492         this.lastSelectionText = '';
43493         
43494     },
43495
43496     /**
43497      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
43498      * will be displayed in the field.  If the value does not match the data value of an existing item,
43499      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
43500      * Otherwise the field will be blank (although the value will still be set).
43501      * @param {String} value The value to match
43502      */
43503     setValue : function(v){
43504         var text = v;
43505         if(this.valueField){
43506             var r = this.findRecord(this.valueField, v);
43507             if(r){
43508                 text = r.data[this.displayField];
43509             }else if(this.valueNotFoundText !== undefined){
43510                 text = this.valueNotFoundText;
43511             }
43512         }
43513         this.lastSelectionText = text;
43514         if(this.hiddenField){
43515             this.hiddenField.value = v;
43516         }
43517         Roo.form.ComboBox.superclass.setValue.call(this, text);
43518         this.value = v;
43519     },
43520     /**
43521      * @property {Object} the last set data for the element
43522      */
43523     
43524     lastData : false,
43525     /**
43526      * Sets the value of the field based on a object which is related to the record format for the store.
43527      * @param {Object} value the value to set as. or false on reset?
43528      */
43529     setFromData : function(o){
43530         var dv = ''; // display value
43531         var vv = ''; // value value..
43532         this.lastData = o;
43533         if (this.displayField) {
43534             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
43535         } else {
43536             // this is an error condition!!!
43537             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
43538         }
43539         
43540         if(this.valueField){
43541             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
43542         }
43543         if(this.hiddenField){
43544             this.hiddenField.value = vv;
43545             
43546             this.lastSelectionText = dv;
43547             Roo.form.ComboBox.superclass.setValue.call(this, dv);
43548             this.value = vv;
43549             return;
43550         }
43551         // no hidden field.. - we store the value in 'value', but still display
43552         // display field!!!!
43553         this.lastSelectionText = dv;
43554         Roo.form.ComboBox.superclass.setValue.call(this, dv);
43555         this.value = vv;
43556         
43557         
43558     },
43559     // private
43560     reset : function(){
43561         // overridden so that last data is reset..
43562         this.setValue(this.resetValue);
43563         this.originalValue = this.getValue();
43564         this.clearInvalid();
43565         this.lastData = false;
43566         if (this.view) {
43567             this.view.clearSelections();
43568         }
43569     },
43570     // private
43571     findRecord : function(prop, value){
43572         var record;
43573         if(this.store.getCount() > 0){
43574             this.store.each(function(r){
43575                 if(r.data[prop] == value){
43576                     record = r;
43577                     return false;
43578                 }
43579                 return true;
43580             });
43581         }
43582         return record;
43583     },
43584     
43585     getName: function()
43586     {
43587         // returns hidden if it's set..
43588         if (!this.rendered) {return ''};
43589         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
43590         
43591     },
43592     // private
43593     onViewMove : function(e, t){
43594         this.inKeyMode = false;
43595     },
43596
43597     // private
43598     onViewOver : function(e, t){
43599         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
43600             return;
43601         }
43602         var item = this.view.findItemFromChild(t);
43603         if(item){
43604             var index = this.view.indexOf(item);
43605             this.select(index, false);
43606         }
43607     },
43608
43609     // private
43610     onViewClick : function(doFocus)
43611     {
43612         var index = this.view.getSelectedIndexes()[0];
43613         var r = this.store.getAt(index);
43614         if(r){
43615             this.onSelect(r, index);
43616         }
43617         if(doFocus !== false && !this.blockFocus){
43618             this.el.focus();
43619         }
43620     },
43621
43622     // private
43623     restrictHeight : function(){
43624         this.innerList.dom.style.height = '';
43625         var inner = this.innerList.dom;
43626         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
43627         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43628         this.list.beginUpdate();
43629         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
43630         this.list.alignTo(this.el, this.listAlign);
43631         this.list.endUpdate();
43632     },
43633
43634     // private
43635     onEmptyResults : function(){
43636         this.collapse();
43637     },
43638
43639     /**
43640      * Returns true if the dropdown list is expanded, else false.
43641      */
43642     isExpanded : function(){
43643         return this.list.isVisible();
43644     },
43645
43646     /**
43647      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
43648      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43649      * @param {String} value The data value of the item to select
43650      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43651      * selected item if it is not currently in view (defaults to true)
43652      * @return {Boolean} True if the value matched an item in the list, else false
43653      */
43654     selectByValue : function(v, scrollIntoView){
43655         if(v !== undefined && v !== null){
43656             var r = this.findRecord(this.valueField || this.displayField, v);
43657             if(r){
43658                 this.select(this.store.indexOf(r), scrollIntoView);
43659                 return true;
43660             }
43661         }
43662         return false;
43663     },
43664
43665     /**
43666      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
43667      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43668      * @param {Number} index The zero-based index of the list item to select
43669      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43670      * selected item if it is not currently in view (defaults to true)
43671      */
43672     select : function(index, scrollIntoView){
43673         this.selectedIndex = index;
43674         this.view.select(index);
43675         if(scrollIntoView !== false){
43676             var el = this.view.getNode(index);
43677             if(el){
43678                 this.innerList.scrollChildIntoView(el, false);
43679             }
43680         }
43681     },
43682
43683     // private
43684     selectNext : function(){
43685         var ct = this.store.getCount();
43686         if(ct > 0){
43687             if(this.selectedIndex == -1){
43688                 this.select(0);
43689             }else if(this.selectedIndex < ct-1){
43690                 this.select(this.selectedIndex+1);
43691             }
43692         }
43693     },
43694
43695     // private
43696     selectPrev : function(){
43697         var ct = this.store.getCount();
43698         if(ct > 0){
43699             if(this.selectedIndex == -1){
43700                 this.select(0);
43701             }else if(this.selectedIndex != 0){
43702                 this.select(this.selectedIndex-1);
43703             }
43704         }
43705     },
43706
43707     // private
43708     onKeyUp : function(e){
43709         if(this.editable !== false && !e.isSpecialKey()){
43710             this.lastKey = e.getKey();
43711             this.dqTask.delay(this.queryDelay);
43712         }
43713     },
43714
43715     // private
43716     validateBlur : function(){
43717         return !this.list || !this.list.isVisible();   
43718     },
43719
43720     // private
43721     initQuery : function(){
43722         this.doQuery(this.getRawValue());
43723     },
43724
43725     // private
43726     doForce : function(){
43727         if(this.el.dom.value.length > 0){
43728             this.el.dom.value =
43729                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
43730              
43731         }
43732     },
43733
43734     /**
43735      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
43736      * query allowing the query action to be canceled if needed.
43737      * @param {String} query The SQL query to execute
43738      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
43739      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
43740      * saved in the current store (defaults to false)
43741      */
43742     doQuery : function(q, forceAll){
43743         if(q === undefined || q === null){
43744             q = '';
43745         }
43746         var qe = {
43747             query: q,
43748             forceAll: forceAll,
43749             combo: this,
43750             cancel:false
43751         };
43752         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
43753             return false;
43754         }
43755         q = qe.query;
43756         forceAll = qe.forceAll;
43757         if(forceAll === true || (q.length >= this.minChars)){
43758             if(this.lastQuery != q || this.alwaysQuery){
43759                 this.lastQuery = q;
43760                 if(this.mode == 'local'){
43761                     this.selectedIndex = -1;
43762                     if(forceAll){
43763                         this.store.clearFilter();
43764                     }else{
43765                         this.store.filter(this.displayField, q);
43766                     }
43767                     this.onLoad();
43768                 }else{
43769                     this.store.baseParams[this.queryParam] = q;
43770                     this.store.load({
43771                         params: this.getParams(q)
43772                     });
43773                     this.expand();
43774                 }
43775             }else{
43776                 this.selectedIndex = -1;
43777                 this.onLoad();   
43778             }
43779         }
43780     },
43781
43782     // private
43783     getParams : function(q){
43784         var p = {};
43785         //p[this.queryParam] = q;
43786         if(this.pageSize){
43787             p.start = 0;
43788             p.limit = this.pageSize;
43789         }
43790         return p;
43791     },
43792
43793     /**
43794      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
43795      */
43796     collapse : function(){
43797         if(!this.isExpanded()){
43798             return;
43799         }
43800         this.list.hide();
43801         Roo.get(document).un('mousedown', this.collapseIf, this);
43802         Roo.get(document).un('mousewheel', this.collapseIf, this);
43803         if (!this.editable) {
43804             Roo.get(document).un('keydown', this.listKeyPress, this);
43805         }
43806         this.fireEvent('collapse', this);
43807     },
43808
43809     // private
43810     collapseIf : function(e){
43811         if(!e.within(this.wrap) && !e.within(this.list)){
43812             this.collapse();
43813         }
43814     },
43815
43816     /**
43817      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
43818      */
43819     expand : function(){
43820         if(this.isExpanded() || !this.hasFocus){
43821             return;
43822         }
43823         this.list.alignTo(this.el, this.listAlign);
43824         this.list.show();
43825         Roo.get(document).on('mousedown', this.collapseIf, this);
43826         Roo.get(document).on('mousewheel', this.collapseIf, this);
43827         if (!this.editable) {
43828             Roo.get(document).on('keydown', this.listKeyPress, this);
43829         }
43830         
43831         this.fireEvent('expand', this);
43832     },
43833
43834     // private
43835     // Implements the default empty TriggerField.onTriggerClick function
43836     onTriggerClick : function(){
43837         if(this.disabled){
43838             return;
43839         }
43840         if(this.isExpanded()){
43841             this.collapse();
43842             if (!this.blockFocus) {
43843                 this.el.focus();
43844             }
43845             
43846         }else {
43847             this.hasFocus = true;
43848             if(this.triggerAction == 'all') {
43849                 this.doQuery(this.allQuery, true);
43850             } else {
43851                 this.doQuery(this.getRawValue());
43852             }
43853             if (!this.blockFocus) {
43854                 this.el.focus();
43855             }
43856         }
43857     },
43858     listKeyPress : function(e)
43859     {
43860         //Roo.log('listkeypress');
43861         // scroll to first matching element based on key pres..
43862         if (e.isSpecialKey()) {
43863             return false;
43864         }
43865         var k = String.fromCharCode(e.getKey()).toUpperCase();
43866         //Roo.log(k);
43867         var match  = false;
43868         var csel = this.view.getSelectedNodes();
43869         var cselitem = false;
43870         if (csel.length) {
43871             var ix = this.view.indexOf(csel[0]);
43872             cselitem  = this.store.getAt(ix);
43873             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
43874                 cselitem = false;
43875             }
43876             
43877         }
43878         
43879         this.store.each(function(v) { 
43880             if (cselitem) {
43881                 // start at existing selection.
43882                 if (cselitem.id == v.id) {
43883                     cselitem = false;
43884                 }
43885                 return;
43886             }
43887                 
43888             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
43889                 match = this.store.indexOf(v);
43890                 return false;
43891             }
43892         }, this);
43893         
43894         if (match === false) {
43895             return true; // no more action?
43896         }
43897         // scroll to?
43898         this.view.select(match);
43899         var sn = Roo.get(this.view.getSelectedNodes()[0]);
43900         sn.scrollIntoView(sn.dom.parentNode, false);
43901     } 
43902
43903     /** 
43904     * @cfg {Boolean} grow 
43905     * @hide 
43906     */
43907     /** 
43908     * @cfg {Number} growMin 
43909     * @hide 
43910     */
43911     /** 
43912     * @cfg {Number} growMax 
43913     * @hide 
43914     */
43915     /**
43916      * @hide
43917      * @method autoSize
43918      */
43919 });/*
43920  * Copyright(c) 2010-2012, Roo J Solutions Limited
43921  *
43922  * Licence LGPL
43923  *
43924  */
43925
43926 /**
43927  * @class Roo.form.ComboBoxArray
43928  * @extends Roo.form.TextField
43929  * A facebook style adder... for lists of email / people / countries  etc...
43930  * pick multiple items from a combo box, and shows each one.
43931  *
43932  *  Fred [x]  Brian [x]  [Pick another |v]
43933  *
43934  *
43935  *  For this to work: it needs various extra information
43936  *    - normal combo problay has
43937  *      name, hiddenName
43938  *    + displayField, valueField
43939  *
43940  *    For our purpose...
43941  *
43942  *
43943  *   If we change from 'extends' to wrapping...
43944  *   
43945  *  
43946  *
43947  
43948  
43949  * @constructor
43950  * Create a new ComboBoxArray.
43951  * @param {Object} config Configuration options
43952  */
43953  
43954
43955 Roo.form.ComboBoxArray = function(config)
43956 {
43957     this.addEvents({
43958         /**
43959          * @event beforeremove
43960          * Fires before remove the value from the list
43961              * @param {Roo.form.ComboBoxArray} _self This combo box array
43962              * @param {Roo.form.ComboBoxArray.Item} item removed item
43963              */
43964         'beforeremove' : true,
43965         /**
43966          * @event remove
43967          * Fires when remove the value from the list
43968              * @param {Roo.form.ComboBoxArray} _self This combo box array
43969              * @param {Roo.form.ComboBoxArray.Item} item removed item
43970              */
43971         'remove' : true
43972         
43973         
43974     });
43975     
43976     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
43977     
43978     this.items = new Roo.util.MixedCollection(false);
43979     
43980     // construct the child combo...
43981     
43982     
43983     
43984     
43985    
43986     
43987 }
43988
43989  
43990 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
43991
43992     /**
43993      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
43994      */
43995     
43996     lastData : false,
43997     
43998     // behavies liek a hiddne field
43999     inputType:      'hidden',
44000     /**
44001      * @cfg {Number} width The width of the box that displays the selected element
44002      */ 
44003     width:          300,
44004
44005     
44006     
44007     /**
44008      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
44009      */
44010     name : false,
44011     /**
44012      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
44013      */
44014     hiddenName : false,
44015       /**
44016      * @cfg {String} seperator    The value seperator normally ',' 
44017      */
44018     seperator : ',',
44019     
44020     // private the array of items that are displayed..
44021     items  : false,
44022     // private - the hidden field el.
44023     hiddenEl : false,
44024     // private - the filed el..
44025     el : false,
44026     
44027     //validateValue : function() { return true; }, // all values are ok!
44028     //onAddClick: function() { },
44029     
44030     onRender : function(ct, position) 
44031     {
44032         
44033         // create the standard hidden element
44034         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
44035         
44036         
44037         // give fake names to child combo;
44038         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
44039         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
44040         
44041         this.combo = Roo.factory(this.combo, Roo.form);
44042         this.combo.onRender(ct, position);
44043         if (typeof(this.combo.width) != 'undefined') {
44044             this.combo.onResize(this.combo.width,0);
44045         }
44046         
44047         this.combo.initEvents();
44048         
44049         // assigned so form know we need to do this..
44050         this.store          = this.combo.store;
44051         this.valueField     = this.combo.valueField;
44052         this.displayField   = this.combo.displayField ;
44053         
44054         
44055         this.combo.wrap.addClass('x-cbarray-grp');
44056         
44057         var cbwrap = this.combo.wrap.createChild(
44058             {tag: 'div', cls: 'x-cbarray-cb'},
44059             this.combo.el.dom
44060         );
44061         
44062              
44063         this.hiddenEl = this.combo.wrap.createChild({
44064             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
44065         });
44066         this.el = this.combo.wrap.createChild({
44067             tag: 'input',  type:'hidden' , name: this.name, value : ''
44068         });
44069          //   this.el.dom.removeAttribute("name");
44070         
44071         
44072         this.outerWrap = this.combo.wrap;
44073         this.wrap = cbwrap;
44074         
44075         this.outerWrap.setWidth(this.width);
44076         this.outerWrap.dom.removeChild(this.el.dom);
44077         
44078         this.wrap.dom.appendChild(this.el.dom);
44079         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
44080         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
44081         
44082         this.combo.trigger.setStyle('position','relative');
44083         this.combo.trigger.setStyle('left', '0px');
44084         this.combo.trigger.setStyle('top', '2px');
44085         
44086         this.combo.el.setStyle('vertical-align', 'text-bottom');
44087         
44088         //this.trigger.setStyle('vertical-align', 'top');
44089         
44090         // this should use the code from combo really... on('add' ....)
44091         if (this.adder) {
44092             
44093         
44094             this.adder = this.outerWrap.createChild(
44095                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
44096             var _t = this;
44097             this.adder.on('click', function(e) {
44098                 _t.fireEvent('adderclick', this, e);
44099             }, _t);
44100         }
44101         //var _t = this;
44102         //this.adder.on('click', this.onAddClick, _t);
44103         
44104         
44105         this.combo.on('select', function(cb, rec, ix) {
44106             this.addItem(rec.data);
44107             
44108             cb.setValue('');
44109             cb.el.dom.value = '';
44110             //cb.lastData = rec.data;
44111             // add to list
44112             
44113         }, this);
44114         
44115         
44116     },
44117     
44118     
44119     getName: function()
44120     {
44121         // returns hidden if it's set..
44122         if (!this.rendered) {return ''};
44123         return  this.hiddenName ? this.hiddenName : this.name;
44124         
44125     },
44126     
44127     
44128     onResize: function(w, h){
44129         
44130         return;
44131         // not sure if this is needed..
44132         //this.combo.onResize(w,h);
44133         
44134         if(typeof w != 'number'){
44135             // we do not handle it!?!?
44136             return;
44137         }
44138         var tw = this.combo.trigger.getWidth();
44139         tw += this.addicon ? this.addicon.getWidth() : 0;
44140         tw += this.editicon ? this.editicon.getWidth() : 0;
44141         var x = w - tw;
44142         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
44143             
44144         this.combo.trigger.setStyle('left', '0px');
44145         
44146         if(this.list && this.listWidth === undefined){
44147             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
44148             this.list.setWidth(lw);
44149             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
44150         }
44151         
44152     
44153         
44154     },
44155     
44156     addItem: function(rec)
44157     {
44158         var valueField = this.combo.valueField;
44159         var displayField = this.combo.displayField;
44160         
44161         if (this.items.indexOfKey(rec[valueField]) > -1) {
44162             //console.log("GOT " + rec.data.id);
44163             return;
44164         }
44165         
44166         var x = new Roo.form.ComboBoxArray.Item({
44167             //id : rec[this.idField],
44168             data : rec,
44169             displayField : displayField ,
44170             tipField : displayField ,
44171             cb : this
44172         });
44173         // use the 
44174         this.items.add(rec[valueField],x);
44175         // add it before the element..
44176         this.updateHiddenEl();
44177         x.render(this.outerWrap, this.wrap.dom);
44178         // add the image handler..
44179     },
44180     
44181     updateHiddenEl : function()
44182     {
44183         this.validate();
44184         if (!this.hiddenEl) {
44185             return;
44186         }
44187         var ar = [];
44188         var idField = this.combo.valueField;
44189         
44190         this.items.each(function(f) {
44191             ar.push(f.data[idField]);
44192         });
44193         this.hiddenEl.dom.value = ar.join(this.seperator);
44194         this.validate();
44195     },
44196     
44197     reset : function()
44198     {
44199         this.items.clear();
44200         
44201         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
44202            el.remove();
44203         });
44204         
44205         this.el.dom.value = '';
44206         if (this.hiddenEl) {
44207             this.hiddenEl.dom.value = '';
44208         }
44209         
44210     },
44211     getValue: function()
44212     {
44213         return this.hiddenEl ? this.hiddenEl.dom.value : '';
44214     },
44215     setValue: function(v) // not a valid action - must use addItems..
44216     {
44217         
44218         this.reset();
44219          
44220         if (this.store.isLocal && (typeof(v) == 'string')) {
44221             // then we can use the store to find the values..
44222             // comma seperated at present.. this needs to allow JSON based encoding..
44223             this.hiddenEl.value  = v;
44224             var v_ar = [];
44225             Roo.each(v.split(this.seperator), function(k) {
44226                 Roo.log("CHECK " + this.valueField + ',' + k);
44227                 var li = this.store.query(this.valueField, k);
44228                 if (!li.length) {
44229                     return;
44230                 }
44231                 var add = {};
44232                 add[this.valueField] = k;
44233                 add[this.displayField] = li.item(0).data[this.displayField];
44234                 
44235                 this.addItem(add);
44236             }, this) 
44237              
44238         }
44239         if (typeof(v) == 'object' ) {
44240             // then let's assume it's an array of objects..
44241             Roo.each(v, function(l) {
44242                 var add = l;
44243                 if (typeof(l) == 'string') {
44244                     add = {};
44245                     add[this.valueField] = l;
44246                     add[this.displayField] = l
44247                 }
44248                 this.addItem(add);
44249             }, this);
44250              
44251         }
44252         
44253         
44254     },
44255     setFromData: function(v)
44256     {
44257         // this recieves an object, if setValues is called.
44258         this.reset();
44259         this.el.dom.value = v[this.displayField];
44260         this.hiddenEl.dom.value = v[this.valueField];
44261         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
44262             return;
44263         }
44264         var kv = v[this.valueField];
44265         var dv = v[this.displayField];
44266         kv = typeof(kv) != 'string' ? '' : kv;
44267         dv = typeof(dv) != 'string' ? '' : dv;
44268         
44269         
44270         var keys = kv.split(this.seperator);
44271         var display = dv.split(this.seperator);
44272         for (var i = 0 ; i < keys.length; i++) {
44273             add = {};
44274             add[this.valueField] = keys[i];
44275             add[this.displayField] = display[i];
44276             this.addItem(add);
44277         }
44278       
44279         
44280     },
44281     
44282     /**
44283      * Validates the combox array value
44284      * @return {Boolean} True if the value is valid, else false
44285      */
44286     validate : function(){
44287         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
44288             this.clearInvalid();
44289             return true;
44290         }
44291         return false;
44292     },
44293     
44294     validateValue : function(value){
44295         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
44296         
44297     },
44298     
44299     /*@
44300      * overide
44301      * 
44302      */
44303     isDirty : function() {
44304         if(this.disabled) {
44305             return false;
44306         }
44307         
44308         try {
44309             var d = Roo.decode(String(this.originalValue));
44310         } catch (e) {
44311             return String(this.getValue()) !== String(this.originalValue);
44312         }
44313         
44314         var originalValue = [];
44315         
44316         for (var i = 0; i < d.length; i++){
44317             originalValue.push(d[i][this.valueField]);
44318         }
44319         
44320         return String(this.getValue()) !== String(originalValue.join(this.seperator));
44321         
44322     }
44323     
44324 });
44325
44326
44327
44328 /**
44329  * @class Roo.form.ComboBoxArray.Item
44330  * @extends Roo.BoxComponent
44331  * A selected item in the list
44332  *  Fred [x]  Brian [x]  [Pick another |v]
44333  * 
44334  * @constructor
44335  * Create a new item.
44336  * @param {Object} config Configuration options
44337  */
44338  
44339 Roo.form.ComboBoxArray.Item = function(config) {
44340     config.id = Roo.id();
44341     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
44342 }
44343
44344 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
44345     data : {},
44346     cb: false,
44347     displayField : false,
44348     tipField : false,
44349     
44350     
44351     defaultAutoCreate : {
44352         tag: 'div',
44353         cls: 'x-cbarray-item',
44354         cn : [ 
44355             { tag: 'div' },
44356             {
44357                 tag: 'img',
44358                 width:16,
44359                 height : 16,
44360                 src : Roo.BLANK_IMAGE_URL ,
44361                 align: 'center'
44362             }
44363         ]
44364         
44365     },
44366     
44367  
44368     onRender : function(ct, position)
44369     {
44370         Roo.form.Field.superclass.onRender.call(this, ct, position);
44371         
44372         if(!this.el){
44373             var cfg = this.getAutoCreate();
44374             this.el = ct.createChild(cfg, position);
44375         }
44376         
44377         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
44378         
44379         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
44380             this.cb.renderer(this.data) :
44381             String.format('{0}',this.data[this.displayField]);
44382         
44383             
44384         this.el.child('div').dom.setAttribute('qtip',
44385                         String.format('{0}',this.data[this.tipField])
44386         );
44387         
44388         this.el.child('img').on('click', this.remove, this);
44389         
44390     },
44391    
44392     remove : function()
44393     {
44394         if(this.cb.disabled){
44395             return;
44396         }
44397         
44398         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
44399             this.cb.items.remove(this);
44400             this.el.child('img').un('click', this.remove, this);
44401             this.el.remove();
44402             this.cb.updateHiddenEl();
44403
44404             this.cb.fireEvent('remove', this.cb, this);
44405         }
44406         
44407     }
44408 });/*
44409  * RooJS Library 1.1.1
44410  * Copyright(c) 2008-2011  Alan Knowles
44411  *
44412  * License - LGPL
44413  */
44414  
44415
44416 /**
44417  * @class Roo.form.ComboNested
44418  * @extends Roo.form.ComboBox
44419  * A combobox for that allows selection of nested items in a list,
44420  * eg.
44421  *
44422  *  Book
44423  *    -> red
44424  *    -> green
44425  *  Table
44426  *    -> square
44427  *      ->red
44428  *      ->green
44429  *    -> rectangle
44430  *      ->green
44431  *      
44432  * 
44433  * @constructor
44434  * Create a new ComboNested
44435  * @param {Object} config Configuration options
44436  */
44437 Roo.form.ComboNested = function(config){
44438     Roo.form.ComboCheck.superclass.constructor.call(this, config);
44439     // should verify some data...
44440     // like
44441     // hiddenName = required..
44442     // displayField = required
44443     // valudField == required
44444     var req= [ 'hiddenName', 'displayField', 'valueField' ];
44445     var _t = this;
44446     Roo.each(req, function(e) {
44447         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
44448             throw "Roo.form.ComboNested : missing value for: " + e;
44449         }
44450     });
44451      
44452     
44453 };
44454
44455 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
44456    
44457     /*
44458      * @config {Number} max Number of columns to show
44459      */
44460     
44461     maxColumns : 3,
44462    
44463     list : null, // the outermost div..
44464     innerLists : null, // the
44465     views : null,
44466     stores : null,
44467     // private
44468     loadingChildren : false,
44469     
44470     onRender : function(ct, position)
44471     {
44472         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
44473         
44474         if(this.hiddenName){
44475             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
44476                     'before', true);
44477             this.hiddenField.value =
44478                 this.hiddenValue !== undefined ? this.hiddenValue :
44479                 this.value !== undefined ? this.value : '';
44480
44481             // prevent input submission
44482             this.el.dom.removeAttribute('name');
44483              
44484              
44485         }
44486         
44487         if(Roo.isGecko){
44488             this.el.dom.setAttribute('autocomplete', 'off');
44489         }
44490
44491         var cls = 'x-combo-list';
44492
44493         this.list = new Roo.Layer({
44494             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
44495         });
44496
44497         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
44498         this.list.setWidth(lw);
44499         this.list.swallowEvent('mousewheel');
44500         this.assetHeight = 0;
44501
44502         if(this.title){
44503             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
44504             this.assetHeight += this.header.getHeight();
44505         }
44506         this.innerLists = [];
44507         this.views = [];
44508         this.stores = [];
44509         for (var i =0 ; i < this.maxColumns; i++) {
44510             this.onRenderList( cls, i);
44511         }
44512         
44513         // always needs footer, as we are going to have an 'OK' button.
44514         this.footer = this.list.createChild({cls:cls+'-ft'});
44515         this.pageTb = new Roo.Toolbar(this.footer);  
44516         var _this = this;
44517         this.pageTb.add(  {
44518             
44519             text: 'Done',
44520             handler: function()
44521             {
44522                 _this.collapse();
44523             }
44524         });
44525         
44526         if ( this.allowBlank && !this.disableClear) {
44527             
44528             this.pageTb.add(new Roo.Toolbar.Fill(), {
44529                 cls: 'x-btn-icon x-btn-clear',
44530                 text: '&#160;',
44531                 handler: function()
44532                 {
44533                     _this.collapse();
44534                     _this.clearValue();
44535                     _this.onSelect(false, -1);
44536                 }
44537             });
44538         }
44539         if (this.footer) {
44540             this.assetHeight += this.footer.getHeight();
44541         }
44542         
44543     },
44544     onRenderList : function (  cls, i)
44545     {
44546         
44547         var lw = Math.floor(
44548                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44549         );
44550         
44551         this.list.setWidth(lw); // default to '1'
44552
44553         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
44554         //il.on('mouseover', this.onViewOver, this, { list:  i });
44555         //il.on('mousemove', this.onViewMove, this, { list:  i });
44556         il.setWidth(lw);
44557         il.setStyle({ 'overflow-x' : 'hidden'});
44558
44559         if(!this.tpl){
44560             this.tpl = new Roo.Template({
44561                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
44562                 isEmpty: function (value, allValues) {
44563                     //Roo.log(value);
44564                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
44565                     return dl ? 'has-children' : 'no-children'
44566                 }
44567             });
44568         }
44569         
44570         var store  = this.store;
44571         if (i > 0) {
44572             store  = new Roo.data.SimpleStore({
44573                 //fields : this.store.reader.meta.fields,
44574                 reader : this.store.reader,
44575                 data : [ ]
44576             });
44577         }
44578         this.stores[i]  = store;
44579                   
44580         var view = this.views[i] = new Roo.View(
44581             il,
44582             this.tpl,
44583             {
44584                 singleSelect:true,
44585                 store: store,
44586                 selectedClass: this.selectedClass
44587             }
44588         );
44589         view.getEl().setWidth(lw);
44590         view.getEl().setStyle({
44591             position: i < 1 ? 'relative' : 'absolute',
44592             top: 0,
44593             left: (i * lw ) + 'px',
44594             display : i > 0 ? 'none' : 'block'
44595         });
44596         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
44597         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
44598         //view.on('click', this.onViewClick, this, { list : i });
44599
44600         store.on('beforeload', this.onBeforeLoad, this);
44601         store.on('load',  this.onLoad, this, { list  : i});
44602         store.on('loadexception', this.onLoadException, this);
44603
44604         // hide the other vies..
44605         
44606         
44607         
44608     },
44609       
44610     restrictHeight : function()
44611     {
44612         var mh = 0;
44613         Roo.each(this.innerLists, function(il,i) {
44614             var el = this.views[i].getEl();
44615             el.dom.style.height = '';
44616             var inner = el.dom;
44617             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
44618             // only adjust heights on other ones..
44619             mh = Math.max(h, mh);
44620             if (i < 1) {
44621                 
44622                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44623                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44624                
44625             }
44626             
44627             
44628         }, this);
44629         
44630         this.list.beginUpdate();
44631         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
44632         this.list.alignTo(this.el, this.listAlign);
44633         this.list.endUpdate();
44634         
44635     },
44636      
44637     
44638     // -- store handlers..
44639     // private
44640     onBeforeLoad : function()
44641     {
44642         if(!this.hasFocus){
44643             return;
44644         }
44645         this.innerLists[0].update(this.loadingText ?
44646                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
44647         this.restrictHeight();
44648         this.selectedIndex = -1;
44649     },
44650     // private
44651     onLoad : function(a,b,c,d)
44652     {
44653         if (!this.loadingChildren) {
44654             // then we are loading the top level. - hide the children
44655             for (var i = 1;i < this.views.length; i++) {
44656                 this.views[i].getEl().setStyle({ display : 'none' });
44657             }
44658             var lw = Math.floor(
44659                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44660             );
44661         
44662              this.list.setWidth(lw); // default to '1'
44663
44664             
44665         }
44666         if(!this.hasFocus){
44667             return;
44668         }
44669         
44670         if(this.store.getCount() > 0) {
44671             this.expand();
44672             this.restrictHeight();   
44673         } else {
44674             this.onEmptyResults();
44675         }
44676         
44677         if (!this.loadingChildren) {
44678             this.selectActive();
44679         }
44680         /*
44681         this.stores[1].loadData([]);
44682         this.stores[2].loadData([]);
44683         this.views
44684         */    
44685     
44686         //this.el.focus();
44687     },
44688     
44689     
44690     // private
44691     onLoadException : function()
44692     {
44693         this.collapse();
44694         Roo.log(this.store.reader.jsonData);
44695         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
44696             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
44697         }
44698         
44699         
44700     },
44701     // no cleaning of leading spaces on blur here.
44702     cleanLeadingSpace : function(e) { },
44703     
44704
44705     onSelectChange : function (view, sels, opts )
44706     {
44707         var ix = view.getSelectedIndexes();
44708          
44709         if (opts.list > this.maxColumns - 2) {
44710             if (view.store.getCount()<  1) {
44711                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
44712
44713             } else  {
44714                 if (ix.length) {
44715                     // used to clear ?? but if we are loading unselected 
44716                     this.setFromData(view.store.getAt(ix[0]).data);
44717                 }
44718                 
44719             }
44720             
44721             return;
44722         }
44723         
44724         if (!ix.length) {
44725             // this get's fired when trigger opens..
44726            // this.setFromData({});
44727             var str = this.stores[opts.list+1];
44728             str.data.clear(); // removeall wihtout the fire events..
44729             return;
44730         }
44731         
44732         var rec = view.store.getAt(ix[0]);
44733          
44734         this.setFromData(rec.data);
44735         this.fireEvent('select', this, rec, ix[0]);
44736         
44737         var lw = Math.floor(
44738              (
44739                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
44740              ) / this.maxColumns
44741         );
44742         this.loadingChildren = true;
44743         this.stores[opts.list+1].loadDataFromChildren( rec );
44744         this.loadingChildren = false;
44745         var dl = this.stores[opts.list+1]. getTotalCount();
44746         
44747         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
44748         
44749         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
44750         for (var i = opts.list+2; i < this.views.length;i++) {
44751             this.views[i].getEl().setStyle({ display : 'none' });
44752         }
44753         
44754         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
44755         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
44756         
44757         if (this.isLoading) {
44758            // this.selectActive(opts.list);
44759         }
44760          
44761     },
44762     
44763     
44764     
44765     
44766     onDoubleClick : function()
44767     {
44768         this.collapse(); //??
44769     },
44770     
44771      
44772     
44773     
44774     
44775     // private
44776     recordToStack : function(store, prop, value, stack)
44777     {
44778         var cstore = new Roo.data.SimpleStore({
44779             //fields : this.store.reader.meta.fields, // we need array reader.. for
44780             reader : this.store.reader,
44781             data : [ ]
44782         });
44783         var _this = this;
44784         var record  = false;
44785         var srec = false;
44786         if(store.getCount() < 1){
44787             return false;
44788         }
44789         store.each(function(r){
44790             if(r.data[prop] == value){
44791                 record = r;
44792             srec = r;
44793                 return false;
44794             }
44795             if (r.data.cn && r.data.cn.length) {
44796                 cstore.loadDataFromChildren( r);
44797                 var cret = _this.recordToStack(cstore, prop, value, stack);
44798                 if (cret !== false) {
44799                     record = cret;
44800                     srec = r;
44801                     return false;
44802                 }
44803             }
44804              
44805             return true;
44806         });
44807         if (record == false) {
44808             return false
44809         }
44810         stack.unshift(srec);
44811         return record;
44812     },
44813     
44814     /*
44815      * find the stack of stores that match our value.
44816      *
44817      * 
44818      */
44819     
44820     selectActive : function ()
44821     {
44822         // if store is not loaded, then we will need to wait for that to happen first.
44823         var stack = [];
44824         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
44825         for (var i = 0; i < stack.length; i++ ) {
44826             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
44827         }
44828         
44829     }
44830         
44831          
44832     
44833     
44834     
44835     
44836 });/*
44837  * Based on:
44838  * Ext JS Library 1.1.1
44839  * Copyright(c) 2006-2007, Ext JS, LLC.
44840  *
44841  * Originally Released Under LGPL - original licence link has changed is not relivant.
44842  *
44843  * Fork - LGPL
44844  * <script type="text/javascript">
44845  */
44846 /**
44847  * @class Roo.form.Checkbox
44848  * @extends Roo.form.Field
44849  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
44850  * @constructor
44851  * Creates a new Checkbox
44852  * @param {Object} config Configuration options
44853  */
44854 Roo.form.Checkbox = function(config){
44855     Roo.form.Checkbox.superclass.constructor.call(this, config);
44856     this.addEvents({
44857         /**
44858          * @event check
44859          * Fires when the checkbox is checked or unchecked.
44860              * @param {Roo.form.Checkbox} this This checkbox
44861              * @param {Boolean} checked The new checked value
44862              */
44863         check : true
44864     });
44865 };
44866
44867 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
44868     /**
44869      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
44870      */
44871     focusClass : undefined,
44872     /**
44873      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
44874      */
44875     fieldClass: "x-form-field",
44876     /**
44877      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
44878      */
44879     checked: false,
44880     /**
44881      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
44882      * {tag: "input", type: "checkbox", autocomplete: "off"})
44883      */
44884     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
44885     /**
44886      * @cfg {String} boxLabel The text that appears beside the checkbox
44887      */
44888     boxLabel : "",
44889     /**
44890      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
44891      */  
44892     inputValue : '1',
44893     /**
44894      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
44895      */
44896      valueOff: '0', // value when not checked..
44897
44898     actionMode : 'viewEl', 
44899     //
44900     // private
44901     itemCls : 'x-menu-check-item x-form-item',
44902     groupClass : 'x-menu-group-item',
44903     inputType : 'hidden',
44904     
44905     
44906     inSetChecked: false, // check that we are not calling self...
44907     
44908     inputElement: false, // real input element?
44909     basedOn: false, // ????
44910     
44911     isFormField: true, // not sure where this is needed!!!!
44912
44913     onResize : function(){
44914         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
44915         if(!this.boxLabel){
44916             this.el.alignTo(this.wrap, 'c-c');
44917         }
44918     },
44919
44920     initEvents : function(){
44921         Roo.form.Checkbox.superclass.initEvents.call(this);
44922         this.el.on("click", this.onClick,  this);
44923         this.el.on("change", this.onClick,  this);
44924     },
44925
44926
44927     getResizeEl : function(){
44928         return this.wrap;
44929     },
44930
44931     getPositionEl : function(){
44932         return this.wrap;
44933     },
44934
44935     // private
44936     onRender : function(ct, position){
44937         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
44938         /*
44939         if(this.inputValue !== undefined){
44940             this.el.dom.value = this.inputValue;
44941         }
44942         */
44943         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
44944         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
44945         var viewEl = this.wrap.createChild({ 
44946             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
44947         this.viewEl = viewEl;   
44948         this.wrap.on('click', this.onClick,  this); 
44949         
44950         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
44951         this.el.on('propertychange', this.setFromHidden,  this);  //ie
44952         
44953         
44954         
44955         if(this.boxLabel){
44956             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
44957         //    viewEl.on('click', this.onClick,  this); 
44958         }
44959         //if(this.checked){
44960             this.setChecked(this.checked);
44961         //}else{
44962             //this.checked = this.el.dom;
44963         //}
44964
44965     },
44966
44967     // private
44968     initValue : Roo.emptyFn,
44969
44970     /**
44971      * Returns the checked state of the checkbox.
44972      * @return {Boolean} True if checked, else false
44973      */
44974     getValue : function(){
44975         if(this.el){
44976             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
44977         }
44978         return this.valueOff;
44979         
44980     },
44981
44982         // private
44983     onClick : function(){ 
44984         if (this.disabled) {
44985             return;
44986         }
44987         this.setChecked(!this.checked);
44988
44989         //if(this.el.dom.checked != this.checked){
44990         //    this.setValue(this.el.dom.checked);
44991        // }
44992     },
44993
44994     /**
44995      * Sets the checked state of the checkbox.
44996      * On is always based on a string comparison between inputValue and the param.
44997      * @param {Boolean/String} value - the value to set 
44998      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
44999      */
45000     setValue : function(v,suppressEvent){
45001         
45002         
45003         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
45004         //if(this.el && this.el.dom){
45005         //    this.el.dom.checked = this.checked;
45006         //    this.el.dom.defaultChecked = this.checked;
45007         //}
45008         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
45009         //this.fireEvent("check", this, this.checked);
45010     },
45011     // private..
45012     setChecked : function(state,suppressEvent)
45013     {
45014         if (this.inSetChecked) {
45015             this.checked = state;
45016             return;
45017         }
45018         
45019     
45020         if(this.wrap){
45021             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
45022         }
45023         this.checked = state;
45024         if(suppressEvent !== true){
45025             this.fireEvent('check', this, state);
45026         }
45027         this.inSetChecked = true;
45028                  
45029                 this.el.dom.value = state ? this.inputValue : this.valueOff;
45030                  
45031         this.inSetChecked = false;
45032         
45033     },
45034     // handle setting of hidden value by some other method!!?!?
45035     setFromHidden: function()
45036     {
45037         if(!this.el){
45038             return;
45039         }
45040         //console.log("SET FROM HIDDEN");
45041         //alert('setFrom hidden');
45042         this.setValue(this.el.dom.value);
45043     },
45044     
45045     onDestroy : function()
45046     {
45047         if(this.viewEl){
45048             Roo.get(this.viewEl).remove();
45049         }
45050          
45051         Roo.form.Checkbox.superclass.onDestroy.call(this);
45052     },
45053     
45054     setBoxLabel : function(str)
45055     {
45056         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
45057     }
45058
45059 });/*
45060  * Based on:
45061  * Ext JS Library 1.1.1
45062  * Copyright(c) 2006-2007, Ext JS, LLC.
45063  *
45064  * Originally Released Under LGPL - original licence link has changed is not relivant.
45065  *
45066  * Fork - LGPL
45067  * <script type="text/javascript">
45068  */
45069  
45070 /**
45071  * @class Roo.form.Radio
45072  * @extends Roo.form.Checkbox
45073  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
45074  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
45075  * @constructor
45076  * Creates a new Radio
45077  * @param {Object} config Configuration options
45078  */
45079 Roo.form.Radio = function(){
45080     Roo.form.Radio.superclass.constructor.apply(this, arguments);
45081 };
45082 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
45083     inputType: 'radio',
45084
45085     /**
45086      * If this radio is part of a group, it will return the selected value
45087      * @return {String}
45088      */
45089     getGroupValue : function(){
45090         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
45091     },
45092     
45093     
45094     onRender : function(ct, position){
45095         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
45096         
45097         if(this.inputValue !== undefined){
45098             this.el.dom.value = this.inputValue;
45099         }
45100          
45101         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
45102         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
45103         //var viewEl = this.wrap.createChild({ 
45104         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
45105         //this.viewEl = viewEl;   
45106         //this.wrap.on('click', this.onClick,  this); 
45107         
45108         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
45109         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
45110         
45111         
45112         
45113         if(this.boxLabel){
45114             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
45115         //    viewEl.on('click', this.onClick,  this); 
45116         }
45117          if(this.checked){
45118             this.el.dom.checked =   'checked' ;
45119         }
45120          
45121     },
45122     /**
45123      * Sets the checked state of the checkbox.
45124      * On is always based on a string comparison between inputValue and the param.
45125      * @param {Boolean/String} value - the value to set 
45126      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
45127      */
45128     setValue : function(v,suppressEvent){
45129         
45130         
45131         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
45132         //if(this.el && this.el.dom){
45133         //    this.el.dom.checked = this.checked;
45134         //    this.el.dom.defaultChecked = this.checked;
45135         //}
45136         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
45137         
45138         this.el.dom.form[this.name].value = v;
45139      
45140         //this.fireEvent("check", this, this.checked);
45141     },
45142     // private..
45143     setChecked : function(state,suppressEvent)
45144     {
45145          
45146         if(this.wrap){
45147             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
45148         }
45149         this.checked = state;
45150         if(suppressEvent !== true){
45151             this.fireEvent('check', this, state);
45152         }
45153                  
45154                   
45155        
45156         
45157     },
45158     reset : function(){
45159         // this.setValue(this.resetValue);
45160         //this.originalValue = this.getValue();
45161         this.clearInvalid();
45162     } 
45163     
45164 });Roo.rtf = {}; // namespace
45165 Roo.rtf.Hex = function(hex)
45166 {
45167     this.hexstr = hex;
45168 };
45169 Roo.rtf.Paragraph = function(opts)
45170 {
45171     this.content = []; ///??? is that used?
45172 };Roo.rtf.Span = function(opts)
45173 {
45174     this.value = opts.value;
45175 };
45176
45177 Roo.rtf.Group = function(parent)
45178 {
45179     // we dont want to acutally store parent - it will make debug a nightmare..
45180     this.content = [];
45181     this.cn  = [];
45182      
45183        
45184     
45185 };
45186
45187 Roo.rtf.Group.prototype = {
45188     ignorable : false,
45189     content: false,
45190     cn: false,
45191     addContent : function(node) {
45192         // could set styles...
45193         this.content.push(node);
45194     },
45195     addChild : function(cn)
45196     {
45197         this.cn.push(cn);
45198     },
45199     // only for images really...
45200     toDataURL : function()
45201     {
45202         var mimetype = false;
45203         switch(true) {
45204             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
45205                 mimetype = "image/png";
45206                 break;
45207              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
45208                 mimetype = "image/jpeg";
45209                 break;
45210             default :
45211                 return 'about:blank'; // ?? error?
45212         }
45213         
45214         
45215         var hexstring = this.content[this.content.length-1].value;
45216         
45217         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
45218             return String.fromCharCode(parseInt(a, 16));
45219         }).join(""));
45220     }
45221     
45222 };
45223 // this looks like it's normally the {rtf{ .... }}
45224 Roo.rtf.Document = function()
45225 {
45226     // we dont want to acutally store parent - it will make debug a nightmare..
45227     this.rtlch  = [];
45228     this.content = [];
45229     this.cn = [];
45230     
45231 };
45232 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
45233     addChild : function(cn)
45234     {
45235         this.cn.push(cn);
45236         switch(cn.type) {
45237             case 'rtlch': // most content seems to be inside this??
45238             case 'listtext':
45239             case 'shpinst':
45240                 this.rtlch.push(cn);
45241                 return;
45242             default:
45243                 this[cn.type] = cn;
45244         }
45245         
45246     },
45247     
45248     getElementsByType : function(type)
45249     {
45250         var ret =  [];
45251         this._getElementsByType(type, ret, this.cn, 'rtf');
45252         return ret;
45253     },
45254     _getElementsByType : function (type, ret, search_array, path)
45255     {
45256         search_array.forEach(function(n,i) {
45257             if (n.type == type) {
45258                 n.path = path + '/' + n.type + ':' + i;
45259                 ret.push(n);
45260             }
45261             if (n.cn.length > 0) {
45262                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
45263             }
45264         },this);
45265     }
45266     
45267 });
45268  
45269 Roo.rtf.Ctrl = function(opts)
45270 {
45271     this.value = opts.value;
45272     this.param = opts.param;
45273 };
45274 /**
45275  *
45276  *
45277  * based on this https://github.com/iarna/rtf-parser
45278  * it's really only designed to extract pict from pasted RTF 
45279  *
45280  * usage:
45281  *
45282  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
45283  *  
45284  *
45285  */
45286
45287  
45288
45289
45290
45291 Roo.rtf.Parser = function(text) {
45292     //super({objectMode: true})
45293     this.text = '';
45294     this.parserState = this.parseText;
45295     
45296     // these are for interpeter...
45297     this.doc = {};
45298     ///this.parserState = this.parseTop
45299     this.groupStack = [];
45300     this.hexStore = [];
45301     this.doc = false;
45302     
45303     this.groups = []; // where we put the return.
45304     
45305     for (var ii = 0; ii < text.length; ++ii) {
45306         ++this.cpos;
45307         
45308         if (text[ii] === '\n') {
45309             ++this.row;
45310             this.col = 1;
45311         } else {
45312             ++this.col;
45313         }
45314         this.parserState(text[ii]);
45315     }
45316     
45317     
45318     
45319 };
45320 Roo.rtf.Parser.prototype = {
45321     text : '', // string being parsed..
45322     controlWord : '',
45323     controlWordParam :  '',
45324     hexChar : '',
45325     doc : false,
45326     group: false,
45327     groupStack : false,
45328     hexStore : false,
45329     
45330     
45331     cpos : 0, 
45332     row : 1, // reportin?
45333     col : 1, //
45334
45335      
45336     push : function (el)
45337     {
45338         var m = 'cmd'+ el.type;
45339         if (typeof(this[m]) == 'undefined') {
45340             Roo.log('invalid cmd:' + el.type);
45341             return;
45342         }
45343         this[m](el);
45344         //Roo.log(el);
45345     },
45346     flushHexStore : function()
45347     {
45348         if (this.hexStore.length < 1) {
45349             return;
45350         }
45351         var hexstr = this.hexStore.map(
45352             function(cmd) {
45353                 return cmd.value;
45354         }).join('');
45355         
45356         this.group.addContent( new Roo.rtf.Hex( hexstr ));
45357               
45358             
45359         this.hexStore.splice(0)
45360         
45361     },
45362     
45363     cmdgroupstart : function()
45364     {
45365         this.flushHexStore();
45366         if (this.group) {
45367             this.groupStack.push(this.group);
45368         }
45369          // parent..
45370         if (this.doc === false) {
45371             this.group = this.doc = new Roo.rtf.Document();
45372             return;
45373             
45374         }
45375         this.group = new Roo.rtf.Group(this.group);
45376     },
45377     cmdignorable : function()
45378     {
45379         this.flushHexStore();
45380         this.group.ignorable = true;
45381     },
45382     cmdendparagraph : function()
45383     {
45384         this.flushHexStore();
45385         this.group.addContent(new Roo.rtf.Paragraph());
45386     },
45387     cmdgroupend : function ()
45388     {
45389         this.flushHexStore();
45390         var endingGroup = this.group;
45391         
45392         
45393         this.group = this.groupStack.pop();
45394         if (this.group) {
45395             this.group.addChild(endingGroup);
45396         }
45397         
45398         
45399         
45400         var doc = this.group || this.doc;
45401         //if (endingGroup instanceof FontTable) {
45402         //  doc.fonts = endingGroup.table
45403         //} else if (endingGroup instanceof ColorTable) {
45404         //  doc.colors = endingGroup.table
45405         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
45406         if (endingGroup.ignorable === false) {
45407             //code
45408             this.groups.push(endingGroup);
45409            // Roo.log( endingGroup );
45410         }
45411             //Roo.each(endingGroup.content, function(item)) {
45412             //    doc.addContent(item);
45413             //}
45414             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
45415         //}
45416     },
45417     cmdtext : function (cmd)
45418     {
45419         this.flushHexStore();
45420         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
45421             //this.group = this.doc
45422             return;  // we really don't care about stray text...
45423         }
45424         this.group.addContent(new Roo.rtf.Span(cmd));
45425     },
45426     cmdcontrolword : function (cmd)
45427     {
45428         this.flushHexStore();
45429         if (!this.group.type) {
45430             this.group.type = cmd.value;
45431             return;
45432         }
45433         this.group.addContent(new Roo.rtf.Ctrl(cmd));
45434         // we actually don't care about ctrl words...
45435         return ;
45436         /*
45437         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
45438         if (this[method]) {
45439             this[method](cmd.param)
45440         } else {
45441             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
45442         }
45443         */
45444     },
45445     cmdhexchar : function(cmd) {
45446         this.hexStore.push(cmd);
45447     },
45448     cmderror : function(cmd) {
45449         throw cmd.value;
45450     },
45451     
45452     /*
45453       _flush (done) {
45454         if (this.text !== '\u0000') this.emitText()
45455         done()
45456       }
45457       */
45458       
45459       
45460     parseText : function(c)
45461     {
45462         if (c === '\\') {
45463             this.parserState = this.parseEscapes;
45464         } else if (c === '{') {
45465             this.emitStartGroup();
45466         } else if (c === '}') {
45467             this.emitEndGroup();
45468         } else if (c === '\x0A' || c === '\x0D') {
45469             // cr/lf are noise chars
45470         } else {
45471             this.text += c;
45472         }
45473     },
45474     
45475     parseEscapes: function (c)
45476     {
45477         if (c === '\\' || c === '{' || c === '}') {
45478             this.text += c;
45479             this.parserState = this.parseText;
45480         } else {
45481             this.parserState = this.parseControlSymbol;
45482             this.parseControlSymbol(c);
45483         }
45484     },
45485     parseControlSymbol: function(c)
45486     {
45487         if (c === '~') {
45488             this.text += '\u00a0'; // nbsp
45489             this.parserState = this.parseText
45490         } else if (c === '-') {
45491              this.text += '\u00ad'; // soft hyphen
45492         } else if (c === '_') {
45493             this.text += '\u2011'; // non-breaking hyphen
45494         } else if (c === '*') {
45495             this.emitIgnorable();
45496             this.parserState = this.parseText;
45497         } else if (c === "'") {
45498             this.parserState = this.parseHexChar;
45499         } else if (c === '|') { // formula cacter
45500             this.emitFormula();
45501             this.parserState = this.parseText;
45502         } else if (c === ':') { // subentry in an index entry
45503             this.emitIndexSubEntry();
45504             this.parserState = this.parseText;
45505         } else if (c === '\x0a') {
45506             this.emitEndParagraph();
45507             this.parserState = this.parseText;
45508         } else if (c === '\x0d') {
45509             this.emitEndParagraph();
45510             this.parserState = this.parseText;
45511         } else {
45512             this.parserState = this.parseControlWord;
45513             this.parseControlWord(c);
45514         }
45515     },
45516     parseHexChar: function (c)
45517     {
45518         if (/^[A-Fa-f0-9]$/.test(c)) {
45519             this.hexChar += c;
45520             if (this.hexChar.length >= 2) {
45521               this.emitHexChar();
45522               this.parserState = this.parseText;
45523             }
45524             return;
45525         }
45526         this.emitError("Invalid character \"" + c + "\" in hex literal.");
45527         this.parserState = this.parseText;
45528         
45529     },
45530     parseControlWord : function(c)
45531     {
45532         if (c === ' ') {
45533             this.emitControlWord();
45534             this.parserState = this.parseText;
45535         } else if (/^[-\d]$/.test(c)) {
45536             this.parserState = this.parseControlWordParam;
45537             this.controlWordParam += c;
45538         } else if (/^[A-Za-z]$/.test(c)) {
45539           this.controlWord += c;
45540         } else {
45541           this.emitControlWord();
45542           this.parserState = this.parseText;
45543           this.parseText(c);
45544         }
45545     },
45546     parseControlWordParam : function (c) {
45547         if (/^\d$/.test(c)) {
45548           this.controlWordParam += c;
45549         } else if (c === ' ') {
45550           this.emitControlWord();
45551           this.parserState = this.parseText;
45552         } else {
45553           this.emitControlWord();
45554           this.parserState = this.parseText;
45555           this.parseText(c);
45556         }
45557     },
45558     
45559     
45560     
45561     
45562     emitText : function () {
45563         if (this.text === '') {
45564             return;
45565         }
45566         this.push({
45567             type: 'text',
45568             value: this.text,
45569             pos: this.cpos,
45570             row: this.row,
45571             col: this.col
45572         });
45573         this.text = ''
45574     },
45575     emitControlWord : function ()
45576     {
45577         this.emitText();
45578         if (this.controlWord === '') {
45579             // do we want to track this - it seems just to cause problems.
45580             //this.emitError('empty control word');
45581         } else {
45582             this.push({
45583                   type: 'controlword',
45584                   value: this.controlWord,
45585                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
45586                   pos: this.cpos,
45587                   row: this.row,
45588                   col: this.col
45589             });
45590         }
45591         this.controlWord = '';
45592         this.controlWordParam = '';
45593     },
45594     emitStartGroup : function ()
45595     {
45596         this.emitText();
45597         this.push({
45598             type: 'groupstart',
45599             pos: this.cpos,
45600             row: this.row,
45601             col: this.col
45602         });
45603     },
45604     emitEndGroup : function ()
45605     {
45606         this.emitText();
45607         this.push({
45608             type: 'groupend',
45609             pos: this.cpos,
45610             row: this.row,
45611             col: this.col
45612         });
45613     },
45614     emitIgnorable : function ()
45615     {
45616         this.emitText();
45617         this.push({
45618             type: 'ignorable',
45619             pos: this.cpos,
45620             row: this.row,
45621             col: this.col
45622         });
45623     },
45624     emitHexChar : function ()
45625     {
45626         this.emitText();
45627         this.push({
45628             type: 'hexchar',
45629             value: this.hexChar,
45630             pos: this.cpos,
45631             row: this.row,
45632             col: this.col
45633         });
45634         this.hexChar = ''
45635     },
45636     emitError : function (message)
45637     {
45638       this.emitText();
45639       this.push({
45640             type: 'error',
45641             value: message,
45642             row: this.row,
45643             col: this.col,
45644             char: this.cpos //,
45645             //stack: new Error().stack
45646         });
45647     },
45648     emitEndParagraph : function () {
45649         this.emitText();
45650         this.push({
45651             type: 'endparagraph',
45652             pos: this.cpos,
45653             row: this.row,
45654             col: this.col
45655         });
45656     }
45657      
45658 } ;
45659 Roo.htmleditor = {};
45660  
45661 /**
45662  * @class Roo.htmleditor.Filter
45663  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
45664  * @cfg {DomElement} node The node to iterate and filter
45665  * @cfg {boolean|String|Array} tag Tags to replace 
45666  * @constructor
45667  * Create a new Filter.
45668  * @param {Object} config Configuration options
45669  */
45670
45671
45672
45673 Roo.htmleditor.Filter = function(cfg) {
45674     Roo.apply(this.cfg);
45675     // this does not actually call walk as it's really just a abstract class
45676 }
45677
45678
45679 Roo.htmleditor.Filter.prototype = {
45680     
45681     node: false,
45682     
45683     tag: false,
45684
45685     // overrride to do replace comments.
45686     replaceComment : false,
45687     
45688     // overrride to do replace or do stuff with tags..
45689     replaceTag : false,
45690     
45691     walk : function(dom)
45692     {
45693         Roo.each( Array.from(dom.childNodes), function( e ) {
45694             switch(true) {
45695                 
45696                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
45697                     this.replaceComment(e);
45698                     return;
45699                 
45700                 case e.nodeType != 1: //not a node.
45701                     return;
45702                 
45703                 case this.tag === true: // everything
45704                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
45705                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
45706                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
45707                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
45708                     if (this.replaceTag && false === this.replaceTag(e)) {
45709                         return;
45710                     }
45711                     if (e.hasChildNodes()) {
45712                         this.walk(e);
45713                     }
45714                     return;
45715                 
45716                 default:    // tags .. that do not match.
45717                     if (e.hasChildNodes()) {
45718                         this.walk(e);
45719                     }
45720             }
45721             
45722         }, this);
45723         
45724     },
45725     
45726     
45727     removeNodeKeepChildren : function( node)
45728     {
45729     
45730         ar = Array.from(node.childNodes);
45731         for (var i = 0; i < ar.length; i++) {
45732          
45733             node.removeChild(ar[i]);
45734             // what if we need to walk these???
45735             node.parentNode.insertBefore(ar[i], node);
45736            
45737         }
45738         node.parentNode.removeChild(node);
45739     }
45740 }; 
45741
45742 /**
45743  * @class Roo.htmleditor.FilterAttributes
45744  * clean attributes and  styles including http:// etc.. in attribute
45745  * @constructor
45746 * Run a new Attribute Filter
45747 * @param {Object} config Configuration options
45748  */
45749 Roo.htmleditor.FilterAttributes = function(cfg)
45750 {
45751     Roo.apply(this, cfg);
45752     this.attrib_black = this.attrib_black || [];
45753     this.attrib_white = this.attrib_white || [];
45754
45755     this.attrib_clean = this.attrib_clean || [];
45756     this.style_white = this.style_white || [];
45757     this.style_black = this.style_black || [];
45758     this.walk(cfg.node);
45759 }
45760
45761 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
45762 {
45763     tag: true, // all tags
45764     
45765     attrib_black : false, // array
45766     attrib_clean : false,
45767     attrib_white : false,
45768
45769     style_white : false,
45770     style_black : false,
45771      
45772      
45773     replaceTag : function(node)
45774     {
45775         if (!node.attributes || !node.attributes.length) {
45776             return true;
45777         }
45778         
45779         for (var i = node.attributes.length-1; i > -1 ; i--) {
45780             var a = node.attributes[i];
45781             //console.log(a);
45782             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
45783                 node.removeAttribute(a.name);
45784                 continue;
45785             }
45786             
45787             
45788             
45789             if (a.name.toLowerCase().substr(0,2)=='on')  {
45790                 node.removeAttribute(a.name);
45791                 continue;
45792             }
45793             
45794             
45795             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
45796                 node.removeAttribute(a.name);
45797                 continue;
45798             }
45799             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
45800                 this.cleanAttr(node,a.name,a.value); // fixme..
45801                 continue;
45802             }
45803             if (a.name == 'style') {
45804                 this.cleanStyle(node,a.name,a.value);
45805                 continue;
45806             }
45807             /// clean up MS crap..
45808             // tecnically this should be a list of valid class'es..
45809             
45810             
45811             if (a.name == 'class') {
45812                 if (a.value.match(/^Mso/)) {
45813                     node.removeAttribute('class');
45814                 }
45815                 
45816                 if (a.value.match(/^body$/)) {
45817                     node.removeAttribute('class');
45818                 }
45819                 continue;
45820             }
45821             
45822             
45823             // style cleanup!?
45824             // class cleanup?
45825             
45826         }
45827         return true; // clean children
45828     },
45829         
45830     cleanAttr: function(node, n,v)
45831     {
45832         
45833         if (v.match(/^\./) || v.match(/^\//)) {
45834             return;
45835         }
45836         if (v.match(/^(http|https):\/\//)
45837             || v.match(/^mailto:/) 
45838             || v.match(/^ftp:/)
45839             || v.match(/^data:/)
45840             ) {
45841             return;
45842         }
45843         if (v.match(/^#/)) {
45844             return;
45845         }
45846         if (v.match(/^\{/)) { // allow template editing.
45847             return;
45848         }
45849 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
45850         node.removeAttribute(n);
45851         
45852     },
45853     cleanStyle : function(node,  n,v)
45854     {
45855         if (v.match(/expression/)) { //XSS?? should we even bother..
45856             node.removeAttribute(n);
45857             return;
45858         }
45859         
45860         var parts = v.split(/;/);
45861         var clean = [];
45862         
45863         Roo.each(parts, function(p) {
45864             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
45865             if (!p.length) {
45866                 return true;
45867             }
45868             var l = p.split(':').shift().replace(/\s+/g,'');
45869             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
45870             
45871             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
45872                 return true;
45873             }
45874             //Roo.log()
45875             // only allow 'c whitelisted system attributes'
45876             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
45877                 return true;
45878             }
45879             
45880             
45881             clean.push(p);
45882             return true;
45883         },this);
45884         if (clean.length) { 
45885             node.setAttribute(n, clean.join(';'));
45886         } else {
45887             node.removeAttribute(n);
45888         }
45889         
45890     }
45891         
45892         
45893         
45894     
45895 });/**
45896  * @class Roo.htmleditor.FilterBlack
45897  * remove blacklisted elements.
45898  * @constructor
45899  * Run a new Blacklisted Filter
45900  * @param {Object} config Configuration options
45901  */
45902
45903 Roo.htmleditor.FilterBlack = function(cfg)
45904 {
45905     Roo.apply(this, cfg);
45906     this.walk(cfg.node);
45907 }
45908
45909 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
45910 {
45911     tag : true, // all elements.
45912    
45913     replaceTag : function(n)
45914     {
45915         n.parentNode.removeChild(n);
45916     }
45917 });
45918 /**
45919  * @class Roo.htmleditor.FilterComment
45920  * remove comments.
45921  * @constructor
45922 * Run a new Comments Filter
45923 * @param {Object} config Configuration options
45924  */
45925 Roo.htmleditor.FilterComment = function(cfg)
45926 {
45927     this.walk(cfg.node);
45928 }
45929
45930 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
45931 {
45932   
45933     replaceComment : function(n)
45934     {
45935         n.parentNode.removeChild(n);
45936     }
45937 });/**
45938  * @class Roo.htmleditor.FilterKeepChildren
45939  * remove tags but keep children
45940  * @constructor
45941  * Run a new Keep Children Filter
45942  * @param {Object} config Configuration options
45943  */
45944
45945 Roo.htmleditor.FilterKeepChildren = function(cfg)
45946 {
45947     Roo.apply(this, cfg);
45948     if (this.tag === false) {
45949         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
45950     }
45951     // hacky?
45952     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
45953         this.cleanNamespace = true;
45954     }
45955         
45956     this.walk(cfg.node);
45957 }
45958
45959 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
45960 {
45961     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
45962   
45963     replaceTag : function(node)
45964     {
45965         // walk children...
45966         //Roo.log(node.tagName);
45967         var ar = Array.from(node.childNodes);
45968         //remove first..
45969         
45970         for (var i = 0; i < ar.length; i++) {
45971             var e = ar[i];
45972             if (e.nodeType == 1) {
45973                 if (
45974                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
45975                     || // array and it matches
45976                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
45977                     ||
45978                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
45979                     ||
45980                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
45981                 ) {
45982                     this.replaceTag(ar[i]); // child is blacklisted as well...
45983                     continue;
45984                 }
45985             }
45986         }  
45987         ar = Array.from(node.childNodes);
45988         for (var i = 0; i < ar.length; i++) {
45989          
45990             node.removeChild(ar[i]);
45991             // what if we need to walk these???
45992             node.parentNode.insertBefore(ar[i], node);
45993             if (this.tag !== false) {
45994                 this.walk(ar[i]);
45995                 
45996             }
45997         }
45998         //Roo.log("REMOVE:" + node.tagName);
45999         node.parentNode.removeChild(node);
46000         return false; // don't walk children
46001         
46002         
46003     }
46004 });/**
46005  * @class Roo.htmleditor.FilterParagraph
46006  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
46007  * like on 'push' to remove the <p> tags and replace them with line breaks.
46008  * @constructor
46009  * Run a new Paragraph Filter
46010  * @param {Object} config Configuration options
46011  */
46012
46013 Roo.htmleditor.FilterParagraph = function(cfg)
46014 {
46015     // no need to apply config.
46016     this.walk(cfg.node);
46017 }
46018
46019 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
46020 {
46021     
46022      
46023     tag : 'P',
46024     
46025      
46026     replaceTag : function(node)
46027     {
46028         
46029         if (node.childNodes.length == 1 &&
46030             node.childNodes[0].nodeType == 3 &&
46031             node.childNodes[0].textContent.trim().length < 1
46032             ) {
46033             // remove and replace with '<BR>';
46034             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
46035             return false; // no need to walk..
46036         }
46037         var ar = Array.from(node.childNodes);
46038         for (var i = 0; i < ar.length; i++) {
46039             node.removeChild(ar[i]);
46040             // what if we need to walk these???
46041             node.parentNode.insertBefore(ar[i], node);
46042         }
46043         // now what about this?
46044         // <p> &nbsp; </p>
46045         
46046         // double BR.
46047         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
46048         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
46049         node.parentNode.removeChild(node);
46050         
46051         return false;
46052
46053     }
46054     
46055 });/**
46056  * @class Roo.htmleditor.FilterSpan
46057  * filter span's with no attributes out..
46058  * @constructor
46059  * Run a new Span Filter
46060  * @param {Object} config Configuration options
46061  */
46062
46063 Roo.htmleditor.FilterSpan = function(cfg)
46064 {
46065     // no need to apply config.
46066     this.walk(cfg.node);
46067 }
46068
46069 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
46070 {
46071      
46072     tag : 'SPAN',
46073      
46074  
46075     replaceTag : function(node)
46076     {
46077         if (node.attributes && node.attributes.length > 0) {
46078             return true; // walk if there are any.
46079         }
46080         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
46081         return false;
46082      
46083     }
46084     
46085 });/**
46086  * @class Roo.htmleditor.FilterTableWidth
46087   try and remove table width data - as that frequently messes up other stuff.
46088  * 
46089  *      was cleanTableWidths.
46090  *
46091  * Quite often pasting from word etc.. results in tables with column and widths.
46092  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
46093  *
46094  * @constructor
46095  * Run a new Table Filter
46096  * @param {Object} config Configuration options
46097  */
46098
46099 Roo.htmleditor.FilterTableWidth = function(cfg)
46100 {
46101     // no need to apply config.
46102     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
46103     this.walk(cfg.node);
46104 }
46105
46106 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
46107 {
46108      
46109      
46110     
46111     replaceTag: function(node) {
46112         
46113         
46114       
46115         if (node.hasAttribute('width')) {
46116             node.removeAttribute('width');
46117         }
46118         
46119          
46120         if (node.hasAttribute("style")) {
46121             // pretty basic...
46122             
46123             var styles = node.getAttribute("style").split(";");
46124             var nstyle = [];
46125             Roo.each(styles, function(s) {
46126                 if (!s.match(/:/)) {
46127                     return;
46128                 }
46129                 var kv = s.split(":");
46130                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
46131                     return;
46132                 }
46133                 // what ever is left... we allow.
46134                 nstyle.push(s);
46135             });
46136             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46137             if (!nstyle.length) {
46138                 node.removeAttribute('style');
46139             }
46140         }
46141         
46142         return true; // continue doing children..
46143     }
46144 });/**
46145  * @class Roo.htmleditor.FilterWord
46146  * try and clean up all the mess that Word generates.
46147  * 
46148  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
46149  
46150  * @constructor
46151  * Run a new Span Filter
46152  * @param {Object} config Configuration options
46153  */
46154
46155 Roo.htmleditor.FilterWord = function(cfg)
46156 {
46157     // no need to apply config.
46158     this.replaceDocBullets(cfg.node);
46159     
46160     this.replaceAname(cfg.node);
46161     // this is disabled as the removal is done by other filters;
46162    // this.walk(cfg.node);
46163     
46164     
46165 }
46166
46167 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
46168 {
46169     tag: true,
46170      
46171     
46172     /**
46173      * Clean up MS wordisms...
46174      */
46175     replaceTag : function(node)
46176     {
46177          
46178         // no idea what this does - span with text, replaceds with just text.
46179         if(
46180                 node.nodeName == 'SPAN' &&
46181                 !node.hasAttributes() &&
46182                 node.childNodes.length == 1 &&
46183                 node.firstChild.nodeName == "#text"  
46184         ) {
46185             var textNode = node.firstChild;
46186             node.removeChild(textNode);
46187             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46188                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
46189             }
46190             node.parentNode.insertBefore(textNode, node);
46191             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46192                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
46193             }
46194             
46195             node.parentNode.removeChild(node);
46196             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
46197         }
46198         
46199    
46200         
46201         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
46202             node.parentNode.removeChild(node);
46203             return false; // dont do chidlren
46204         }
46205         //Roo.log(node.tagName);
46206         // remove - but keep children..
46207         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
46208             //Roo.log('-- removed');
46209             while (node.childNodes.length) {
46210                 var cn = node.childNodes[0];
46211                 node.removeChild(cn);
46212                 node.parentNode.insertBefore(cn, node);
46213                 // move node to parent - and clean it..
46214                 if (cn.nodeType == 1) {
46215                     this.replaceTag(cn);
46216                 }
46217                 
46218             }
46219             node.parentNode.removeChild(node);
46220             /// no need to iterate chidlren = it's got none..
46221             //this.iterateChildren(node, this.cleanWord);
46222             return false; // no need to iterate children.
46223         }
46224         // clean styles
46225         if (node.className.length) {
46226             
46227             var cn = node.className.split(/\W+/);
46228             var cna = [];
46229             Roo.each(cn, function(cls) {
46230                 if (cls.match(/Mso[a-zA-Z]+/)) {
46231                     return;
46232                 }
46233                 cna.push(cls);
46234             });
46235             node.className = cna.length ? cna.join(' ') : '';
46236             if (!cna.length) {
46237                 node.removeAttribute("class");
46238             }
46239         }
46240         
46241         if (node.hasAttribute("lang")) {
46242             node.removeAttribute("lang");
46243         }
46244         
46245         if (node.hasAttribute("style")) {
46246             
46247             var styles = node.getAttribute("style").split(";");
46248             var nstyle = [];
46249             Roo.each(styles, function(s) {
46250                 if (!s.match(/:/)) {
46251                     return;
46252                 }
46253                 var kv = s.split(":");
46254                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
46255                     return;
46256                 }
46257                 // what ever is left... we allow.
46258                 nstyle.push(s);
46259             });
46260             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46261             if (!nstyle.length) {
46262                 node.removeAttribute('style');
46263             }
46264         }
46265         return true; // do children
46266         
46267         
46268         
46269     },
46270     
46271     styleToObject: function(node)
46272     {
46273         var styles = (node.getAttribute("style") || '').split(";");
46274         var ret = {};
46275         Roo.each(styles, function(s) {
46276             if (!s.match(/:/)) {
46277                 return;
46278             }
46279             var kv = s.split(":");
46280              
46281             // what ever is left... we allow.
46282             ret[kv[0].trim()] = kv[1];
46283         });
46284         return ret;
46285     },
46286     
46287     
46288     replaceAname : function (doc)
46289     {
46290         // replace all the a/name without..
46291         var aa = Array.from(doc.getElementsByTagName('a'));
46292         for (var i = 0; i  < aa.length; i++) {
46293             var a = aa[i];
46294             if (a.hasAttribute("name")) {
46295                 a.removeAttribute("name");
46296             }
46297             if (a.hasAttribute("href")) {
46298                 continue;
46299             }
46300             // reparent children.
46301             this.removeNodeKeepChildren(a);
46302             
46303         }
46304         
46305         
46306         
46307     },
46308
46309     
46310     
46311     replaceDocBullets : function(doc)
46312     {
46313         // this is a bit odd - but it appears some indents use ql-indent-1
46314          //Roo.log(doc.innerHTML);
46315         
46316         var listpara = Array.from(doc.getElementsByClassName('MsoListParagraphCxSpFirst'));
46317         for( var i = 0; i < listpara.length; i ++) {
46318             listpara[i].className = "MsoListParagraph";
46319         }
46320         
46321         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpMiddle'));
46322         for( var i = 0; i < listpara.length; i ++) {
46323             listpara[i].className = "MsoListParagraph";
46324         }
46325         listpara =  Array.from(doc.getElementsByClassName('MsoListParagraphCxSpLast'));
46326         for( var i = 0; i < listpara.length; i ++) {
46327             listpara[i].className = "MsoListParagraph";
46328         }
46329         listpara =  Array.from(doc.getElementsByClassName('ql-indent-1'));
46330         for( var i = 0; i < listpara.length; i ++) {
46331             listpara[i].className = "MsoListParagraph";
46332         }
46333         
46334         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
46335         var htwo =  Array.from(doc.getElementsByTagName('h2'));
46336         for( var i = 0; i < htwo.length; i ++) {
46337             if (htwo[i].hasAttribute('style') && htwo[i].getAttribute('style').match(/mso-list:/)) {
46338                 htwo[i].className = "MsoListParagraph";
46339             }
46340         }
46341         listpara =  Array.from(doc.getElementsByClassName('MsoNormal'));
46342         for( var i = 0; i < listpara.length; i ++) {
46343             if (listpara[i].hasAttribute('style') && listpara[i].getAttribute('style').match(/mso-list:/)) {
46344                 listpara[i].className = "MsoListParagraph";
46345             } else {
46346                 listpara[i].className = "MsoNormalx";
46347             }
46348         }
46349        
46350         listpara = doc.getElementsByClassName('MsoListParagraph');
46351         // Roo.log(doc.innerHTML);
46352         
46353         
46354         
46355         while(listpara.length) {
46356             
46357             this.replaceDocBullet(listpara.item(0));
46358         }
46359       
46360     },
46361     
46362      
46363     
46364     replaceDocBullet : function(p)
46365     {
46366         // gather all the siblings.
46367         var ns = p,
46368             parent = p.parentNode,
46369             doc = parent.ownerDocument,
46370             items = [];
46371             
46372         var listtype = 'ul';   
46373         while (ns) {
46374             if (ns.nodeType != 1) {
46375                 ns = ns.nextSibling;
46376                 continue;
46377             }
46378             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
46379                 break;
46380             }
46381             var spans = ns.getElementsByTagName('span');
46382             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
46383                 items.push(ns);
46384                 ns = ns.nextSibling;
46385                 has_list = true;
46386                 if (spans.length && spans[0].hasAttribute('style')) {
46387                     var  style = this.styleToObject(spans[0]);
46388                     if (typeof(style['font-family']) != 'undefined' && !style['font-family'].match(/Symbol/)) {
46389                         listtype = 'ol';
46390                     }
46391                 }
46392                 
46393                 continue;
46394             }
46395             var spans = ns.getElementsByTagName('span');
46396             if (!spans.length) {
46397                 break;
46398             }
46399             var has_list  = false;
46400             for(var i = 0; i < spans.length; i++) {
46401                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
46402                     has_list = true;
46403                     break;
46404                 }
46405             }
46406             if (!has_list) {
46407                 break;
46408             }
46409             items.push(ns);
46410             ns = ns.nextSibling;
46411             
46412             
46413         }
46414         if (!items.length) {
46415             ns.className = "";
46416             return;
46417         }
46418         
46419         var ul = parent.ownerDocument.createElement(listtype); // what about number lists...
46420         parent.insertBefore(ul, p);
46421         var lvl = 0;
46422         var stack = [ ul ];
46423         var last_li = false;
46424         
46425         var margin_to_depth = {};
46426         max_margins = -1;
46427         
46428         items.forEach(function(n, ipos) {
46429             //Roo.log("got innertHMLT=" + n.innerHTML);
46430             
46431             var spans = n.getElementsByTagName('span');
46432             if (!spans.length) {
46433                 //Roo.log("No spans found");
46434                  
46435                 parent.removeChild(n);
46436                 
46437                 
46438                 return; // skip it...
46439             }
46440            
46441                 
46442             var num = 1;
46443             var style = {};
46444             for(var i = 0; i < spans.length; i++) {
46445             
46446                 style = this.styleToObject(spans[i]);
46447                 if (typeof(style['mso-list']) == 'undefined') {
46448                     continue;
46449                 }
46450                 if (listtype == 'ol') {
46451                    num = spans[i].innerText.replace(/[^0-9]+]/g,'')  * 1;
46452                 }
46453                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
46454                 break;
46455             }
46456             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
46457             style = this.styleToObject(n); // mo-list is from the parent node.
46458             if (typeof(style['mso-list']) == 'undefined') {
46459                 //Roo.log("parent is missing level");
46460                   
46461                 parent.removeChild(n);
46462                  
46463                 return;
46464             }
46465             
46466             var margin = style['margin-left'];
46467             if (typeof(margin_to_depth[margin]) == 'undefined') {
46468                 max_margins++;
46469                 margin_to_depth[margin] = max_margins;
46470             }
46471             nlvl = margin_to_depth[margin] ;
46472              
46473             if (nlvl > lvl) {
46474                 //new indent
46475                 var nul = doc.createElement(listtype); // what about number lists...
46476                 if (!last_li) {
46477                     last_li = doc.createElement('li');
46478                     stack[lvl].appendChild(last_li);
46479                 }
46480                 last_li.appendChild(nul);
46481                 stack[nlvl] = nul;
46482                 
46483             }
46484             lvl = nlvl;
46485             
46486             // not starting at 1..
46487             if (!stack[nlvl].hasAttribute("start") && listtype == "ol") {
46488                 stack[nlvl].setAttribute("start", num);
46489             }
46490             
46491             var nli = stack[nlvl].appendChild(doc.createElement('li'));
46492             last_li = nli;
46493             nli.innerHTML = n.innerHTML;
46494             //Roo.log("innerHTML = " + n.innerHTML);
46495             parent.removeChild(n);
46496             
46497              
46498              
46499             
46500         },this);
46501         
46502         
46503         
46504         
46505     }
46506     
46507     
46508     
46509 });
46510 /**
46511  * @class Roo.htmleditor.FilterStyleToTag
46512  * part of the word stuff... - certain 'styles' should be converted to tags.
46513  * eg.
46514  *   font-weight: bold -> bold
46515  *   ?? super / subscrit etc..
46516  * 
46517  * @constructor
46518 * Run a new style to tag filter.
46519 * @param {Object} config Configuration options
46520  */
46521 Roo.htmleditor.FilterStyleToTag = function(cfg)
46522 {
46523     
46524     this.tags = {
46525         B  : [ 'fontWeight' , 'bold'],
46526         I :  [ 'fontStyle' , 'italic'],
46527         //pre :  [ 'font-style' , 'italic'],
46528         // h1.. h6 ?? font-size?
46529         SUP : [ 'verticalAlign' , 'super' ],
46530         SUB : [ 'verticalAlign' , 'sub' ]
46531         
46532         
46533     };
46534     
46535     Roo.apply(this, cfg);
46536      
46537     
46538     this.walk(cfg.node);
46539     
46540     
46541     
46542 }
46543
46544
46545 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
46546 {
46547     tag: true, // all tags
46548     
46549     tags : false,
46550     
46551     
46552     replaceTag : function(node)
46553     {
46554         
46555         
46556         if (node.getAttribute("style") === null) {
46557             return true;
46558         }
46559         var inject = [];
46560         for (var k in this.tags) {
46561             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
46562                 inject.push(k);
46563                 node.style.removeProperty(this.tags[k][0]);
46564             }
46565         }
46566         if (!inject.length) {
46567             return true; 
46568         }
46569         var cn = Array.from(node.childNodes);
46570         var nn = node;
46571         Roo.each(inject, function(t) {
46572             var nc = node.ownerDocument.createElement(t);
46573             nn.appendChild(nc);
46574             nn = nc;
46575         });
46576         for(var i = 0;i < cn.length;cn++) {
46577             node.removeChild(cn[i]);
46578             nn.appendChild(cn[i]);
46579         }
46580         return true /// iterate thru
46581     }
46582     
46583 })/**
46584  * @class Roo.htmleditor.FilterLongBr
46585  * BR/BR/BR - keep a maximum of 2...
46586  * @constructor
46587  * Run a new Long BR Filter
46588  * @param {Object} config Configuration options
46589  */
46590
46591 Roo.htmleditor.FilterLongBr = function(cfg)
46592 {
46593     // no need to apply config.
46594     this.walk(cfg.node);
46595 }
46596
46597 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
46598 {
46599     
46600      
46601     tag : 'BR',
46602     
46603      
46604     replaceTag : function(node)
46605     {
46606         
46607         var ps = node.nextSibling;
46608         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46609             ps = ps.nextSibling;
46610         }
46611         
46612         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
46613             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
46614             return false;
46615         }
46616         
46617         if (!ps || ps.nodeType != 1) {
46618             return false;
46619         }
46620         
46621         if (!ps || ps.tagName != 'BR') {
46622            
46623             return false;
46624         }
46625         
46626         
46627         
46628         
46629         
46630         if (!node.previousSibling) {
46631             return false;
46632         }
46633         var ps = node.previousSibling;
46634         
46635         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46636             ps = ps.previousSibling;
46637         }
46638         if (!ps || ps.nodeType != 1) {
46639             return false;
46640         }
46641         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
46642         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
46643             return false;
46644         }
46645         
46646         node.parentNode.removeChild(node); // remove me...
46647         
46648         return false; // no need to do children
46649
46650     }
46651     
46652 }); 
46653
46654 /**
46655  * @class Roo.htmleditor.FilterBlock
46656  * removes id / data-block and contenteditable that are associated with blocks
46657  * usage should be done on a cloned copy of the dom
46658  * @constructor
46659 * Run a new Attribute Filter { node : xxxx }}
46660 * @param {Object} config Configuration options
46661  */
46662 Roo.htmleditor.FilterBlock = function(cfg)
46663 {
46664     Roo.apply(this, cfg);
46665     var qa = cfg.node.querySelectorAll;
46666     this.removeAttributes('data-block');
46667     this.removeAttributes('contenteditable');
46668     this.removeAttributes('id');
46669     
46670 }
46671
46672 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
46673 {
46674     node: true, // all tags
46675      
46676      
46677     removeAttributes : function(attr)
46678     {
46679         var ar = this.node.querySelectorAll('*[' + attr + ']');
46680         for (var i =0;i<ar.length;i++) {
46681             ar[i].removeAttribute(attr);
46682         }
46683     }
46684         
46685         
46686         
46687     
46688 });
46689 /***
46690  * This is based loosely on tinymce 
46691  * @class Roo.htmleditor.TidySerializer
46692  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46693  * @constructor
46694  * @method Serializer
46695  * @param {Object} settings Name/value settings object.
46696  */
46697
46698
46699 Roo.htmleditor.TidySerializer = function(settings)
46700 {
46701     Roo.apply(this, settings);
46702     
46703     this.writer = new Roo.htmleditor.TidyWriter(settings);
46704     
46705     
46706
46707 };
46708 Roo.htmleditor.TidySerializer.prototype = {
46709     
46710     /**
46711      * @param {boolean} inner do the inner of the node.
46712      */
46713     inner : false,
46714     
46715     writer : false,
46716     
46717     /**
46718     * Serializes the specified node into a string.
46719     *
46720     * @example
46721     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
46722     * @method serialize
46723     * @param {DomElement} node Node instance to serialize.
46724     * @return {String} String with HTML based on DOM tree.
46725     */
46726     serialize : function(node) {
46727         
46728         // = settings.validate;
46729         var writer = this.writer;
46730         var self  = this;
46731         this.handlers = {
46732             // #text
46733             3: function(node) {
46734                 
46735                 writer.text(node.nodeValue, node);
46736             },
46737             // #comment
46738             8: function(node) {
46739                 writer.comment(node.nodeValue);
46740             },
46741             // Processing instruction
46742             7: function(node) {
46743                 writer.pi(node.name, node.nodeValue);
46744             },
46745             // Doctype
46746             10: function(node) {
46747                 writer.doctype(node.nodeValue);
46748             },
46749             // CDATA
46750             4: function(node) {
46751                 writer.cdata(node.nodeValue);
46752             },
46753             // Document fragment
46754             11: function(node) {
46755                 node = node.firstChild;
46756                 if (!node) {
46757                     return;
46758                 }
46759                 while(node) {
46760                     self.walk(node);
46761                     node = node.nextSibling
46762                 }
46763             }
46764         };
46765         writer.reset();
46766         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
46767         return writer.getContent();
46768     },
46769
46770     walk: function(node)
46771     {
46772         var attrName, attrValue, sortedAttrs, i, l, elementRule,
46773             handler = this.handlers[node.nodeType];
46774             
46775         if (handler) {
46776             handler(node);
46777             return;
46778         }
46779     
46780         var name = node.nodeName;
46781         var isEmpty = node.childNodes.length < 1;
46782       
46783         var writer = this.writer;
46784         var attrs = node.attributes;
46785         // Sort attributes
46786         
46787         writer.start(node.nodeName, attrs, isEmpty, node);
46788         if (isEmpty) {
46789             return;
46790         }
46791         node = node.firstChild;
46792         if (!node) {
46793             writer.end(name);
46794             return;
46795         }
46796         while (node) {
46797             this.walk(node);
46798             node = node.nextSibling;
46799         }
46800         writer.end(name);
46801         
46802     
46803     }
46804     // Serialize element and treat all non elements as fragments
46805    
46806 }; 
46807
46808 /***
46809  * This is based loosely on tinymce 
46810  * @class Roo.htmleditor.TidyWriter
46811  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46812  *
46813  * Known issues?
46814  * - not tested much with 'PRE' formated elements.
46815  * 
46816  *
46817  *
46818  */
46819
46820 Roo.htmleditor.TidyWriter = function(settings)
46821 {
46822     
46823     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
46824     Roo.apply(this, settings);
46825     this.html = [];
46826     this.state = [];
46827      
46828     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
46829   
46830 }
46831 Roo.htmleditor.TidyWriter.prototype = {
46832
46833  
46834     state : false,
46835     
46836     indent :  '  ',
46837     
46838     // part of state...
46839     indentstr : '',
46840     in_pre: false,
46841     in_inline : false,
46842     last_inline : false,
46843     encode : false,
46844      
46845     
46846             /**
46847     * Writes the a start element such as <p id="a">.
46848     *
46849     * @method start
46850     * @param {String} name Name of the element.
46851     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
46852     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
46853     */
46854     start: function(name, attrs, empty, node)
46855     {
46856         var i, l, attr, value;
46857         
46858         // there are some situations where adding line break && indentation will not work. will not work.
46859         // <span / b / i ... formating?
46860         
46861         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46862         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
46863         
46864         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
46865         
46866         var add_lb = name == 'BR' ? false : in_inline;
46867         
46868         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
46869             i_inline = false;
46870         }
46871
46872         var indentstr =  this.indentstr;
46873         
46874         // e_inline = elements that can be inline, but still allow \n before and after?
46875         // only 'BR' ??? any others?
46876         
46877         // ADD LINE BEFORE tage
46878         if (!this.in_pre) {
46879             if (in_inline) {
46880                 //code
46881                 if (name == 'BR') {
46882                     this.addLine();
46883                 } else if (this.lastElementEndsWS()) {
46884                     this.addLine();
46885                 } else{
46886                     // otherwise - no new line. (and dont indent.)
46887                     indentstr = '';
46888                 }
46889                 
46890             } else {
46891                 this.addLine();
46892             }
46893         } else {
46894             indentstr = '';
46895         }
46896         
46897         this.html.push(indentstr + '<', name.toLowerCase());
46898         
46899         if (attrs) {
46900             for (i = 0, l = attrs.length; i < l; i++) {
46901                 attr = attrs[i];
46902                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
46903             }
46904         }
46905      
46906         if (empty) {
46907             if (is_short) {
46908                 this.html[this.html.length] = '/>';
46909             } else {
46910                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
46911             }
46912             var e_inline = name == 'BR' ? false : this.in_inline;
46913             
46914             if (!e_inline && !this.in_pre) {
46915                 this.addLine();
46916             }
46917             return;
46918         
46919         }
46920         // not empty..
46921         this.html[this.html.length] = '>';
46922         
46923         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
46924         /*
46925         if (!in_inline && !in_pre) {
46926             var cn = node.firstChild;
46927             while(cn) {
46928                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
46929                     in_inline = true
46930                     break;
46931                 }
46932                 cn = cn.nextSibling;
46933             }
46934              
46935         }
46936         */
46937         
46938         
46939         this.pushState({
46940             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
46941             in_pre : in_pre,
46942             in_inline :  in_inline
46943         });
46944         // add a line after if we are not in a
46945         
46946         if (!in_inline && !in_pre) {
46947             this.addLine();
46948         }
46949         
46950             
46951          
46952         
46953     },
46954     
46955     lastElementEndsWS : function()
46956     {
46957         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
46958         if (value === false) {
46959             return true;
46960         }
46961         return value.match(/\s+$/);
46962         
46963     },
46964     
46965     /**
46966      * Writes the a end element such as </p>.
46967      *
46968      * @method end
46969      * @param {String} name Name of the element.
46970      */
46971     end: function(name) {
46972         var value;
46973         this.popState();
46974         var indentstr = '';
46975         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46976         
46977         if (!this.in_pre && !in_inline) {
46978             this.addLine();
46979             indentstr  = this.indentstr;
46980         }
46981         this.html.push(indentstr + '</', name.toLowerCase(), '>');
46982         this.last_inline = in_inline;
46983         
46984         // pop the indent state..
46985     },
46986     /**
46987      * Writes a text node.
46988      *
46989      * In pre - we should not mess with the contents.
46990      * 
46991      *
46992      * @method text
46993      * @param {String} text String to write out.
46994      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
46995      */
46996     text: function(in_text, node)
46997     {
46998         // if not in whitespace critical
46999         if (in_text.length < 1) {
47000             return;
47001         }
47002         var text = new XMLSerializer().serializeToString(document.createTextNode(in_text)); // escape it properly?
47003         
47004         if (this.in_pre) {
47005             this.html[this.html.length] =  text;
47006             return;   
47007         }
47008         
47009         if (this.in_inline) {
47010             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
47011             if (text != ' ') {
47012                 text = text.replace(/\s+/,' ');  // all white space to single white space
47013                 
47014                     
47015                 // if next tag is '<BR>', then we can trim right..
47016                 if (node.nextSibling &&
47017                     node.nextSibling.nodeType == 1 &&
47018                     node.nextSibling.nodeName == 'BR' )
47019                 {
47020                     text = text.replace(/\s+$/g,'');
47021                 }
47022                 // if previous tag was a BR, we can also trim..
47023                 if (node.previousSibling &&
47024                     node.previousSibling.nodeType == 1 &&
47025                     node.previousSibling.nodeName == 'BR' )
47026                 {
47027                     text = this.indentstr +  text.replace(/^\s+/g,'');
47028                 }
47029                 if (text.match(/\n/)) {
47030                     text = text.replace(
47031                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
47032                     );
47033                     // remoeve the last whitespace / line break.
47034                     text = text.replace(/\n\s+$/,'');
47035                 }
47036                 // repace long lines
47037                 
47038             }
47039              
47040             this.html[this.html.length] =  text;
47041             return;   
47042         }
47043         // see if previous element was a inline element.
47044         var indentstr = this.indentstr;
47045    
47046         text = text.replace(/\s+/g," "); // all whitespace into single white space.
47047         
47048         // should trim left?
47049         if (node.previousSibling &&
47050             node.previousSibling.nodeType == 1 &&
47051             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
47052         {
47053             indentstr = '';
47054             
47055         } else {
47056             this.addLine();
47057             text = text.replace(/^\s+/,''); // trim left
47058           
47059         }
47060         // should trim right?
47061         if (node.nextSibling &&
47062             node.nextSibling.nodeType == 1 &&
47063             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
47064         {
47065           // noop
47066             
47067         }  else {
47068             text = text.replace(/\s+$/,''); // trim right
47069         }
47070          
47071               
47072         
47073         
47074         
47075         if (text.length < 1) {
47076             return;
47077         }
47078         if (!text.match(/\n/)) {
47079             this.html.push(indentstr + text);
47080             return;
47081         }
47082         
47083         text = this.indentstr + text.replace(
47084             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
47085         );
47086         // remoeve the last whitespace / line break.
47087         text = text.replace(/\s+$/,''); 
47088         
47089         this.html.push(text);
47090         
47091         // split and indent..
47092         
47093         
47094     },
47095     /**
47096      * Writes a cdata node such as <![CDATA[data]]>.
47097      *
47098      * @method cdata
47099      * @param {String} text String to write out inside the cdata.
47100      */
47101     cdata: function(text) {
47102         this.html.push('<![CDATA[', text, ']]>');
47103     },
47104     /**
47105     * Writes a comment node such as <!-- Comment -->.
47106     *
47107     * @method cdata
47108     * @param {String} text String to write out inside the comment.
47109     */
47110    comment: function(text) {
47111        this.html.push('<!--', text, '-->');
47112    },
47113     /**
47114      * Writes a PI node such as <?xml attr="value" ?>.
47115      *
47116      * @method pi
47117      * @param {String} name Name of the pi.
47118      * @param {String} text String to write out inside the pi.
47119      */
47120     pi: function(name, text) {
47121         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
47122         this.indent != '' && this.html.push('\n');
47123     },
47124     /**
47125      * Writes a doctype node such as <!DOCTYPE data>.
47126      *
47127      * @method doctype
47128      * @param {String} text String to write out inside the doctype.
47129      */
47130     doctype: function(text) {
47131         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
47132     },
47133     /**
47134      * Resets the internal buffer if one wants to reuse the writer.
47135      *
47136      * @method reset
47137      */
47138     reset: function() {
47139         this.html.length = 0;
47140         this.state = [];
47141         this.pushState({
47142             indentstr : '',
47143             in_pre : false, 
47144             in_inline : false
47145         })
47146     },
47147     /**
47148      * Returns the contents that got serialized.
47149      *
47150      * @method getContent
47151      * @return {String} HTML contents that got written down.
47152      */
47153     getContent: function() {
47154         return this.html.join('').replace(/\n$/, '');
47155     },
47156     
47157     pushState : function(cfg)
47158     {
47159         this.state.push(cfg);
47160         Roo.apply(this, cfg);
47161     },
47162     
47163     popState : function()
47164     {
47165         if (this.state.length < 1) {
47166             return; // nothing to push
47167         }
47168         var cfg = {
47169             in_pre: false,
47170             indentstr : ''
47171         };
47172         this.state.pop();
47173         if (this.state.length > 0) {
47174             cfg = this.state[this.state.length-1]; 
47175         }
47176         Roo.apply(this, cfg);
47177     },
47178     
47179     addLine: function()
47180     {
47181         if (this.html.length < 1) {
47182             return;
47183         }
47184         
47185         
47186         var value = this.html[this.html.length - 1];
47187         if (value.length > 0 && '\n' !== value) {
47188             this.html.push('\n');
47189         }
47190     }
47191     
47192     
47193 //'pre script noscript style textarea video audio iframe object code'
47194 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
47195 // inline 
47196 };
47197
47198 Roo.htmleditor.TidyWriter.inline_elements = [
47199         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
47200         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
47201 ];
47202 Roo.htmleditor.TidyWriter.shortend_elements = [
47203     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
47204     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
47205 ];
47206
47207 Roo.htmleditor.TidyWriter.whitespace_elements = [
47208     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
47209 ];/***
47210  * This is based loosely on tinymce 
47211  * @class Roo.htmleditor.TidyEntities
47212  * @static
47213  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
47214  *
47215  * Not 100% sure this is actually used or needed.
47216  */
47217
47218 Roo.htmleditor.TidyEntities = {
47219     
47220     /**
47221      * initialize data..
47222      */
47223     init : function (){
47224      
47225         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
47226        
47227     },
47228
47229
47230     buildEntitiesLookup: function(items, radix) {
47231         var i, chr, entity, lookup = {};
47232         if (!items) {
47233             return {};
47234         }
47235         items = typeof(items) == 'string' ? items.split(',') : items;
47236         radix = radix || 10;
47237         // Build entities lookup table
47238         for (i = 0; i < items.length; i += 2) {
47239             chr = String.fromCharCode(parseInt(items[i], radix));
47240             // Only add non base entities
47241             if (!this.baseEntities[chr]) {
47242                 entity = '&' + items[i + 1] + ';';
47243                 lookup[chr] = entity;
47244                 lookup[entity] = chr;
47245             }
47246         }
47247         return lookup;
47248         
47249     },
47250     
47251     asciiMap : {
47252             128: '€',
47253             130: '‚',
47254             131: 'ƒ',
47255             132: '„',
47256             133: '…',
47257             134: '†',
47258             135: '‡',
47259             136: 'ˆ',
47260             137: '‰',
47261             138: 'Š',
47262             139: '‹',
47263             140: 'Œ',
47264             142: 'Ž',
47265             145: '‘',
47266             146: '’',
47267             147: '“',
47268             148: '”',
47269             149: '•',
47270             150: '–',
47271             151: '—',
47272             152: '˜',
47273             153: '™',
47274             154: 'š',
47275             155: '›',
47276             156: 'œ',
47277             158: 'ž',
47278             159: 'Ÿ'
47279     },
47280     // Raw entities
47281     baseEntities : {
47282         '"': '&quot;',
47283         // Needs to be escaped since the YUI compressor would otherwise break the code
47284         '\'': '&#39;',
47285         '<': '&lt;',
47286         '>': '&gt;',
47287         '&': '&amp;',
47288         '`': '&#96;'
47289     },
47290     // Reverse lookup table for raw entities
47291     reverseEntities : {
47292         '&lt;': '<',
47293         '&gt;': '>',
47294         '&amp;': '&',
47295         '&quot;': '"',
47296         '&apos;': '\''
47297     },
47298     
47299     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47300     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47301     rawCharsRegExp : /[<>&\"\']/g,
47302     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
47303     namedEntities  : false,
47304     namedEntitiesData : [ 
47305         '50',
47306         'nbsp',
47307         '51',
47308         'iexcl',
47309         '52',
47310         'cent',
47311         '53',
47312         'pound',
47313         '54',
47314         'curren',
47315         '55',
47316         'yen',
47317         '56',
47318         'brvbar',
47319         '57',
47320         'sect',
47321         '58',
47322         'uml',
47323         '59',
47324         'copy',
47325         '5a',
47326         'ordf',
47327         '5b',
47328         'laquo',
47329         '5c',
47330         'not',
47331         '5d',
47332         'shy',
47333         '5e',
47334         'reg',
47335         '5f',
47336         'macr',
47337         '5g',
47338         'deg',
47339         '5h',
47340         'plusmn',
47341         '5i',
47342         'sup2',
47343         '5j',
47344         'sup3',
47345         '5k',
47346         'acute',
47347         '5l',
47348         'micro',
47349         '5m',
47350         'para',
47351         '5n',
47352         'middot',
47353         '5o',
47354         'cedil',
47355         '5p',
47356         'sup1',
47357         '5q',
47358         'ordm',
47359         '5r',
47360         'raquo',
47361         '5s',
47362         'frac14',
47363         '5t',
47364         'frac12',
47365         '5u',
47366         'frac34',
47367         '5v',
47368         'iquest',
47369         '60',
47370         'Agrave',
47371         '61',
47372         'Aacute',
47373         '62',
47374         'Acirc',
47375         '63',
47376         'Atilde',
47377         '64',
47378         'Auml',
47379         '65',
47380         'Aring',
47381         '66',
47382         'AElig',
47383         '67',
47384         'Ccedil',
47385         '68',
47386         'Egrave',
47387         '69',
47388         'Eacute',
47389         '6a',
47390         'Ecirc',
47391         '6b',
47392         'Euml',
47393         '6c',
47394         'Igrave',
47395         '6d',
47396         'Iacute',
47397         '6e',
47398         'Icirc',
47399         '6f',
47400         'Iuml',
47401         '6g',
47402         'ETH',
47403         '6h',
47404         'Ntilde',
47405         '6i',
47406         'Ograve',
47407         '6j',
47408         'Oacute',
47409         '6k',
47410         'Ocirc',
47411         '6l',
47412         'Otilde',
47413         '6m',
47414         'Ouml',
47415         '6n',
47416         'times',
47417         '6o',
47418         'Oslash',
47419         '6p',
47420         'Ugrave',
47421         '6q',
47422         'Uacute',
47423         '6r',
47424         'Ucirc',
47425         '6s',
47426         'Uuml',
47427         '6t',
47428         'Yacute',
47429         '6u',
47430         'THORN',
47431         '6v',
47432         'szlig',
47433         '70',
47434         'agrave',
47435         '71',
47436         'aacute',
47437         '72',
47438         'acirc',
47439         '73',
47440         'atilde',
47441         '74',
47442         'auml',
47443         '75',
47444         'aring',
47445         '76',
47446         'aelig',
47447         '77',
47448         'ccedil',
47449         '78',
47450         'egrave',
47451         '79',
47452         'eacute',
47453         '7a',
47454         'ecirc',
47455         '7b',
47456         'euml',
47457         '7c',
47458         'igrave',
47459         '7d',
47460         'iacute',
47461         '7e',
47462         'icirc',
47463         '7f',
47464         'iuml',
47465         '7g',
47466         'eth',
47467         '7h',
47468         'ntilde',
47469         '7i',
47470         'ograve',
47471         '7j',
47472         'oacute',
47473         '7k',
47474         'ocirc',
47475         '7l',
47476         'otilde',
47477         '7m',
47478         'ouml',
47479         '7n',
47480         'divide',
47481         '7o',
47482         'oslash',
47483         '7p',
47484         'ugrave',
47485         '7q',
47486         'uacute',
47487         '7r',
47488         'ucirc',
47489         '7s',
47490         'uuml',
47491         '7t',
47492         'yacute',
47493         '7u',
47494         'thorn',
47495         '7v',
47496         'yuml',
47497         'ci',
47498         'fnof',
47499         'sh',
47500         'Alpha',
47501         'si',
47502         'Beta',
47503         'sj',
47504         'Gamma',
47505         'sk',
47506         'Delta',
47507         'sl',
47508         'Epsilon',
47509         'sm',
47510         'Zeta',
47511         'sn',
47512         'Eta',
47513         'so',
47514         'Theta',
47515         'sp',
47516         'Iota',
47517         'sq',
47518         'Kappa',
47519         'sr',
47520         'Lambda',
47521         'ss',
47522         'Mu',
47523         'st',
47524         'Nu',
47525         'su',
47526         'Xi',
47527         'sv',
47528         'Omicron',
47529         't0',
47530         'Pi',
47531         't1',
47532         'Rho',
47533         't3',
47534         'Sigma',
47535         't4',
47536         'Tau',
47537         't5',
47538         'Upsilon',
47539         't6',
47540         'Phi',
47541         't7',
47542         'Chi',
47543         't8',
47544         'Psi',
47545         't9',
47546         'Omega',
47547         'th',
47548         'alpha',
47549         'ti',
47550         'beta',
47551         'tj',
47552         'gamma',
47553         'tk',
47554         'delta',
47555         'tl',
47556         'epsilon',
47557         'tm',
47558         'zeta',
47559         'tn',
47560         'eta',
47561         'to',
47562         'theta',
47563         'tp',
47564         'iota',
47565         'tq',
47566         'kappa',
47567         'tr',
47568         'lambda',
47569         'ts',
47570         'mu',
47571         'tt',
47572         'nu',
47573         'tu',
47574         'xi',
47575         'tv',
47576         'omicron',
47577         'u0',
47578         'pi',
47579         'u1',
47580         'rho',
47581         'u2',
47582         'sigmaf',
47583         'u3',
47584         'sigma',
47585         'u4',
47586         'tau',
47587         'u5',
47588         'upsilon',
47589         'u6',
47590         'phi',
47591         'u7',
47592         'chi',
47593         'u8',
47594         'psi',
47595         'u9',
47596         'omega',
47597         'uh',
47598         'thetasym',
47599         'ui',
47600         'upsih',
47601         'um',
47602         'piv',
47603         '812',
47604         'bull',
47605         '816',
47606         'hellip',
47607         '81i',
47608         'prime',
47609         '81j',
47610         'Prime',
47611         '81u',
47612         'oline',
47613         '824',
47614         'frasl',
47615         '88o',
47616         'weierp',
47617         '88h',
47618         'image',
47619         '88s',
47620         'real',
47621         '892',
47622         'trade',
47623         '89l',
47624         'alefsym',
47625         '8cg',
47626         'larr',
47627         '8ch',
47628         'uarr',
47629         '8ci',
47630         'rarr',
47631         '8cj',
47632         'darr',
47633         '8ck',
47634         'harr',
47635         '8dl',
47636         'crarr',
47637         '8eg',
47638         'lArr',
47639         '8eh',
47640         'uArr',
47641         '8ei',
47642         'rArr',
47643         '8ej',
47644         'dArr',
47645         '8ek',
47646         'hArr',
47647         '8g0',
47648         'forall',
47649         '8g2',
47650         'part',
47651         '8g3',
47652         'exist',
47653         '8g5',
47654         'empty',
47655         '8g7',
47656         'nabla',
47657         '8g8',
47658         'isin',
47659         '8g9',
47660         'notin',
47661         '8gb',
47662         'ni',
47663         '8gf',
47664         'prod',
47665         '8gh',
47666         'sum',
47667         '8gi',
47668         'minus',
47669         '8gn',
47670         'lowast',
47671         '8gq',
47672         'radic',
47673         '8gt',
47674         'prop',
47675         '8gu',
47676         'infin',
47677         '8h0',
47678         'ang',
47679         '8h7',
47680         'and',
47681         '8h8',
47682         'or',
47683         '8h9',
47684         'cap',
47685         '8ha',
47686         'cup',
47687         '8hb',
47688         'int',
47689         '8hk',
47690         'there4',
47691         '8hs',
47692         'sim',
47693         '8i5',
47694         'cong',
47695         '8i8',
47696         'asymp',
47697         '8j0',
47698         'ne',
47699         '8j1',
47700         'equiv',
47701         '8j4',
47702         'le',
47703         '8j5',
47704         'ge',
47705         '8k2',
47706         'sub',
47707         '8k3',
47708         'sup',
47709         '8k4',
47710         'nsub',
47711         '8k6',
47712         'sube',
47713         '8k7',
47714         'supe',
47715         '8kl',
47716         'oplus',
47717         '8kn',
47718         'otimes',
47719         '8l5',
47720         'perp',
47721         '8m5',
47722         'sdot',
47723         '8o8',
47724         'lceil',
47725         '8o9',
47726         'rceil',
47727         '8oa',
47728         'lfloor',
47729         '8ob',
47730         'rfloor',
47731         '8p9',
47732         'lang',
47733         '8pa',
47734         'rang',
47735         '9ea',
47736         'loz',
47737         '9j0',
47738         'spades',
47739         '9j3',
47740         'clubs',
47741         '9j5',
47742         'hearts',
47743         '9j6',
47744         'diams',
47745         'ai',
47746         'OElig',
47747         'aj',
47748         'oelig',
47749         'b0',
47750         'Scaron',
47751         'b1',
47752         'scaron',
47753         'bo',
47754         'Yuml',
47755         'm6',
47756         'circ',
47757         'ms',
47758         'tilde',
47759         '802',
47760         'ensp',
47761         '803',
47762         'emsp',
47763         '809',
47764         'thinsp',
47765         '80c',
47766         'zwnj',
47767         '80d',
47768         'zwj',
47769         '80e',
47770         'lrm',
47771         '80f',
47772         'rlm',
47773         '80j',
47774         'ndash',
47775         '80k',
47776         'mdash',
47777         '80o',
47778         'lsquo',
47779         '80p',
47780         'rsquo',
47781         '80q',
47782         'sbquo',
47783         '80s',
47784         'ldquo',
47785         '80t',
47786         'rdquo',
47787         '80u',
47788         'bdquo',
47789         '810',
47790         'dagger',
47791         '811',
47792         'Dagger',
47793         '81g',
47794         'permil',
47795         '81p',
47796         'lsaquo',
47797         '81q',
47798         'rsaquo',
47799         '85c',
47800         'euro'
47801     ],
47802
47803          
47804     /**
47805      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
47806      *
47807      * @method encodeRaw
47808      * @param {String} text Text to encode.
47809      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47810      * @return {String} Entity encoded text.
47811      */
47812     encodeRaw: function(text, attr)
47813     {
47814         var t = this;
47815         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47816             return t.baseEntities[chr] || chr;
47817         });
47818     },
47819     /**
47820      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
47821      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
47822      * and is exposed as the DOMUtils.encode function.
47823      *
47824      * @method encodeAllRaw
47825      * @param {String} text Text to encode.
47826      * @return {String} Entity encoded text.
47827      */
47828     encodeAllRaw: function(text) {
47829         var t = this;
47830         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
47831             return t.baseEntities[chr] || chr;
47832         });
47833     },
47834     /**
47835      * Encodes the specified string using numeric entities. The core entities will be
47836      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
47837      *
47838      * @method encodeNumeric
47839      * @param {String} text Text to encode.
47840      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47841      * @return {String} Entity encoded text.
47842      */
47843     encodeNumeric: function(text, attr) {
47844         var t = this;
47845         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47846             // Multi byte sequence convert it to a single entity
47847             if (chr.length > 1) {
47848                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
47849             }
47850             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
47851         });
47852     },
47853     /**
47854      * Encodes the specified string using named entities. The core entities will be encoded
47855      * as named ones but all non lower ascii characters will be encoded into named entities.
47856      *
47857      * @method encodeNamed
47858      * @param {String} text Text to encode.
47859      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47860      * @param {Object} entities Optional parameter with entities to use.
47861      * @return {String} Entity encoded text.
47862      */
47863     encodeNamed: function(text, attr, entities) {
47864         var t = this;
47865         entities = entities || this.namedEntities;
47866         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47867             return t.baseEntities[chr] || entities[chr] || chr;
47868         });
47869     },
47870     /**
47871      * Returns an encode function based on the name(s) and it's optional entities.
47872      *
47873      * @method getEncodeFunc
47874      * @param {String} name Comma separated list of encoders for example named,numeric.
47875      * @param {String} entities Optional parameter with entities to use instead of the built in set.
47876      * @return {function} Encode function to be used.
47877      */
47878     getEncodeFunc: function(name, entities) {
47879         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
47880         var t = this;
47881         function encodeNamedAndNumeric(text, attr) {
47882             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
47883                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
47884             });
47885         }
47886
47887         function encodeCustomNamed(text, attr) {
47888             return t.encodeNamed(text, attr, entities);
47889         }
47890         // Replace + with , to be compatible with previous TinyMCE versions
47891         name = this.makeMap(name.replace(/\+/g, ','));
47892         // Named and numeric encoder
47893         if (name.named && name.numeric) {
47894             return this.encodeNamedAndNumeric;
47895         }
47896         // Named encoder
47897         if (name.named) {
47898             // Custom names
47899             if (entities) {
47900                 return encodeCustomNamed;
47901             }
47902             return this.encodeNamed;
47903         }
47904         // Numeric
47905         if (name.numeric) {
47906             return this.encodeNumeric;
47907         }
47908         // Raw encoder
47909         return this.encodeRaw;
47910     },
47911     /**
47912      * Decodes the specified string, this will replace entities with raw UTF characters.
47913      *
47914      * @method decode
47915      * @param {String} text Text to entity decode.
47916      * @return {String} Entity decoded string.
47917      */
47918     decode: function(text)
47919     {
47920         var  t = this;
47921         return text.replace(this.entityRegExp, function(all, numeric) {
47922             if (numeric) {
47923                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
47924                 // Support upper UTF
47925                 if (numeric > 65535) {
47926                     numeric -= 65536;
47927                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
47928                 }
47929                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
47930             }
47931             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
47932         });
47933     },
47934     nativeDecode : function (text) {
47935         return text;
47936     },
47937     makeMap : function (items, delim, map) {
47938                 var i;
47939                 items = items || [];
47940                 delim = delim || ',';
47941                 if (typeof items == "string") {
47942                         items = items.split(delim);
47943                 }
47944                 map = map || {};
47945                 i = items.length;
47946                 while (i--) {
47947                         map[items[i]] = {};
47948                 }
47949                 return map;
47950         }
47951 };
47952     
47953     
47954     
47955 Roo.htmleditor.TidyEntities.init();
47956 /**
47957  * @class Roo.htmleditor.KeyEnter
47958  * Handle Enter press..
47959  * @cfg {Roo.HtmlEditorCore} core the editor.
47960  * @constructor
47961  * Create a new Filter.
47962  * @param {Object} config Configuration options
47963  */
47964
47965
47966
47967
47968
47969 Roo.htmleditor.KeyEnter = function(cfg) {
47970     Roo.apply(this, cfg);
47971     // this does not actually call walk as it's really just a abstract class
47972  
47973     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
47974 }
47975
47976 //Roo.htmleditor.KeyEnter.i = 0;
47977
47978
47979 Roo.htmleditor.KeyEnter.prototype = {
47980     
47981     core : false,
47982     
47983     keypress : function(e)
47984     {
47985         if (e.charCode != 13 && e.charCode != 10) {
47986             Roo.log([e.charCode,e]);
47987             return true;
47988         }
47989         e.preventDefault();
47990         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
47991         var doc = this.core.doc;
47992           //add a new line
47993        
47994     
47995         var sel = this.core.getSelection();
47996         var range = sel.getRangeAt(0);
47997         var n = range.commonAncestorContainer;
47998         var pc = range.closest([ 'ol', 'ul']);
47999         var pli = range.closest('li');
48000         if (!pc || e.ctrlKey) {
48001             // on it list, or ctrl pressed.
48002             if (!e.ctrlKey) {
48003                 sel.insertNode('br', 'after'); 
48004             } else {
48005                 // only do this if we have ctrl key..
48006                 var br = doc.createElement('br');
48007                 br.className = 'clear';
48008                 br.setAttribute('style', 'clear: both');
48009                 sel.insertNode(br, 'after'); 
48010             }
48011             
48012          
48013             this.core.undoManager.addEvent();
48014             this.core.fireEditorEvent(e);
48015             return false;
48016         }
48017         
48018         // deal with <li> insetion
48019         if (pli.innerText.trim() == '' &&
48020             pli.previousSibling &&
48021             pli.previousSibling.nodeName == 'LI' &&
48022             pli.previousSibling.innerText.trim() ==  '') {
48023             pli.parentNode.removeChild(pli.previousSibling);
48024             sel.cursorAfter(pc);
48025             this.core.undoManager.addEvent();
48026             this.core.fireEditorEvent(e);
48027             return false;
48028         }
48029     
48030         var li = doc.createElement('LI');
48031         li.innerHTML = '&nbsp;';
48032         if (!pli || !pli.firstSibling) {
48033             pc.appendChild(li);
48034         } else {
48035             pli.parentNode.insertBefore(li, pli.firstSibling);
48036         }
48037         sel.cursorText (li.firstChild);
48038       
48039         this.core.undoManager.addEvent();
48040         this.core.fireEditorEvent(e);
48041
48042         return false;
48043         
48044     
48045         
48046         
48047          
48048     }
48049 };
48050      
48051 /**
48052  * @class Roo.htmleditor.Block
48053  * Base class for html editor blocks - do not use it directly .. extend it..
48054  * @cfg {DomElement} node The node to apply stuff to.
48055  * @cfg {String} friendly_name the name that appears in the context bar about this block
48056  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
48057  
48058  * @constructor
48059  * Create a new Filter.
48060  * @param {Object} config Configuration options
48061  */
48062
48063 Roo.htmleditor.Block  = function(cfg)
48064 {
48065     // do nothing .. should not be called really.
48066 }
48067 /**
48068  * factory method to get the block from an element (using cache if necessary)
48069  * @static
48070  * @param {HtmlElement} the dom element
48071  */
48072 Roo.htmleditor.Block.factory = function(node)
48073 {
48074     var cc = Roo.htmleditor.Block.cache;
48075     var id = Roo.get(node).id;
48076     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
48077         Roo.htmleditor.Block.cache[id].readElement(node);
48078         return Roo.htmleditor.Block.cache[id];
48079     }
48080     var db  = node.getAttribute('data-block');
48081     if (!db) {
48082         db = node.nodeName.toLowerCase().toUpperCaseFirst();
48083     }
48084     var cls = Roo.htmleditor['Block' + db];
48085     if (typeof(cls) == 'undefined') {
48086         //Roo.log(node.getAttribute('data-block'));
48087         Roo.log("OOps missing block : " + 'Block' + db);
48088         return false;
48089     }
48090     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
48091     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
48092 };
48093
48094 /**
48095  * initalize all Elements from content that are 'blockable'
48096  * @static
48097  * @param the body element
48098  */
48099 Roo.htmleditor.Block.initAll = function(body, type)
48100 {
48101     if (typeof(type) == 'undefined') {
48102         var ia = Roo.htmleditor.Block.initAll;
48103         ia(body,'table');
48104         ia(body,'td');
48105         ia(body,'figure');
48106         return;
48107     }
48108     Roo.each(Roo.get(body).query(type), function(e) {
48109         Roo.htmleditor.Block.factory(e);    
48110     },this);
48111 };
48112 // question goes here... do we need to clear out this cache sometimes?
48113 // or show we make it relivant to the htmleditor.
48114 Roo.htmleditor.Block.cache = {};
48115
48116 Roo.htmleditor.Block.prototype = {
48117     
48118     node : false,
48119     
48120      // used by context menu
48121     friendly_name : 'Based Block',
48122     
48123     // text for button to delete this element
48124     deleteTitle : false,
48125     
48126     context : false,
48127     /**
48128      * Update a node with values from this object
48129      * @param {DomElement} node
48130      */
48131     updateElement : function(node)
48132     {
48133         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
48134     },
48135      /**
48136      * convert to plain HTML for calling insertAtCursor..
48137      */
48138     toHTML : function()
48139     {
48140         return Roo.DomHelper.markup(this.toObject());
48141     },
48142     /**
48143      * used by readEleemnt to extract data from a node
48144      * may need improving as it's pretty basic
48145      
48146      * @param {DomElement} node
48147      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
48148      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
48149      * @param {String} style the style property - eg. text-align
48150      */
48151     getVal : function(node, tag, attr, style)
48152     {
48153         var n = node;
48154         if (tag !== true && n.tagName != tag.toUpperCase()) {
48155             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
48156             // but kiss for now.
48157             n = node.getElementsByTagName(tag).item(0);
48158         }
48159         if (!n) {
48160             return '';
48161         }
48162         if (attr === false) {
48163             return n;
48164         }
48165         if (attr == 'html') {
48166             return n.innerHTML;
48167         }
48168         if (attr == 'style') {
48169             return n.style[style]; 
48170         }
48171         
48172         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
48173             
48174     },
48175     /**
48176      * create a DomHelper friendly object - for use with 
48177      * Roo.DomHelper.markup / overwrite / etc..
48178      * (override this)
48179      */
48180     toObject : function()
48181     {
48182         return {};
48183     },
48184       /**
48185      * Read a node that has a 'data-block' property - and extract the values from it.
48186      * @param {DomElement} node - the node
48187      */
48188     readElement : function(node)
48189     {
48190         
48191     } 
48192     
48193     
48194 };
48195
48196  
48197
48198 /**
48199  * @class Roo.htmleditor.BlockFigure
48200  * Block that has an image and a figcaption
48201  * @cfg {String} image_src the url for the image
48202  * @cfg {String} align (left|right) alignment for the block default left
48203  * @cfg {String} caption the text to appear below  (and in the alt tag)
48204  * @cfg {String} caption_display (block|none) display or not the caption
48205  * @cfg {String|number} image_width the width of the image number or %?
48206  * @cfg {String|number} image_height the height of the image number or %?
48207  * 
48208  * @constructor
48209  * Create a new Filter.
48210  * @param {Object} config Configuration options
48211  */
48212
48213 Roo.htmleditor.BlockFigure = function(cfg)
48214 {
48215     if (cfg.node) {
48216         this.readElement(cfg.node);
48217         this.updateElement(cfg.node);
48218     }
48219     Roo.apply(this, cfg);
48220 }
48221 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
48222  
48223     
48224     // setable values.
48225     image_src: '',
48226     align: 'center',
48227     caption : '',
48228     caption_display : 'block',
48229     width : '100%',
48230     cls : '',
48231     href: '',
48232     video_url : '',
48233     
48234     // margin: '2%', not used
48235     
48236     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
48237
48238     
48239     // used by context menu
48240     friendly_name : 'Image with caption',
48241     deleteTitle : "Delete Image and Caption",
48242     
48243     contextMenu : function(toolbar)
48244     {
48245         
48246         var block = function() {
48247             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48248         };
48249         
48250         
48251         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48252         
48253         var syncValue = toolbar.editorcore.syncValue;
48254         
48255         var fields = {};
48256         
48257         return [
48258              {
48259                 xtype : 'TextItem',
48260                 text : "Source: ",
48261                 xns : rooui.Toolbar  //Boostrap?
48262             },
48263             {
48264                 xtype : 'Button',
48265                 text: 'Change Image URL',
48266                  
48267                 listeners : {
48268                     click: function (btn, state)
48269                     {
48270                         var b = block();
48271                         
48272                         Roo.MessageBox.show({
48273                             title : "Image Source URL",
48274                             msg : "Enter the url for the image",
48275                             buttons: Roo.MessageBox.OKCANCEL,
48276                             fn: function(btn, val){
48277                                 if (btn != 'ok') {
48278                                     return;
48279                                 }
48280                                 b.image_src = val;
48281                                 b.updateElement();
48282                                 syncValue();
48283                                 toolbar.editorcore.onEditorEvent();
48284                             },
48285                             minWidth:250,
48286                             prompt:true,
48287                             //multiline: multiline,
48288                             modal : true,
48289                             value : b.image_src
48290                         });
48291                     }
48292                 },
48293                 xns : rooui.Toolbar
48294             },
48295          
48296             {
48297                 xtype : 'Button',
48298                 text: 'Change Link URL',
48299                  
48300                 listeners : {
48301                     click: function (btn, state)
48302                     {
48303                         var b = block();
48304                         
48305                         Roo.MessageBox.show({
48306                             title : "Link URL",
48307                             msg : "Enter the url for the link - leave blank to have no link",
48308                             buttons: Roo.MessageBox.OKCANCEL,
48309                             fn: function(btn, val){
48310                                 if (btn != 'ok') {
48311                                     return;
48312                                 }
48313                                 b.href = val;
48314                                 b.updateElement();
48315                                 syncValue();
48316                                 toolbar.editorcore.onEditorEvent();
48317                             },
48318                             minWidth:250,
48319                             prompt:true,
48320                             //multiline: multiline,
48321                             modal : true,
48322                             value : b.href
48323                         });
48324                     }
48325                 },
48326                 xns : rooui.Toolbar
48327             },
48328             {
48329                 xtype : 'Button',
48330                 text: 'Show Video URL',
48331                  
48332                 listeners : {
48333                     click: function (btn, state)
48334                     {
48335                         Roo.MessageBox.alert("Video URL",
48336                             block().video_url == '' ? 'This image is not linked ot a video' :
48337                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
48338                     }
48339                 },
48340                 xns : rooui.Toolbar
48341             },
48342             
48343             
48344             {
48345                 xtype : 'TextItem',
48346                 text : "Width: ",
48347                 xns : rooui.Toolbar  //Boostrap?
48348             },
48349             {
48350                 xtype : 'ComboBox',
48351                 allowBlank : false,
48352                 displayField : 'val',
48353                 editable : true,
48354                 listWidth : 100,
48355                 triggerAction : 'all',
48356                 typeAhead : true,
48357                 valueField : 'val',
48358                 width : 70,
48359                 name : 'width',
48360                 listeners : {
48361                     select : function (combo, r, index)
48362                     {
48363                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48364                         var b = block();
48365                         b.width = r.get('val');
48366                         b.updateElement();
48367                         syncValue();
48368                         toolbar.editorcore.onEditorEvent();
48369                     }
48370                 },
48371                 xns : rooui.form,
48372                 store : {
48373                     xtype : 'SimpleStore',
48374                     data : [
48375                         ['100%'],
48376                         ['80%'],
48377                         ['50%'],
48378                         ['20%'],
48379                         ['10%']
48380                     ],
48381                     fields : [ 'val'],
48382                     xns : Roo.data
48383                 }
48384             },
48385             {
48386                 xtype : 'TextItem',
48387                 text : "Align: ",
48388                 xns : rooui.Toolbar  //Boostrap?
48389             },
48390             {
48391                 xtype : 'ComboBox',
48392                 allowBlank : false,
48393                 displayField : 'val',
48394                 editable : true,
48395                 listWidth : 100,
48396                 triggerAction : 'all',
48397                 typeAhead : true,
48398                 valueField : 'val',
48399                 width : 70,
48400                 name : 'align',
48401                 listeners : {
48402                     select : function (combo, r, index)
48403                     {
48404                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48405                         var b = block();
48406                         b.align = r.get('val');
48407                         b.updateElement();
48408                         syncValue();
48409                         toolbar.editorcore.onEditorEvent();
48410                     }
48411                 },
48412                 xns : rooui.form,
48413                 store : {
48414                     xtype : 'SimpleStore',
48415                     data : [
48416                         ['left'],
48417                         ['right'],
48418                         ['center']
48419                     ],
48420                     fields : [ 'val'],
48421                     xns : Roo.data
48422                 }
48423             },
48424             
48425             
48426             {
48427                 xtype : 'Button',
48428                 text: 'Hide Caption',
48429                 name : 'caption_display',
48430                 pressed : false,
48431                 enableToggle : true,
48432                 setValue : function(v) {
48433                     // this trigger toggle.
48434                      
48435                     this.setText(v ? "Hide Caption" : "Show Caption");
48436                     this.setPressed(v != 'block');
48437                 },
48438                 listeners : {
48439                     toggle: function (btn, state)
48440                     {
48441                         var b  = block();
48442                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
48443                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
48444                         b.updateElement();
48445                         syncValue();
48446                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48447                         toolbar.editorcore.onEditorEvent();
48448                     }
48449                 },
48450                 xns : rooui.Toolbar
48451             }
48452         ];
48453         
48454     },
48455     /**
48456      * create a DomHelper friendly object - for use with
48457      * Roo.DomHelper.markup / overwrite / etc..
48458      */
48459     toObject : function()
48460     {
48461         var d = document.createElement('div');
48462         d.innerHTML = this.caption;
48463         
48464         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
48465         
48466         var iw = this.align == 'center' ? this.width : '100%';
48467         var img =   {
48468             tag : 'img',
48469             contenteditable : 'false',
48470             src : this.image_src,
48471             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
48472             style: {
48473                 width : iw,
48474                 maxWidth : iw + ' !important', // this is not getting rendered?
48475                 margin : m  
48476                 
48477             }
48478         };
48479         /*
48480         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
48481                     '<a href="{2}">' + 
48482                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
48483                     '</a>' + 
48484                 '</div>',
48485         */
48486                 
48487         if (this.href.length > 0) {
48488             img = {
48489                 tag : 'a',
48490                 href: this.href,
48491                 contenteditable : 'true',
48492                 cn : [
48493                     img
48494                 ]
48495             };
48496         }
48497         
48498         
48499         if (this.video_url.length > 0) {
48500             img = {
48501                 tag : 'div',
48502                 cls : this.cls,
48503                 frameborder : 0,
48504                 allowfullscreen : true,
48505                 width : 420,  // these are for video tricks - that we replace the outer
48506                 height : 315,
48507                 src : this.video_url,
48508                 cn : [
48509                     img
48510                 ]
48511             };
48512         }
48513         // we remove caption totally if its hidden... - will delete data.. but otherwise we end up with fake caption
48514         var captionhtml = this.caption_display == 'none' ? '' : (this.caption.length ? this.caption : "Caption");
48515         
48516   
48517         var ret =   {
48518             tag: 'figure',
48519             'data-block' : 'Figure',
48520             'data-width' : this.width, 
48521             contenteditable : 'false',
48522             
48523             style : {
48524                 display: 'block',
48525                 float :  this.align ,
48526                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
48527                 width : this.align == 'center' ? '100%' : this.width,
48528                 margin:  '0px',
48529                 padding: this.align == 'center' ? '0' : '0 10px' ,
48530                 textAlign : this.align   // seems to work for email..
48531                 
48532             },
48533            
48534             
48535             align : this.align,
48536             cn : [
48537                 img,
48538               
48539                 {
48540                     tag: 'figcaption',
48541                     'data-display' : this.caption_display,
48542                     style : {
48543                         textAlign : 'left',
48544                         fontSize : '16px',
48545                         lineHeight : '24px',
48546                         display : this.caption_display,
48547                         maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
48548                         margin: m,
48549                         width: this.align == 'center' ?  this.width : '100%' 
48550                     
48551                          
48552                     },
48553                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
48554                     cn : [
48555                         {
48556                             tag: 'div',
48557                             style  : {
48558                                 marginTop : '16px',
48559                                 textAlign : 'left'
48560                             },
48561                             align: 'left',
48562                             cn : [
48563                                 {
48564                                     // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
48565                                     tag : 'i',
48566                                     contenteditable : true,
48567                                     html : captionhtml
48568                                 }
48569                                 
48570                             ]
48571                         }
48572                         
48573                     ]
48574                     
48575                 }
48576             ]
48577         };
48578         return ret;
48579          
48580     },
48581     
48582     readElement : function(node)
48583     {
48584         // this should not really come from the link...
48585         this.video_url = this.getVal(node, 'div', 'src');
48586         this.cls = this.getVal(node, 'div', 'class');
48587         this.href = this.getVal(node, 'a', 'href');
48588         
48589         
48590         this.image_src = this.getVal(node, 'img', 'src');
48591          
48592         this.align = this.getVal(node, 'figure', 'align');
48593         var figcaption = this.getVal(node, 'figcaption', false);
48594         if (figcaption !== '') {
48595             this.caption = this.getVal(figcaption, 'i', 'html');
48596         }
48597         
48598
48599         this.caption_display = this.getVal(node, 'figcaption', 'data-display');
48600         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
48601         this.width = this.getVal(node, true, 'data-width');
48602         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
48603         
48604     },
48605     removeNode : function()
48606     {
48607         return this.node;
48608     }
48609     
48610   
48611    
48612      
48613     
48614     
48615     
48616     
48617 })
48618
48619  
48620
48621 /**
48622  * @class Roo.htmleditor.BlockTable
48623  * Block that manages a table
48624  * 
48625  * @constructor
48626  * Create a new Filter.
48627  * @param {Object} config Configuration options
48628  */
48629
48630 Roo.htmleditor.BlockTable = function(cfg)
48631 {
48632     if (cfg.node) {
48633         this.readElement(cfg.node);
48634         this.updateElement(cfg.node);
48635     }
48636     Roo.apply(this, cfg);
48637     if (!cfg.node) {
48638         this.rows = [];
48639         for(var r = 0; r < this.no_row; r++) {
48640             this.rows[r] = [];
48641             for(var c = 0; c < this.no_col; c++) {
48642                 this.rows[r][c] = this.emptyCell();
48643             }
48644         }
48645     }
48646     
48647     
48648 }
48649 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
48650  
48651     rows : false,
48652     no_col : 1,
48653     no_row : 1,
48654     
48655     
48656     width: '100%',
48657     
48658     // used by context menu
48659     friendly_name : 'Table',
48660     deleteTitle : 'Delete Table',
48661     // context menu is drawn once..
48662     
48663     contextMenu : function(toolbar)
48664     {
48665         
48666         var block = function() {
48667             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48668         };
48669         
48670         
48671         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48672         
48673         var syncValue = toolbar.editorcore.syncValue;
48674         
48675         var fields = {};
48676         
48677         return [
48678             {
48679                 xtype : 'TextItem',
48680                 text : "Width: ",
48681                 xns : rooui.Toolbar  //Boostrap?
48682             },
48683             {
48684                 xtype : 'ComboBox',
48685                 allowBlank : false,
48686                 displayField : 'val',
48687                 editable : true,
48688                 listWidth : 100,
48689                 triggerAction : 'all',
48690                 typeAhead : true,
48691                 valueField : 'val',
48692                 width : 100,
48693                 name : 'width',
48694                 listeners : {
48695                     select : function (combo, r, index)
48696                     {
48697                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48698                         var b = block();
48699                         b.width = r.get('val');
48700                         b.updateElement();
48701                         syncValue();
48702                         toolbar.editorcore.onEditorEvent();
48703                     }
48704                 },
48705                 xns : rooui.form,
48706                 store : {
48707                     xtype : 'SimpleStore',
48708                     data : [
48709                         ['100%'],
48710                         ['auto']
48711                     ],
48712                     fields : [ 'val'],
48713                     xns : Roo.data
48714                 }
48715             },
48716             // -------- Cols
48717             
48718             {
48719                 xtype : 'TextItem',
48720                 text : "Columns: ",
48721                 xns : rooui.Toolbar  //Boostrap?
48722             },
48723          
48724             {
48725                 xtype : 'Button',
48726                 text: '-',
48727                 listeners : {
48728                     click : function (_self, e)
48729                     {
48730                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48731                         block().removeColumn();
48732                         syncValue();
48733                         toolbar.editorcore.onEditorEvent();
48734                     }
48735                 },
48736                 xns : rooui.Toolbar
48737             },
48738             {
48739                 xtype : 'Button',
48740                 text: '+',
48741                 listeners : {
48742                     click : function (_self, e)
48743                     {
48744                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48745                         block().addColumn();
48746                         syncValue();
48747                         toolbar.editorcore.onEditorEvent();
48748                     }
48749                 },
48750                 xns : rooui.Toolbar
48751             },
48752             // -------- ROWS
48753             {
48754                 xtype : 'TextItem',
48755                 text : "Rows: ",
48756                 xns : rooui.Toolbar  //Boostrap?
48757             },
48758          
48759             {
48760                 xtype : 'Button',
48761                 text: '-',
48762                 listeners : {
48763                     click : function (_self, e)
48764                     {
48765                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48766                         block().removeRow();
48767                         syncValue();
48768                         toolbar.editorcore.onEditorEvent();
48769                     }
48770                 },
48771                 xns : rooui.Toolbar
48772             },
48773             {
48774                 xtype : 'Button',
48775                 text: '+',
48776                 listeners : {
48777                     click : function (_self, e)
48778                     {
48779                         block().addRow();
48780                         syncValue();
48781                         toolbar.editorcore.onEditorEvent();
48782                     }
48783                 },
48784                 xns : rooui.Toolbar
48785             },
48786             // -------- ROWS
48787             {
48788                 xtype : 'Button',
48789                 text: 'Reset Column Widths',
48790                 listeners : {
48791                     
48792                     click : function (_self, e)
48793                     {
48794                         block().resetWidths();
48795                         syncValue();
48796                         toolbar.editorcore.onEditorEvent();
48797                     }
48798                 },
48799                 xns : rooui.Toolbar
48800             } 
48801             
48802             
48803             
48804         ];
48805         
48806     },
48807     
48808     
48809   /**
48810      * create a DomHelper friendly object - for use with
48811      * Roo.DomHelper.markup / overwrite / etc..
48812      * ?? should it be called with option to hide all editing features?
48813      */
48814     toObject : function()
48815     {
48816         
48817         var ret = {
48818             tag : 'table',
48819             contenteditable : 'false', // this stops cell selection from picking the table.
48820             'data-block' : 'Table',
48821             style : {
48822                 width:  this.width,
48823                 border : 'solid 1px #000', // ??? hard coded?
48824                 'border-collapse' : 'collapse' 
48825             },
48826             cn : [
48827                 { tag : 'tbody' , cn : [] }
48828             ]
48829         };
48830         
48831         // do we have a head = not really 
48832         var ncols = 0;
48833         Roo.each(this.rows, function( row ) {
48834             var tr = {
48835                 tag: 'tr',
48836                 style : {
48837                     margin: '6px',
48838                     border : 'solid 1px #000',
48839                     textAlign : 'left' 
48840                 },
48841                 cn : [ ]
48842             };
48843             
48844             ret.cn[0].cn.push(tr);
48845             // does the row have any properties? ?? height?
48846             var nc = 0;
48847             Roo.each(row, function( cell ) {
48848                 
48849                 var td = {
48850                     tag : 'td',
48851                     contenteditable :  'true',
48852                     'data-block' : 'Td',
48853                     html : cell.html,
48854                     style : cell.style
48855                 };
48856                 if (cell.colspan > 1) {
48857                     td.colspan = cell.colspan ;
48858                     nc += cell.colspan;
48859                 } else {
48860                     nc++;
48861                 }
48862                 if (cell.rowspan > 1) {
48863                     td.rowspan = cell.rowspan ;
48864                 }
48865                 
48866                 
48867                 // widths ?
48868                 tr.cn.push(td);
48869                     
48870                 
48871             }, this);
48872             ncols = Math.max(nc, ncols);
48873             
48874             
48875         }, this);
48876         // add the header row..
48877         
48878         ncols++;
48879          
48880         
48881         return ret;
48882          
48883     },
48884     
48885     readElement : function(node)
48886     {
48887         node  = node ? node : this.node ;
48888         this.width = this.getVal(node, true, 'style', 'width') || '100%';
48889         
48890         this.rows = [];
48891         this.no_row = 0;
48892         var trs = Array.from(node.rows);
48893         trs.forEach(function(tr) {
48894             var row =  [];
48895             this.rows.push(row);
48896             
48897             this.no_row++;
48898             var no_column = 0;
48899             Array.from(tr.cells).forEach(function(td) {
48900                 
48901                 var add = {
48902                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
48903                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
48904                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
48905                     html : td.innerHTML
48906                 };
48907                 no_column += add.colspan;
48908                      
48909                 
48910                 row.push(add);
48911                 
48912                 
48913             },this);
48914             this.no_col = Math.max(this.no_col, no_column);
48915             
48916             
48917         },this);
48918         
48919         
48920     },
48921     normalizeRows: function()
48922     {
48923         var ret= [];
48924         var rid = -1;
48925         this.rows.forEach(function(row) {
48926             rid++;
48927             ret[rid] = [];
48928             row = this.normalizeRow(row);
48929             var cid = 0;
48930             row.forEach(function(c) {
48931                 while (typeof(ret[rid][cid]) != 'undefined') {
48932                     cid++;
48933                 }
48934                 if (typeof(ret[rid]) == 'undefined') {
48935                     ret[rid] = [];
48936                 }
48937                 ret[rid][cid] = c;
48938                 c.row = rid;
48939                 c.col = cid;
48940                 if (c.rowspan < 2) {
48941                     return;
48942                 }
48943                 
48944                 for(var i = 1 ;i < c.rowspan; i++) {
48945                     if (typeof(ret[rid+i]) == 'undefined') {
48946                         ret[rid+i] = [];
48947                     }
48948                     ret[rid+i][cid] = c;
48949                 }
48950             });
48951         }, this);
48952         return ret;
48953     
48954     },
48955     
48956     normalizeRow: function(row)
48957     {
48958         var ret= [];
48959         row.forEach(function(c) {
48960             if (c.colspan < 2) {
48961                 ret.push(c);
48962                 return;
48963             }
48964             for(var i =0 ;i < c.colspan; i++) {
48965                 ret.push(c);
48966             }
48967         });
48968         return ret;
48969     
48970     },
48971     
48972     deleteColumn : function(sel)
48973     {
48974         if (!sel || sel.type != 'col') {
48975             return;
48976         }
48977         if (this.no_col < 2) {
48978             return;
48979         }
48980         
48981         this.rows.forEach(function(row) {
48982             var cols = this.normalizeRow(row);
48983             var col = cols[sel.col];
48984             if (col.colspan > 1) {
48985                 col.colspan --;
48986             } else {
48987                 row.remove(col);
48988             }
48989             
48990         }, this);
48991         this.no_col--;
48992         
48993     },
48994     removeColumn : function()
48995     {
48996         this.deleteColumn({
48997             type: 'col',
48998             col : this.no_col-1
48999         });
49000         this.updateElement();
49001     },
49002     
49003      
49004     addColumn : function()
49005     {
49006         
49007         this.rows.forEach(function(row) {
49008             row.push(this.emptyCell());
49009            
49010         }, this);
49011         this.updateElement();
49012     },
49013     
49014     deleteRow : function(sel)
49015     {
49016         if (!sel || sel.type != 'row') {
49017             return;
49018         }
49019         
49020         if (this.no_row < 2) {
49021             return;
49022         }
49023         
49024         var rows = this.normalizeRows();
49025         
49026         
49027         rows[sel.row].forEach(function(col) {
49028             if (col.rowspan > 1) {
49029                 col.rowspan--;
49030             } else {
49031                 col.remove = 1; // flage it as removed.
49032             }
49033             
49034         }, this);
49035         var newrows = [];
49036         this.rows.forEach(function(row) {
49037             newrow = [];
49038             row.forEach(function(c) {
49039                 if (typeof(c.remove) == 'undefined') {
49040                     newrow.push(c);
49041                 }
49042                 
49043             });
49044             if (newrow.length > 0) {
49045                 newrows.push(row);
49046             }
49047         });
49048         this.rows =  newrows;
49049         
49050         
49051         
49052         this.no_row--;
49053         this.updateElement();
49054         
49055     },
49056     removeRow : function()
49057     {
49058         this.deleteRow({
49059             type: 'row',
49060             row : this.no_row-1
49061         });
49062         
49063     },
49064     
49065      
49066     addRow : function()
49067     {
49068         
49069         var row = [];
49070         for (var i = 0; i < this.no_col; i++ ) {
49071             
49072             row.push(this.emptyCell());
49073            
49074         }
49075         this.rows.push(row);
49076         this.updateElement();
49077         
49078     },
49079      
49080     // the default cell object... at present...
49081     emptyCell : function() {
49082         return (new Roo.htmleditor.BlockTd({})).toObject();
49083         
49084      
49085     },
49086     
49087     removeNode : function()
49088     {
49089         return this.node;
49090     },
49091     
49092     
49093     
49094     resetWidths : function()
49095     {
49096         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
49097             var nn = Roo.htmleditor.Block.factory(n);
49098             nn.width = '';
49099             nn.updateElement(n);
49100         });
49101     }
49102     
49103     
49104     
49105     
49106 })
49107
49108 /**
49109  *
49110  * editing a TD?
49111  *
49112  * since selections really work on the table cell, then editing really should work from there
49113  *
49114  * The original plan was to support merging etc... - but that may not be needed yet..
49115  *
49116  * So this simple version will support:
49117  *   add/remove cols
49118  *   adjust the width +/-
49119  *   reset the width...
49120  *   
49121  *
49122  */
49123
49124
49125  
49126
49127 /**
49128  * @class Roo.htmleditor.BlockTable
49129  * Block that manages a table
49130  * 
49131  * @constructor
49132  * Create a new Filter.
49133  * @param {Object} config Configuration options
49134  */
49135
49136 Roo.htmleditor.BlockTd = function(cfg)
49137 {
49138     if (cfg.node) {
49139         this.readElement(cfg.node);
49140         this.updateElement(cfg.node);
49141     }
49142     Roo.apply(this, cfg);
49143      
49144     
49145     
49146 }
49147 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
49148  
49149     node : false,
49150     
49151     width: '',
49152     textAlign : 'left',
49153     valign : 'top',
49154     
49155     colspan : 1,
49156     rowspan : 1,
49157     
49158     
49159     // used by context menu
49160     friendly_name : 'Table Cell',
49161     deleteTitle : false, // use our customer delete
49162     
49163     // context menu is drawn once..
49164     
49165     contextMenu : function(toolbar)
49166     {
49167         
49168         var cell = function() {
49169             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
49170         };
49171         
49172         var table = function() {
49173             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
49174         };
49175         
49176         var lr = false;
49177         var saveSel = function()
49178         {
49179             lr = toolbar.editorcore.getSelection().getRangeAt(0);
49180         }
49181         var restoreSel = function()
49182         {
49183             if (lr) {
49184                 (function() {
49185                     toolbar.editorcore.focus();
49186                     var cr = toolbar.editorcore.getSelection();
49187                     cr.removeAllRanges();
49188                     cr.addRange(lr);
49189                     toolbar.editorcore.onEditorEvent();
49190                 }).defer(10, this);
49191                 
49192                 
49193             }
49194         }
49195         
49196         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
49197         
49198         var syncValue = toolbar.editorcore.syncValue;
49199         
49200         var fields = {};
49201         
49202         return [
49203             {
49204                 xtype : 'Button',
49205                 text : 'Edit Table',
49206                 listeners : {
49207                     click : function() {
49208                         var t = toolbar.tb.selectedNode.closest('table');
49209                         toolbar.editorcore.selectNode(t);
49210                         toolbar.editorcore.onEditorEvent();                        
49211                     }
49212                 }
49213                 
49214             },
49215               
49216            
49217              
49218             {
49219                 xtype : 'TextItem',
49220                 text : "Column Width: ",
49221                  xns : rooui.Toolbar 
49222                
49223             },
49224             {
49225                 xtype : 'Button',
49226                 text: '-',
49227                 listeners : {
49228                     click : function (_self, e)
49229                     {
49230                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49231                         cell().shrinkColumn();
49232                         syncValue();
49233                          toolbar.editorcore.onEditorEvent();
49234                     }
49235                 },
49236                 xns : rooui.Toolbar
49237             },
49238             {
49239                 xtype : 'Button',
49240                 text: '+',
49241                 listeners : {
49242                     click : function (_self, e)
49243                     {
49244                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49245                         cell().growColumn();
49246                         syncValue();
49247                         toolbar.editorcore.onEditorEvent();
49248                     }
49249                 },
49250                 xns : rooui.Toolbar
49251             },
49252             
49253             {
49254                 xtype : 'TextItem',
49255                 text : "Vertical Align: ",
49256                 xns : rooui.Toolbar  //Boostrap?
49257             },
49258             {
49259                 xtype : 'ComboBox',
49260                 allowBlank : false,
49261                 displayField : 'val',
49262                 editable : true,
49263                 listWidth : 100,
49264                 triggerAction : 'all',
49265                 typeAhead : true,
49266                 valueField : 'val',
49267                 width : 100,
49268                 name : 'valign',
49269                 listeners : {
49270                     select : function (combo, r, index)
49271                     {
49272                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49273                         var b = cell();
49274                         b.valign = r.get('val');
49275                         b.updateElement();
49276                         syncValue();
49277                         toolbar.editorcore.onEditorEvent();
49278                     }
49279                 },
49280                 xns : rooui.form,
49281                 store : {
49282                     xtype : 'SimpleStore',
49283                     data : [
49284                         ['top'],
49285                         ['middle'],
49286                         ['bottom'] // there are afew more... 
49287                     ],
49288                     fields : [ 'val'],
49289                     xns : Roo.data
49290                 }
49291             },
49292             
49293             {
49294                 xtype : 'TextItem',
49295                 text : "Merge Cells: ",
49296                  xns : rooui.Toolbar 
49297                
49298             },
49299             
49300             
49301             {
49302                 xtype : 'Button',
49303                 text: 'Right',
49304                 listeners : {
49305                     click : function (_self, e)
49306                     {
49307                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49308                         cell().mergeRight();
49309                         //block().growColumn();
49310                         syncValue();
49311                         toolbar.editorcore.onEditorEvent();
49312                     }
49313                 },
49314                 xns : rooui.Toolbar
49315             },
49316              
49317             {
49318                 xtype : 'Button',
49319                 text: 'Below',
49320                 listeners : {
49321                     click : function (_self, e)
49322                     {
49323                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49324                         cell().mergeBelow();
49325                         //block().growColumn();
49326                         syncValue();
49327                         toolbar.editorcore.onEditorEvent();
49328                     }
49329                 },
49330                 xns : rooui.Toolbar
49331             },
49332             {
49333                 xtype : 'TextItem',
49334                 text : "| ",
49335                  xns : rooui.Toolbar 
49336                
49337             },
49338             
49339             {
49340                 xtype : 'Button',
49341                 text: 'Split',
49342                 listeners : {
49343                     click : function (_self, e)
49344                     {
49345                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49346                         cell().split();
49347                         syncValue();
49348                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49349                         toolbar.editorcore.onEditorEvent();
49350                                              
49351                     }
49352                 },
49353                 xns : rooui.Toolbar
49354             },
49355             {
49356                 xtype : 'Fill',
49357                 xns : rooui.Toolbar 
49358                
49359             },
49360         
49361           
49362             {
49363                 xtype : 'Button',
49364                 text: 'Delete',
49365                  
49366                 xns : rooui.Toolbar,
49367                 menu : {
49368                     xtype : 'Menu',
49369                     xns : rooui.menu,
49370                     items : [
49371                         {
49372                             xtype : 'Item',
49373                             html: 'Column',
49374                             listeners : {
49375                                 click : function (_self, e)
49376                                 {
49377                                     var t = table();
49378                                     
49379                                     cell().deleteColumn();
49380                                     syncValue();
49381                                     toolbar.editorcore.selectNode(t.node);
49382                                     toolbar.editorcore.onEditorEvent();   
49383                                 }
49384                             },
49385                             xns : rooui.menu
49386                         },
49387                         {
49388                             xtype : 'Item',
49389                             html: 'Row',
49390                             listeners : {
49391                                 click : function (_self, e)
49392                                 {
49393                                     var t = table();
49394                                     cell().deleteRow();
49395                                     syncValue();
49396                                     
49397                                     toolbar.editorcore.selectNode(t.node);
49398                                     toolbar.editorcore.onEditorEvent();   
49399                                                          
49400                                 }
49401                             },
49402                             xns : rooui.menu
49403                         },
49404                        {
49405                             xtype : 'Separator',
49406                             xns : rooui.menu
49407                         },
49408                         {
49409                             xtype : 'Item',
49410                             html: 'Table',
49411                             listeners : {
49412                                 click : function (_self, e)
49413                                 {
49414                                     var t = table();
49415                                     var nn = t.node.nextSibling || t.node.previousSibling;
49416                                     t.node.parentNode.removeChild(t.node);
49417                                     if (nn) { 
49418                                         toolbar.editorcore.selectNode(nn, true);
49419                                     }
49420                                     toolbar.editorcore.onEditorEvent();   
49421                                                          
49422                                 }
49423                             },
49424                             xns : rooui.menu
49425                         }
49426                     ]
49427                 }
49428             }
49429             
49430             // align... << fixme
49431             
49432         ];
49433         
49434     },
49435     
49436     
49437   /**
49438      * create a DomHelper friendly object - for use with
49439      * Roo.DomHelper.markup / overwrite / etc..
49440      * ?? should it be called with option to hide all editing features?
49441      */
49442  /**
49443      * create a DomHelper friendly object - for use with
49444      * Roo.DomHelper.markup / overwrite / etc..
49445      * ?? should it be called with option to hide all editing features?
49446      */
49447     toObject : function()
49448     {
49449         var ret = {
49450             tag : 'td',
49451             contenteditable : 'true', // this stops cell selection from picking the table.
49452             'data-block' : 'Td',
49453             valign : this.valign,
49454             style : {  
49455                 'text-align' :  this.textAlign,
49456                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
49457                 'border-collapse' : 'collapse',
49458                 padding : '6px', // 8 for desktop / 4 for mobile
49459                 'vertical-align': this.valign
49460             },
49461             html : this.html
49462         };
49463         if (this.width != '') {
49464             ret.width = this.width;
49465             ret.style.width = this.width;
49466         }
49467         
49468         
49469         if (this.colspan > 1) {
49470             ret.colspan = this.colspan ;
49471         } 
49472         if (this.rowspan > 1) {
49473             ret.rowspan = this.rowspan ;
49474         }
49475         
49476            
49477         
49478         return ret;
49479          
49480     },
49481     
49482     readElement : function(node)
49483     {
49484         node  = node ? node : this.node ;
49485         this.width = node.style.width;
49486         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
49487         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
49488         this.html = node.innerHTML;
49489         if (node.style.textAlign != '') {
49490             this.textAlign = node.style.textAlign;
49491         }
49492         
49493         
49494     },
49495      
49496     // the default cell object... at present...
49497     emptyCell : function() {
49498         return {
49499             colspan :  1,
49500             rowspan :  1,
49501             textAlign : 'left',
49502             html : "&nbsp;" // is this going to be editable now?
49503         };
49504      
49505     },
49506     
49507     removeNode : function()
49508     {
49509         return this.node.closest('table');
49510          
49511     },
49512     
49513     cellData : false,
49514     
49515     colWidths : false,
49516     
49517     toTableArray  : function()
49518     {
49519         var ret = [];
49520         var tab = this.node.closest('tr').closest('table');
49521         Array.from(tab.rows).forEach(function(r, ri){
49522             ret[ri] = [];
49523         });
49524         var rn = 0;
49525         this.colWidths = [];
49526         var all_auto = true;
49527         Array.from(tab.rows).forEach(function(r, ri){
49528             
49529             var cn = 0;
49530             Array.from(r.cells).forEach(function(ce, ci){
49531                 var c =  {
49532                     cell : ce,
49533                     row : rn,
49534                     col: cn,
49535                     colspan : ce.colSpan,
49536                     rowspan : ce.rowSpan
49537                 };
49538                 if (ce.isEqualNode(this.node)) {
49539                     this.cellData = c;
49540                 }
49541                 // if we have been filled up by a row?
49542                 if (typeof(ret[rn][cn]) != 'undefined') {
49543                     while(typeof(ret[rn][cn]) != 'undefined') {
49544                         cn++;
49545                     }
49546                     c.col = cn;
49547                 }
49548                 
49549                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
49550                     this.colWidths[cn] =   ce.style.width;
49551                     if (this.colWidths[cn] != '') {
49552                         all_auto = false;
49553                     }
49554                 }
49555                 
49556                 
49557                 if (c.colspan < 2 && c.rowspan < 2 ) {
49558                     ret[rn][cn] = c;
49559                     cn++;
49560                     return;
49561                 }
49562                 for(var j = 0; j < c.rowspan; j++) {
49563                     if (typeof(ret[rn+j]) == 'undefined') {
49564                         continue; // we have a problem..
49565                     }
49566                     ret[rn+j][cn] = c;
49567                     for(var i = 0; i < c.colspan; i++) {
49568                         ret[rn+j][cn+i] = c;
49569                     }
49570                 }
49571                 
49572                 cn += c.colspan;
49573             }, this);
49574             rn++;
49575         }, this);
49576         
49577         // initalize widths.?
49578         // either all widths or no widths..
49579         if (all_auto) {
49580             this.colWidths[0] = false; // no widths flag.
49581         }
49582         
49583         
49584         return ret;
49585         
49586     },
49587     
49588     
49589     
49590     
49591     mergeRight: function()
49592     {
49593          
49594         // get the contents of the next cell along..
49595         var tr = this.node.closest('tr');
49596         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
49597         if (i >= tr.childNodes.length - 1) {
49598             return; // no cells on right to merge with.
49599         }
49600         var table = this.toTableArray();
49601         
49602         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
49603             return; // nothing right?
49604         }
49605         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
49606         // right cell - must be same rowspan and on the same row.
49607         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
49608             return; // right hand side is not same rowspan.
49609         }
49610         
49611         
49612         
49613         this.node.innerHTML += ' ' + rc.cell.innerHTML;
49614         tr.removeChild(rc.cell);
49615         this.colspan += rc.colspan;
49616         this.node.setAttribute('colspan', this.colspan);
49617
49618         var table = this.toTableArray();
49619         this.normalizeWidths(table);
49620         this.updateWidths(table);
49621     },
49622     
49623     
49624     mergeBelow : function()
49625     {
49626         var table = this.toTableArray();
49627         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
49628             return; // no row below
49629         }
49630         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
49631             return; // nothing right?
49632         }
49633         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
49634         
49635         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
49636             return; // right hand side is not same rowspan.
49637         }
49638         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
49639         rc.cell.parentNode.removeChild(rc.cell);
49640         this.rowspan += rc.rowspan;
49641         this.node.setAttribute('rowspan', this.rowspan);
49642     },
49643     
49644     split: function()
49645     {
49646         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
49647             return;
49648         }
49649         var table = this.toTableArray();
49650         var cd = this.cellData;
49651         this.rowspan = 1;
49652         this.colspan = 1;
49653         
49654         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
49655              
49656             
49657             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
49658                 if (r == cd.row && c == cd.col) {
49659                     this.node.removeAttribute('rowspan');
49660                     this.node.removeAttribute('colspan');
49661                 }
49662                  
49663                 var ntd = this.node.cloneNode(); // which col/row should be 0..
49664                 ntd.removeAttribute('id'); 
49665                 ntd.style.width  = this.colWidths[c];
49666                 ntd.innerHTML = '';
49667                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
49668             }
49669             
49670         }
49671         this.redrawAllCells(table);
49672         
49673     },
49674     
49675     
49676     
49677     redrawAllCells: function(table)
49678     {
49679         
49680          
49681         var tab = this.node.closest('tr').closest('table');
49682         var ctr = tab.rows[0].parentNode;
49683         Array.from(tab.rows).forEach(function(r, ri){
49684             
49685             Array.from(r.cells).forEach(function(ce, ci){
49686                 ce.parentNode.removeChild(ce);
49687             });
49688             r.parentNode.removeChild(r);
49689         });
49690         for(var r = 0 ; r < table.length; r++) {
49691             var re = tab.rows[r];
49692             
49693             var re = tab.ownerDocument.createElement('tr');
49694             ctr.appendChild(re);
49695             for(var c = 0 ; c < table[r].length; c++) {
49696                 if (table[r][c].cell === false) {
49697                     continue;
49698                 }
49699                 
49700                 re.appendChild(table[r][c].cell);
49701                  
49702                 table[r][c].cell = false;
49703             }
49704         }
49705         
49706     },
49707     updateWidths : function(table)
49708     {
49709         for(var r = 0 ; r < table.length; r++) {
49710            
49711             for(var c = 0 ; c < table[r].length; c++) {
49712                 if (table[r][c].cell === false) {
49713                     continue;
49714                 }
49715                 
49716                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
49717                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
49718                     el.width = Math.floor(this.colWidths[c])  +'%';
49719                     el.updateElement(el.node);
49720                 }
49721                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
49722                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
49723                     var width = 0;
49724                     for(var i = 0; i < table[r][c].colspan; i ++) {
49725                         width += Math.floor(this.colWidths[c + i]);
49726                     }
49727                     el.width = width  +'%';
49728                     el.updateElement(el.node);
49729                 }
49730                 table[r][c].cell = false; // done
49731             }
49732         }
49733     },
49734     normalizeWidths : function(table)
49735     {
49736         if (this.colWidths[0] === false) {
49737             var nw = 100.0 / this.colWidths.length;
49738             this.colWidths.forEach(function(w,i) {
49739                 this.colWidths[i] = nw;
49740             },this);
49741             return;
49742         }
49743     
49744         var t = 0, missing = [];
49745         
49746         this.colWidths.forEach(function(w,i) {
49747             //if you mix % and
49748             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
49749             var add =  this.colWidths[i];
49750             if (add > 0) {
49751                 t+=add;
49752                 return;
49753             }
49754             missing.push(i);
49755             
49756             
49757         },this);
49758         var nc = this.colWidths.length;
49759         if (missing.length) {
49760             var mult = (nc - missing.length) / (1.0 * nc);
49761             var t = mult * t;
49762             var ew = (100 -t) / (1.0 * missing.length);
49763             this.colWidths.forEach(function(w,i) {
49764                 if (w > 0) {
49765                     this.colWidths[i] = w * mult;
49766                     return;
49767                 }
49768                 
49769                 this.colWidths[i] = ew;
49770             }, this);
49771             // have to make up numbers..
49772              
49773         }
49774         // now we should have all the widths..
49775         
49776     
49777     },
49778     
49779     shrinkColumn : function()
49780     {
49781         var table = this.toTableArray();
49782         this.normalizeWidths(table);
49783         var col = this.cellData.col;
49784         var nw = this.colWidths[col] * 0.8;
49785         if (nw < 5) {
49786             return;
49787         }
49788         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49789         this.colWidths.forEach(function(w,i) {
49790             if (i == col) {
49791                  this.colWidths[i] = nw;
49792                 return;
49793             }
49794             this.colWidths[i] += otherAdd
49795         }, this);
49796         this.updateWidths(table);
49797          
49798     },
49799     growColumn : function()
49800     {
49801         var table = this.toTableArray();
49802         this.normalizeWidths(table);
49803         var col = this.cellData.col;
49804         var nw = this.colWidths[col] * 1.2;
49805         if (nw > 90) {
49806             return;
49807         }
49808         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49809         this.colWidths.forEach(function(w,i) {
49810             if (i == col) {
49811                 this.colWidths[i] = nw;
49812                 return;
49813             }
49814             this.colWidths[i] -= otherSub
49815         }, this);
49816         this.updateWidths(table);
49817          
49818     },
49819     deleteRow : function()
49820     {
49821         // delete this rows 'tr'
49822         // if any of the cells in this row have a rowspan > 1 && row!= this row..
49823         // then reduce the rowspan.
49824         var table = this.toTableArray();
49825         // this.cellData.row;
49826         for (var i =0;i< table[this.cellData.row].length ; i++) {
49827             var c = table[this.cellData.row][i];
49828             if (c.row != this.cellData.row) {
49829                 
49830                 c.rowspan--;
49831                 c.cell.setAttribute('rowspan', c.rowspan);
49832                 continue;
49833             }
49834             if (c.rowspan > 1) {
49835                 c.rowspan--;
49836                 c.cell.setAttribute('rowspan', c.rowspan);
49837             }
49838         }
49839         table.splice(this.cellData.row,1);
49840         this.redrawAllCells(table);
49841         
49842     },
49843     deleteColumn : function()
49844     {
49845         var table = this.toTableArray();
49846         
49847         for (var i =0;i< table.length ; i++) {
49848             var c = table[i][this.cellData.col];
49849             if (c.col != this.cellData.col) {
49850                 table[i][this.cellData.col].colspan--;
49851             } else if (c.colspan > 1) {
49852                 c.colspan--;
49853                 c.cell.setAttribute('colspan', c.colspan);
49854             }
49855             table[i].splice(this.cellData.col,1);
49856         }
49857         
49858         this.redrawAllCells(table);
49859     }
49860     
49861     
49862     
49863     
49864 })
49865
49866 //<script type="text/javascript">
49867
49868 /*
49869  * Based  Ext JS Library 1.1.1
49870  * Copyright(c) 2006-2007, Ext JS, LLC.
49871  * LGPL
49872  *
49873  */
49874  
49875 /**
49876  * @class Roo.HtmlEditorCore
49877  * @extends Roo.Component
49878  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
49879  *
49880  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
49881  */
49882
49883 Roo.HtmlEditorCore = function(config){
49884     
49885     
49886     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
49887     
49888     
49889     this.addEvents({
49890         /**
49891          * @event initialize
49892          * Fires when the editor is fully initialized (including the iframe)
49893          * @param {Roo.HtmlEditorCore} this
49894          */
49895         initialize: true,
49896         /**
49897          * @event activate
49898          * Fires when the editor is first receives the focus. Any insertion must wait
49899          * until after this event.
49900          * @param {Roo.HtmlEditorCore} this
49901          */
49902         activate: true,
49903          /**
49904          * @event beforesync
49905          * Fires before the textarea is updated with content from the editor iframe. Return false
49906          * to cancel the sync.
49907          * @param {Roo.HtmlEditorCore} this
49908          * @param {String} html
49909          */
49910         beforesync: true,
49911          /**
49912          * @event beforepush
49913          * Fires before the iframe editor is updated with content from the textarea. Return false
49914          * to cancel the push.
49915          * @param {Roo.HtmlEditorCore} this
49916          * @param {String} html
49917          */
49918         beforepush: true,
49919          /**
49920          * @event sync
49921          * Fires when the textarea is updated with content from the editor iframe.
49922          * @param {Roo.HtmlEditorCore} this
49923          * @param {String} html
49924          */
49925         sync: true,
49926          /**
49927          * @event push
49928          * Fires when the iframe editor is updated with content from the textarea.
49929          * @param {Roo.HtmlEditorCore} this
49930          * @param {String} html
49931          */
49932         push: true,
49933         
49934         /**
49935          * @event editorevent
49936          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
49937          * @param {Roo.HtmlEditorCore} this
49938          */
49939         editorevent: true 
49940          
49941         
49942     });
49943     
49944     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
49945     
49946     // defaults : white / black...
49947     this.applyBlacklists();
49948     
49949     
49950     
49951 };
49952
49953
49954 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
49955
49956
49957      /**
49958      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
49959      */
49960     
49961     owner : false,
49962     
49963      /**
49964      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
49965      *                        Roo.resizable.
49966      */
49967     resizable : false,
49968      /**
49969      * @cfg {Number} height (in pixels)
49970      */   
49971     height: 300,
49972    /**
49973      * @cfg {Number} width (in pixels)
49974      */   
49975     width: 500,
49976      /**
49977      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
49978      *         if you are doing an email editor, this probably needs disabling, it's designed
49979      */
49980     autoClean: true,
49981     
49982     /**
49983      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
49984      */
49985     enableBlocks : true,
49986     /**
49987      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
49988      * 
49989      */
49990     stylesheets: false,
49991      /**
49992      * @cfg {String} language default en - language of text (usefull for rtl languages)
49993      * 
49994      */
49995     language: 'en',
49996     
49997     /**
49998      * @cfg {boolean} allowComments - default false - allow comments in HTML source
49999      *          - by default they are stripped - if you are editing email you may need this.
50000      */
50001     allowComments: false,
50002     // id of frame..
50003     frameId: false,
50004     
50005     // private properties
50006     validationEvent : false,
50007     deferHeight: true,
50008     initialized : false,
50009     activated : false,
50010     sourceEditMode : false,
50011     onFocus : Roo.emptyFn,
50012     iframePad:3,
50013     hideMode:'offsets',
50014     
50015     clearUp: true,
50016     
50017     // blacklist + whitelisted elements..
50018     black: false,
50019     white: false,
50020      
50021     bodyCls : '',
50022
50023     
50024     undoManager : false,
50025     /**
50026      * Protected method that will not generally be called directly. It
50027      * is called when the editor initializes the iframe with HTML contents. Override this method if you
50028      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
50029      */
50030     getDocMarkup : function(){
50031         // body styles..
50032         var st = '';
50033         
50034         // inherit styels from page...?? 
50035         if (this.stylesheets === false) {
50036             
50037             Roo.get(document.head).select('style').each(function(node) {
50038                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
50039             });
50040             
50041             Roo.get(document.head).select('link').each(function(node) { 
50042                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
50043             });
50044             
50045         } else if (!this.stylesheets.length) {
50046                 // simple..
50047                 st = '<style type="text/css">' +
50048                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
50049                    '</style>';
50050         } else {
50051             for (var i in this.stylesheets) {
50052                 if (typeof(this.stylesheets[i]) != 'string') {
50053                     continue;
50054                 }
50055                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
50056             }
50057             
50058         }
50059         
50060         st +=  '<style type="text/css">' +
50061             'IMG { cursor: pointer } ' +
50062         '</style>';
50063         
50064         st += '<meta name="google" content="notranslate">';
50065         
50066         var cls = 'notranslate roo-htmleditor-body';
50067         
50068         if(this.bodyCls.length){
50069             cls += ' ' + this.bodyCls;
50070         }
50071         
50072         return '<html  class="notranslate" translate="no"><head>' + st  +
50073             //<style type="text/css">' +
50074             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
50075             //'</style>' +
50076             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
50077     },
50078
50079     // private
50080     onRender : function(ct, position)
50081     {
50082         var _t = this;
50083         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
50084         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
50085         
50086         
50087         this.el.dom.style.border = '0 none';
50088         this.el.dom.setAttribute('tabIndex', -1);
50089         this.el.addClass('x-hidden hide');
50090         
50091         
50092         
50093         if(Roo.isIE){ // fix IE 1px bogus margin
50094             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
50095         }
50096        
50097         
50098         this.frameId = Roo.id();
50099         
50100          
50101         
50102         var iframe = this.owner.wrap.createChild({
50103             tag: 'iframe',
50104             cls: 'form-control', // bootstrap..
50105             id: this.frameId,
50106             name: this.frameId,
50107             frameBorder : 'no',
50108             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
50109         }, this.el
50110         );
50111         
50112         
50113         this.iframe = iframe.dom;
50114
50115         this.assignDocWin();
50116         
50117         this.doc.designMode = 'on';
50118        
50119         this.doc.open();
50120         this.doc.write(this.getDocMarkup());
50121         this.doc.close();
50122
50123         
50124         var task = { // must defer to wait for browser to be ready
50125             run : function(){
50126                 //console.log("run task?" + this.doc.readyState);
50127                 this.assignDocWin();
50128                 if(this.doc.body || this.doc.readyState == 'complete'){
50129                     try {
50130                         this.doc.designMode="on";
50131                         
50132                     } catch (e) {
50133                         return;
50134                     }
50135                     Roo.TaskMgr.stop(task);
50136                     this.initEditor.defer(10, this);
50137                 }
50138             },
50139             interval : 10,
50140             duration: 10000,
50141             scope: this
50142         };
50143         Roo.TaskMgr.start(task);
50144
50145     },
50146
50147     // private
50148     onResize : function(w, h)
50149     {
50150          Roo.log('resize: ' +w + ',' + h );
50151         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
50152         if(!this.iframe){
50153             return;
50154         }
50155         if(typeof w == 'number'){
50156             
50157             this.iframe.style.width = w + 'px';
50158         }
50159         if(typeof h == 'number'){
50160             
50161             this.iframe.style.height = h + 'px';
50162             if(this.doc){
50163                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
50164             }
50165         }
50166         
50167     },
50168
50169     /**
50170      * Toggles the editor between standard and source edit mode.
50171      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
50172      */
50173     toggleSourceEdit : function(sourceEditMode){
50174         
50175         this.sourceEditMode = sourceEditMode === true;
50176         
50177         if(this.sourceEditMode){
50178  
50179             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
50180             
50181         }else{
50182             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
50183             //this.iframe.className = '';
50184             this.deferFocus();
50185         }
50186         //this.setSize(this.owner.wrap.getSize());
50187         //this.fireEvent('editmodechange', this, this.sourceEditMode);
50188     },
50189
50190     
50191   
50192
50193     /**
50194      * Protected method that will not generally be called directly. If you need/want
50195      * custom HTML cleanup, this is the method you should override.
50196      * @param {String} html The HTML to be cleaned
50197      * return {String} The cleaned HTML
50198      */
50199     cleanHtml : function(html)
50200     {
50201         html = String(html);
50202         if(html.length > 5){
50203             if(Roo.isSafari){ // strip safari nonsense
50204                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
50205             }
50206         }
50207         if(html == '&nbsp;'){
50208             html = '';
50209         }
50210         return html;
50211     },
50212
50213     /**
50214      * HTML Editor -> Textarea
50215      * Protected method that will not generally be called directly. Syncs the contents
50216      * of the editor iframe with the textarea.
50217      */
50218     syncValue : function()
50219     {
50220         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
50221         if(this.initialized){
50222             
50223             if (this.undoManager) {
50224                 this.undoManager.addEvent();
50225             }
50226
50227             
50228             var bd = (this.doc.body || this.doc.documentElement);
50229            
50230             
50231             var sel = this.win.getSelection();
50232             
50233             var div = document.createElement('div');
50234             div.innerHTML = bd.innerHTML;
50235             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
50236             if (gtx.length > 0) {
50237                 var rm = gtx.item(0).parentNode;
50238                 rm.parentNode.removeChild(rm);
50239             }
50240             
50241            
50242             if (this.enableBlocks) {
50243                 new Roo.htmleditor.FilterBlock({ node : div });
50244             }
50245             
50246             var html = div.innerHTML;
50247             
50248             //?? tidy?
50249             if (this.autoClean) {
50250                 
50251                 new Roo.htmleditor.FilterAttributes({
50252                     node : div,
50253                     attrib_white : [
50254                             'href',
50255                             'src',
50256                             'name',
50257                             'align',
50258                             'colspan',
50259                             'rowspan',
50260                             'data-display',
50261                             'data-width',
50262                             'start' ,
50263                             'style',
50264                             // youtube embed.
50265                             'class',
50266                             'allowfullscreen',
50267                             'frameborder',
50268                             'width',
50269                             'height',
50270                             'alt'
50271                             ],
50272                     attrib_clean : ['href', 'src' ] 
50273                 });
50274                 
50275                 var tidy = new Roo.htmleditor.TidySerializer({
50276                     inner:  true
50277                 });
50278                 html  = tidy.serialize(div);
50279                 
50280             }
50281             
50282             
50283             if(Roo.isSafari){
50284                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
50285                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
50286                 if(m && m[1]){
50287                     html = '<div style="'+m[0]+'">' + html + '</div>';
50288                 }
50289             }
50290             html = this.cleanHtml(html);
50291             // fix up the special chars.. normaly like back quotes in word...
50292             // however we do not want to do this with chinese..
50293             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
50294                 
50295                 var cc = match.charCodeAt();
50296
50297                 // Get the character value, handling surrogate pairs
50298                 if (match.length == 2) {
50299                     // It's a surrogate pair, calculate the Unicode code point
50300                     var high = match.charCodeAt(0) - 0xD800;
50301                     var low  = match.charCodeAt(1) - 0xDC00;
50302                     cc = (high * 0x400) + low + 0x10000;
50303                 }  else if (
50304                     (cc >= 0x4E00 && cc < 0xA000 ) ||
50305                     (cc >= 0x3400 && cc < 0x4E00 ) ||
50306                     (cc >= 0xf900 && cc < 0xfb00 )
50307                 ) {
50308                         return match;
50309                 }  
50310          
50311                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
50312                 return "&#" + cc + ";";
50313                 
50314                 
50315             });
50316             
50317             
50318              
50319             if(this.owner.fireEvent('beforesync', this, html) !== false){
50320                 this.el.dom.value = html;
50321                 this.owner.fireEvent('sync', this, html);
50322             }
50323         }
50324     },
50325
50326     /**
50327      * TEXTAREA -> EDITABLE
50328      * Protected method that will not generally be called directly. Pushes the value of the textarea
50329      * into the iframe editor.
50330      */
50331     pushValue : function()
50332     {
50333         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
50334         if(this.initialized){
50335             var v = this.el.dom.value.trim();
50336             
50337             
50338             if(this.owner.fireEvent('beforepush', this, v) !== false){
50339                 var d = (this.doc.body || this.doc.documentElement);
50340                 d.innerHTML = v;
50341                  
50342                 this.el.dom.value = d.innerHTML;
50343                 this.owner.fireEvent('push', this, v);
50344             }
50345             if (this.autoClean) {
50346                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
50347                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
50348             }
50349             if (this.enableBlocks) {
50350                 Roo.htmleditor.Block.initAll(this.doc.body);
50351             }
50352             
50353             this.updateLanguage();
50354             
50355             var lc = this.doc.body.lastChild;
50356             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
50357                 // add an extra line at the end.
50358                 this.doc.body.appendChild(this.doc.createElement('br'));
50359             }
50360             
50361             
50362         }
50363     },
50364
50365     // private
50366     deferFocus : function(){
50367         this.focus.defer(10, this);
50368     },
50369
50370     // doc'ed in Field
50371     focus : function(){
50372         if(this.win && !this.sourceEditMode){
50373             this.win.focus();
50374         }else{
50375             this.el.focus();
50376         }
50377     },
50378     
50379     assignDocWin: function()
50380     {
50381         var iframe = this.iframe;
50382         
50383          if(Roo.isIE){
50384             this.doc = iframe.contentWindow.document;
50385             this.win = iframe.contentWindow;
50386         } else {
50387 //            if (!Roo.get(this.frameId)) {
50388 //                return;
50389 //            }
50390 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50391 //            this.win = Roo.get(this.frameId).dom.contentWindow;
50392             
50393             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
50394                 return;
50395             }
50396             
50397             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50398             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
50399         }
50400     },
50401     
50402     // private
50403     initEditor : function(){
50404         //console.log("INIT EDITOR");
50405         this.assignDocWin();
50406         
50407         
50408         
50409         this.doc.designMode="on";
50410         this.doc.open();
50411         this.doc.write(this.getDocMarkup());
50412         this.doc.close();
50413         
50414         var dbody = (this.doc.body || this.doc.documentElement);
50415         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
50416         // this copies styles from the containing element into thsi one..
50417         // not sure why we need all of this..
50418         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
50419         
50420         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
50421         //ss['background-attachment'] = 'fixed'; // w3c
50422         dbody.bgProperties = 'fixed'; // ie
50423         dbody.setAttribute("translate", "no");
50424         
50425         //Roo.DomHelper.applyStyles(dbody, ss);
50426         Roo.EventManager.on(this.doc, {
50427              
50428             'mouseup': this.onEditorEvent,
50429             'dblclick': this.onEditorEvent,
50430             'click': this.onEditorEvent,
50431             'keyup': this.onEditorEvent,
50432             
50433             buffer:100,
50434             scope: this
50435         });
50436         Roo.EventManager.on(this.doc, {
50437             'paste': this.onPasteEvent,
50438             scope : this
50439         });
50440         if(Roo.isGecko){
50441             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
50442         }
50443         //??? needed???
50444         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
50445             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
50446         }
50447         this.initialized = true;
50448
50449         
50450         // initialize special key events - enter
50451         new Roo.htmleditor.KeyEnter({core : this});
50452         
50453          
50454         
50455         this.owner.fireEvent('initialize', this);
50456         this.pushValue();
50457     },
50458     // this is to prevent a href clicks resulting in a redirect?
50459    
50460     onPasteEvent : function(e,v)
50461     {
50462         // I think we better assume paste is going to be a dirty load of rubish from word..
50463         
50464         // even pasting into a 'email version' of this widget will have to clean up that mess.
50465         var cd = (e.browserEvent.clipboardData || window.clipboardData);
50466         
50467         // check what type of paste - if it's an image, then handle it differently.
50468         if (cd.files && cd.files.length > 0) {
50469             // pasting images?
50470             var urlAPI = (window.createObjectURL && window) || 
50471                 (window.URL && URL.revokeObjectURL && URL) || 
50472                 (window.webkitURL && webkitURL);
50473     
50474             var url = urlAPI.createObjectURL( cd.files[0]);
50475             this.insertAtCursor('<img src=" + url + ">');
50476             return false;
50477         }
50478         if (cd.types.indexOf('text/html') < 0 ) {
50479             return false;
50480         }
50481         var images = [];
50482         var html = cd.getData('text/html'); // clipboard event
50483         if (cd.types.indexOf('text/rtf') > -1) {
50484             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
50485             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
50486         }
50487         //Roo.log(images);
50488         //Roo.log(imgs);
50489         // fixme..
50490         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
50491                        .map(function(g) { return g.toDataURL(); })
50492                        .filter(function(g) { return g != 'about:blank'; });
50493         
50494         //Roo.log(html);
50495         html = this.cleanWordChars(html);
50496         
50497         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
50498         
50499         
50500         var sn = this.getParentElement();
50501         // check if d contains a table, and prevent nesting??
50502         //Roo.log(d.getElementsByTagName('table'));
50503         //Roo.log(sn);
50504         //Roo.log(sn.closest('table'));
50505         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
50506             e.preventDefault();
50507             this.insertAtCursor("You can not nest tables");
50508             //Roo.log("prevent?"); // fixme - 
50509             return false;
50510         }
50511         
50512         
50513         
50514         if (images.length > 0) {
50515             // replace all v:imagedata - with img.
50516             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
50517             Roo.each(ar, function(node) {
50518                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
50519                 node.parentNode.removeChild(node);
50520             });
50521             
50522             
50523             Roo.each(d.getElementsByTagName('img'), function(img, i) {
50524                 img.setAttribute('src', images[i]);
50525             });
50526         }
50527         if (this.autoClean) {
50528             new Roo.htmleditor.FilterWord({ node : d });
50529             
50530             new Roo.htmleditor.FilterStyleToTag({ node : d });
50531             new Roo.htmleditor.FilterAttributes({
50532                 node : d,
50533                 attrib_white : ['href', 'src', 'name', 'align', 'colspan', 'rowspan', 'data-display', 'data-width', 'start'],
50534                 attrib_clean : ['href', 'src' ] 
50535             });
50536             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
50537             // should be fonts..
50538             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
50539             new Roo.htmleditor.FilterParagraph({ node : d });
50540             new Roo.htmleditor.FilterSpan({ node : d });
50541             new Roo.htmleditor.FilterLongBr({ node : d });
50542             new Roo.htmleditor.FilterComment({ node : d });
50543             
50544             
50545         }
50546         if (this.enableBlocks) {
50547                 
50548             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
50549                 if (img.closest('figure')) { // assume!! that it's aready
50550                     return;
50551                 }
50552                 var fig  = new Roo.htmleditor.BlockFigure({
50553                     image_src  : img.src
50554                 });
50555                 fig.updateElement(img); // replace it..
50556                 
50557             });
50558         }
50559         
50560         
50561         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
50562         if (this.enableBlocks) {
50563             Roo.htmleditor.Block.initAll(this.doc.body);
50564         }
50565          
50566         
50567         e.preventDefault();
50568         return false;
50569         // default behaveiour should be our local cleanup paste? (optional?)
50570         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
50571         //this.owner.fireEvent('paste', e, v);
50572     },
50573     // private
50574     onDestroy : function(){
50575         
50576         
50577         
50578         if(this.rendered){
50579             
50580             //for (var i =0; i < this.toolbars.length;i++) {
50581             //    // fixme - ask toolbars for heights?
50582             //    this.toolbars[i].onDestroy();
50583            // }
50584             
50585             //this.wrap.dom.innerHTML = '';
50586             //this.wrap.remove();
50587         }
50588     },
50589
50590     // private
50591     onFirstFocus : function(){
50592         
50593         this.assignDocWin();
50594         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
50595         
50596         this.activated = true;
50597          
50598     
50599         if(Roo.isGecko){ // prevent silly gecko errors
50600             this.win.focus();
50601             var s = this.win.getSelection();
50602             if(!s.focusNode || s.focusNode.nodeType != 3){
50603                 var r = s.getRangeAt(0);
50604                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
50605                 r.collapse(true);
50606                 this.deferFocus();
50607             }
50608             try{
50609                 this.execCmd('useCSS', true);
50610                 this.execCmd('styleWithCSS', false);
50611             }catch(e){}
50612         }
50613         this.owner.fireEvent('activate', this);
50614     },
50615
50616     // private
50617     adjustFont: function(btn){
50618         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
50619         //if(Roo.isSafari){ // safari
50620         //    adjust *= 2;
50621        // }
50622         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
50623         if(Roo.isSafari){ // safari
50624             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
50625             v =  (v < 10) ? 10 : v;
50626             v =  (v > 48) ? 48 : v;
50627             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
50628             
50629         }
50630         
50631         
50632         v = Math.max(1, v+adjust);
50633         
50634         this.execCmd('FontSize', v  );
50635     },
50636
50637     onEditorEvent : function(e)
50638     {
50639          
50640         
50641         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
50642             return; // we do not handle this.. (undo manager does..)
50643         }
50644         // in theory this detects if the last element is not a br, then we try and do that.
50645         // its so clicking in space at bottom triggers adding a br and moving the cursor.
50646         if (e &&
50647             e.target.nodeName == 'BODY' &&
50648             e.type == "mouseup" &&
50649             this.doc.body.lastChild
50650            ) {
50651             var lc = this.doc.body.lastChild;
50652             // gtx-trans is google translate plugin adding crap.
50653             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
50654                 lc = lc.previousSibling;
50655             }
50656             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
50657             // if last element is <BR> - then dont do anything.
50658             
50659                 var ns = this.doc.createElement('br');
50660                 this.doc.body.appendChild(ns);
50661                 range = this.doc.createRange();
50662                 range.setStartAfter(ns);
50663                 range.collapse(true);
50664                 var sel = this.win.getSelection();
50665                 sel.removeAllRanges();
50666                 sel.addRange(range);
50667             }
50668         }
50669         
50670         
50671         
50672         this.fireEditorEvent(e);
50673       //  this.updateToolbar();
50674         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
50675     },
50676     
50677     fireEditorEvent: function(e)
50678     {
50679         this.owner.fireEvent('editorevent', this, e);
50680     },
50681
50682     insertTag : function(tg)
50683     {
50684         // could be a bit smarter... -> wrap the current selected tRoo..
50685         if (tg.toLowerCase() == 'span' ||
50686             tg.toLowerCase() == 'code' ||
50687             tg.toLowerCase() == 'sup' ||
50688             tg.toLowerCase() == 'sub' 
50689             ) {
50690             
50691             range = this.createRange(this.getSelection());
50692             var wrappingNode = this.doc.createElement(tg.toLowerCase());
50693             wrappingNode.appendChild(range.extractContents());
50694             range.insertNode(wrappingNode);
50695
50696             return;
50697             
50698             
50699             
50700         }
50701         this.execCmd("formatblock",   tg);
50702         this.undoManager.addEvent(); 
50703     },
50704     
50705     insertText : function(txt)
50706     {
50707         
50708         
50709         var range = this.createRange();
50710         range.deleteContents();
50711                //alert(Sender.getAttribute('label'));
50712                
50713         range.insertNode(this.doc.createTextNode(txt));
50714         this.undoManager.addEvent();
50715     } ,
50716     
50717      
50718
50719     /**
50720      * Executes a Midas editor command on the editor document and performs necessary focus and
50721      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
50722      * @param {String} cmd The Midas command
50723      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50724      */
50725     relayCmd : function(cmd, value)
50726     {
50727         
50728         switch (cmd) {
50729             case 'justifyleft':
50730             case 'justifyright':
50731             case 'justifycenter':
50732                 // if we are in a cell, then we will adjust the
50733                 var n = this.getParentElement();
50734                 var td = n.closest('td');
50735                 if (td) {
50736                     var bl = Roo.htmleditor.Block.factory(td);
50737                     bl.textAlign = cmd.replace('justify','');
50738                     bl.updateElement();
50739                     this.owner.fireEvent('editorevent', this);
50740                     return;
50741                 }
50742                 this.execCmd('styleWithCSS', true); // 
50743                 break;
50744             case 'bold':
50745             case 'italic':
50746                 // if there is no selection, then we insert, and set the curson inside it..
50747                 this.execCmd('styleWithCSS', false); 
50748                 break;
50749                 
50750         
50751             default:
50752                 break;
50753         }
50754         
50755         
50756         this.win.focus();
50757         this.execCmd(cmd, value);
50758         this.owner.fireEvent('editorevent', this);
50759         //this.updateToolbar();
50760         this.owner.deferFocus();
50761     },
50762
50763     /**
50764      * Executes a Midas editor command directly on the editor document.
50765      * For visual commands, you should use {@link #relayCmd} instead.
50766      * <b>This should only be called after the editor is initialized.</b>
50767      * @param {String} cmd The Midas command
50768      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50769      */
50770     execCmd : function(cmd, value){
50771         this.doc.execCommand(cmd, false, value === undefined ? null : value);
50772         this.syncValue();
50773     },
50774  
50775  
50776    
50777     /**
50778      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
50779      * to insert tRoo.
50780      * @param {String} text | dom node.. 
50781      */
50782     insertAtCursor : function(text)
50783     {
50784         
50785         if(!this.activated){
50786             return;
50787         }
50788          
50789         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
50790             this.win.focus();
50791             
50792             
50793             // from jquery ui (MIT licenced)
50794             var range, node;
50795             var win = this.win;
50796             
50797             if (win.getSelection && win.getSelection().getRangeAt) {
50798                 
50799                 // delete the existing?
50800                 
50801                 this.createRange(this.getSelection()).deleteContents();
50802                 range = win.getSelection().getRangeAt(0);
50803                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
50804                 range.insertNode(node);
50805                 range = range.cloneRange();
50806                 range.collapse(false);
50807                  
50808                 win.getSelection().removeAllRanges();
50809                 win.getSelection().addRange(range);
50810                 
50811                 
50812                 
50813             } else if (win.document.selection && win.document.selection.createRange) {
50814                 // no firefox support
50815                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50816                 win.document.selection.createRange().pasteHTML(txt);
50817             
50818             } else {
50819                 // no firefox support
50820                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50821                 this.execCmd('InsertHTML', txt);
50822             } 
50823             this.syncValue();
50824             
50825             this.deferFocus();
50826         }
50827     },
50828  // private
50829     mozKeyPress : function(e){
50830         if(e.ctrlKey){
50831             var c = e.getCharCode(), cmd;
50832           
50833             if(c > 0){
50834                 c = String.fromCharCode(c).toLowerCase();
50835                 switch(c){
50836                     case 'b':
50837                         cmd = 'bold';
50838                         break;
50839                     case 'i':
50840                         cmd = 'italic';
50841                         break;
50842                     
50843                     case 'u':
50844                         cmd = 'underline';
50845                         break;
50846                     
50847                     //case 'v':
50848                       //  this.cleanUpPaste.defer(100, this);
50849                       //  return;
50850                         
50851                 }
50852                 if(cmd){
50853                     
50854                     this.relayCmd(cmd);
50855                     //this.win.focus();
50856                     //this.execCmd(cmd);
50857                     //this.deferFocus();
50858                     e.preventDefault();
50859                 }
50860                 
50861             }
50862         }
50863     },
50864
50865     // private
50866     fixKeys : function(){ // load time branching for fastest keydown performance
50867         
50868         
50869         if(Roo.isIE){
50870             return function(e){
50871                 var k = e.getKey(), r;
50872                 if(k == e.TAB){
50873                     e.stopEvent();
50874                     r = this.doc.selection.createRange();
50875                     if(r){
50876                         r.collapse(true);
50877                         r.pasteHTML('&#160;&#160;&#160;&#160;');
50878                         this.deferFocus();
50879                     }
50880                     return;
50881                 }
50882                 /// this is handled by Roo.htmleditor.KeyEnter
50883                  /*
50884                 if(k == e.ENTER){
50885                     r = this.doc.selection.createRange();
50886                     if(r){
50887                         var target = r.parentElement();
50888                         if(!target || target.tagName.toLowerCase() != 'li'){
50889                             e.stopEvent();
50890                             r.pasteHTML('<br/>');
50891                             r.collapse(false);
50892                             r.select();
50893                         }
50894                     }
50895                 }
50896                 */
50897                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50898                 //    this.cleanUpPaste.defer(100, this);
50899                 //    return;
50900                 //}
50901                 
50902                 
50903             };
50904         }else if(Roo.isOpera){
50905             return function(e){
50906                 var k = e.getKey();
50907                 if(k == e.TAB){
50908                     e.stopEvent();
50909                     this.win.focus();
50910                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
50911                     this.deferFocus();
50912                 }
50913                
50914                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50915                 //    this.cleanUpPaste.defer(100, this);
50916                  //   return;
50917                 //}
50918                 
50919             };
50920         }else if(Roo.isSafari){
50921             return function(e){
50922                 var k = e.getKey();
50923                 
50924                 if(k == e.TAB){
50925                     e.stopEvent();
50926                     this.execCmd('InsertText','\t');
50927                     this.deferFocus();
50928                     return;
50929                 }
50930                  this.mozKeyPress(e);
50931                 
50932                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50933                  //   this.cleanUpPaste.defer(100, this);
50934                  //   return;
50935                // }
50936                 
50937              };
50938         }
50939     }(),
50940     
50941     getAllAncestors: function()
50942     {
50943         var p = this.getSelectedNode();
50944         var a = [];
50945         if (!p) {
50946             a.push(p); // push blank onto stack..
50947             p = this.getParentElement();
50948         }
50949         
50950         
50951         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
50952             a.push(p);
50953             p = p.parentNode;
50954         }
50955         a.push(this.doc.body);
50956         return a;
50957     },
50958     lastSel : false,
50959     lastSelNode : false,
50960     
50961     
50962     getSelection : function() 
50963     {
50964         this.assignDocWin();
50965         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
50966     },
50967     /**
50968      * Select a dom node
50969      * @param {DomElement} node the node to select
50970      */
50971     selectNode : function(node, collapse)
50972     {
50973         var nodeRange = node.ownerDocument.createRange();
50974         try {
50975             nodeRange.selectNode(node);
50976         } catch (e) {
50977             nodeRange.selectNodeContents(node);
50978         }
50979         if (collapse === true) {
50980             nodeRange.collapse(true);
50981         }
50982         //
50983         var s = this.win.getSelection();
50984         s.removeAllRanges();
50985         s.addRange(nodeRange);
50986     },
50987     
50988     getSelectedNode: function() 
50989     {
50990         // this may only work on Gecko!!!
50991         
50992         // should we cache this!!!!
50993         
50994          
50995          
50996         var range = this.createRange(this.getSelection()).cloneRange();
50997         
50998         if (Roo.isIE) {
50999             var parent = range.parentElement();
51000             while (true) {
51001                 var testRange = range.duplicate();
51002                 testRange.moveToElementText(parent);
51003                 if (testRange.inRange(range)) {
51004                     break;
51005                 }
51006                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
51007                     break;
51008                 }
51009                 parent = parent.parentElement;
51010             }
51011             return parent;
51012         }
51013         
51014         // is ancestor a text element.
51015         var ac =  range.commonAncestorContainer;
51016         if (ac.nodeType == 3) {
51017             ac = ac.parentNode;
51018         }
51019         
51020         var ar = ac.childNodes;
51021          
51022         var nodes = [];
51023         var other_nodes = [];
51024         var has_other_nodes = false;
51025         for (var i=0;i<ar.length;i++) {
51026             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
51027                 continue;
51028             }
51029             // fullly contained node.
51030             
51031             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
51032                 nodes.push(ar[i]);
51033                 continue;
51034             }
51035             
51036             // probably selected..
51037             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
51038                 other_nodes.push(ar[i]);
51039                 continue;
51040             }
51041             // outer..
51042             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
51043                 continue;
51044             }
51045             
51046             
51047             has_other_nodes = true;
51048         }
51049         if (!nodes.length && other_nodes.length) {
51050             nodes= other_nodes;
51051         }
51052         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
51053             return false;
51054         }
51055         
51056         return nodes[0];
51057     },
51058     
51059     
51060     createRange: function(sel)
51061     {
51062         // this has strange effects when using with 
51063         // top toolbar - not sure if it's a great idea.
51064         //this.editor.contentWindow.focus();
51065         if (typeof sel != "undefined") {
51066             try {
51067                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
51068             } catch(e) {
51069                 return this.doc.createRange();
51070             }
51071         } else {
51072             return this.doc.createRange();
51073         }
51074     },
51075     getParentElement: function()
51076     {
51077         
51078         this.assignDocWin();
51079         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
51080         
51081         var range = this.createRange(sel);
51082          
51083         try {
51084             var p = range.commonAncestorContainer;
51085             while (p.nodeType == 3) { // text node
51086                 p = p.parentNode;
51087             }
51088             return p;
51089         } catch (e) {
51090             return null;
51091         }
51092     
51093     },
51094     /***
51095      *
51096      * Range intersection.. the hard stuff...
51097      *  '-1' = before
51098      *  '0' = hits..
51099      *  '1' = after.
51100      *         [ -- selected range --- ]
51101      *   [fail]                        [fail]
51102      *
51103      *    basically..
51104      *      if end is before start or  hits it. fail.
51105      *      if start is after end or hits it fail.
51106      *
51107      *   if either hits (but other is outside. - then it's not 
51108      *   
51109      *    
51110      **/
51111     
51112     
51113     // @see http://www.thismuchiknow.co.uk/?p=64.
51114     rangeIntersectsNode : function(range, node)
51115     {
51116         var nodeRange = node.ownerDocument.createRange();
51117         try {
51118             nodeRange.selectNode(node);
51119         } catch (e) {
51120             nodeRange.selectNodeContents(node);
51121         }
51122     
51123         var rangeStartRange = range.cloneRange();
51124         rangeStartRange.collapse(true);
51125     
51126         var rangeEndRange = range.cloneRange();
51127         rangeEndRange.collapse(false);
51128     
51129         var nodeStartRange = nodeRange.cloneRange();
51130         nodeStartRange.collapse(true);
51131     
51132         var nodeEndRange = nodeRange.cloneRange();
51133         nodeEndRange.collapse(false);
51134     
51135         return rangeStartRange.compareBoundaryPoints(
51136                  Range.START_TO_START, nodeEndRange) == -1 &&
51137                rangeEndRange.compareBoundaryPoints(
51138                  Range.START_TO_START, nodeStartRange) == 1;
51139         
51140          
51141     },
51142     rangeCompareNode : function(range, node)
51143     {
51144         var nodeRange = node.ownerDocument.createRange();
51145         try {
51146             nodeRange.selectNode(node);
51147         } catch (e) {
51148             nodeRange.selectNodeContents(node);
51149         }
51150         
51151         
51152         range.collapse(true);
51153     
51154         nodeRange.collapse(true);
51155      
51156         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
51157         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
51158          
51159         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
51160         
51161         var nodeIsBefore   =  ss == 1;
51162         var nodeIsAfter    = ee == -1;
51163         
51164         if (nodeIsBefore && nodeIsAfter) {
51165             return 0; // outer
51166         }
51167         if (!nodeIsBefore && nodeIsAfter) {
51168             return 1; //right trailed.
51169         }
51170         
51171         if (nodeIsBefore && !nodeIsAfter) {
51172             return 2;  // left trailed.
51173         }
51174         // fully contined.
51175         return 3;
51176     },
51177  
51178     cleanWordChars : function(input) {// change the chars to hex code
51179         
51180        var swapCodes  = [ 
51181             [    8211, "&#8211;" ], 
51182             [    8212, "&#8212;" ], 
51183             [    8216,  "'" ],  
51184             [    8217, "'" ],  
51185             [    8220, '"' ],  
51186             [    8221, '"' ],  
51187             [    8226, "*" ],  
51188             [    8230, "..." ]
51189         ]; 
51190         var output = input;
51191         Roo.each(swapCodes, function(sw) { 
51192             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
51193             
51194             output = output.replace(swapper, sw[1]);
51195         });
51196         
51197         return output;
51198     },
51199     
51200      
51201     
51202         
51203     
51204     cleanUpChild : function (node)
51205     {
51206         
51207         new Roo.htmleditor.FilterComment({node : node});
51208         new Roo.htmleditor.FilterAttributes({
51209                 node : node,
51210                 attrib_black : this.ablack,
51211                 attrib_clean : this.aclean,
51212                 style_white : this.cwhite,
51213                 style_black : this.cblack
51214         });
51215         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
51216         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
51217          
51218         
51219     },
51220     
51221     /**
51222      * Clean up MS wordisms...
51223      * @deprecated - use filter directly
51224      */
51225     cleanWord : function(node)
51226     {
51227         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
51228         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
51229         
51230     },
51231    
51232     
51233     /**
51234
51235      * @deprecated - use filters
51236      */
51237     cleanTableWidths : function(node)
51238     {
51239         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
51240         
51241  
51242     },
51243     
51244      
51245         
51246     applyBlacklists : function()
51247     {
51248         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
51249         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
51250         
51251         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
51252         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
51253         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
51254         
51255         this.white = [];
51256         this.black = [];
51257         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
51258             if (b.indexOf(tag) > -1) {
51259                 return;
51260             }
51261             this.white.push(tag);
51262             
51263         }, this);
51264         
51265         Roo.each(w, function(tag) {
51266             if (b.indexOf(tag) > -1) {
51267                 return;
51268             }
51269             if (this.white.indexOf(tag) > -1) {
51270                 return;
51271             }
51272             this.white.push(tag);
51273             
51274         }, this);
51275         
51276         
51277         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
51278             if (w.indexOf(tag) > -1) {
51279                 return;
51280             }
51281             this.black.push(tag);
51282             
51283         }, this);
51284         
51285         Roo.each(b, function(tag) {
51286             if (w.indexOf(tag) > -1) {
51287                 return;
51288             }
51289             if (this.black.indexOf(tag) > -1) {
51290                 return;
51291             }
51292             this.black.push(tag);
51293             
51294         }, this);
51295         
51296         
51297         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
51298         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
51299         
51300         this.cwhite = [];
51301         this.cblack = [];
51302         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
51303             if (b.indexOf(tag) > -1) {
51304                 return;
51305             }
51306             this.cwhite.push(tag);
51307             
51308         }, this);
51309         
51310         Roo.each(w, function(tag) {
51311             if (b.indexOf(tag) > -1) {
51312                 return;
51313             }
51314             if (this.cwhite.indexOf(tag) > -1) {
51315                 return;
51316             }
51317             this.cwhite.push(tag);
51318             
51319         }, this);
51320         
51321         
51322         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
51323             if (w.indexOf(tag) > -1) {
51324                 return;
51325             }
51326             this.cblack.push(tag);
51327             
51328         }, this);
51329         
51330         Roo.each(b, function(tag) {
51331             if (w.indexOf(tag) > -1) {
51332                 return;
51333             }
51334             if (this.cblack.indexOf(tag) > -1) {
51335                 return;
51336             }
51337             this.cblack.push(tag);
51338             
51339         }, this);
51340     },
51341     
51342     setStylesheets : function(stylesheets)
51343     {
51344         if(typeof(stylesheets) == 'string'){
51345             Roo.get(this.iframe.contentDocument.head).createChild({
51346                 tag : 'link',
51347                 rel : 'stylesheet',
51348                 type : 'text/css',
51349                 href : stylesheets
51350             });
51351             
51352             return;
51353         }
51354         var _this = this;
51355      
51356         Roo.each(stylesheets, function(s) {
51357             if(!s.length){
51358                 return;
51359             }
51360             
51361             Roo.get(_this.iframe.contentDocument.head).createChild({
51362                 tag : 'link',
51363                 rel : 'stylesheet',
51364                 type : 'text/css',
51365                 href : s
51366             });
51367         });
51368
51369         
51370     },
51371     
51372     
51373     updateLanguage : function()
51374     {
51375         if (!this.iframe || !this.iframe.contentDocument) {
51376             return;
51377         }
51378         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
51379     },
51380     
51381     
51382     removeStylesheets : function()
51383     {
51384         var _this = this;
51385         
51386         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
51387             s.remove();
51388         });
51389     },
51390     
51391     setStyle : function(style)
51392     {
51393         Roo.get(this.iframe.contentDocument.head).createChild({
51394             tag : 'style',
51395             type : 'text/css',
51396             html : style
51397         });
51398
51399         return;
51400     }
51401     
51402     // hide stuff that is not compatible
51403     /**
51404      * @event blur
51405      * @hide
51406      */
51407     /**
51408      * @event change
51409      * @hide
51410      */
51411     /**
51412      * @event focus
51413      * @hide
51414      */
51415     /**
51416      * @event specialkey
51417      * @hide
51418      */
51419     /**
51420      * @cfg {String} fieldClass @hide
51421      */
51422     /**
51423      * @cfg {String} focusClass @hide
51424      */
51425     /**
51426      * @cfg {String} autoCreate @hide
51427      */
51428     /**
51429      * @cfg {String} inputType @hide
51430      */
51431     /**
51432      * @cfg {String} invalidClass @hide
51433      */
51434     /**
51435      * @cfg {String} invalidText @hide
51436      */
51437     /**
51438      * @cfg {String} msgFx @hide
51439      */
51440     /**
51441      * @cfg {String} validateOnBlur @hide
51442      */
51443 });
51444
51445 Roo.HtmlEditorCore.white = [
51446         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
51447         
51448        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
51449        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
51450        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
51451        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
51452        'TABLE',   'UL',         'XMP', 
51453        
51454        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
51455       'THEAD',   'TR', 
51456      
51457       'DIR', 'MENU', 'OL', 'UL', 'DL',
51458        
51459       'EMBED',  'OBJECT'
51460 ];
51461
51462
51463 Roo.HtmlEditorCore.black = [
51464     //    'embed',  'object', // enable - backend responsiblity to clean thiese
51465         'APPLET', // 
51466         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
51467         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
51468         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
51469         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
51470         //'FONT' // CLEAN LATER..
51471         'COLGROUP', 'COL'   // messy tables.
51472         
51473         
51474 ];
51475 Roo.HtmlEditorCore.clean = [ // ?? needed???
51476      'SCRIPT', 'STYLE', 'TITLE', 'XML'
51477 ];
51478 Roo.HtmlEditorCore.tag_remove = [
51479     'FONT', 'TBODY'  
51480 ];
51481 // attributes..
51482
51483 Roo.HtmlEditorCore.ablack = [
51484     'on'
51485 ];
51486     
51487 Roo.HtmlEditorCore.aclean = [ 
51488     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
51489 ];
51490
51491 // protocols..
51492 Roo.HtmlEditorCore.pwhite= [
51493         'http',  'https',  'mailto'
51494 ];
51495
51496 // white listed style attributes.
51497 Roo.HtmlEditorCore.cwhite= [
51498       //  'text-align', /// default is to allow most things..
51499       
51500          
51501 //        'font-size'//??
51502 ];
51503
51504 // black listed style attributes.
51505 Roo.HtmlEditorCore.cblack= [
51506       //  'font-size' -- this can be set by the project 
51507 ];
51508
51509
51510
51511
51512     //<script type="text/javascript">
51513
51514 /*
51515  * Ext JS Library 1.1.1
51516  * Copyright(c) 2006-2007, Ext JS, LLC.
51517  * Licence LGPL
51518  * 
51519  */
51520  
51521  
51522 Roo.form.HtmlEditor = function(config){
51523     
51524     
51525     
51526     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
51527     
51528     if (!this.toolbars) {
51529         this.toolbars = [];
51530     }
51531     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
51532     
51533     
51534 };
51535
51536 /**
51537  * @class Roo.form.HtmlEditor
51538  * @extends Roo.form.Field
51539  * Provides a lightweight HTML Editor component.
51540  *
51541  * This has been tested on Fireforx / Chrome.. IE may not be so great..
51542  * 
51543  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
51544  * supported by this editor.</b><br/><br/>
51545  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
51546  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
51547  */
51548 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
51549     /**
51550      * @cfg {Boolean} clearUp
51551      */
51552     clearUp : true,
51553       /**
51554      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
51555      */
51556     toolbars : false,
51557    
51558      /**
51559      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
51560      *                        Roo.resizable.
51561      */
51562     resizable : false,
51563      /**
51564      * @cfg {Number} height (in pixels)
51565      */   
51566     height: 300,
51567    /**
51568      * @cfg {Number} width (in pixels)
51569      */   
51570     width: 500,
51571     
51572     /**
51573      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets - this is usally a good idea  rootURL + '/roojs1/css/undoreset.css',   .
51574      * 
51575      */
51576     stylesheets: false,
51577     
51578     
51579      /**
51580      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
51581      * 
51582      */
51583     cblack: false,
51584     /**
51585      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
51586      * 
51587      */
51588     cwhite: false,
51589     
51590      /**
51591      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
51592      * 
51593      */
51594     black: false,
51595     /**
51596      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
51597      * 
51598      */
51599     white: false,
51600     /**
51601      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
51602      */
51603     allowComments: false,
51604     /**
51605      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
51606      */
51607     enableBlocks : true,
51608     
51609     /**
51610      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
51611      *         if you are doing an email editor, this probably needs disabling, it's designed
51612      */
51613     autoClean: true,
51614     /**
51615      * @cfg {string} bodyCls default '' default classes to add to body of editable area - usually undoreset is a good start..
51616      */
51617     bodyCls : '',
51618     /**
51619      * @cfg {String} language default en - language of text (usefull for rtl languages)
51620      * 
51621      */
51622     language: 'en',
51623     
51624      
51625     // id of frame..
51626     frameId: false,
51627     
51628     // private properties
51629     validationEvent : false,
51630     deferHeight: true,
51631     initialized : false,
51632     activated : false,
51633     
51634     onFocus : Roo.emptyFn,
51635     iframePad:3,
51636     hideMode:'offsets',
51637     
51638     actionMode : 'container', // defaults to hiding it...
51639     
51640     defaultAutoCreate : { // modified by initCompnoent..
51641         tag: "textarea",
51642         style:"width:500px;height:300px;",
51643         autocomplete: "new-password"
51644     },
51645
51646     // private
51647     initComponent : function(){
51648         this.addEvents({
51649             /**
51650              * @event initialize
51651              * Fires when the editor is fully initialized (including the iframe)
51652              * @param {HtmlEditor} this
51653              */
51654             initialize: true,
51655             /**
51656              * @event activate
51657              * Fires when the editor is first receives the focus. Any insertion must wait
51658              * until after this event.
51659              * @param {HtmlEditor} this
51660              */
51661             activate: true,
51662              /**
51663              * @event beforesync
51664              * Fires before the textarea is updated with content from the editor iframe. Return false
51665              * to cancel the sync.
51666              * @param {HtmlEditor} this
51667              * @param {String} html
51668              */
51669             beforesync: true,
51670              /**
51671              * @event beforepush
51672              * Fires before the iframe editor is updated with content from the textarea. Return false
51673              * to cancel the push.
51674              * @param {HtmlEditor} this
51675              * @param {String} html
51676              */
51677             beforepush: true,
51678              /**
51679              * @event sync
51680              * Fires when the textarea is updated with content from the editor iframe.
51681              * @param {HtmlEditor} this
51682              * @param {String} html
51683              */
51684             sync: true,
51685              /**
51686              * @event push
51687              * Fires when the iframe editor is updated with content from the textarea.
51688              * @param {HtmlEditor} this
51689              * @param {String} html
51690              */
51691             push: true,
51692              /**
51693              * @event editmodechange
51694              * Fires when the editor switches edit modes
51695              * @param {HtmlEditor} this
51696              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
51697              */
51698             editmodechange: true,
51699             /**
51700              * @event editorevent
51701              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
51702              * @param {HtmlEditor} this
51703              */
51704             editorevent: true,
51705             /**
51706              * @event firstfocus
51707              * Fires when on first focus - needed by toolbars..
51708              * @param {HtmlEditor} this
51709              */
51710             firstfocus: true,
51711             /**
51712              * @event autosave
51713              * Auto save the htmlEditor value as a file into Events
51714              * @param {HtmlEditor} this
51715              */
51716             autosave: true,
51717             /**
51718              * @event savedpreview
51719              * preview the saved version of htmlEditor
51720              * @param {HtmlEditor} this
51721              */
51722             savedpreview: true,
51723             
51724             /**
51725             * @event stylesheetsclick
51726             * Fires when press the Sytlesheets button
51727             * @param {Roo.HtmlEditorCore} this
51728             */
51729             stylesheetsclick: true,
51730             /**
51731             * @event paste
51732             * Fires when press user pastes into the editor
51733             * @param {Roo.HtmlEditorCore} this
51734             */
51735             paste: true 
51736         });
51737         this.defaultAutoCreate =  {
51738             tag: "textarea",
51739             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
51740             autocomplete: "new-password"
51741         };
51742     },
51743
51744     /**
51745      * Protected method that will not generally be called directly. It
51746      * is called when the editor creates its toolbar. Override this method if you need to
51747      * add custom toolbar buttons.
51748      * @param {HtmlEditor} editor
51749      */
51750     createToolbar : function(editor){
51751         Roo.log("create toolbars");
51752         if (!editor.toolbars || !editor.toolbars.length) {
51753             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
51754         }
51755         
51756         for (var i =0 ; i < editor.toolbars.length;i++) {
51757             editor.toolbars[i] = Roo.factory(
51758                     typeof(editor.toolbars[i]) == 'string' ?
51759                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
51760                 Roo.form.HtmlEditor);
51761             editor.toolbars[i].init(editor);
51762         }
51763          
51764         
51765     },
51766     /**
51767      * get the Context selected node
51768      * @returns {DomElement|boolean} selected node if active or false if none
51769      * 
51770      */
51771     getSelectedNode : function()
51772     {
51773         if (this.toolbars.length < 2 || !this.toolbars[1].tb) {
51774             return false;
51775         }
51776         return this.toolbars[1].tb.selectedNode;
51777     
51778     },
51779     // private
51780     onRender : function(ct, position)
51781     {
51782         var _t = this;
51783         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
51784         
51785         this.wrap = this.el.wrap({
51786             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
51787         });
51788         
51789         this.editorcore.onRender(ct, position);
51790          
51791         if (this.resizable) {
51792             this.resizeEl = new Roo.Resizable(this.wrap, {
51793                 pinned : true,
51794                 wrap: true,
51795                 dynamic : true,
51796                 minHeight : this.height,
51797                 height: this.height,
51798                 handles : this.resizable,
51799                 width: this.width,
51800                 listeners : {
51801                     resize : function(r, w, h) {
51802                         _t.onResize(w,h); // -something
51803                     }
51804                 }
51805             });
51806             
51807         }
51808         this.createToolbar(this);
51809        
51810         
51811         if(!this.width){
51812             this.setSize(this.wrap.getSize());
51813         }
51814         if (this.resizeEl) {
51815             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
51816             // should trigger onReize..
51817         }
51818         
51819         this.keyNav = new Roo.KeyNav(this.el, {
51820             
51821             "tab" : function(e){
51822                 e.preventDefault();
51823                 
51824                 var value = this.getValue();
51825                 
51826                 var start = this.el.dom.selectionStart;
51827                 var end = this.el.dom.selectionEnd;
51828                 
51829                 if(!e.shiftKey){
51830                     
51831                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
51832                     this.el.dom.setSelectionRange(end + 1, end + 1);
51833                     return;
51834                 }
51835                 
51836                 var f = value.substring(0, start).split("\t");
51837                 
51838                 if(f.pop().length != 0){
51839                     return;
51840                 }
51841                 
51842                 this.setValue(f.join("\t") + value.substring(end));
51843                 this.el.dom.setSelectionRange(start - 1, start - 1);
51844                 
51845             },
51846             
51847             "home" : function(e){
51848                 e.preventDefault();
51849                 
51850                 var curr = this.el.dom.selectionStart;
51851                 var lines = this.getValue().split("\n");
51852                 
51853                 if(!lines.length){
51854                     return;
51855                 }
51856                 
51857                 if(e.ctrlKey){
51858                     this.el.dom.setSelectionRange(0, 0);
51859                     return;
51860                 }
51861                 
51862                 var pos = 0;
51863                 
51864                 for (var i = 0; i < lines.length;i++) {
51865                     pos += lines[i].length;
51866                     
51867                     if(i != 0){
51868                         pos += 1;
51869                     }
51870                     
51871                     if(pos < curr){
51872                         continue;
51873                     }
51874                     
51875                     pos -= lines[i].length;
51876                     
51877                     break;
51878                 }
51879                 
51880                 if(!e.shiftKey){
51881                     this.el.dom.setSelectionRange(pos, pos);
51882                     return;
51883                 }
51884                 
51885                 this.el.dom.selectionStart = pos;
51886                 this.el.dom.selectionEnd = curr;
51887             },
51888             
51889             "end" : function(e){
51890                 e.preventDefault();
51891                 
51892                 var curr = this.el.dom.selectionStart;
51893                 var lines = this.getValue().split("\n");
51894                 
51895                 if(!lines.length){
51896                     return;
51897                 }
51898                 
51899                 if(e.ctrlKey){
51900                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
51901                     return;
51902                 }
51903                 
51904                 var pos = 0;
51905                 
51906                 for (var i = 0; i < lines.length;i++) {
51907                     
51908                     pos += lines[i].length;
51909                     
51910                     if(i != 0){
51911                         pos += 1;
51912                     }
51913                     
51914                     if(pos < curr){
51915                         continue;
51916                     }
51917                     
51918                     break;
51919                 }
51920                 
51921                 if(!e.shiftKey){
51922                     this.el.dom.setSelectionRange(pos, pos);
51923                     return;
51924                 }
51925                 
51926                 this.el.dom.selectionStart = curr;
51927                 this.el.dom.selectionEnd = pos;
51928             },
51929
51930             scope : this,
51931
51932             doRelay : function(foo, bar, hname){
51933                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
51934             },
51935
51936             forceKeyDown: true
51937         });
51938         
51939 //        if(this.autosave && this.w){
51940 //            this.autoSaveFn = setInterval(this.autosave, 1000);
51941 //        }
51942     },
51943
51944     // private
51945     onResize : function(w, h)
51946     {
51947         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
51948         var ew = false;
51949         var eh = false;
51950         
51951         if(this.el ){
51952             if(typeof w == 'number'){
51953                 var aw = w - this.wrap.getFrameWidth('lr');
51954                 this.el.setWidth(this.adjustWidth('textarea', aw));
51955                 ew = aw;
51956             }
51957             if(typeof h == 'number'){
51958                 var tbh = 0;
51959                 for (var i =0; i < this.toolbars.length;i++) {
51960                     // fixme - ask toolbars for heights?
51961                     tbh += this.toolbars[i].tb.el.getHeight();
51962                     if (this.toolbars[i].footer) {
51963                         tbh += this.toolbars[i].footer.el.getHeight();
51964                     }
51965                 }
51966                 
51967                 
51968                 
51969                 
51970                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
51971                 ah -= 5; // knock a few pixes off for look..
51972 //                Roo.log(ah);
51973                 this.el.setHeight(this.adjustWidth('textarea', ah));
51974                 var eh = ah;
51975             }
51976         }
51977         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
51978         this.editorcore.onResize(ew,eh);
51979         
51980     },
51981
51982     /**
51983      * Toggles the editor between standard and source edit mode.
51984      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
51985      */
51986     toggleSourceEdit : function(sourceEditMode)
51987     {
51988         this.editorcore.toggleSourceEdit(sourceEditMode);
51989         
51990         if(this.editorcore.sourceEditMode){
51991             Roo.log('editor - showing textarea');
51992             
51993 //            Roo.log('in');
51994 //            Roo.log(this.syncValue());
51995             this.editorcore.syncValue();
51996             this.el.removeClass('x-hidden');
51997             this.el.dom.removeAttribute('tabIndex');
51998             this.el.focus();
51999             this.el.dom.scrollTop = 0;
52000             
52001             
52002             for (var i = 0; i < this.toolbars.length; i++) {
52003                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
52004                     this.toolbars[i].tb.hide();
52005                     this.toolbars[i].footer.hide();
52006                 }
52007             }
52008             
52009         }else{
52010             Roo.log('editor - hiding textarea');
52011 //            Roo.log('out')
52012 //            Roo.log(this.pushValue()); 
52013             this.editorcore.pushValue();
52014             
52015             this.el.addClass('x-hidden');
52016             this.el.dom.setAttribute('tabIndex', -1);
52017             
52018             for (var i = 0; i < this.toolbars.length; i++) {
52019                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
52020                     this.toolbars[i].tb.show();
52021                     this.toolbars[i].footer.show();
52022                 }
52023             }
52024             
52025             //this.deferFocus();
52026         }
52027         
52028         this.setSize(this.wrap.getSize());
52029         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
52030         
52031         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
52032     },
52033  
52034     // private (for BoxComponent)
52035     adjustSize : Roo.BoxComponent.prototype.adjustSize,
52036
52037     // private (for BoxComponent)
52038     getResizeEl : function(){
52039         return this.wrap;
52040     },
52041
52042     // private (for BoxComponent)
52043     getPositionEl : function(){
52044         return this.wrap;
52045     },
52046
52047     // private
52048     initEvents : function(){
52049         this.originalValue = this.getValue();
52050     },
52051
52052     /**
52053      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
52054      * @method
52055      */
52056     markInvalid : Roo.emptyFn,
52057     /**
52058      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
52059      * @method
52060      */
52061     clearInvalid : Roo.emptyFn,
52062
52063     setValue : function(v){
52064         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
52065         this.editorcore.pushValue();
52066     },
52067
52068     /**
52069      * update the language in the body - really done by core
52070      * @param {String} language - eg. en / ar / zh-CN etc..
52071      */
52072     updateLanguage : function(lang)
52073     {
52074         this.language = lang;
52075         this.editorcore.language = lang;
52076         this.editorcore.updateLanguage();
52077      
52078     },
52079     // private
52080     deferFocus : function(){
52081         this.focus.defer(10, this);
52082     },
52083
52084     // doc'ed in Field
52085     focus : function(){
52086         this.editorcore.focus();
52087         
52088     },
52089       
52090
52091     // private
52092     onDestroy : function(){
52093         
52094         
52095         
52096         if(this.rendered){
52097             
52098             for (var i =0; i < this.toolbars.length;i++) {
52099                 // fixme - ask toolbars for heights?
52100                 this.toolbars[i].onDestroy();
52101             }
52102             
52103             this.wrap.dom.innerHTML = '';
52104             this.wrap.remove();
52105         }
52106     },
52107
52108     // private
52109     onFirstFocus : function(){
52110         //Roo.log("onFirstFocus");
52111         this.editorcore.onFirstFocus();
52112          for (var i =0; i < this.toolbars.length;i++) {
52113             this.toolbars[i].onFirstFocus();
52114         }
52115         
52116     },
52117     
52118     // private
52119     syncValue : function()
52120     {
52121         this.editorcore.syncValue();
52122     },
52123     
52124     pushValue : function()
52125     {
52126         this.editorcore.pushValue();
52127     },
52128     
52129     setStylesheets : function(stylesheets)
52130     {
52131         this.editorcore.setStylesheets(stylesheets);
52132     },
52133     
52134     removeStylesheets : function()
52135     {
52136         this.editorcore.removeStylesheets();
52137     }
52138      
52139     
52140     // hide stuff that is not compatible
52141     /**
52142      * @event blur
52143      * @hide
52144      */
52145     /**
52146      * @event change
52147      * @hide
52148      */
52149     /**
52150      * @event focus
52151      * @hide
52152      */
52153     /**
52154      * @event specialkey
52155      * @hide
52156      */
52157     /**
52158      * @cfg {String} fieldClass @hide
52159      */
52160     /**
52161      * @cfg {String} focusClass @hide
52162      */
52163     /**
52164      * @cfg {String} autoCreate @hide
52165      */
52166     /**
52167      * @cfg {String} inputType @hide
52168      */
52169     /**
52170      * @cfg {String} invalidClass @hide
52171      */
52172     /**
52173      * @cfg {String} invalidText @hide
52174      */
52175     /**
52176      * @cfg {String} msgFx @hide
52177      */
52178     /**
52179      * @cfg {String} validateOnBlur @hide
52180      */
52181 });
52182  
52183     /*
52184  * Based on
52185  * Ext JS Library 1.1.1
52186  * Copyright(c) 2006-2007, Ext JS, LLC.
52187  *  
52188  
52189  */
52190
52191 /**
52192  * @class Roo.form.HtmlEditor.ToolbarStandard
52193  * Basic Toolbar
52194
52195  * Usage:
52196  *
52197  new Roo.form.HtmlEditor({
52198     ....
52199     toolbars : [
52200         new Roo.form.HtmlEditorToolbar1({
52201             disable : { fonts: 1 , format: 1, ..., ... , ...],
52202             btns : [ .... ]
52203         })
52204     }
52205      
52206  * 
52207  * @cfg {Object} disable List of elements to disable..
52208  * @cfg {Roo.Toolbar.Item|Roo.Toolbar.Button|Roo.Toolbar.SplitButton|Roo.form.Field} btns[] List of additional buttons.
52209  * 
52210  * 
52211  * NEEDS Extra CSS? 
52212  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
52213  */
52214  
52215 Roo.form.HtmlEditor.ToolbarStandard = function(config)
52216 {
52217     
52218     Roo.apply(this, config);
52219     
52220     // default disabled, based on 'good practice'..
52221     this.disable = this.disable || {};
52222     Roo.applyIf(this.disable, {
52223         fontSize : true,
52224         colors : true,
52225         specialElements : true
52226     });
52227     
52228     
52229     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
52230     // dont call parent... till later.
52231 }
52232
52233 Roo.form.HtmlEditor.ToolbarStandard.prototype = {
52234     
52235     tb: false,
52236     
52237     rendered: false,
52238     
52239     editor : false,
52240     editorcore : false,
52241     /**
52242      * @cfg {Object} disable  List of toolbar elements to disable
52243          
52244      */
52245     disable : false,
52246     
52247     
52248      /**
52249      * @cfg {String} createLinkText The default text for the create link prompt
52250      */
52251     createLinkText : 'Please enter the URL for the link:',
52252     /**
52253      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
52254      */
52255     defaultLinkValue : 'http:/'+'/',
52256    
52257     
52258       /**
52259      * @cfg {Array} fontFamilies An array of available font families
52260      */
52261     fontFamilies : [
52262         'Arial',
52263         'Courier New',
52264         'Tahoma',
52265         'Times New Roman',
52266         'Verdana'
52267     ],
52268     
52269     specialChars : [
52270            "&#169;",
52271           "&#174;",     
52272           "&#8482;",    
52273           "&#163;" ,    
52274          // "&#8212;",    
52275           "&#8230;",    
52276           "&#247;" ,    
52277         //  "&#225;" ,     ?? a acute?
52278            "&#8364;"    , //Euro
52279        //   "&#8220;"    ,
52280         //  "&#8221;"    ,
52281         //  "&#8226;"    ,
52282           "&#176;"  //   , // degrees
52283
52284          // "&#233;"     , // e ecute
52285          // "&#250;"     , // u ecute?
52286     ],
52287     
52288     specialElements : [
52289         {
52290             text: "Insert Table",
52291             xtype: 'MenuItem',
52292             xns : Roo.Menu,
52293             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
52294                 
52295         },
52296         {    
52297             text: "Insert Image",
52298             xtype: 'MenuItem',
52299             xns : Roo.Menu,
52300             ihtml : '<img src="about:blank"/>'
52301             
52302         }
52303         
52304          
52305     ],
52306     
52307     
52308     inputElements : [ 
52309             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
52310             "input:submit", "input:button", "select", "textarea", "label" ],
52311     formats : [
52312         ["p"] ,  
52313         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
52314         ["pre"],[ "code"], 
52315         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
52316         ['div'],['span'],
52317         ['sup'],['sub']
52318     ],
52319     
52320     cleanStyles : [
52321         "font-size"
52322     ],
52323      /**
52324      * @cfg {String} defaultFont default font to use.
52325      */
52326     defaultFont: 'tahoma',
52327    
52328     fontSelect : false,
52329     
52330     
52331     formatCombo : false,
52332     
52333     init : function(editor)
52334     {
52335         this.editor = editor;
52336         this.editorcore = editor.editorcore ? editor.editorcore : editor;
52337         var editorcore = this.editorcore;
52338         
52339         var _t = this;
52340         
52341         var fid = editorcore.frameId;
52342         var etb = this;
52343         function btn(id, toggle, handler){
52344             var xid = fid + '-'+ id ;
52345             return {
52346                 id : xid,
52347                 cmd : id,
52348                 cls : 'x-btn-icon x-edit-'+id,
52349                 enableToggle:toggle !== false,
52350                 scope: _t, // was editor...
52351                 handler:handler||_t.relayBtnCmd,
52352                 clickEvent:'mousedown',
52353                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
52354                 tabIndex:-1
52355             };
52356         }
52357         
52358         
52359         
52360         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
52361         this.tb = tb;
52362          // stop form submits
52363         tb.el.on('click', function(e){
52364             e.preventDefault(); // what does this do?
52365         });
52366
52367         if(!this.disable.font) { // && !Roo.isSafari){
52368             /* why no safari for fonts 
52369             editor.fontSelect = tb.el.createChild({
52370                 tag:'select',
52371                 tabIndex: -1,
52372                 cls:'x-font-select',
52373                 html: this.createFontOptions()
52374             });
52375             
52376             editor.fontSelect.on('change', function(){
52377                 var font = editor.fontSelect.dom.value;
52378                 editor.relayCmd('fontname', font);
52379                 editor.deferFocus();
52380             }, editor);
52381             
52382             tb.add(
52383                 editor.fontSelect.dom,
52384                 '-'
52385             );
52386             */
52387             
52388         };
52389         if(!this.disable.formats){
52390             this.formatCombo = new Roo.form.ComboBox({
52391                 store: new Roo.data.SimpleStore({
52392                     id : 'tag',
52393                     fields: ['tag'],
52394                     data : this.formats // from states.js
52395                 }),
52396                 blockFocus : true,
52397                 name : '',
52398                 //autoCreate : {tag: "div",  size: "20"},
52399                 displayField:'tag',
52400                 typeAhead: false,
52401                 mode: 'local',
52402                 editable : false,
52403                 triggerAction: 'all',
52404                 emptyText:'Add tag',
52405                 selectOnFocus:true,
52406                 width:135,
52407                 listeners : {
52408                     'select': function(c, r, i) {
52409                         editorcore.insertTag(r.get('tag'));
52410                         editor.focus();
52411                     }
52412                 }
52413
52414             });
52415             tb.addField(this.formatCombo);
52416             
52417         }
52418         
52419         if(!this.disable.format){
52420             tb.add(
52421                 btn('bold'),
52422                 btn('italic'),
52423                 btn('underline'),
52424                 btn('strikethrough')
52425             );
52426         };
52427         if(!this.disable.fontSize){
52428             tb.add(
52429                 '-',
52430                 
52431                 
52432                 btn('increasefontsize', false, editorcore.adjustFont),
52433                 btn('decreasefontsize', false, editorcore.adjustFont)
52434             );
52435         };
52436         
52437         
52438         if(!this.disable.colors){
52439             tb.add(
52440                 '-', {
52441                     id:editorcore.frameId +'-forecolor',
52442                     cls:'x-btn-icon x-edit-forecolor',
52443                     clickEvent:'mousedown',
52444                     tooltip: this.buttonTips['forecolor'] || undefined,
52445                     tabIndex:-1,
52446                     menu : new Roo.menu.ColorMenu({
52447                         allowReselect: true,
52448                         focus: Roo.emptyFn,
52449                         value:'000000',
52450                         plain:true,
52451                         selectHandler: function(cp, color){
52452                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
52453                             editor.deferFocus();
52454                         },
52455                         scope: editorcore,
52456                         clickEvent:'mousedown'
52457                     })
52458                 }, {
52459                     id:editorcore.frameId +'backcolor',
52460                     cls:'x-btn-icon x-edit-backcolor',
52461                     clickEvent:'mousedown',
52462                     tooltip: this.buttonTips['backcolor'] || undefined,
52463                     tabIndex:-1,
52464                     menu : new Roo.menu.ColorMenu({
52465                         focus: Roo.emptyFn,
52466                         value:'FFFFFF',
52467                         plain:true,
52468                         allowReselect: true,
52469                         selectHandler: function(cp, color){
52470                             if(Roo.isGecko){
52471                                 editorcore.execCmd('useCSS', false);
52472                                 editorcore.execCmd('hilitecolor', color);
52473                                 editorcore.execCmd('useCSS', true);
52474                                 editor.deferFocus();
52475                             }else{
52476                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
52477                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
52478                                 editor.deferFocus();
52479                             }
52480                         },
52481                         scope:editorcore,
52482                         clickEvent:'mousedown'
52483                     })
52484                 }
52485             );
52486         };
52487         // now add all the items...
52488         
52489
52490         if(!this.disable.alignments){
52491             tb.add(
52492                 '-',
52493                 btn('justifyleft'),
52494                 btn('justifycenter'),
52495                 btn('justifyright')
52496             );
52497         };
52498
52499         //if(!Roo.isSafari){
52500             if(!this.disable.links){
52501                 tb.add(
52502                     '-',
52503                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
52504                 );
52505             };
52506
52507             if(!this.disable.lists){
52508                 tb.add(
52509                     '-',
52510                     btn('insertorderedlist'),
52511                     btn('insertunorderedlist')
52512                 );
52513             }
52514             if(!this.disable.sourceEdit){
52515                 tb.add(
52516                     '-',
52517                     btn('sourceedit', true, function(btn){
52518                         this.toggleSourceEdit(btn.pressed);
52519                     })
52520                 );
52521             }
52522         //}
52523         
52524         var smenu = { };
52525         // special menu.. - needs to be tidied up..
52526         if (!this.disable.special) {
52527             smenu = {
52528                 text: "&#169;",
52529                 cls: 'x-edit-none',
52530                 
52531                 menu : {
52532                     items : []
52533                 }
52534             };
52535             for (var i =0; i < this.specialChars.length; i++) {
52536                 smenu.menu.items.push({
52537                     
52538                     html: this.specialChars[i],
52539                     handler: function(a,b) {
52540                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
52541                         //editor.insertAtCursor(a.html);
52542                         
52543                     },
52544                     tabIndex:-1
52545                 });
52546             }
52547             
52548             
52549             tb.add(smenu);
52550             
52551             
52552         }
52553         
52554         var cmenu = { };
52555         if (!this.disable.cleanStyles) {
52556             cmenu = {
52557                 cls: 'x-btn-icon x-btn-clear',
52558                 
52559                 menu : {
52560                     items : []
52561                 }
52562             };
52563             for (var i =0; i < this.cleanStyles.length; i++) {
52564                 cmenu.menu.items.push({
52565                     actiontype : this.cleanStyles[i],
52566                     html: 'Remove ' + this.cleanStyles[i],
52567                     handler: function(a,b) {
52568 //                        Roo.log(a);
52569 //                        Roo.log(b);
52570                         var c = Roo.get(editorcore.doc.body);
52571                         c.select('[style]').each(function(s) {
52572                             s.dom.style.removeProperty(a.actiontype);
52573                         });
52574                         editorcore.syncValue();
52575                     },
52576                     tabIndex:-1
52577                 });
52578             }
52579             cmenu.menu.items.push({
52580                 actiontype : 'tablewidths',
52581                 html: 'Remove Table Widths',
52582                 handler: function(a,b) {
52583                     editorcore.cleanTableWidths();
52584                     editorcore.syncValue();
52585                 },
52586                 tabIndex:-1
52587             });
52588             cmenu.menu.items.push({
52589                 actiontype : 'word',
52590                 html: 'Remove MS Word Formating',
52591                 handler: function(a,b) {
52592                     editorcore.cleanWord();
52593                     editorcore.syncValue();
52594                 },
52595                 tabIndex:-1
52596             });
52597             
52598             cmenu.menu.items.push({
52599                 actiontype : 'all',
52600                 html: 'Remove All Styles',
52601                 handler: function(a,b) {
52602                     
52603                     var c = Roo.get(editorcore.doc.body);
52604                     c.select('[style]').each(function(s) {
52605                         s.dom.removeAttribute('style');
52606                     });
52607                     editorcore.syncValue();
52608                 },
52609                 tabIndex:-1
52610             });
52611             
52612             cmenu.menu.items.push({
52613                 actiontype : 'all',
52614                 html: 'Remove All CSS Classes',
52615                 handler: function(a,b) {
52616                     
52617                     var c = Roo.get(editorcore.doc.body);
52618                     c.select('[class]').each(function(s) {
52619                         s.dom.removeAttribute('class');
52620                     });
52621                     editorcore.cleanWord();
52622                     editorcore.syncValue();
52623                 },
52624                 tabIndex:-1
52625             });
52626             
52627              cmenu.menu.items.push({
52628                 actiontype : 'tidy',
52629                 html: 'Tidy HTML Source',
52630                 handler: function(a,b) {
52631                     new Roo.htmleditor.Tidy(editorcore.doc.body);
52632                     editorcore.syncValue();
52633                 },
52634                 tabIndex:-1
52635             });
52636             
52637             
52638             tb.add(cmenu);
52639         }
52640          
52641         if (!this.disable.specialElements) {
52642             var semenu = {
52643                 text: "Other;",
52644                 cls: 'x-edit-none',
52645                 menu : {
52646                     items : []
52647                 }
52648             };
52649             for (var i =0; i < this.specialElements.length; i++) {
52650                 semenu.menu.items.push(
52651                     Roo.apply({ 
52652                         handler: function(a,b) {
52653                             editor.insertAtCursor(this.ihtml);
52654                         }
52655                     }, this.specialElements[i])
52656                 );
52657                     
52658             }
52659             
52660             tb.add(semenu);
52661             
52662             
52663         }
52664          
52665         
52666         if (this.btns) {
52667             for(var i =0; i< this.btns.length;i++) {
52668                 var b = Roo.factory(this.btns[i],this.btns[i].xns || Roo.form);
52669                 b.cls =  'x-edit-none';
52670                 
52671                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
52672                     b.cls += ' x-init-enable';
52673                 }
52674                 
52675                 b.scope = editorcore;
52676                 tb.add(b);
52677             }
52678         
52679         }
52680         
52681         
52682         
52683         // disable everything...
52684         
52685         this.tb.items.each(function(item){
52686             
52687            if(
52688                 item.id != editorcore.frameId+ '-sourceedit' && 
52689                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
52690             ){
52691                 
52692                 item.disable();
52693             }
52694         });
52695         this.rendered = true;
52696         
52697         // the all the btns;
52698         editor.on('editorevent', this.updateToolbar, this);
52699         // other toolbars need to implement this..
52700         //editor.on('editmodechange', this.updateToolbar, this);
52701     },
52702     
52703     
52704     relayBtnCmd : function(btn) {
52705         this.editorcore.relayCmd(btn.cmd);
52706     },
52707     // private used internally
52708     createLink : function(){
52709         //Roo.log("create link?");
52710         var ec = this.editorcore;
52711         var ar = ec.getAllAncestors();
52712         var n = false;
52713         for(var i = 0;i< ar.length;i++) {
52714             if (ar[i] && ar[i].nodeName == 'A') {
52715                 n = ar[i];
52716                 break;
52717             }
52718         }
52719         
52720         (function() {
52721             
52722             Roo.MessageBox.show({
52723                 title : "Add / Edit Link URL",
52724                 msg : "Enter the url for the link",
52725                 buttons: Roo.MessageBox.OKCANCEL,
52726                 fn: function(btn, url){
52727                     if (btn != 'ok') {
52728                         return;
52729                     }
52730                     if(url && url != 'http:/'+'/'){
52731                         if (n) {
52732                             n.setAttribute('href', url);
52733                         } else {
52734                             ec.relayCmd('createlink', url);
52735                         }
52736                     }
52737                 },
52738                 minWidth:250,
52739                 prompt:true,
52740                 //multiline: multiline,
52741                 modal : true,
52742                 value :  n  ? n.getAttribute('href') : '' 
52743             });
52744             
52745              
52746         }).defer(100, this); // we have to defer this , otherwise the mouse click gives focus to the main window.
52747         
52748     },
52749
52750     
52751     /**
52752      * Protected method that will not generally be called directly. It triggers
52753      * a toolbar update by reading the markup state of the current selection in the editor.
52754      */
52755     updateToolbar: function(){
52756
52757         if(!this.editorcore.activated){
52758             this.editor.onFirstFocus();
52759             return;
52760         }
52761
52762         var btns = this.tb.items.map, 
52763             doc = this.editorcore.doc,
52764             frameId = this.editorcore.frameId;
52765
52766         if(!this.disable.font && !Roo.isSafari){
52767             /*
52768             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
52769             if(name != this.fontSelect.dom.value){
52770                 this.fontSelect.dom.value = name;
52771             }
52772             */
52773         }
52774         if(!this.disable.format){
52775             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
52776             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
52777             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
52778             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
52779         }
52780         if(!this.disable.alignments){
52781             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
52782             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
52783             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
52784         }
52785         if(!Roo.isSafari && !this.disable.lists){
52786             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
52787             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
52788         }
52789         
52790         var ans = this.editorcore.getAllAncestors();
52791         if (this.formatCombo) {
52792             
52793             
52794             var store = this.formatCombo.store;
52795             this.formatCombo.setValue("");
52796             for (var i =0; i < ans.length;i++) {
52797                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
52798                     // select it..
52799                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
52800                     break;
52801                 }
52802             }
52803         }
52804         
52805         
52806         
52807         // hides menus... - so this cant be on a menu...
52808         Roo.menu.MenuMgr.hideAll();
52809
52810         //this.editorsyncValue();
52811     },
52812    
52813     
52814     createFontOptions : function(){
52815         var buf = [], fs = this.fontFamilies, ff, lc;
52816         
52817         
52818         
52819         for(var i = 0, len = fs.length; i< len; i++){
52820             ff = fs[i];
52821             lc = ff.toLowerCase();
52822             buf.push(
52823                 '<option value="',lc,'" style="font-family:',ff,';"',
52824                     (this.defaultFont == lc ? ' selected="true">' : '>'),
52825                     ff,
52826                 '</option>'
52827             );
52828         }
52829         return buf.join('');
52830     },
52831     
52832     toggleSourceEdit : function(sourceEditMode){
52833         
52834         Roo.log("toolbar toogle");
52835         if(sourceEditMode === undefined){
52836             sourceEditMode = !this.sourceEditMode;
52837         }
52838         this.sourceEditMode = sourceEditMode === true;
52839         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
52840         // just toggle the button?
52841         if(btn.pressed !== this.sourceEditMode){
52842             btn.toggle(this.sourceEditMode);
52843             return;
52844         }
52845         
52846         if(sourceEditMode){
52847             Roo.log("disabling buttons");
52848             this.tb.items.each(function(item){
52849                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
52850                     item.disable();
52851                 }
52852             });
52853           
52854         }else{
52855             Roo.log("enabling buttons");
52856             if(this.editorcore.initialized){
52857                 this.tb.items.each(function(item){
52858                     item.enable();
52859                 });
52860                 // initialize 'blocks'
52861                 Roo.each(Roo.get(this.editorcore.doc.body).query('*[data-block]'), function(e) {
52862                     Roo.htmleditor.Block.factory(e).updateElement(e);
52863                 },this);
52864             
52865             }
52866             
52867         }
52868         Roo.log("calling toggole on editor");
52869         // tell the editor that it's been pressed..
52870         this.editor.toggleSourceEdit(sourceEditMode);
52871        
52872     },
52873      /**
52874      * Object collection of toolbar tooltips for the buttons in the editor. The key
52875      * is the command id associated with that button and the value is a valid QuickTips object.
52876      * For example:
52877 <pre><code>
52878 {
52879     bold : {
52880         title: 'Bold (Ctrl+B)',
52881         text: 'Make the selected text bold.',
52882         cls: 'x-html-editor-tip'
52883     },
52884     italic : {
52885         title: 'Italic (Ctrl+I)',
52886         text: 'Make the selected text italic.',
52887         cls: 'x-html-editor-tip'
52888     },
52889     ...
52890 </code></pre>
52891     * @type Object
52892      */
52893     buttonTips : {
52894         bold : {
52895             title: 'Bold (Ctrl+B)',
52896             text: 'Make the selected text bold.',
52897             cls: 'x-html-editor-tip'
52898         },
52899         italic : {
52900             title: 'Italic (Ctrl+I)',
52901             text: 'Make the selected text italic.',
52902             cls: 'x-html-editor-tip'
52903         },
52904         underline : {
52905             title: 'Underline (Ctrl+U)',
52906             text: 'Underline the selected text.',
52907             cls: 'x-html-editor-tip'
52908         },
52909         strikethrough : {
52910             title: 'Strikethrough',
52911             text: 'Strikethrough the selected text.',
52912             cls: 'x-html-editor-tip'
52913         },
52914         increasefontsize : {
52915             title: 'Grow Text',
52916             text: 'Increase the font size.',
52917             cls: 'x-html-editor-tip'
52918         },
52919         decreasefontsize : {
52920             title: 'Shrink Text',
52921             text: 'Decrease the font size.',
52922             cls: 'x-html-editor-tip'
52923         },
52924         backcolor : {
52925             title: 'Text Highlight Color',
52926             text: 'Change the background color of the selected text.',
52927             cls: 'x-html-editor-tip'
52928         },
52929         forecolor : {
52930             title: 'Font Color',
52931             text: 'Change the color of the selected text.',
52932             cls: 'x-html-editor-tip'
52933         },
52934         justifyleft : {
52935             title: 'Align Text Left',
52936             text: 'Align text to the left.',
52937             cls: 'x-html-editor-tip'
52938         },
52939         justifycenter : {
52940             title: 'Center Text',
52941             text: 'Center text in the editor.',
52942             cls: 'x-html-editor-tip'
52943         },
52944         justifyright : {
52945             title: 'Align Text Right',
52946             text: 'Align text to the right.',
52947             cls: 'x-html-editor-tip'
52948         },
52949         insertunorderedlist : {
52950             title: 'Bullet List',
52951             text: 'Start a bulleted list.',
52952             cls: 'x-html-editor-tip'
52953         },
52954         insertorderedlist : {
52955             title: 'Numbered List',
52956             text: 'Start a numbered list.',
52957             cls: 'x-html-editor-tip'
52958         },
52959         createlink : {
52960             title: 'Hyperlink',
52961             text: 'Make the selected text a hyperlink.',
52962             cls: 'x-html-editor-tip'
52963         },
52964         sourceedit : {
52965             title: 'Source Edit',
52966             text: 'Switch to source editing mode.',
52967             cls: 'x-html-editor-tip'
52968         }
52969     },
52970     // private
52971     onDestroy : function(){
52972         if(this.rendered){
52973             
52974             this.tb.items.each(function(item){
52975                 if(item.menu){
52976                     item.menu.removeAll();
52977                     if(item.menu.el){
52978                         item.menu.el.destroy();
52979                     }
52980                 }
52981                 item.destroy();
52982             });
52983              
52984         }
52985     },
52986     onFirstFocus: function() {
52987         this.tb.items.each(function(item){
52988            item.enable();
52989         });
52990     }
52991 };
52992
52993
52994
52995
52996 // <script type="text/javascript">
52997 /*
52998  * Based on
52999  * Ext JS Library 1.1.1
53000  * Copyright(c) 2006-2007, Ext JS, LLC.
53001  *  
53002  
53003  */
53004
53005  
53006 /**
53007  * @class Roo.form.HtmlEditor.ToolbarContext
53008  * Context Toolbar
53009  * 
53010  * Usage:
53011  *
53012  new Roo.form.HtmlEditor({
53013     ....
53014     toolbars : [
53015         { xtype: 'ToolbarStandard', styles : {} }
53016         { xtype: 'ToolbarContext', disable : {} }
53017     ]
53018 })
53019
53020      
53021  * 
53022  * @config : {Object} disable List of elements to disable.. (not done yet.)
53023  * @config : {Object} styles  Map of styles available.
53024  * 
53025  */
53026
53027 Roo.form.HtmlEditor.ToolbarContext = function(config)
53028 {
53029     
53030     Roo.apply(this, config);
53031     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
53032     // dont call parent... till later.
53033     this.styles = this.styles || {};
53034 }
53035
53036  
53037
53038 Roo.form.HtmlEditor.ToolbarContext.types = {
53039     'IMG' : [
53040         {
53041             name : 'width',
53042             title: "Width",
53043             width: 40
53044         },
53045         {
53046             name : 'height',
53047             title: "Height",
53048             width: 40
53049         },
53050         {
53051             name : 'align',
53052             title: "Align",
53053             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
53054             width : 80
53055             
53056         },
53057         {
53058             name : 'border',
53059             title: "Border",
53060             width: 40
53061         },
53062         {
53063             name : 'alt',
53064             title: "Alt",
53065             width: 120
53066         },
53067         {
53068             name : 'src',
53069             title: "Src",
53070             width: 220
53071         }
53072         
53073     ],
53074     
53075     'FIGURE' : [
53076         {
53077             name : 'align',
53078             title: "Align",
53079             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
53080             width : 80  
53081         }
53082     ],
53083     'A' : [
53084         {
53085             name : 'name',
53086             title: "Name",
53087             width: 50
53088         },
53089         {
53090             name : 'target',
53091             title: "Target",
53092             width: 120
53093         },
53094         {
53095             name : 'href',
53096             title: "Href",
53097             width: 220
53098         } // border?
53099         
53100     ],
53101     
53102     'INPUT' : [
53103         {
53104             name : 'name',
53105             title: "name",
53106             width: 120
53107         },
53108         {
53109             name : 'value',
53110             title: "Value",
53111             width: 120
53112         },
53113         {
53114             name : 'width',
53115             title: "Width",
53116             width: 40
53117         }
53118     ],
53119     'LABEL' : [
53120          {
53121             name : 'for',
53122             title: "For",
53123             width: 120
53124         }
53125     ],
53126     'TEXTAREA' : [
53127         {
53128             name : 'name',
53129             title: "name",
53130             width: 120
53131         },
53132         {
53133             name : 'rows',
53134             title: "Rows",
53135             width: 20
53136         },
53137         {
53138             name : 'cols',
53139             title: "Cols",
53140             width: 20
53141         }
53142     ],
53143     'SELECT' : [
53144         {
53145             name : 'name',
53146             title: "name",
53147             width: 120
53148         },
53149         {
53150             name : 'selectoptions',
53151             title: "Options",
53152             width: 200
53153         }
53154     ],
53155     
53156     // should we really allow this??
53157     // should this just be 
53158     'BODY' : [
53159         
53160         {
53161             name : 'title',
53162             title: "Title",
53163             width: 200,
53164             disabled : true
53165         }
53166     ],
53167  
53168     '*' : [
53169         // empty.
53170     ]
53171
53172 };
53173
53174 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
53175 Roo.form.HtmlEditor.ToolbarContext.stores = false;
53176
53177 Roo.form.HtmlEditor.ToolbarContext.options = {
53178         'font-family'  : [ 
53179                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
53180                 [ 'Courier New', 'Courier New'],
53181                 [ 'Tahoma', 'Tahoma'],
53182                 [ 'Times New Roman,serif', 'Times'],
53183                 [ 'Verdana','Verdana' ]
53184         ]
53185 };
53186
53187 // fixme - these need to be configurable..
53188  
53189
53190 //Roo.form.HtmlEditor.ToolbarContext.types
53191
53192
53193 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
53194     
53195     tb: false,
53196     
53197     rendered: false,
53198     
53199     editor : false,
53200     editorcore : false,
53201     /**
53202      * @cfg {Object} disable  List of toolbar elements to disable
53203          
53204      */
53205     disable : false,
53206     /**
53207      * @cfg {Object} styles List of styles 
53208      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
53209      *
53210      * These must be defined in the page, so they get rendered correctly..
53211      * .headline { }
53212      * TD.underline { }
53213      * 
53214      */
53215     styles : false,
53216     
53217     options: false,
53218     
53219     toolbars : false,
53220     
53221     init : function(editor)
53222     {
53223         this.editor = editor;
53224         this.editorcore = editor.editorcore ? editor.editorcore : editor;
53225         var editorcore = this.editorcore;
53226         
53227         var fid = editorcore.frameId;
53228         var etb = this;
53229         function btn(id, toggle, handler){
53230             var xid = fid + '-'+ id ;
53231             return {
53232                 id : xid,
53233                 cmd : id,
53234                 cls : 'x-btn-icon x-edit-'+id,
53235                 enableToggle:toggle !== false,
53236                 scope: editorcore, // was editor...
53237                 handler:handler||editorcore.relayBtnCmd,
53238                 clickEvent:'mousedown',
53239                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
53240                 tabIndex:-1
53241             };
53242         }
53243         // create a new element.
53244         var wdiv = editor.wrap.createChild({
53245                 tag: 'div'
53246             }, editor.wrap.dom.firstChild.nextSibling, true);
53247         
53248         // can we do this more than once??
53249         
53250          // stop form submits
53251       
53252  
53253         // disable everything...
53254         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
53255         this.toolbars = {};
53256         // block toolbars are built in updateToolbar when needed.
53257         for (var i in  ty) {
53258             
53259             this.toolbars[i] = this.buildToolbar(ty[i],i);
53260         }
53261         this.tb = this.toolbars.BODY;
53262         this.tb.el.show();
53263         this.buildFooter();
53264         this.footer.show();
53265         editor.on('hide', function( ) { this.footer.hide() }, this);
53266         editor.on('show', function( ) { this.footer.show() }, this);
53267         
53268          
53269         this.rendered = true;
53270         
53271         // the all the btns;
53272         editor.on('editorevent', this.updateToolbar, this);
53273         // other toolbars need to implement this..
53274         //editor.on('editmodechange', this.updateToolbar, this);
53275     },
53276     
53277     
53278     
53279     /**
53280      * Protected method that will not generally be called directly. It triggers
53281      * a toolbar update by reading the markup state of the current selection in the editor.
53282      *
53283      * Note you can force an update by calling on('editorevent', scope, false)
53284      */
53285     updateToolbar: function(editor ,ev, sel)
53286     {
53287         
53288         if (ev) {
53289             ev.stopEvent(); // se if we can stop this looping with mutiple events.
53290         }
53291         
53292         //Roo.log(ev);
53293         // capture mouse up - this is handy for selecting images..
53294         // perhaps should go somewhere else...
53295         if(!this.editorcore.activated){
53296              this.editor.onFirstFocus();
53297             return;
53298         }
53299         //Roo.log(ev ? ev.target : 'NOTARGET');
53300         
53301         
53302         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
53303         // selectNode - might want to handle IE?
53304         
53305         
53306         
53307         if (ev &&
53308             (ev.type == 'mouseup' || ev.type == 'click' ) &&
53309             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
53310             // they have click on an image...
53311             // let's see if we can change the selection...
53312             sel = ev.target;
53313             
53314             // this triggers looping?
53315             //this.editorcore.selectNode(sel);
53316              
53317         }
53318         
53319         // this forces an id..
53320         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
53321              e.classList.remove('roo-ed-selection');
53322         });
53323         //Roo.select('.roo-ed-selection', false, this.editorcore.doc).removeClass('roo-ed-selection');
53324         //Roo.get(node).addClass('roo-ed-selection');
53325       
53326         //var updateFooter = sel ? false : true; 
53327         
53328         
53329         var ans = this.editorcore.getAllAncestors();
53330         
53331         // pick
53332         var ty = Roo.form.HtmlEditor.ToolbarContext.types;
53333         
53334         if (!sel) { 
53335             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
53336             sel = sel ? sel : this.editorcore.doc.body;
53337             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
53338             
53339         }
53340         
53341         var tn = sel.tagName.toUpperCase();
53342         var lastSel = this.tb.selectedNode;
53343         this.tb.selectedNode = sel;
53344         var left_label = tn;
53345         
53346         // ok see if we are editing a block?
53347         
53348         var db = false;
53349         // you are not actually selecting the block.
53350         if (sel && sel.hasAttribute('data-block')) {
53351             db = sel;
53352         } else if (sel && sel.closest('[data-block]')) {
53353             
53354             db = sel.closest('[data-block]');
53355             //var cepar = sel.closest('[contenteditable=true]');
53356             //if (db && cepar && cepar.tagName != 'BODY') {
53357             //   db = false; // we are inside an editable block.. = not sure how we are going to handle nested blocks!?
53358             //}   
53359         }
53360         
53361         
53362         var block = false;
53363         //if (db && !sel.hasAttribute('contenteditable') && sel.getAttribute('contenteditable') != 'true' ) {
53364         if (db && this.editorcore.enableBlocks) {
53365             block = Roo.htmleditor.Block.factory(db);
53366             
53367             
53368             if (block) {
53369                  db.className = (
53370                         db.classList.length > 0  ? db.className + ' ' : ''
53371                     )  + 'roo-ed-selection';
53372                  
53373                  // since we removed it earlier... its not there..
53374                 tn = 'BLOCK.' + db.getAttribute('data-block');
53375                 
53376                 //this.editorcore.selectNode(db);
53377                 if (typeof(this.toolbars[tn]) == 'undefined') {
53378                    this.toolbars[tn] = this.buildToolbar( false  ,tn ,block.friendly_name, block);
53379                 }
53380                 this.toolbars[tn].selectedNode = db;
53381                 left_label = block.friendly_name;
53382                 ans = this.editorcore.getAllAncestors();
53383             }
53384             
53385                 
53386             
53387         }
53388         
53389         
53390         if (this.tb.name == tn && lastSel == this.tb.selectedNode && ev !== false) {
53391             return; // no change?
53392         }
53393         
53394         
53395           
53396         this.tb.el.hide();
53397         ///console.log("show: " + tn);
53398         this.tb =  typeof(this.toolbars[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
53399         
53400         this.tb.el.show();
53401         // update name
53402         this.tb.items.first().el.innerHTML = left_label + ':&nbsp;';
53403         
53404         
53405         // update attributes
53406         if (block && this.tb.fields) {
53407              
53408             this.tb.fields.each(function(e) {
53409                 e.setValue(block[e.name]);
53410             });
53411             
53412             
53413         } else  if (this.tb.fields && this.tb.selectedNode) {
53414             this.tb.fields.each( function(e) {
53415                 if (e.stylename) {
53416                     e.setValue(this.tb.selectedNode.style[e.stylename]);
53417                     return;
53418                 } 
53419                 e.setValue(this.tb.selectedNode.getAttribute(e.attrname));
53420             }, this);
53421             this.updateToolbarStyles(this.tb.selectedNode);  
53422         }
53423         
53424         
53425        
53426         Roo.menu.MenuMgr.hideAll();
53427
53428         
53429         
53430     
53431         // update the footer
53432         //
53433         this.updateFooter(ans);
53434              
53435     },
53436     
53437     updateToolbarStyles : function(sel)
53438     {
53439         var hasStyles = false;
53440         for(var i in this.styles) {
53441             hasStyles = true;
53442             break;
53443         }
53444         
53445         // update styles
53446         if (hasStyles && this.tb.hasStyles) { 
53447             var st = this.tb.fields.item(0);
53448             
53449             st.store.removeAll();
53450             var cn = sel.className.split(/\s+/);
53451             
53452             var avs = [];
53453             if (this.styles['*']) {
53454                 
53455                 Roo.each(this.styles['*'], function(v) {
53456                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53457                 });
53458             }
53459             if (this.styles[tn]) { 
53460                 Roo.each(this.styles[tn], function(v) {
53461                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53462                 });
53463             }
53464             
53465             st.store.loadData(avs);
53466             st.collapse();
53467             st.setValue(cn);
53468         }
53469     },
53470     
53471      
53472     updateFooter : function(ans)
53473     {
53474         var html = '';
53475         if (ans === false) {
53476             this.footDisp.dom.innerHTML = '';
53477             return;
53478         }
53479         
53480         this.footerEls = ans.reverse();
53481         Roo.each(this.footerEls, function(a,i) {
53482             if (!a) { return; }
53483             html += html.length ? ' &gt; '  :  '';
53484             
53485             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
53486             
53487         });
53488        
53489         // 
53490         var sz = this.footDisp.up('td').getSize();
53491         this.footDisp.dom.style.width = (sz.width -10) + 'px';
53492         this.footDisp.dom.style.marginLeft = '5px';
53493         
53494         this.footDisp.dom.style.overflow = 'hidden';
53495         
53496         this.footDisp.dom.innerHTML = html;
53497             
53498         
53499     },
53500    
53501        
53502     // private
53503     onDestroy : function(){
53504         if(this.rendered){
53505             
53506             this.tb.items.each(function(item){
53507                 if(item.menu){
53508                     item.menu.removeAll();
53509                     if(item.menu.el){
53510                         item.menu.el.destroy();
53511                     }
53512                 }
53513                 item.destroy();
53514             });
53515              
53516         }
53517     },
53518     onFirstFocus: function() {
53519         // need to do this for all the toolbars..
53520         this.tb.items.each(function(item){
53521            item.enable();
53522         });
53523     },
53524     buildToolbar: function(tlist, nm, friendly_name, block)
53525     {
53526         var editor = this.editor;
53527         var editorcore = this.editorcore;
53528          // create a new element.
53529         var wdiv = editor.wrap.createChild({
53530                 tag: 'div'
53531             }, editor.wrap.dom.firstChild.nextSibling, true);
53532         
53533        
53534         var tb = new Roo.Toolbar(wdiv);
53535         ///this.tb = tb; // << this sets the active toolbar..
53536         if (tlist === false && block) {
53537             tlist = block.contextMenu(this);
53538         }
53539         
53540         tb.hasStyles = false;
53541         tb.name = nm;
53542         
53543         tb.add((typeof(friendly_name) == 'undefined' ? nm : friendly_name) + ":&nbsp;");
53544         
53545         var styles = Array.from(this.styles);
53546         
53547         
53548         // styles...
53549         if (styles && styles.length) {
53550             tb.hasStyles = true;
53551             // this needs a multi-select checkbox...
53552             tb.addField( new Roo.form.ComboBox({
53553                 store: new Roo.data.SimpleStore({
53554                     id : 'val',
53555                     fields: ['val', 'selected'],
53556                     data : [] 
53557                 }),
53558                 name : '-roo-edit-className',
53559                 attrname : 'className',
53560                 displayField: 'val',
53561                 typeAhead: false,
53562                 mode: 'local',
53563                 editable : false,
53564                 triggerAction: 'all',
53565                 emptyText:'Select Style',
53566                 selectOnFocus:true,
53567                 width: 130,
53568                 listeners : {
53569                     'select': function(c, r, i) {
53570                         // initial support only for on class per el..
53571                         tb.selectedNode.className =  r ? r.get('val') : '';
53572                         editorcore.syncValue();
53573                     }
53574                 }
53575     
53576             }));
53577         }
53578         
53579         var tbc = Roo.form.HtmlEditor.ToolbarContext;
53580         
53581         
53582         for (var i = 0; i < tlist.length; i++) {
53583             
53584             // newer versions will use xtype cfg to create menus.
53585             if (typeof(tlist[i].xtype) != 'undefined') {
53586                 
53587                 tb[typeof(tlist[i].name)== 'undefined' ? 'add' : 'addField'](Roo.factory(tlist[i]));
53588                 
53589                 
53590                 continue;
53591             }
53592             
53593             var item = tlist[i];
53594             tb.add(item.title + ":&nbsp;");
53595             
53596             
53597             //optname == used so you can configure the options available..
53598             var opts = item.opts ? item.opts : false;
53599             if (item.optname) { // use the b
53600                 opts = Roo.form.HtmlEditor.ToolbarContext.options[item.optname];
53601            
53602             }
53603             
53604             if (opts) {
53605                 // opts == pulldown..
53606                 tb.addField( new Roo.form.ComboBox({
53607                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
53608                         id : 'val',
53609                         fields: ['val', 'display'],
53610                         data : opts  
53611                     }),
53612                     name : '-roo-edit-' + tlist[i].name,
53613                     
53614                     attrname : tlist[i].name,
53615                     stylename : item.style ? item.style : false,
53616                     
53617                     displayField: item.displayField ? item.displayField : 'val',
53618                     valueField :  'val',
53619                     typeAhead: false,
53620                     mode: typeof(tbc.stores[tlist[i].name]) != 'undefined'  ? 'remote' : 'local',
53621                     editable : false,
53622                     triggerAction: 'all',
53623                     emptyText:'Select',
53624                     selectOnFocus:true,
53625                     width: item.width ? item.width  : 130,
53626                     listeners : {
53627                         'select': function(c, r, i) {
53628                              
53629                             
53630                             if (c.stylename) {
53631                                 tb.selectedNode.style[c.stylename] =  r.get('val');
53632                                 editorcore.syncValue();
53633                                 return;
53634                             }
53635                             if (r === false) {
53636                                 tb.selectedNode.removeAttribute(c.attrname);
53637                                 editorcore.syncValue();
53638                                 return;
53639                             }
53640                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
53641                             editorcore.syncValue();
53642                         }
53643                     }
53644
53645                 }));
53646                 continue;
53647                     
53648                  
53649                 /*
53650                 tb.addField( new Roo.form.TextField({
53651                     name: i,
53652                     width: 100,
53653                     //allowBlank:false,
53654                     value: ''
53655                 }));
53656                 continue;
53657                 */
53658             }
53659             tb.addField( new Roo.form.TextField({
53660                 name: '-roo-edit-' + tlist[i].name,
53661                 attrname : tlist[i].name,
53662                 
53663                 width: item.width,
53664                 //allowBlank:true,
53665                 value: '',
53666                 listeners: {
53667                     'change' : function(f, nv, ov) {
53668                         
53669                          
53670                         tb.selectedNode.setAttribute(f.attrname, nv);
53671                         editorcore.syncValue();
53672                     }
53673                 }
53674             }));
53675              
53676         }
53677         
53678         var _this = this;
53679         var show_delete = !block || block.deleteTitle !== false;
53680         if(nm == 'BODY'){
53681             show_delete = false;
53682             tb.addSeparator();
53683         
53684             tb.addButton( {
53685                 text: 'Stylesheets',
53686
53687                 listeners : {
53688                     click : function ()
53689                     {
53690                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
53691                     }
53692                 }
53693             });
53694         }
53695         
53696         tb.addFill();
53697         if (show_delete) {
53698             tb.addButton({
53699                 text: block && block.deleteTitle ? block.deleteTitle  : 'Remove Block or Formating', // remove the tag, and puts the children outside...
53700         
53701                 listeners : {
53702                     click : function ()
53703                     {
53704                         var sn = tb.selectedNode;
53705                         if (block) {
53706                             sn = Roo.htmleditor.Block.factory(tb.selectedNode).removeNode();
53707                             
53708                         }
53709                         if (!sn) {
53710                             return;
53711                         }
53712                         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
53713                         if (sn.hasAttribute('data-block')) {
53714                             stn =  sn.nextSibling || sn.previousSibling || sn.parentNode;
53715                             sn.parentNode.removeChild(sn);
53716                             
53717                         } else if (sn && sn.tagName != 'BODY') {
53718                             // remove and keep parents.
53719                             a = new Roo.htmleditor.FilterKeepChildren({tag : false});
53720                             a.replaceTag(sn);
53721                         }
53722                         
53723                         
53724                         var range = editorcore.createRange();
53725             
53726                         range.setStart(stn,0);
53727                         range.setEnd(stn,0); 
53728                         var selection = editorcore.getSelection();
53729                         selection.removeAllRanges();
53730                         selection.addRange(range);
53731                         
53732                         
53733                         //_this.updateToolbar(null, null, pn);
53734                         _this.updateToolbar(null, null, null);
53735                         _this.updateFooter(false);
53736                         
53737                     }
53738                 }
53739                 
53740                         
53741                     
53742                 
53743             });
53744         }    
53745         
53746         tb.el.on('click', function(e){
53747             e.preventDefault(); // what does this do?
53748         });
53749         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
53750         tb.el.hide();
53751         
53752         // dont need to disable them... as they will get hidden
53753         return tb;
53754          
53755         
53756     },
53757     buildFooter : function()
53758     {
53759         
53760         var fel = this.editor.wrap.createChild();
53761         this.footer = new Roo.Toolbar(fel);
53762         // toolbar has scrolly on left / right?
53763         var footDisp= new Roo.Toolbar.Fill();
53764         var _t = this;
53765         this.footer.add(
53766             {
53767                 text : '&lt;',
53768                 xtype: 'Button',
53769                 handler : function() {
53770                     _t.footDisp.scrollTo('left',0,true)
53771                 }
53772             }
53773         );
53774         this.footer.add( footDisp );
53775         this.footer.add( 
53776             {
53777                 text : '&gt;',
53778                 xtype: 'Button',
53779                 handler : function() {
53780                     // no animation..
53781                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
53782                 }
53783             }
53784         );
53785         var fel = Roo.get(footDisp.el);
53786         fel.addClass('x-editor-context');
53787         this.footDispWrap = fel; 
53788         this.footDispWrap.overflow  = 'hidden';
53789         
53790         this.footDisp = fel.createChild();
53791         this.footDispWrap.on('click', this.onContextClick, this)
53792         
53793         
53794     },
53795     // when the footer contect changes
53796     onContextClick : function (ev,dom)
53797     {
53798         ev.preventDefault();
53799         var  cn = dom.className;
53800         //Roo.log(cn);
53801         if (!cn.match(/x-ed-loc-/)) {
53802             return;
53803         }
53804         var n = cn.split('-').pop();
53805         var ans = this.footerEls;
53806         var sel = ans[n];
53807         
53808         this.editorcore.selectNode(sel);
53809         
53810         
53811         this.updateToolbar(null, null, sel);
53812         
53813         
53814     }
53815     
53816     
53817     
53818     
53819     
53820 });
53821
53822
53823
53824
53825
53826 /*
53827  * Based on:
53828  * Ext JS Library 1.1.1
53829  * Copyright(c) 2006-2007, Ext JS, LLC.
53830  *
53831  * Originally Released Under LGPL - original licence link has changed is not relivant.
53832  *
53833  * Fork - LGPL
53834  * <script type="text/javascript">
53835  */
53836  
53837 /**
53838  * @class Roo.form.BasicForm
53839  * @extends Roo.util.Observable
53840  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
53841  * @constructor
53842  * @param {String/HTMLElement/Roo.Element} el The form element or its id
53843  * @param {Object} config Configuration options
53844  */
53845 Roo.form.BasicForm = function(el, config){
53846     this.allItems = [];
53847     this.childForms = [];
53848     Roo.apply(this, config);
53849     /*
53850      * The Roo.form.Field items in this form.
53851      * @type MixedCollection
53852      */
53853      
53854      
53855     this.items = new Roo.util.MixedCollection(false, function(o){
53856         return o.id || (o.id = Roo.id());
53857     });
53858     this.addEvents({
53859         /**
53860          * @event beforeaction
53861          * Fires before any action is performed. Return false to cancel the action.
53862          * @param {Form} this
53863          * @param {Action} action The action to be performed
53864          */
53865         beforeaction: true,
53866         /**
53867          * @event actionfailed
53868          * Fires when an action fails.
53869          * @param {Form} this
53870          * @param {Action} action The action that failed
53871          */
53872         actionfailed : true,
53873         /**
53874          * @event actioncomplete
53875          * Fires when an action is completed.
53876          * @param {Form} this
53877          * @param {Action} action The action that completed
53878          */
53879         actioncomplete : true
53880     });
53881     if(el){
53882         this.initEl(el);
53883     }
53884     Roo.form.BasicForm.superclass.constructor.call(this);
53885     
53886     Roo.form.BasicForm.popover.apply();
53887 };
53888
53889 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
53890     /**
53891      * @cfg {String} method
53892      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
53893      */
53894     /**
53895      * @cfg {DataReader} reader
53896      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
53897      * This is optional as there is built-in support for processing JSON.
53898      */
53899     /**
53900      * @cfg {DataReader} errorReader
53901      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
53902      * This is completely optional as there is built-in support for processing JSON.
53903      */
53904     /**
53905      * @cfg {String} url
53906      * The URL to use for form actions if one isn't supplied in the action options.
53907      */
53908     /**
53909      * @cfg {Boolean} fileUpload
53910      * Set to true if this form is a file upload.
53911      */
53912      
53913     /**
53914      * @cfg {Object} baseParams
53915      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
53916      */
53917      /**
53918      
53919     /**
53920      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
53921      */
53922     timeout: 30,
53923
53924     // private
53925     activeAction : null,
53926
53927     /**
53928      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
53929      * or setValues() data instead of when the form was first created.
53930      */
53931     trackResetOnLoad : false,
53932     
53933     
53934     /**
53935      * childForms - used for multi-tab forms
53936      * @type {Array}
53937      */
53938     childForms : false,
53939     
53940     /**
53941      * allItems - full list of fields.
53942      * @type {Array}
53943      */
53944     allItems : false,
53945     
53946     /**
53947      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
53948      * element by passing it or its id or mask the form itself by passing in true.
53949      * @type Mixed
53950      */
53951     waitMsgTarget : false,
53952     
53953     /**
53954      * @type Boolean
53955      */
53956     disableMask : false,
53957     
53958     /**
53959      * @cfg {Boolean} errorMask (true|false) default false
53960      */
53961     errorMask : false,
53962     
53963     /**
53964      * @cfg {Number} maskOffset Default 100
53965      */
53966     maskOffset : 100,
53967
53968     // private
53969     initEl : function(el){
53970         this.el = Roo.get(el);
53971         this.id = this.el.id || Roo.id();
53972         this.el.on('submit', this.onSubmit, this);
53973         this.el.addClass('x-form');
53974     },
53975
53976     // private
53977     onSubmit : function(e){
53978         e.stopEvent();
53979     },
53980
53981     /**
53982      * Returns true if client-side validation on the form is successful.
53983      * @return Boolean
53984      */
53985     isValid : function(){
53986         var valid = true;
53987         var target = false;
53988         this.items.each(function(f){
53989             if(f.validate()){
53990                 return;
53991             }
53992             
53993             valid = false;
53994                 
53995             if(!target && f.el.isVisible(true)){
53996                 target = f;
53997             }
53998         });
53999         
54000         if(this.errorMask && !valid){
54001             Roo.form.BasicForm.popover.mask(this, target);
54002         }
54003         
54004         return valid;
54005     },
54006     /**
54007      * Returns array of invalid form fields.
54008      * @return Array
54009      */
54010     
54011     invalidFields : function()
54012     {
54013         var ret = [];
54014         this.items.each(function(f){
54015             if(f.validate()){
54016                 return;
54017             }
54018             ret.push(f);
54019             
54020         });
54021         
54022         return ret;
54023     },
54024     
54025     
54026     /**
54027      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
54028      * @return Boolean
54029      */
54030     isDirty : function(){
54031         var dirty = false;
54032         this.items.each(function(f){
54033            if(f.isDirty()){
54034                dirty = true;
54035                return false;
54036            }
54037         });
54038         return dirty;
54039     },
54040     
54041     /**
54042      * Returns true if any fields in this form have changed since their original load. (New version)
54043      * @return Boolean
54044      */
54045     
54046     hasChanged : function()
54047     {
54048         var dirty = false;
54049         this.items.each(function(f){
54050            if(f.hasChanged()){
54051                dirty = true;
54052                return false;
54053            }
54054         });
54055         return dirty;
54056         
54057     },
54058     /**
54059      * Resets all hasChanged to 'false' -
54060      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
54061      * So hasChanged storage is only to be used for this purpose
54062      * @return Boolean
54063      */
54064     resetHasChanged : function()
54065     {
54066         this.items.each(function(f){
54067            f.resetHasChanged();
54068         });
54069         
54070     },
54071     
54072     
54073     /**
54074      * Performs a predefined action (submit or load) or custom actions you define on this form.
54075      * @param {String} actionName The name of the action type
54076      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
54077      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
54078      * accept other config options):
54079      * <pre>
54080 Property          Type             Description
54081 ----------------  ---------------  ----------------------------------------------------------------------------------
54082 url               String           The url for the action (defaults to the form's url)
54083 method            String           The form method to use (defaults to the form's method, or POST if not defined)
54084 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
54085 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
54086                                    validate the form on the client (defaults to false)
54087      * </pre>
54088      * @return {BasicForm} this
54089      */
54090     doAction : function(action, options){
54091         if(typeof action == 'string'){
54092             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
54093         }
54094         if(this.fireEvent('beforeaction', this, action) !== false){
54095             this.beforeAction(action);
54096             action.run.defer(100, action);
54097         }
54098         return this;
54099     },
54100
54101     /**
54102      * Shortcut to do a submit action.
54103      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
54104      * @return {BasicForm} this
54105      */
54106     submit : function(options){
54107         this.doAction('submit', options);
54108         return this;
54109     },
54110
54111     /**
54112      * Shortcut to do a load action.
54113      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
54114      * @return {BasicForm} this
54115      */
54116     load : function(options){
54117         this.doAction('load', options);
54118         return this;
54119     },
54120
54121     /**
54122      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
54123      * @param {Record} record The record to edit
54124      * @return {BasicForm} this
54125      */
54126     updateRecord : function(record){
54127         record.beginEdit();
54128         var fs = record.fields;
54129         fs.each(function(f){
54130             var field = this.findField(f.name);
54131             if(field){
54132                 record.set(f.name, field.getValue());
54133             }
54134         }, this);
54135         record.endEdit();
54136         return this;
54137     },
54138
54139     /**
54140      * Loads an Roo.data.Record into this form.
54141      * @param {Record} record The record to load
54142      * @return {BasicForm} this
54143      */
54144     loadRecord : function(record){
54145         this.setValues(record.data);
54146         return this;
54147     },
54148
54149     // private
54150     beforeAction : function(action){
54151         var o = action.options;
54152         
54153         if(!this.disableMask) {
54154             if(this.waitMsgTarget === true){
54155                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
54156             }else if(this.waitMsgTarget){
54157                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
54158                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
54159             }else {
54160                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
54161             }
54162         }
54163         
54164          
54165     },
54166
54167     // private
54168     afterAction : function(action, success){
54169         this.activeAction = null;
54170         var o = action.options;
54171         
54172         if(!this.disableMask) {
54173             if(this.waitMsgTarget === true){
54174                 this.el.unmask();
54175             }else if(this.waitMsgTarget){
54176                 this.waitMsgTarget.unmask();
54177             }else{
54178                 Roo.MessageBox.updateProgress(1);
54179                 Roo.MessageBox.hide();
54180             }
54181         }
54182         
54183         if(success){
54184             if(o.reset){
54185                 this.reset();
54186             }
54187             Roo.callback(o.success, o.scope, [this, action]);
54188             this.fireEvent('actioncomplete', this, action);
54189             
54190         }else{
54191             
54192             // failure condition..
54193             // we have a scenario where updates need confirming.
54194             // eg. if a locking scenario exists..
54195             // we look for { errors : { needs_confirm : true }} in the response.
54196             if (
54197                 (typeof(action.result) != 'undefined')  &&
54198                 (typeof(action.result.errors) != 'undefined')  &&
54199                 (typeof(action.result.errors.needs_confirm) != 'undefined')
54200            ){
54201                 var _t = this;
54202                 Roo.MessageBox.confirm(
54203                     "Change requires confirmation",
54204                     action.result.errorMsg,
54205                     function(r) {
54206                         if (r != 'yes') {
54207                             return;
54208                         }
54209                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
54210                     }
54211                     
54212                 );
54213                 
54214                 
54215                 
54216                 return;
54217             }
54218             
54219             Roo.callback(o.failure, o.scope, [this, action]);
54220             // show an error message if no failed handler is set..
54221             if (!this.hasListener('actionfailed')) {
54222                 Roo.MessageBox.alert("Error",
54223                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
54224                         action.result.errorMsg :
54225                         "Saving Failed, please check your entries or try again"
54226                 );
54227             }
54228             
54229             this.fireEvent('actionfailed', this, action);
54230         }
54231         
54232     },
54233
54234     /**
54235      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
54236      * @param {String} id The value to search for
54237      * @return Field
54238      */
54239     findField : function(id){
54240         var field = this.items.get(id);
54241         if(!field){
54242             this.items.each(function(f){
54243                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
54244                     field = f;
54245                     return false;
54246                 }
54247             });
54248         }
54249         return field || null;
54250     },
54251
54252     /**
54253      * Add a secondary form to this one, 
54254      * Used to provide tabbed forms. One form is primary, with hidden values 
54255      * which mirror the elements from the other forms.
54256      * 
54257      * @param {Roo.form.Form} form to add.
54258      * 
54259      */
54260     addForm : function(form)
54261     {
54262        
54263         if (this.childForms.indexOf(form) > -1) {
54264             // already added..
54265             return;
54266         }
54267         this.childForms.push(form);
54268         var n = '';
54269         Roo.each(form.allItems, function (fe) {
54270             
54271             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
54272             if (this.findField(n)) { // already added..
54273                 return;
54274             }
54275             var add = new Roo.form.Hidden({
54276                 name : n
54277             });
54278             add.render(this.el);
54279             
54280             this.add( add );
54281         }, this);
54282         
54283     },
54284     /**
54285      * Mark fields in this form invalid in bulk.
54286      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
54287      * @return {BasicForm} this
54288      */
54289     markInvalid : function(errors){
54290         if(errors instanceof Array){
54291             for(var i = 0, len = errors.length; i < len; i++){
54292                 var fieldError = errors[i];
54293                 var f = this.findField(fieldError.id);
54294                 if(f){
54295                     f.markInvalid(fieldError.msg);
54296                 }
54297             }
54298         }else{
54299             var field, id;
54300             for(id in errors){
54301                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
54302                     field.markInvalid(errors[id]);
54303                 }
54304             }
54305         }
54306         Roo.each(this.childForms || [], function (f) {
54307             f.markInvalid(errors);
54308         });
54309         
54310         return this;
54311     },
54312
54313     /**
54314      * Set values for fields in this form in bulk.
54315      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
54316      * @return {BasicForm} this
54317      */
54318     setValues : function(values){
54319         if(values instanceof Array){ // array of objects
54320             for(var i = 0, len = values.length; i < len; i++){
54321                 var v = values[i];
54322                 var f = this.findField(v.id);
54323                 if(f){
54324                     f.setValue(v.value);
54325                     if(this.trackResetOnLoad){
54326                         f.originalValue = f.getValue();
54327                     }
54328                 }
54329             }
54330         }else{ // object hash
54331             var field, id;
54332             for(id in values){
54333                 if(typeof values[id] != 'function' && (field = this.findField(id))){
54334                     
54335                     
54336                     
54337                     
54338                     if (field.setFromData && 
54339                         field.valueField && 
54340                         field.displayField &&
54341                         // combos' with local stores can 
54342                         // be queried via setValue()
54343                         // to set their value..
54344                         (field.store && !field.store.isLocal)
54345                         ) {
54346                         // it's a combo
54347                         var sd = { };
54348                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
54349                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
54350                         field.setFromData(sd);
54351                         
54352                     } else if (field.inputType && field.inputType == 'radio') {
54353                         
54354                         field.setValue(values[id]);
54355                     } else {
54356                         field.setValue(values[id]);
54357                     }
54358                     
54359                     
54360                     if(this.trackResetOnLoad){
54361                         field.originalValue = field.getValue();
54362                     }
54363                 }
54364             }
54365         }
54366         this.resetHasChanged();
54367         
54368         
54369         Roo.each(this.childForms || [], function (f) {
54370             f.setValues(values);
54371             f.resetHasChanged();
54372         });
54373                 
54374         return this;
54375     },
54376  
54377     /**
54378      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
54379      * they are returned as an array.
54380      * @param {Boolean} asString (def)
54381      * @return {Object}
54382      */
54383     getValues : function(asString)
54384     {
54385         if (this.childForms) {
54386             // copy values from the child forms
54387             Roo.each(this.childForms, function (f) {
54388                 this.setValues(f.getFieldValues()); // get the full set of data, as we might be copying comboboxes from external into this one.
54389             }, this);
54390         }
54391         
54392         // use formdata
54393         if (typeof(FormData) != 'undefined' && asString !== true) {
54394             // this relies on a 'recent' version of chrome apparently...
54395             try {
54396                 var fd = (new FormData(this.el.dom)).entries();
54397                 var ret = {};
54398                 var ent = fd.next();
54399                 while (!ent.done) {
54400                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
54401                     ent = fd.next();
54402                 };
54403                 return ret;
54404             } catch(e) {
54405                 
54406             }
54407             
54408         }
54409         
54410         
54411         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
54412         if(asString === true){
54413             return fs;
54414         }
54415         return Roo.urlDecode(fs);
54416     },
54417     
54418     /**
54419      * Returns the fields in this form as an object with key/value pairs. 
54420      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
54421      * Normally this will not return readOnly data 
54422      * @param {Boolean} with_readonly return readonly field data.
54423      * @return {Object}
54424      */
54425     getFieldValues : function(with_readonly)
54426     {
54427         if (this.childForms) {
54428             // copy values from the child forms
54429             // should this call getFieldValues - probably not as we do not currently copy
54430             // hidden fields when we generate..
54431             Roo.each(this.childForms, function (f) {
54432                 this.setValues(f.getFieldValues());
54433             }, this);
54434         }
54435         
54436         var ret = {};
54437         this.items.each(function(f){
54438             
54439             if (f.readOnly && with_readonly !== true) {
54440                 return; // skip read only values. - this is in theory to stop 'old' values being copied over new ones
54441                         // if a subform contains a copy of them.
54442                         // if you have subforms with the same editable data, you will need to copy the data back
54443                         // and forth.
54444             }
54445             
54446             if (!f.getName()) {
54447                 return;
54448             }
54449             var v = f.getValue();
54450             if (f.inputType =='radio') {
54451                 if (typeof(ret[f.getName()]) == 'undefined') {
54452                     ret[f.getName()] = ''; // empty..
54453                 }
54454                 
54455                 if (!f.el.dom.checked) {
54456                     return;
54457                     
54458                 }
54459                 v = f.el.dom.value;
54460                 
54461             }
54462             
54463             // not sure if this supported any more..
54464             if ((typeof(v) == 'object') && f.getRawValue) {
54465                 v = f.getRawValue() ; // dates..
54466             }
54467             // combo boxes where name != hiddenName...
54468             if (f.name != f.getName()) {
54469                 ret[f.name] = f.getRawValue();
54470             }
54471             ret[f.getName()] = v;
54472         });
54473         
54474         return ret;
54475     },
54476
54477     /**
54478      * Clears all invalid messages in this form.
54479      * @return {BasicForm} this
54480      */
54481     clearInvalid : function(){
54482         this.items.each(function(f){
54483            f.clearInvalid();
54484         });
54485         
54486         Roo.each(this.childForms || [], function (f) {
54487             f.clearInvalid();
54488         });
54489         
54490         
54491         return this;
54492     },
54493
54494     /**
54495      * Resets this form.
54496      * @return {BasicForm} this
54497      */
54498     reset : function(){
54499         this.items.each(function(f){
54500             f.reset();
54501         });
54502         
54503         Roo.each(this.childForms || [], function (f) {
54504             f.reset();
54505         });
54506         this.resetHasChanged();
54507         
54508         return this;
54509     },
54510
54511     /**
54512      * Add Roo.form components to this form.
54513      * @param {Field} field1
54514      * @param {Field} field2 (optional)
54515      * @param {Field} etc (optional)
54516      * @return {BasicForm} this
54517      */
54518     add : function(){
54519         this.items.addAll(Array.prototype.slice.call(arguments, 0));
54520         return this;
54521     },
54522
54523
54524     /**
54525      * Removes a field from the items collection (does NOT remove its markup).
54526      * @param {Field} field
54527      * @return {BasicForm} this
54528      */
54529     remove : function(field){
54530         this.items.remove(field);
54531         return this;
54532     },
54533
54534     /**
54535      * Looks at the fields in this form, checks them for an id attribute,
54536      * and calls applyTo on the existing dom element with that id.
54537      * @return {BasicForm} this
54538      */
54539     render : function(){
54540         this.items.each(function(f){
54541             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
54542                 f.applyTo(f.id);
54543             }
54544         });
54545         return this;
54546     },
54547
54548     /**
54549      * Calls {@link Ext#apply} for all fields in this form with the passed object.
54550      * @param {Object} values
54551      * @return {BasicForm} this
54552      */
54553     applyToFields : function(o){
54554         this.items.each(function(f){
54555            Roo.apply(f, o);
54556         });
54557         return this;
54558     },
54559
54560     /**
54561      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
54562      * @param {Object} values
54563      * @return {BasicForm} this
54564      */
54565     applyIfToFields : function(o){
54566         this.items.each(function(f){
54567            Roo.applyIf(f, o);
54568         });
54569         return this;
54570     }
54571 });
54572
54573 // back compat
54574 Roo.BasicForm = Roo.form.BasicForm;
54575
54576 Roo.apply(Roo.form.BasicForm, {
54577     
54578     popover : {
54579         
54580         padding : 5,
54581         
54582         isApplied : false,
54583         
54584         isMasked : false,
54585         
54586         form : false,
54587         
54588         target : false,
54589         
54590         intervalID : false,
54591         
54592         maskEl : false,
54593         
54594         apply : function()
54595         {
54596             if(this.isApplied){
54597                 return;
54598             }
54599             
54600             this.maskEl = {
54601                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
54602                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
54603                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
54604                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
54605             };
54606             
54607             this.maskEl.top.enableDisplayMode("block");
54608             this.maskEl.left.enableDisplayMode("block");
54609             this.maskEl.bottom.enableDisplayMode("block");
54610             this.maskEl.right.enableDisplayMode("block");
54611             
54612             Roo.get(document.body).on('click', function(){
54613                 this.unmask();
54614             }, this);
54615             
54616             Roo.get(document.body).on('touchstart', function(){
54617                 this.unmask();
54618             }, this);
54619             
54620             this.isApplied = true
54621         },
54622         
54623         mask : function(form, target)
54624         {
54625             this.form = form;
54626             
54627             this.target = target;
54628             
54629             if(!this.form.errorMask || !target.el){
54630                 return;
54631             }
54632             
54633             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
54634             
54635             var ot = this.target.el.calcOffsetsTo(scrollable);
54636             
54637             var scrollTo = ot[1] - this.form.maskOffset;
54638             
54639             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
54640             
54641             scrollable.scrollTo('top', scrollTo);
54642             
54643             var el = this.target.wrap || this.target.el;
54644             
54645             var box = el.getBox();
54646             
54647             this.maskEl.top.setStyle('position', 'absolute');
54648             this.maskEl.top.setStyle('z-index', 10000);
54649             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
54650             this.maskEl.top.setLeft(0);
54651             this.maskEl.top.setTop(0);
54652             this.maskEl.top.show();
54653             
54654             this.maskEl.left.setStyle('position', 'absolute');
54655             this.maskEl.left.setStyle('z-index', 10000);
54656             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
54657             this.maskEl.left.setLeft(0);
54658             this.maskEl.left.setTop(box.y - this.padding);
54659             this.maskEl.left.show();
54660
54661             this.maskEl.bottom.setStyle('position', 'absolute');
54662             this.maskEl.bottom.setStyle('z-index', 10000);
54663             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
54664             this.maskEl.bottom.setLeft(0);
54665             this.maskEl.bottom.setTop(box.bottom + this.padding);
54666             this.maskEl.bottom.show();
54667
54668             this.maskEl.right.setStyle('position', 'absolute');
54669             this.maskEl.right.setStyle('z-index', 10000);
54670             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
54671             this.maskEl.right.setLeft(box.right + this.padding);
54672             this.maskEl.right.setTop(box.y - this.padding);
54673             this.maskEl.right.show();
54674
54675             this.intervalID = window.setInterval(function() {
54676                 Roo.form.BasicForm.popover.unmask();
54677             }, 10000);
54678
54679             window.onwheel = function(){ return false;};
54680             
54681             (function(){ this.isMasked = true; }).defer(500, this);
54682             
54683         },
54684         
54685         unmask : function()
54686         {
54687             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
54688                 return;
54689             }
54690             
54691             this.maskEl.top.setStyle('position', 'absolute');
54692             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
54693             this.maskEl.top.hide();
54694
54695             this.maskEl.left.setStyle('position', 'absolute');
54696             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
54697             this.maskEl.left.hide();
54698
54699             this.maskEl.bottom.setStyle('position', 'absolute');
54700             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
54701             this.maskEl.bottom.hide();
54702
54703             this.maskEl.right.setStyle('position', 'absolute');
54704             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
54705             this.maskEl.right.hide();
54706             
54707             window.onwheel = function(){ return true;};
54708             
54709             if(this.intervalID){
54710                 window.clearInterval(this.intervalID);
54711                 this.intervalID = false;
54712             }
54713             
54714             this.isMasked = false;
54715             
54716         }
54717         
54718     }
54719     
54720 });/*
54721  * Based on:
54722  * Ext JS Library 1.1.1
54723  * Copyright(c) 2006-2007, Ext JS, LLC.
54724  *
54725  * Originally Released Under LGPL - original licence link has changed is not relivant.
54726  *
54727  * Fork - LGPL
54728  * <script type="text/javascript">
54729  */
54730
54731 /**
54732  * @class Roo.form.Form
54733  * @extends Roo.form.BasicForm
54734  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
54735  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
54736  * @constructor
54737  * @param {Object} config Configuration options
54738  */
54739 Roo.form.Form = function(config){
54740     var xitems =  [];
54741     if (config.items) {
54742         xitems = config.items;
54743         delete config.items;
54744     }
54745    
54746     
54747     Roo.form.Form.superclass.constructor.call(this, null, config);
54748     this.url = this.url || this.action;
54749     if(!this.root){
54750         this.root = new Roo.form.Layout(Roo.applyIf({
54751             id: Roo.id()
54752         }, config));
54753     }
54754     this.active = this.root;
54755     /**
54756      * Array of all the buttons that have been added to this form via {@link addButton}
54757      * @type Array
54758      */
54759     this.buttons = [];
54760     this.allItems = [];
54761     this.addEvents({
54762         /**
54763          * @event clientvalidation
54764          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
54765          * @param {Form} this
54766          * @param {Boolean} valid true if the form has passed client-side validation
54767          */
54768         clientvalidation: true,
54769         /**
54770          * @event rendered
54771          * Fires when the form is rendered
54772          * @param {Roo.form.Form} form
54773          */
54774         rendered : true
54775     });
54776     
54777     if (this.progressUrl) {
54778             // push a hidden field onto the list of fields..
54779             this.addxtype( {
54780                     xns: Roo.form, 
54781                     xtype : 'Hidden', 
54782                     name : 'UPLOAD_IDENTIFIER' 
54783             });
54784         }
54785         
54786     
54787     Roo.each(xitems, this.addxtype, this);
54788     
54789 };
54790
54791 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
54792      /**
54793      * @cfg {Roo.Button} buttons[] buttons at bottom of form
54794      */
54795     
54796     /**
54797      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
54798      */
54799     /**
54800      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
54801      */
54802     /**
54803      * @cfg {String} (left|center|right) buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
54804      */
54805     buttonAlign:'center',
54806
54807     /**
54808      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
54809      */
54810     minButtonWidth:75,
54811
54812     /**
54813      * @cfg {String} labelAlign (left|top|right) Valid values are "left," "top" and "right" (defaults to "left").
54814      * This property cascades to child containers if not set.
54815      */
54816     labelAlign:'left',
54817
54818     /**
54819      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
54820      * fires a looping event with that state. This is required to bind buttons to the valid
54821      * state using the config value formBind:true on the button.
54822      */
54823     monitorValid : false,
54824
54825     /**
54826      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
54827      */
54828     monitorPoll : 200,
54829     
54830     /**
54831      * @cfg {String} progressUrl - Url to return progress data 
54832      */
54833     
54834     progressUrl : false,
54835     /**
54836      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
54837      * sending a formdata with extra parameters - eg uploaded elements.
54838      */
54839     
54840     formData : false,
54841     
54842     /**
54843      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
54844      * fields are added and the column is closed. If no fields are passed the column remains open
54845      * until end() is called.
54846      * @param {Object} config The config to pass to the column
54847      * @param {Field} field1 (optional)
54848      * @param {Field} field2 (optional)
54849      * @param {Field} etc (optional)
54850      * @return Column The column container object
54851      */
54852     column : function(c){
54853         var col = new Roo.form.Column(c);
54854         this.start(col);
54855         if(arguments.length > 1){ // duplicate code required because of Opera
54856             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54857             this.end();
54858         }
54859         return col;
54860     },
54861
54862     /**
54863      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
54864      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
54865      * until end() is called.
54866      * @param {Object} config The config to pass to the fieldset
54867      * @param {Field} field1 (optional)
54868      * @param {Field} field2 (optional)
54869      * @param {Field} etc (optional)
54870      * @return FieldSet The fieldset container object
54871      */
54872     fieldset : function(c){
54873         var fs = new Roo.form.FieldSet(c);
54874         this.start(fs);
54875         if(arguments.length > 1){ // duplicate code required because of Opera
54876             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54877             this.end();
54878         }
54879         return fs;
54880     },
54881
54882     /**
54883      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
54884      * fields are added and the container is closed. If no fields are passed the container remains open
54885      * until end() is called.
54886      * @param {Object} config The config to pass to the Layout
54887      * @param {Field} field1 (optional)
54888      * @param {Field} field2 (optional)
54889      * @param {Field} etc (optional)
54890      * @return Layout The container object
54891      */
54892     container : function(c){
54893         var l = new Roo.form.Layout(c);
54894         this.start(l);
54895         if(arguments.length > 1){ // duplicate code required because of Opera
54896             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54897             this.end();
54898         }
54899         return l;
54900     },
54901
54902     /**
54903      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
54904      * @param {Object} container A Roo.form.Layout or subclass of Layout
54905      * @return {Form} this
54906      */
54907     start : function(c){
54908         // cascade label info
54909         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
54910         this.active.stack.push(c);
54911         c.ownerCt = this.active;
54912         this.active = c;
54913         return this;
54914     },
54915
54916     /**
54917      * Closes the current open container
54918      * @return {Form} this
54919      */
54920     end : function(){
54921         if(this.active == this.root){
54922             return this;
54923         }
54924         this.active = this.active.ownerCt;
54925         return this;
54926     },
54927
54928     /**
54929      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
54930      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
54931      * as the label of the field.
54932      * @param {Field} field1
54933      * @param {Field} field2 (optional)
54934      * @param {Field} etc. (optional)
54935      * @return {Form} this
54936      */
54937     add : function(){
54938         this.active.stack.push.apply(this.active.stack, arguments);
54939         this.allItems.push.apply(this.allItems,arguments);
54940         var r = [];
54941         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
54942             if(a[i].isFormField){
54943                 r.push(a[i]);
54944             }
54945         }
54946         if(r.length > 0){
54947             Roo.form.Form.superclass.add.apply(this, r);
54948         }
54949         return this;
54950     },
54951     
54952
54953     
54954     
54955     
54956      /**
54957      * Find any element that has been added to a form, using it's ID or name
54958      * This can include framesets, columns etc. along with regular fields..
54959      * @param {String} id - id or name to find.
54960      
54961      * @return {Element} e - or false if nothing found.
54962      */
54963     findbyId : function(id)
54964     {
54965         var ret = false;
54966         if (!id) {
54967             return ret;
54968         }
54969         Roo.each(this.allItems, function(f){
54970             if (f.id == id || f.name == id ){
54971                 ret = f;
54972                 return false;
54973             }
54974         });
54975         return ret;
54976     },
54977
54978     
54979     
54980     /**
54981      * Render this form into the passed container. This should only be called once!
54982      * @param {String/HTMLElement/Element} container The element this component should be rendered into
54983      * @return {Form} this
54984      */
54985     render : function(ct)
54986     {
54987         
54988         
54989         
54990         ct = Roo.get(ct);
54991         var o = this.autoCreate || {
54992             tag: 'form',
54993             method : this.method || 'POST',
54994             id : this.id || Roo.id()
54995         };
54996         this.initEl(ct.createChild(o));
54997
54998         this.root.render(this.el);
54999         
55000        
55001              
55002         this.items.each(function(f){
55003             f.render('x-form-el-'+f.id);
55004         });
55005
55006         if(this.buttons.length > 0){
55007             // tables are required to maintain order and for correct IE layout
55008             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
55009                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
55010                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
55011             }}, null, true);
55012             var tr = tb.getElementsByTagName('tr')[0];
55013             for(var i = 0, len = this.buttons.length; i < len; i++) {
55014                 var b = this.buttons[i];
55015                 var td = document.createElement('td');
55016                 td.className = 'x-form-btn-td';
55017                 b.render(tr.appendChild(td));
55018             }
55019         }
55020         if(this.monitorValid){ // initialize after render
55021             this.startMonitoring();
55022         }
55023         this.fireEvent('rendered', this);
55024         return this;
55025     },
55026
55027     /**
55028      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
55029      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
55030      * object or a valid Roo.DomHelper element config
55031      * @param {Function} handler The function called when the button is clicked
55032      * @param {Object} scope (optional) The scope of the handler function
55033      * @return {Roo.Button}
55034      */
55035     addButton : function(config, handler, scope){
55036         var bc = {
55037             handler: handler,
55038             scope: scope,
55039             minWidth: this.minButtonWidth,
55040             hideParent:true
55041         };
55042         if(typeof config == "string"){
55043             bc.text = config;
55044         }else{
55045             Roo.apply(bc, config);
55046         }
55047         var btn = new Roo.Button(null, bc);
55048         this.buttons.push(btn);
55049         return btn;
55050     },
55051
55052      /**
55053      * Adds a series of form elements (using the xtype property as the factory method.
55054      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
55055      * @param {Object} config 
55056      */
55057     
55058     addxtype : function()
55059     {
55060         var ar = Array.prototype.slice.call(arguments, 0);
55061         var ret = false;
55062         for(var i = 0; i < ar.length; i++) {
55063             if (!ar[i]) {
55064                 continue; // skip -- if this happends something invalid got sent, we 
55065                 // should ignore it, as basically that interface element will not show up
55066                 // and that should be pretty obvious!!
55067             }
55068             
55069             if (Roo.form[ar[i].xtype]) {
55070                 ar[i].form = this;
55071                 var fe = Roo.factory(ar[i], Roo.form);
55072                 if (!ret) {
55073                     ret = fe;
55074                 }
55075                 fe.form = this;
55076                 if (fe.store) {
55077                     fe.store.form = this;
55078                 }
55079                 if (fe.isLayout) {  
55080                          
55081                     this.start(fe);
55082                     this.allItems.push(fe);
55083                     if (fe.items && fe.addxtype) {
55084                         fe.addxtype.apply(fe, fe.items);
55085                         delete fe.items;
55086                     }
55087                      this.end();
55088                     continue;
55089                 }
55090                 
55091                 
55092                  
55093                 this.add(fe);
55094               //  console.log('adding ' + ar[i].xtype);
55095             }
55096             if (ar[i].xtype == 'Button') {  
55097                 //console.log('adding button');
55098                 //console.log(ar[i]);
55099                 this.addButton(ar[i]);
55100                 this.allItems.push(fe);
55101                 continue;
55102             }
55103             
55104             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
55105                 alert('end is not supported on xtype any more, use items');
55106             //    this.end();
55107             //    //console.log('adding end');
55108             }
55109             
55110         }
55111         return ret;
55112     },
55113     
55114     /**
55115      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
55116      * option "monitorValid"
55117      */
55118     startMonitoring : function(){
55119         if(!this.bound){
55120             this.bound = true;
55121             Roo.TaskMgr.start({
55122                 run : this.bindHandler,
55123                 interval : this.monitorPoll || 200,
55124                 scope: this
55125             });
55126         }
55127     },
55128
55129     /**
55130      * Stops monitoring of the valid state of this form
55131      */
55132     stopMonitoring : function(){
55133         this.bound = false;
55134     },
55135
55136     // private
55137     bindHandler : function(){
55138         if(!this.bound){
55139             return false; // stops binding
55140         }
55141         var valid = true;
55142         this.items.each(function(f){
55143             if(!f.isValid(true)){
55144                 valid = false;
55145                 return false;
55146             }
55147         });
55148         for(var i = 0, len = this.buttons.length; i < len; i++){
55149             var btn = this.buttons[i];
55150             if(btn.formBind === true && btn.disabled === valid){
55151                 btn.setDisabled(!valid);
55152             }
55153         }
55154         this.fireEvent('clientvalidation', this, valid);
55155     }
55156     
55157     
55158     
55159     
55160     
55161     
55162     
55163     
55164 });
55165
55166
55167 // back compat
55168 Roo.Form = Roo.form.Form;
55169 /*
55170  * Based on:
55171  * Ext JS Library 1.1.1
55172  * Copyright(c) 2006-2007, Ext JS, LLC.
55173  *
55174  * Originally Released Under LGPL - original licence link has changed is not relivant.
55175  *
55176  * Fork - LGPL
55177  * <script type="text/javascript">
55178  */
55179
55180 // as we use this in bootstrap.
55181 Roo.namespace('Roo.form');
55182  /**
55183  * @class Roo.form.Action
55184  * Internal Class used to handle form actions
55185  * @constructor
55186  * @param {Roo.form.BasicForm} el The form element or its id
55187  * @param {Object} config Configuration options
55188  */
55189
55190  
55191  
55192 // define the action interface
55193 Roo.form.Action = function(form, options){
55194     this.form = form;
55195     this.options = options || {};
55196 };
55197 /**
55198  * Client Validation Failed
55199  * @const 
55200  */
55201 Roo.form.Action.CLIENT_INVALID = 'client';
55202 /**
55203  * Server Validation Failed
55204  * @const 
55205  */
55206 Roo.form.Action.SERVER_INVALID = 'server';
55207  /**
55208  * Connect to Server Failed
55209  * @const 
55210  */
55211 Roo.form.Action.CONNECT_FAILURE = 'connect';
55212 /**
55213  * Reading Data from Server Failed
55214  * @const 
55215  */
55216 Roo.form.Action.LOAD_FAILURE = 'load';
55217
55218 Roo.form.Action.prototype = {
55219     type : 'default',
55220     failureType : undefined,
55221     response : undefined,
55222     result : undefined,
55223
55224     // interface method
55225     run : function(options){
55226
55227     },
55228
55229     // interface method
55230     success : function(response){
55231
55232     },
55233
55234     // interface method
55235     handleResponse : function(response){
55236
55237     },
55238
55239     // default connection failure
55240     failure : function(response){
55241         
55242         this.response = response;
55243         this.failureType = Roo.form.Action.CONNECT_FAILURE;
55244         this.form.afterAction(this, false);
55245     },
55246
55247     processResponse : function(response){
55248         this.response = response;
55249         if(!response.responseText){
55250             return true;
55251         }
55252         this.result = this.handleResponse(response);
55253         return this.result;
55254     },
55255
55256     // utility functions used internally
55257     getUrl : function(appendParams){
55258         var url = this.options.url || this.form.url || this.form.el.dom.action;
55259         if(appendParams){
55260             var p = this.getParams();
55261             if(p){
55262                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
55263             }
55264         }
55265         return url;
55266     },
55267
55268     getMethod : function(){
55269         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
55270     },
55271
55272     getParams : function(){
55273         var bp = this.form.baseParams;
55274         var p = this.options.params;
55275         if(p){
55276             if(typeof p == "object"){
55277                 p = Roo.urlEncode(Roo.applyIf(p, bp));
55278             }else if(typeof p == 'string' && bp){
55279                 p += '&' + Roo.urlEncode(bp);
55280             }
55281         }else if(bp){
55282             p = Roo.urlEncode(bp);
55283         }
55284         return p;
55285     },
55286
55287     createCallback : function(){
55288         return {
55289             success: this.success,
55290             failure: this.failure,
55291             scope: this,
55292             timeout: (this.form.timeout*1000),
55293             upload: this.form.fileUpload ? this.success : undefined
55294         };
55295     }
55296 };
55297
55298 Roo.form.Action.Submit = function(form, options){
55299     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
55300 };
55301
55302 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
55303     type : 'submit',
55304
55305     haveProgress : false,
55306     uploadComplete : false,
55307     
55308     // uploadProgress indicator.
55309     uploadProgress : function()
55310     {
55311         if (!this.form.progressUrl) {
55312             return;
55313         }
55314         
55315         if (!this.haveProgress) {
55316             Roo.MessageBox.progress("Uploading", "Uploading");
55317         }
55318         if (this.uploadComplete) {
55319            Roo.MessageBox.hide();
55320            return;
55321         }
55322         
55323         this.haveProgress = true;
55324    
55325         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
55326         
55327         var c = new Roo.data.Connection();
55328         c.request({
55329             url : this.form.progressUrl,
55330             params: {
55331                 id : uid
55332             },
55333             method: 'GET',
55334             success : function(req){
55335                //console.log(data);
55336                 var rdata = false;
55337                 var edata;
55338                 try  {
55339                    rdata = Roo.decode(req.responseText)
55340                 } catch (e) {
55341                     Roo.log("Invalid data from server..");
55342                     Roo.log(edata);
55343                     return;
55344                 }
55345                 if (!rdata || !rdata.success) {
55346                     Roo.log(rdata);
55347                     Roo.MessageBox.alert(Roo.encode(rdata));
55348                     return;
55349                 }
55350                 var data = rdata.data;
55351                 
55352                 if (this.uploadComplete) {
55353                    Roo.MessageBox.hide();
55354                    return;
55355                 }
55356                    
55357                 if (data){
55358                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
55359                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
55360                     );
55361                 }
55362                 this.uploadProgress.defer(2000,this);
55363             },
55364        
55365             failure: function(data) {
55366                 Roo.log('progress url failed ');
55367                 Roo.log(data);
55368             },
55369             scope : this
55370         });
55371            
55372     },
55373     
55374     
55375     run : function()
55376     {
55377         // run get Values on the form, so it syncs any secondary forms.
55378         this.form.getValues();
55379         
55380         var o = this.options;
55381         var method = this.getMethod();
55382         var isPost = method == 'POST';
55383         if(o.clientValidation === false || this.form.isValid()){
55384             
55385             if (this.form.progressUrl) {
55386                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
55387                     (new Date() * 1) + '' + Math.random());
55388                     
55389             } 
55390             
55391             
55392             Roo.Ajax.request(Roo.apply(this.createCallback(), {
55393                 form:this.form.el.dom,
55394                 url:this.getUrl(!isPost),
55395                 method: method,
55396                 params:isPost ? this.getParams() : null,
55397                 isUpload: this.form.fileUpload,
55398                 formData : this.form.formData
55399             }));
55400             
55401             this.uploadProgress();
55402
55403         }else if (o.clientValidation !== false){ // client validation failed
55404             this.failureType = Roo.form.Action.CLIENT_INVALID;
55405             this.form.afterAction(this, false);
55406         }
55407     },
55408
55409     success : function(response)
55410     {
55411         this.uploadComplete= true;
55412         if (this.haveProgress) {
55413             Roo.MessageBox.hide();
55414         }
55415         
55416         
55417         var result = this.processResponse(response);
55418         if(result === true || result.success){
55419             this.form.afterAction(this, true);
55420             return;
55421         }
55422         if(result.errors){
55423             this.form.markInvalid(result.errors);
55424             this.failureType = Roo.form.Action.SERVER_INVALID;
55425         }
55426         this.form.afterAction(this, false);
55427     },
55428     failure : function(response)
55429     {
55430         this.uploadComplete= true;
55431         if (this.haveProgress) {
55432             Roo.MessageBox.hide();
55433         }
55434         
55435         this.response = response;
55436         this.failureType = Roo.form.Action.CONNECT_FAILURE;
55437         this.form.afterAction(this, false);
55438     },
55439     
55440     handleResponse : function(response){
55441         if(this.form.errorReader){
55442             var rs = this.form.errorReader.read(response);
55443             var errors = [];
55444             if(rs.records){
55445                 for(var i = 0, len = rs.records.length; i < len; i++) {
55446                     var r = rs.records[i];
55447                     errors[i] = r.data;
55448                 }
55449             }
55450             if(errors.length < 1){
55451                 errors = null;
55452             }
55453             return {
55454                 success : rs.success,
55455                 errors : errors
55456             };
55457         }
55458         var ret = false;
55459         try {
55460             ret = Roo.decode(response.responseText);
55461         } catch (e) {
55462             ret = {
55463                 success: false,
55464                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
55465                 errors : []
55466             };
55467         }
55468         return ret;
55469         
55470     }
55471 });
55472
55473
55474 Roo.form.Action.Load = function(form, options){
55475     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
55476     this.reader = this.form.reader;
55477 };
55478
55479 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
55480     type : 'load',
55481
55482     run : function(){
55483         
55484         Roo.Ajax.request(Roo.apply(
55485                 this.createCallback(), {
55486                     method:this.getMethod(),
55487                     url:this.getUrl(false),
55488                     params:this.getParams()
55489         }));
55490     },
55491
55492     success : function(response){
55493         
55494         var result = this.processResponse(response);
55495         if(result === true || !result.success || !result.data){
55496             this.failureType = Roo.form.Action.LOAD_FAILURE;
55497             this.form.afterAction(this, false);
55498             return;
55499         }
55500         this.form.clearInvalid();
55501         this.form.setValues(result.data);
55502         this.form.afterAction(this, true);
55503     },
55504
55505     handleResponse : function(response){
55506         if(this.form.reader){
55507             var rs = this.form.reader.read(response);
55508             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
55509             return {
55510                 success : rs.success,
55511                 data : data
55512             };
55513         }
55514         return Roo.decode(response.responseText);
55515     }
55516 });
55517
55518 Roo.form.Action.ACTION_TYPES = {
55519     'load' : Roo.form.Action.Load,
55520     'submit' : Roo.form.Action.Submit
55521 };/*
55522  * Based on:
55523  * Ext JS Library 1.1.1
55524  * Copyright(c) 2006-2007, Ext JS, LLC.
55525  *
55526  * Originally Released Under LGPL - original licence link has changed is not relivant.
55527  *
55528  * Fork - LGPL
55529  * <script type="text/javascript">
55530  */
55531  
55532 /**
55533  * @class Roo.form.Layout
55534  * @extends Roo.Component
55535  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55536  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
55537  * @constructor
55538  * @param {Object} config Configuration options
55539  */
55540 Roo.form.Layout = function(config){
55541     var xitems = [];
55542     if (config.items) {
55543         xitems = config.items;
55544         delete config.items;
55545     }
55546     Roo.form.Layout.superclass.constructor.call(this, config);
55547     this.stack = [];
55548     Roo.each(xitems, this.addxtype, this);
55549      
55550 };
55551
55552 Roo.extend(Roo.form.Layout, Roo.Component, {
55553     /**
55554      * @cfg {String/Object} autoCreate
55555      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
55556      */
55557     /**
55558      * @cfg {String/Object/Function} style
55559      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
55560      * a function which returns such a specification.
55561      */
55562     /**
55563      * @cfg {String} labelAlign (left|top|right)
55564      * Valid values are "left," "top" and "right" (defaults to "left")
55565      */
55566     /**
55567      * @cfg {Number} labelWidth
55568      * Fixed width in pixels of all field labels (defaults to undefined)
55569      */
55570     /**
55571      * @cfg {Boolean} clear
55572      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
55573      */
55574     clear : true,
55575     /**
55576      * @cfg {String} labelSeparator
55577      * The separator to use after field labels (defaults to ':')
55578      */
55579     labelSeparator : ':',
55580     /**
55581      * @cfg {Boolean} hideLabels
55582      * True to suppress the display of field labels in this layout (defaults to false)
55583      */
55584     hideLabels : false,
55585
55586     // private
55587     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
55588     
55589     isLayout : true,
55590     
55591     // private
55592     onRender : function(ct, position){
55593         if(this.el){ // from markup
55594             this.el = Roo.get(this.el);
55595         }else {  // generate
55596             var cfg = this.getAutoCreate();
55597             this.el = ct.createChild(cfg, position);
55598         }
55599         if(this.style){
55600             this.el.applyStyles(this.style);
55601         }
55602         if(this.labelAlign){
55603             this.el.addClass('x-form-label-'+this.labelAlign);
55604         }
55605         if(this.hideLabels){
55606             this.labelStyle = "display:none";
55607             this.elementStyle = "padding-left:0;";
55608         }else{
55609             if(typeof this.labelWidth == 'number'){
55610                 this.labelStyle = "width:"+this.labelWidth+"px;";
55611                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
55612             }
55613             if(this.labelAlign == 'top'){
55614                 this.labelStyle = "width:auto;";
55615                 this.elementStyle = "padding-left:0;";
55616             }
55617         }
55618         var stack = this.stack;
55619         var slen = stack.length;
55620         if(slen > 0){
55621             if(!this.fieldTpl){
55622                 var t = new Roo.Template(
55623                     '<div class="x-form-item {5}">',
55624                         '<label for="{0}" style="{2}">{1}{4}</label>',
55625                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55626                         '</div>',
55627                     '</div><div class="x-form-clear-left"></div>'
55628                 );
55629                 t.disableFormats = true;
55630                 t.compile();
55631                 Roo.form.Layout.prototype.fieldTpl = t;
55632             }
55633             for(var i = 0; i < slen; i++) {
55634                 if(stack[i].isFormField){
55635                     this.renderField(stack[i]);
55636                 }else{
55637                     this.renderComponent(stack[i]);
55638                 }
55639             }
55640         }
55641         if(this.clear){
55642             this.el.createChild({cls:'x-form-clear'});
55643         }
55644     },
55645
55646     // private
55647     renderField : function(f){
55648         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
55649                f.id, //0
55650                f.fieldLabel, //1
55651                f.labelStyle||this.labelStyle||'', //2
55652                this.elementStyle||'', //3
55653                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
55654                f.itemCls||this.itemCls||''  //5
55655        ], true).getPrevSibling());
55656     },
55657
55658     // private
55659     renderComponent : function(c){
55660         c.render(c.isLayout ? this.el : this.el.createChild());    
55661     },
55662     /**
55663      * Adds a object form elements (using the xtype property as the factory method.)
55664      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
55665      * @param {Object} config 
55666      */
55667     addxtype : function(o)
55668     {
55669         // create the lement.
55670         o.form = this.form;
55671         var fe = Roo.factory(o, Roo.form);
55672         this.form.allItems.push(fe);
55673         this.stack.push(fe);
55674         
55675         if (fe.isFormField) {
55676             this.form.items.add(fe);
55677         }
55678          
55679         return fe;
55680     }
55681 });
55682
55683
55684 /**
55685  * @class Roo.form.Column
55686  * @extends Roo.form.Layout
55687  * @children Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55688  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
55689  * @constructor
55690  * @param {Object} config Configuration options
55691  */
55692 Roo.form.Column = function(config){
55693     Roo.form.Column.superclass.constructor.call(this, config);
55694 };
55695
55696 Roo.extend(Roo.form.Column, Roo.form.Layout, {
55697     /**
55698      * @cfg {Number/String} width
55699      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55700      */
55701     /**
55702      * @cfg {String/Object} autoCreate
55703      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
55704      */
55705
55706     // private
55707     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
55708
55709     // private
55710     onRender : function(ct, position){
55711         Roo.form.Column.superclass.onRender.call(this, ct, position);
55712         if(this.width){
55713             this.el.setWidth(this.width);
55714         }
55715     }
55716 });
55717
55718 /**
55719  * @class Roo.form.Row
55720  * @extends Roo.form.Layout
55721  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55722  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
55723  * @constructor
55724  * @param {Object} config Configuration options
55725  */
55726
55727  
55728 Roo.form.Row = function(config){
55729     Roo.form.Row.superclass.constructor.call(this, config);
55730 };
55731  
55732 Roo.extend(Roo.form.Row, Roo.form.Layout, {
55733       /**
55734      * @cfg {Number/String} width
55735      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55736      */
55737     /**
55738      * @cfg {Number/String} height
55739      * The fixed height of the column in pixels or CSS value (defaults to "auto")
55740      */
55741     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
55742     
55743     padWidth : 20,
55744     // private
55745     onRender : function(ct, position){
55746         //console.log('row render');
55747         if(!this.rowTpl){
55748             var t = new Roo.Template(
55749                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
55750                     '<label for="{0}" style="{2}">{1}{4}</label>',
55751                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55752                     '</div>',
55753                 '</div>'
55754             );
55755             t.disableFormats = true;
55756             t.compile();
55757             Roo.form.Layout.prototype.rowTpl = t;
55758         }
55759         this.fieldTpl = this.rowTpl;
55760         
55761         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
55762         var labelWidth = 100;
55763         
55764         if ((this.labelAlign != 'top')) {
55765             if (typeof this.labelWidth == 'number') {
55766                 labelWidth = this.labelWidth
55767             }
55768             this.padWidth =  20 + labelWidth;
55769             
55770         }
55771         
55772         Roo.form.Column.superclass.onRender.call(this, ct, position);
55773         if(this.width){
55774             this.el.setWidth(this.width);
55775         }
55776         if(this.height){
55777             this.el.setHeight(this.height);
55778         }
55779     },
55780     
55781     // private
55782     renderField : function(f){
55783         f.fieldEl = this.fieldTpl.append(this.el, [
55784                f.id, f.fieldLabel,
55785                f.labelStyle||this.labelStyle||'',
55786                this.elementStyle||'',
55787                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
55788                f.itemCls||this.itemCls||'',
55789                f.width ? f.width + this.padWidth : 160 + this.padWidth
55790        ],true);
55791     }
55792 });
55793  
55794
55795 /**
55796  * @class Roo.form.FieldSet
55797  * @extends Roo.form.Layout
55798  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
55799  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
55800  * @constructor
55801  * @param {Object} config Configuration options
55802  */
55803 Roo.form.FieldSet = function(config){
55804     Roo.form.FieldSet.superclass.constructor.call(this, config);
55805 };
55806
55807 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
55808     /**
55809      * @cfg {String} legend
55810      * The text to display as the legend for the FieldSet (defaults to '')
55811      */
55812     /**
55813      * @cfg {String/Object} autoCreate
55814      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
55815      */
55816
55817     // private
55818     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
55819
55820     // private
55821     onRender : function(ct, position){
55822         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
55823         if(this.legend){
55824             this.setLegend(this.legend);
55825         }
55826     },
55827
55828     // private
55829     setLegend : function(text){
55830         if(this.rendered){
55831             this.el.child('legend').update(text);
55832         }
55833     }
55834 });/*
55835  * Based on:
55836  * Ext JS Library 1.1.1
55837  * Copyright(c) 2006-2007, Ext JS, LLC.
55838  *
55839  * Originally Released Under LGPL - original licence link has changed is not relivant.
55840  *
55841  * Fork - LGPL
55842  * <script type="text/javascript">
55843  */
55844 /**
55845  * @class Roo.form.VTypes
55846  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
55847  * @static
55848  */
55849 Roo.form.VTypes = function(){
55850     // closure these in so they are only created once.
55851     var alpha = /^[a-zA-Z_]+$/;
55852     var alphanum = /^[a-zA-Z0-9_]+$/;
55853     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
55854     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
55855
55856     // All these messages and functions are configurable
55857     return {
55858         /**
55859          * The function used to validate email addresses
55860          * @param {String} value The email address
55861          */
55862         'email' : function(v){
55863             return email.test(v);
55864         },
55865         /**
55866          * The error text to display when the email validation function returns false
55867          * @type String
55868          */
55869         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
55870         /**
55871          * The keystroke filter mask to be applied on email input
55872          * @type RegExp
55873          */
55874         'emailMask' : /[a-z0-9_\.\-@]/i,
55875
55876         /**
55877          * The function used to validate URLs
55878          * @param {String} value The URL
55879          */
55880         'url' : function(v){
55881             return url.test(v);
55882         },
55883         /**
55884          * The error text to display when the url validation function returns false
55885          * @type String
55886          */
55887         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
55888         
55889         /**
55890          * The function used to validate alpha values
55891          * @param {String} value The value
55892          */
55893         'alpha' : function(v){
55894             return alpha.test(v);
55895         },
55896         /**
55897          * The error text to display when the alpha validation function returns false
55898          * @type String
55899          */
55900         'alphaText' : 'This field should only contain letters and _',
55901         /**
55902          * The keystroke filter mask to be applied on alpha input
55903          * @type RegExp
55904          */
55905         'alphaMask' : /[a-z_]/i,
55906
55907         /**
55908          * The function used to validate alphanumeric values
55909          * @param {String} value The value
55910          */
55911         'alphanum' : function(v){
55912             return alphanum.test(v);
55913         },
55914         /**
55915          * The error text to display when the alphanumeric validation function returns false
55916          * @type String
55917          */
55918         'alphanumText' : 'This field should only contain letters, numbers and _',
55919         /**
55920          * The keystroke filter mask to be applied on alphanumeric input
55921          * @type RegExp
55922          */
55923         'alphanumMask' : /[a-z0-9_]/i
55924     };
55925 }();//<script type="text/javascript">
55926
55927 /**
55928  * @class Roo.form.FCKeditor
55929  * @extends Roo.form.TextArea
55930  * Wrapper around the FCKEditor http://www.fckeditor.net
55931  * @constructor
55932  * Creates a new FCKeditor
55933  * @param {Object} config Configuration options
55934  */
55935 Roo.form.FCKeditor = function(config){
55936     Roo.form.FCKeditor.superclass.constructor.call(this, config);
55937     this.addEvents({
55938          /**
55939          * @event editorinit
55940          * Fired when the editor is initialized - you can add extra handlers here..
55941          * @param {FCKeditor} this
55942          * @param {Object} the FCK object.
55943          */
55944         editorinit : true
55945     });
55946     
55947     
55948 };
55949 Roo.form.FCKeditor.editors = { };
55950 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
55951 {
55952     //defaultAutoCreate : {
55953     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
55954     //},
55955     // private
55956     /**
55957      * @cfg {Object} fck options - see fck manual for details.
55958      */
55959     fckconfig : false,
55960     
55961     /**
55962      * @cfg {Object} fck toolbar set (Basic or Default)
55963      */
55964     toolbarSet : 'Basic',
55965     /**
55966      * @cfg {Object} fck BasePath
55967      */ 
55968     basePath : '/fckeditor/',
55969     
55970     
55971     frame : false,
55972     
55973     value : '',
55974     
55975    
55976     onRender : function(ct, position)
55977     {
55978         if(!this.el){
55979             this.defaultAutoCreate = {
55980                 tag: "textarea",
55981                 style:"width:300px;height:60px;",
55982                 autocomplete: "new-password"
55983             };
55984         }
55985         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
55986         /*
55987         if(this.grow){
55988             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
55989             if(this.preventScrollbars){
55990                 this.el.setStyle("overflow", "hidden");
55991             }
55992             this.el.setHeight(this.growMin);
55993         }
55994         */
55995         //console.log('onrender' + this.getId() );
55996         Roo.form.FCKeditor.editors[this.getId()] = this;
55997          
55998
55999         this.replaceTextarea() ;
56000         
56001     },
56002     
56003     getEditor : function() {
56004         return this.fckEditor;
56005     },
56006     /**
56007      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
56008      * @param {Mixed} value The value to set
56009      */
56010     
56011     
56012     setValue : function(value)
56013     {
56014         //console.log('setValue: ' + value);
56015         
56016         if(typeof(value) == 'undefined') { // not sure why this is happending...
56017             return;
56018         }
56019         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
56020         
56021         //if(!this.el || !this.getEditor()) {
56022         //    this.value = value;
56023             //this.setValue.defer(100,this,[value]);    
56024         //    return;
56025         //} 
56026         
56027         if(!this.getEditor()) {
56028             return;
56029         }
56030         
56031         this.getEditor().SetData(value);
56032         
56033         //
56034
56035     },
56036
56037     /**
56038      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
56039      * @return {Mixed} value The field value
56040      */
56041     getValue : function()
56042     {
56043         
56044         if (this.frame && this.frame.dom.style.display == 'none') {
56045             return Roo.form.FCKeditor.superclass.getValue.call(this);
56046         }
56047         
56048         if(!this.el || !this.getEditor()) {
56049            
56050            // this.getValue.defer(100,this); 
56051             return this.value;
56052         }
56053        
56054         
56055         var value=this.getEditor().GetData();
56056         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
56057         return Roo.form.FCKeditor.superclass.getValue.call(this);
56058         
56059
56060     },
56061
56062     /**
56063      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
56064      * @return {Mixed} value The field value
56065      */
56066     getRawValue : function()
56067     {
56068         if (this.frame && this.frame.dom.style.display == 'none') {
56069             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
56070         }
56071         
56072         if(!this.el || !this.getEditor()) {
56073             //this.getRawValue.defer(100,this); 
56074             return this.value;
56075             return;
56076         }
56077         
56078         
56079         
56080         var value=this.getEditor().GetData();
56081         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
56082         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
56083          
56084     },
56085     
56086     setSize : function(w,h) {
56087         
56088         
56089         
56090         //if (this.frame && this.frame.dom.style.display == 'none') {
56091         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
56092         //    return;
56093         //}
56094         //if(!this.el || !this.getEditor()) {
56095         //    this.setSize.defer(100,this, [w,h]); 
56096         //    return;
56097         //}
56098         
56099         
56100         
56101         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
56102         
56103         this.frame.dom.setAttribute('width', w);
56104         this.frame.dom.setAttribute('height', h);
56105         this.frame.setSize(w,h);
56106         
56107     },
56108     
56109     toggleSourceEdit : function(value) {
56110         
56111       
56112          
56113         this.el.dom.style.display = value ? '' : 'none';
56114         this.frame.dom.style.display = value ?  'none' : '';
56115         
56116     },
56117     
56118     
56119     focus: function(tag)
56120     {
56121         if (this.frame.dom.style.display == 'none') {
56122             return Roo.form.FCKeditor.superclass.focus.call(this);
56123         }
56124         if(!this.el || !this.getEditor()) {
56125             this.focus.defer(100,this, [tag]); 
56126             return;
56127         }
56128         
56129         
56130         
56131         
56132         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
56133         this.getEditor().Focus();
56134         if (tgs.length) {
56135             if (!this.getEditor().Selection.GetSelection()) {
56136                 this.focus.defer(100,this, [tag]); 
56137                 return;
56138             }
56139             
56140             
56141             var r = this.getEditor().EditorDocument.createRange();
56142             r.setStart(tgs[0],0);
56143             r.setEnd(tgs[0],0);
56144             this.getEditor().Selection.GetSelection().removeAllRanges();
56145             this.getEditor().Selection.GetSelection().addRange(r);
56146             this.getEditor().Focus();
56147         }
56148         
56149     },
56150     
56151     
56152     
56153     replaceTextarea : function()
56154     {
56155         if ( document.getElementById( this.getId() + '___Frame' ) ) {
56156             return ;
56157         }
56158         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
56159         //{
56160             // We must check the elements firstly using the Id and then the name.
56161         var oTextarea = document.getElementById( this.getId() );
56162         
56163         var colElementsByName = document.getElementsByName( this.getId() ) ;
56164          
56165         oTextarea.style.display = 'none' ;
56166
56167         if ( oTextarea.tabIndex ) {            
56168             this.TabIndex = oTextarea.tabIndex ;
56169         }
56170         
56171         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
56172         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
56173         this.frame = Roo.get(this.getId() + '___Frame')
56174     },
56175     
56176     _getConfigHtml : function()
56177     {
56178         var sConfig = '' ;
56179
56180         for ( var o in this.fckconfig ) {
56181             sConfig += sConfig.length > 0  ? '&amp;' : '';
56182             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
56183         }
56184
56185         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
56186     },
56187     
56188     
56189     _getIFrameHtml : function()
56190     {
56191         var sFile = 'fckeditor.html' ;
56192         /* no idea what this is about..
56193         try
56194         {
56195             if ( (/fcksource=true/i).test( window.top.location.search ) )
56196                 sFile = 'fckeditor.original.html' ;
56197         }
56198         catch (e) { 
56199         */
56200
56201         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
56202         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
56203         
56204         
56205         var html = '<iframe id="' + this.getId() +
56206             '___Frame" src="' + sLink +
56207             '" width="' + this.width +
56208             '" height="' + this.height + '"' +
56209             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
56210             ' frameborder="0" scrolling="no"></iframe>' ;
56211
56212         return html ;
56213     },
56214     
56215     _insertHtmlBefore : function( html, element )
56216     {
56217         if ( element.insertAdjacentHTML )       {
56218             // IE
56219             element.insertAdjacentHTML( 'beforeBegin', html ) ;
56220         } else { // Gecko
56221             var oRange = document.createRange() ;
56222             oRange.setStartBefore( element ) ;
56223             var oFragment = oRange.createContextualFragment( html );
56224             element.parentNode.insertBefore( oFragment, element ) ;
56225         }
56226     }
56227     
56228     
56229   
56230     
56231     
56232     
56233     
56234
56235 });
56236
56237 //Roo.reg('fckeditor', Roo.form.FCKeditor);
56238
56239 function FCKeditor_OnComplete(editorInstance){
56240     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
56241     f.fckEditor = editorInstance;
56242     //console.log("loaded");
56243     f.fireEvent('editorinit', f, editorInstance);
56244
56245   
56246
56247  
56248
56249
56250
56251
56252
56253
56254
56255
56256
56257
56258
56259
56260
56261
56262
56263 //<script type="text/javascript">
56264 /**
56265  * @class Roo.form.GridField
56266  * @extends Roo.form.Field
56267  * Embed a grid (or editable grid into a form)
56268  * STATUS ALPHA
56269  * 
56270  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
56271  * it needs 
56272  * xgrid.store = Roo.data.Store
56273  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
56274  * xgrid.store.reader = Roo.data.JsonReader 
56275  * 
56276  * 
56277  * @constructor
56278  * Creates a new GridField
56279  * @param {Object} config Configuration options
56280  */
56281 Roo.form.GridField = function(config){
56282     Roo.form.GridField.superclass.constructor.call(this, config);
56283      
56284 };
56285
56286 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
56287     /**
56288      * @cfg {Number} width  - used to restrict width of grid..
56289      */
56290     width : 100,
56291     /**
56292      * @cfg {Number} height - used to restrict height of grid..
56293      */
56294     height : 50,
56295      /**
56296      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
56297          * 
56298          *}
56299      */
56300     xgrid : false, 
56301     /**
56302      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56303      * {tag: "input", type: "checkbox", autocomplete: "off"})
56304      */
56305    // defaultAutoCreate : { tag: 'div' },
56306     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
56307     /**
56308      * @cfg {String} addTitle Text to include for adding a title.
56309      */
56310     addTitle : false,
56311     //
56312     onResize : function(){
56313         Roo.form.Field.superclass.onResize.apply(this, arguments);
56314     },
56315
56316     initEvents : function(){
56317         // Roo.form.Checkbox.superclass.initEvents.call(this);
56318         // has no events...
56319        
56320     },
56321
56322
56323     getResizeEl : function(){
56324         return this.wrap;
56325     },
56326
56327     getPositionEl : function(){
56328         return this.wrap;
56329     },
56330
56331     // private
56332     onRender : function(ct, position){
56333         
56334         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
56335         var style = this.style;
56336         delete this.style;
56337         
56338         Roo.form.GridField.superclass.onRender.call(this, ct, position);
56339         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
56340         this.viewEl = this.wrap.createChild({ tag: 'div' });
56341         if (style) {
56342             this.viewEl.applyStyles(style);
56343         }
56344         if (this.width) {
56345             this.viewEl.setWidth(this.width);
56346         }
56347         if (this.height) {
56348             this.viewEl.setHeight(this.height);
56349         }
56350         //if(this.inputValue !== undefined){
56351         //this.setValue(this.value);
56352         
56353         
56354         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
56355         
56356         
56357         this.grid.render();
56358         this.grid.getDataSource().on('remove', this.refreshValue, this);
56359         this.grid.getDataSource().on('update', this.refreshValue, this);
56360         this.grid.on('afteredit', this.refreshValue, this);
56361  
56362     },
56363      
56364     
56365     /**
56366      * Sets the value of the item. 
56367      * @param {String} either an object  or a string..
56368      */
56369     setValue : function(v){
56370         //this.value = v;
56371         v = v || []; // empty set..
56372         // this does not seem smart - it really only affects memoryproxy grids..
56373         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
56374             var ds = this.grid.getDataSource();
56375             // assumes a json reader..
56376             var data = {}
56377             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
56378             ds.loadData( data);
56379         }
56380         // clear selection so it does not get stale.
56381         if (this.grid.sm) { 
56382             this.grid.sm.clearSelections();
56383         }
56384         
56385         Roo.form.GridField.superclass.setValue.call(this, v);
56386         this.refreshValue();
56387         // should load data in the grid really....
56388     },
56389     
56390     // private
56391     refreshValue: function() {
56392          var val = [];
56393         this.grid.getDataSource().each(function(r) {
56394             val.push(r.data);
56395         });
56396         this.el.dom.value = Roo.encode(val);
56397     }
56398     
56399      
56400     
56401     
56402 });/*
56403  * Based on:
56404  * Ext JS Library 1.1.1
56405  * Copyright(c) 2006-2007, Ext JS, LLC.
56406  *
56407  * Originally Released Under LGPL - original licence link has changed is not relivant.
56408  *
56409  * Fork - LGPL
56410  * <script type="text/javascript">
56411  */
56412 /**
56413  * @class Roo.form.DisplayField
56414  * @extends Roo.form.Field
56415  * A generic Field to display non-editable data.
56416  * @cfg {Boolean} closable (true|false) default false
56417  * @constructor
56418  * Creates a new Display Field item.
56419  * @param {Object} config Configuration options
56420  */
56421 Roo.form.DisplayField = function(config){
56422     Roo.form.DisplayField.superclass.constructor.call(this, config);
56423     
56424     this.addEvents({
56425         /**
56426          * @event close
56427          * Fires after the click the close btn
56428              * @param {Roo.form.DisplayField} this
56429              */
56430         close : true
56431     });
56432 };
56433
56434 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
56435     inputType:      'hidden',
56436     allowBlank:     true,
56437     readOnly:         true,
56438     
56439  
56440     /**
56441      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56442      */
56443     focusClass : undefined,
56444     /**
56445      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56446      */
56447     fieldClass: 'x-form-field',
56448     
56449      /**
56450      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
56451      */
56452     valueRenderer: undefined,
56453     
56454     width: 100,
56455     /**
56456      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56457      * {tag: "input", type: "checkbox", autocomplete: "off"})
56458      */
56459      
56460  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
56461  
56462     closable : false,
56463     
56464     onResize : function(){
56465         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
56466         
56467     },
56468
56469     initEvents : function(){
56470         // Roo.form.Checkbox.superclass.initEvents.call(this);
56471         // has no events...
56472         
56473         if(this.closable){
56474             this.closeEl.on('click', this.onClose, this);
56475         }
56476        
56477     },
56478
56479
56480     getResizeEl : function(){
56481         return this.wrap;
56482     },
56483
56484     getPositionEl : function(){
56485         return this.wrap;
56486     },
56487
56488     // private
56489     onRender : function(ct, position){
56490         
56491         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
56492         //if(this.inputValue !== undefined){
56493         this.wrap = this.el.wrap();
56494         
56495         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
56496         
56497         if(this.closable){
56498             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
56499         }
56500         
56501         if (this.bodyStyle) {
56502             this.viewEl.applyStyles(this.bodyStyle);
56503         }
56504         //this.viewEl.setStyle('padding', '2px');
56505         
56506         this.setValue(this.value);
56507         
56508     },
56509 /*
56510     // private
56511     initValue : Roo.emptyFn,
56512
56513   */
56514
56515         // private
56516     onClick : function(){
56517         
56518     },
56519
56520     /**
56521      * Sets the checked state of the checkbox.
56522      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
56523      */
56524     setValue : function(v){
56525         this.value = v;
56526         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
56527         // this might be called before we have a dom element..
56528         if (!this.viewEl) {
56529             return;
56530         }
56531         this.viewEl.dom.innerHTML = html;
56532         Roo.form.DisplayField.superclass.setValue.call(this, v);
56533
56534     },
56535     
56536     onClose : function(e)
56537     {
56538         e.preventDefault();
56539         
56540         this.fireEvent('close', this);
56541     }
56542 });/*
56543  * 
56544  * Licence- LGPL
56545  * 
56546  */
56547
56548 /**
56549  * @class Roo.form.DayPicker
56550  * @extends Roo.form.Field
56551  * A Day picker show [M] [T] [W] ....
56552  * @constructor
56553  * Creates a new Day Picker
56554  * @param {Object} config Configuration options
56555  */
56556 Roo.form.DayPicker= function(config){
56557     Roo.form.DayPicker.superclass.constructor.call(this, config);
56558      
56559 };
56560
56561 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
56562     /**
56563      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56564      */
56565     focusClass : undefined,
56566     /**
56567      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56568      */
56569     fieldClass: "x-form-field",
56570    
56571     /**
56572      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56573      * {tag: "input", type: "checkbox", autocomplete: "off"})
56574      */
56575     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
56576     
56577    
56578     actionMode : 'viewEl', 
56579     //
56580     // private
56581  
56582     inputType : 'hidden',
56583     
56584      
56585     inputElement: false, // real input element?
56586     basedOn: false, // ????
56587     
56588     isFormField: true, // not sure where this is needed!!!!
56589
56590     onResize : function(){
56591         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
56592         if(!this.boxLabel){
56593             this.el.alignTo(this.wrap, 'c-c');
56594         }
56595     },
56596
56597     initEvents : function(){
56598         Roo.form.Checkbox.superclass.initEvents.call(this);
56599         this.el.on("click", this.onClick,  this);
56600         this.el.on("change", this.onClick,  this);
56601     },
56602
56603
56604     getResizeEl : function(){
56605         return this.wrap;
56606     },
56607
56608     getPositionEl : function(){
56609         return this.wrap;
56610     },
56611
56612     
56613     // private
56614     onRender : function(ct, position){
56615         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
56616        
56617         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
56618         
56619         var r1 = '<table><tr>';
56620         var r2 = '<tr class="x-form-daypick-icons">';
56621         for (var i=0; i < 7; i++) {
56622             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
56623             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
56624         }
56625         
56626         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
56627         viewEl.select('img').on('click', this.onClick, this);
56628         this.viewEl = viewEl;   
56629         
56630         
56631         // this will not work on Chrome!!!
56632         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
56633         this.el.on('propertychange', this.setFromHidden,  this);  //ie
56634         
56635         
56636           
56637
56638     },
56639
56640     // private
56641     initValue : Roo.emptyFn,
56642
56643     /**
56644      * Returns the checked state of the checkbox.
56645      * @return {Boolean} True if checked, else false
56646      */
56647     getValue : function(){
56648         return this.el.dom.value;
56649         
56650     },
56651
56652         // private
56653     onClick : function(e){ 
56654         //this.setChecked(!this.checked);
56655         Roo.get(e.target).toggleClass('x-menu-item-checked');
56656         this.refreshValue();
56657         //if(this.el.dom.checked != this.checked){
56658         //    this.setValue(this.el.dom.checked);
56659        // }
56660     },
56661     
56662     // private
56663     refreshValue : function()
56664     {
56665         var val = '';
56666         this.viewEl.select('img',true).each(function(e,i,n)  {
56667             val += e.is(".x-menu-item-checked") ? String(n) : '';
56668         });
56669         this.setValue(val, true);
56670     },
56671
56672     /**
56673      * Sets the checked state of the checkbox.
56674      * On is always based on a string comparison between inputValue and the param.
56675      * @param {Boolean/String} value - the value to set 
56676      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
56677      */
56678     setValue : function(v,suppressEvent){
56679         if (!this.el.dom) {
56680             return;
56681         }
56682         var old = this.el.dom.value ;
56683         this.el.dom.value = v;
56684         if (suppressEvent) {
56685             return ;
56686         }
56687          
56688         // update display..
56689         this.viewEl.select('img',true).each(function(e,i,n)  {
56690             
56691             var on = e.is(".x-menu-item-checked");
56692             var newv = v.indexOf(String(n)) > -1;
56693             if (on != newv) {
56694                 e.toggleClass('x-menu-item-checked');
56695             }
56696             
56697         });
56698         
56699         
56700         this.fireEvent('change', this, v, old);
56701         
56702         
56703     },
56704    
56705     // handle setting of hidden value by some other method!!?!?
56706     setFromHidden: function()
56707     {
56708         if(!this.el){
56709             return;
56710         }
56711         //console.log("SET FROM HIDDEN");
56712         //alert('setFrom hidden');
56713         this.setValue(this.el.dom.value);
56714     },
56715     
56716     onDestroy : function()
56717     {
56718         if(this.viewEl){
56719             Roo.get(this.viewEl).remove();
56720         }
56721          
56722         Roo.form.DayPicker.superclass.onDestroy.call(this);
56723     }
56724
56725 });/*
56726  * RooJS Library 1.1.1
56727  * Copyright(c) 2008-2011  Alan Knowles
56728  *
56729  * License - LGPL
56730  */
56731  
56732
56733 /**
56734  * @class Roo.form.ComboCheck
56735  * @extends Roo.form.ComboBox
56736  * A combobox for multiple select items.
56737  *
56738  * FIXME - could do with a reset button..
56739  * 
56740  * @constructor
56741  * Create a new ComboCheck
56742  * @param {Object} config Configuration options
56743  */
56744 Roo.form.ComboCheck = function(config){
56745     Roo.form.ComboCheck.superclass.constructor.call(this, config);
56746     // should verify some data...
56747     // like
56748     // hiddenName = required..
56749     // displayField = required
56750     // valudField == required
56751     var req= [ 'hiddenName', 'displayField', 'valueField' ];
56752     var _t = this;
56753     Roo.each(req, function(e) {
56754         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
56755             throw "Roo.form.ComboCheck : missing value for: " + e;
56756         }
56757     });
56758     
56759     
56760 };
56761
56762 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
56763      
56764      
56765     editable : false,
56766      
56767     selectedClass: 'x-menu-item-checked', 
56768     
56769     // private
56770     onRender : function(ct, position){
56771         var _t = this;
56772         
56773         
56774         
56775         if(!this.tpl){
56776             var cls = 'x-combo-list';
56777
56778             
56779             this.tpl =  new Roo.Template({
56780                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
56781                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
56782                    '<span>{' + this.displayField + '}</span>' +
56783                     '</div>' 
56784                 
56785             });
56786         }
56787  
56788         
56789         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
56790         this.view.singleSelect = false;
56791         this.view.multiSelect = true;
56792         this.view.toggleSelect = true;
56793         this.pageTb.add(new Roo.Toolbar.Fill(), {
56794             
56795             text: 'Done',
56796             handler: function()
56797             {
56798                 _t.collapse();
56799             }
56800         });
56801     },
56802     
56803     onViewOver : function(e, t){
56804         // do nothing...
56805         return;
56806         
56807     },
56808     
56809     onViewClick : function(doFocus,index){
56810         return;
56811         
56812     },
56813     select: function () {
56814         //Roo.log("SELECT CALLED");
56815     },
56816      
56817     selectByValue : function(xv, scrollIntoView){
56818         var ar = this.getValueArray();
56819         var sels = [];
56820         
56821         Roo.each(ar, function(v) {
56822             if(v === undefined || v === null){
56823                 return;
56824             }
56825             var r = this.findRecord(this.valueField, v);
56826             if(r){
56827                 sels.push(this.store.indexOf(r))
56828                 
56829             }
56830         },this);
56831         this.view.select(sels);
56832         return false;
56833     },
56834     
56835     
56836     
56837     onSelect : function(record, index){
56838        // Roo.log("onselect Called");
56839        // this is only called by the clear button now..
56840         this.view.clearSelections();
56841         this.setValue('[]');
56842         if (this.value != this.valueBefore) {
56843             this.fireEvent('change', this, this.value, this.valueBefore);
56844             this.valueBefore = this.value;
56845         }
56846     },
56847     getValueArray : function()
56848     {
56849         var ar = [] ;
56850         
56851         try {
56852             //Roo.log(this.value);
56853             if (typeof(this.value) == 'undefined') {
56854                 return [];
56855             }
56856             var ar = Roo.decode(this.value);
56857             return  ar instanceof Array ? ar : []; //?? valid?
56858             
56859         } catch(e) {
56860             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
56861             return [];
56862         }
56863          
56864     },
56865     expand : function ()
56866     {
56867         
56868         Roo.form.ComboCheck.superclass.expand.call(this);
56869         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
56870         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
56871         
56872
56873     },
56874     
56875     collapse : function(){
56876         Roo.form.ComboCheck.superclass.collapse.call(this);
56877         var sl = this.view.getSelectedIndexes();
56878         var st = this.store;
56879         var nv = [];
56880         var tv = [];
56881         var r;
56882         Roo.each(sl, function(i) {
56883             r = st.getAt(i);
56884             nv.push(r.get(this.valueField));
56885         },this);
56886         this.setValue(Roo.encode(nv));
56887         if (this.value != this.valueBefore) {
56888
56889             this.fireEvent('change', this, this.value, this.valueBefore);
56890             this.valueBefore = this.value;
56891         }
56892         
56893     },
56894     
56895     setValue : function(v){
56896         // Roo.log(v);
56897         this.value = v;
56898         
56899         var vals = this.getValueArray();
56900         var tv = [];
56901         Roo.each(vals, function(k) {
56902             var r = this.findRecord(this.valueField, k);
56903             if(r){
56904                 tv.push(r.data[this.displayField]);
56905             }else if(this.valueNotFoundText !== undefined){
56906                 tv.push( this.valueNotFoundText );
56907             }
56908         },this);
56909        // Roo.log(tv);
56910         
56911         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
56912         this.hiddenField.value = v;
56913         this.value = v;
56914     }
56915     
56916 });/*
56917  * Based on:
56918  * Ext JS Library 1.1.1
56919  * Copyright(c) 2006-2007, Ext JS, LLC.
56920  *
56921  * Originally Released Under LGPL - original licence link has changed is not relivant.
56922  *
56923  * Fork - LGPL
56924  * <script type="text/javascript">
56925  */
56926  
56927 /**
56928  * @class Roo.form.Signature
56929  * @extends Roo.form.Field
56930  * Signature field.  
56931  * @constructor
56932  * 
56933  * @param {Object} config Configuration options
56934  */
56935
56936 Roo.form.Signature = function(config){
56937     Roo.form.Signature.superclass.constructor.call(this, config);
56938     
56939     this.addEvents({// not in used??
56940          /**
56941          * @event confirm
56942          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
56943              * @param {Roo.form.Signature} combo This combo box
56944              */
56945         'confirm' : true,
56946         /**
56947          * @event reset
56948          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
56949              * @param {Roo.form.ComboBox} combo This combo box
56950              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
56951              */
56952         'reset' : true
56953     });
56954 };
56955
56956 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
56957     /**
56958      * @cfg {Object} labels Label to use when rendering a form.
56959      * defaults to 
56960      * labels : { 
56961      *      clear : "Clear",
56962      *      confirm : "Confirm"
56963      *  }
56964      */
56965     labels : { 
56966         clear : "Clear",
56967         confirm : "Confirm"
56968     },
56969     /**
56970      * @cfg {Number} width The signature panel width (defaults to 300)
56971      */
56972     width: 300,
56973     /**
56974      * @cfg {Number} height The signature panel height (defaults to 100)
56975      */
56976     height : 100,
56977     /**
56978      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
56979      */
56980     allowBlank : false,
56981     
56982     //private
56983     // {Object} signPanel The signature SVG panel element (defaults to {})
56984     signPanel : {},
56985     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
56986     isMouseDown : false,
56987     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
56988     isConfirmed : false,
56989     // {String} signatureTmp SVG mapping string (defaults to empty string)
56990     signatureTmp : '',
56991     
56992     
56993     defaultAutoCreate : { // modified by initCompnoent..
56994         tag: "input",
56995         type:"hidden"
56996     },
56997
56998     // private
56999     onRender : function(ct, position){
57000         
57001         Roo.form.Signature.superclass.onRender.call(this, ct, position);
57002         
57003         this.wrap = this.el.wrap({
57004             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
57005         });
57006         
57007         this.createToolbar(this);
57008         this.signPanel = this.wrap.createChild({
57009                 tag: 'div',
57010                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
57011             }, this.el
57012         );
57013             
57014         this.svgID = Roo.id();
57015         this.svgEl = this.signPanel.createChild({
57016               xmlns : 'http://www.w3.org/2000/svg',
57017               tag : 'svg',
57018               id : this.svgID + "-svg",
57019               width: this.width,
57020               height: this.height,
57021               viewBox: '0 0 '+this.width+' '+this.height,
57022               cn : [
57023                 {
57024                     tag: "rect",
57025                     id: this.svgID + "-svg-r",
57026                     width: this.width,
57027                     height: this.height,
57028                     fill: "#ffa"
57029                 },
57030                 {
57031                     tag: "line",
57032                     id: this.svgID + "-svg-l",
57033                     x1: "0", // start
57034                     y1: (this.height*0.8), // start set the line in 80% of height
57035                     x2: this.width, // end
57036                     y2: (this.height*0.8), // end set the line in 80% of height
57037                     'stroke': "#666",
57038                     'stroke-width': "1",
57039                     'stroke-dasharray': "3",
57040                     'shape-rendering': "crispEdges",
57041                     'pointer-events': "none"
57042                 },
57043                 {
57044                     tag: "path",
57045                     id: this.svgID + "-svg-p",
57046                     'stroke': "navy",
57047                     'stroke-width': "3",
57048                     'fill': "none",
57049                     'pointer-events': 'none'
57050                 }
57051               ]
57052         });
57053         this.createSVG();
57054         this.svgBox = this.svgEl.dom.getScreenCTM();
57055     },
57056     createSVG : function(){ 
57057         var svg = this.signPanel;
57058         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
57059         var t = this;
57060
57061         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
57062         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
57063         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
57064         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
57065         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
57066         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
57067         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
57068         
57069     },
57070     isTouchEvent : function(e){
57071         return e.type.match(/^touch/);
57072     },
57073     getCoords : function (e) {
57074         var pt    = this.svgEl.dom.createSVGPoint();
57075         pt.x = e.clientX; 
57076         pt.y = e.clientY;
57077         if (this.isTouchEvent(e)) {
57078             pt.x =  e.targetTouches[0].clientX;
57079             pt.y = e.targetTouches[0].clientY;
57080         }
57081         var a = this.svgEl.dom.getScreenCTM();
57082         var b = a.inverse();
57083         var mx = pt.matrixTransform(b);
57084         return mx.x + ',' + mx.y;
57085     },
57086     //mouse event headler 
57087     down : function (e) {
57088         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
57089         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
57090         
57091         this.isMouseDown = true;
57092         
57093         e.preventDefault();
57094     },
57095     move : function (e) {
57096         if (this.isMouseDown) {
57097             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
57098             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
57099         }
57100         
57101         e.preventDefault();
57102     },
57103     up : function (e) {
57104         this.isMouseDown = false;
57105         var sp = this.signatureTmp.split(' ');
57106         
57107         if(sp.length > 1){
57108             if(!sp[sp.length-2].match(/^L/)){
57109                 sp.pop();
57110                 sp.pop();
57111                 sp.push("");
57112                 this.signatureTmp = sp.join(" ");
57113             }
57114         }
57115         if(this.getValue() != this.signatureTmp){
57116             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
57117             this.isConfirmed = false;
57118         }
57119         e.preventDefault();
57120     },
57121     
57122     /**
57123      * Protected method that will not generally be called directly. It
57124      * is called when the editor creates its toolbar. Override this method if you need to
57125      * add custom toolbar buttons.
57126      * @param {HtmlEditor} editor
57127      */
57128     createToolbar : function(editor){
57129          function btn(id, toggle, handler){
57130             var xid = fid + '-'+ id ;
57131             return {
57132                 id : xid,
57133                 cmd : id,
57134                 cls : 'x-btn-icon x-edit-'+id,
57135                 enableToggle:toggle !== false,
57136                 scope: editor, // was editor...
57137                 handler:handler||editor.relayBtnCmd,
57138                 clickEvent:'mousedown',
57139                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
57140                 tabIndex:-1
57141             };
57142         }
57143         
57144         
57145         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
57146         this.tb = tb;
57147         this.tb.add(
57148            {
57149                 cls : ' x-signature-btn x-signature-'+id,
57150                 scope: editor, // was editor...
57151                 handler: this.reset,
57152                 clickEvent:'mousedown',
57153                 text: this.labels.clear
57154             },
57155             {
57156                  xtype : 'Fill',
57157                  xns: Roo.Toolbar
57158             }, 
57159             {
57160                 cls : '  x-signature-btn x-signature-'+id,
57161                 scope: editor, // was editor...
57162                 handler: this.confirmHandler,
57163                 clickEvent:'mousedown',
57164                 text: this.labels.confirm
57165             }
57166         );
57167     
57168     },
57169     //public
57170     /**
57171      * when user is clicked confirm then show this image.....
57172      * 
57173      * @return {String} Image Data URI
57174      */
57175     getImageDataURI : function(){
57176         var svg = this.svgEl.dom.parentNode.innerHTML;
57177         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
57178         return src; 
57179     },
57180     /**
57181      * 
57182      * @return {Boolean} this.isConfirmed
57183      */
57184     getConfirmed : function(){
57185         return this.isConfirmed;
57186     },
57187     /**
57188      * 
57189      * @return {Number} this.width
57190      */
57191     getWidth : function(){
57192         return this.width;
57193     },
57194     /**
57195      * 
57196      * @return {Number} this.height
57197      */
57198     getHeight : function(){
57199         return this.height;
57200     },
57201     // private
57202     getSignature : function(){
57203         return this.signatureTmp;
57204     },
57205     // private
57206     reset : function(){
57207         this.signatureTmp = '';
57208         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
57209         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
57210         this.isConfirmed = false;
57211         Roo.form.Signature.superclass.reset.call(this);
57212     },
57213     setSignature : function(s){
57214         this.signatureTmp = s;
57215         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
57216         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
57217         this.setValue(s);
57218         this.isConfirmed = false;
57219         Roo.form.Signature.superclass.reset.call(this);
57220     }, 
57221     test : function(){
57222 //        Roo.log(this.signPanel.dom.contentWindow.up())
57223     },
57224     //private
57225     setConfirmed : function(){
57226         
57227         
57228         
57229 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
57230     },
57231     // private
57232     confirmHandler : function(){
57233         if(!this.getSignature()){
57234             return;
57235         }
57236         
57237         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
57238         this.setValue(this.getSignature());
57239         this.isConfirmed = true;
57240         
57241         this.fireEvent('confirm', this);
57242     },
57243     // private
57244     // Subclasses should provide the validation implementation by overriding this
57245     validateValue : function(value){
57246         if(this.allowBlank){
57247             return true;
57248         }
57249         
57250         if(this.isConfirmed){
57251             return true;
57252         }
57253         return false;
57254     }
57255 });/*
57256  * Based on:
57257  * Ext JS Library 1.1.1
57258  * Copyright(c) 2006-2007, Ext JS, LLC.
57259  *
57260  * Originally Released Under LGPL - original licence link has changed is not relivant.
57261  *
57262  * Fork - LGPL
57263  * <script type="text/javascript">
57264  */
57265  
57266
57267 /**
57268  * @class Roo.form.ComboBox
57269  * @extends Roo.form.TriggerField
57270  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
57271  * @constructor
57272  * Create a new ComboBox.
57273  * @param {Object} config Configuration options
57274  */
57275 Roo.form.Select = function(config){
57276     Roo.form.Select.superclass.constructor.call(this, config);
57277      
57278 };
57279
57280 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
57281     /**
57282      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
57283      */
57284     /**
57285      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
57286      * rendering into an Roo.Editor, defaults to false)
57287      */
57288     /**
57289      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
57290      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
57291      */
57292     /**
57293      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
57294      */
57295     /**
57296      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
57297      * the dropdown list (defaults to undefined, with no header element)
57298      */
57299
57300      /**
57301      * @cfg {String/Roo.Template} tpl The template to use to render the output
57302      */
57303      
57304     // private
57305     defaultAutoCreate : {tag: "select"  },
57306     /**
57307      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
57308      */
57309     listWidth: undefined,
57310     /**
57311      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
57312      * mode = 'remote' or 'text' if mode = 'local')
57313      */
57314     displayField: undefined,
57315     /**
57316      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
57317      * mode = 'remote' or 'value' if mode = 'local'). 
57318      * Note: use of a valueField requires the user make a selection
57319      * in order for a value to be mapped.
57320      */
57321     valueField: undefined,
57322     
57323     
57324     /**
57325      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
57326      * field's data value (defaults to the underlying DOM element's name)
57327      */
57328     hiddenName: undefined,
57329     /**
57330      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
57331      */
57332     listClass: '',
57333     /**
57334      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
57335      */
57336     selectedClass: 'x-combo-selected',
57337     /**
57338      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
57339      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
57340      * which displays a downward arrow icon).
57341      */
57342     triggerClass : 'x-form-arrow-trigger',
57343     /**
57344      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
57345      */
57346     shadow:'sides',
57347     /**
57348      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
57349      * anchor positions (defaults to 'tl-bl')
57350      */
57351     listAlign: 'tl-bl?',
57352     /**
57353      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
57354      */
57355     maxHeight: 300,
57356     /**
57357      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
57358      * query specified by the allQuery config option (defaults to 'query')
57359      */
57360     triggerAction: 'query',
57361     /**
57362      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
57363      * (defaults to 4, does not apply if editable = false)
57364      */
57365     minChars : 4,
57366     /**
57367      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
57368      * delay (typeAheadDelay) if it matches a known value (defaults to false)
57369      */
57370     typeAhead: false,
57371     /**
57372      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
57373      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
57374      */
57375     queryDelay: 500,
57376     /**
57377      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
57378      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
57379      */
57380     pageSize: 0,
57381     /**
57382      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
57383      * when editable = true (defaults to false)
57384      */
57385     selectOnFocus:false,
57386     /**
57387      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
57388      */
57389     queryParam: 'query',
57390     /**
57391      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
57392      * when mode = 'remote' (defaults to 'Loading...')
57393      */
57394     loadingText: 'Loading...',
57395     /**
57396      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
57397      */
57398     resizable: false,
57399     /**
57400      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
57401      */
57402     handleHeight : 8,
57403     /**
57404      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
57405      * traditional select (defaults to true)
57406      */
57407     editable: true,
57408     /**
57409      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
57410      */
57411     allQuery: '',
57412     /**
57413      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
57414      */
57415     mode: 'remote',
57416     /**
57417      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
57418      * listWidth has a higher value)
57419      */
57420     minListWidth : 70,
57421     /**
57422      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
57423      * allow the user to set arbitrary text into the field (defaults to false)
57424      */
57425     forceSelection:false,
57426     /**
57427      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
57428      * if typeAhead = true (defaults to 250)
57429      */
57430     typeAheadDelay : 250,
57431     /**
57432      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
57433      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
57434      */
57435     valueNotFoundText : undefined,
57436     
57437     /**
57438      * @cfg {String} defaultValue The value displayed after loading the store.
57439      */
57440     defaultValue: '',
57441     
57442     /**
57443      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
57444      */
57445     blockFocus : false,
57446     
57447     /**
57448      * @cfg {Boolean} disableClear Disable showing of clear button.
57449      */
57450     disableClear : false,
57451     /**
57452      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
57453      */
57454     alwaysQuery : false,
57455     
57456     //private
57457     addicon : false,
57458     editicon: false,
57459     
57460     // element that contains real text value.. (when hidden is used..)
57461      
57462     // private
57463     onRender : function(ct, position){
57464         Roo.form.Field.prototype.onRender.call(this, ct, position);
57465         
57466         if(this.store){
57467             this.store.on('beforeload', this.onBeforeLoad, this);
57468             this.store.on('load', this.onLoad, this);
57469             this.store.on('loadexception', this.onLoadException, this);
57470             this.store.load({});
57471         }
57472         
57473         
57474         
57475     },
57476
57477     // private
57478     initEvents : function(){
57479         //Roo.form.ComboBox.superclass.initEvents.call(this);
57480  
57481     },
57482
57483     onDestroy : function(){
57484        
57485         if(this.store){
57486             this.store.un('beforeload', this.onBeforeLoad, this);
57487             this.store.un('load', this.onLoad, this);
57488             this.store.un('loadexception', this.onLoadException, this);
57489         }
57490         //Roo.form.ComboBox.superclass.onDestroy.call(this);
57491     },
57492
57493     // private
57494     fireKey : function(e){
57495         if(e.isNavKeyPress() && !this.list.isVisible()){
57496             this.fireEvent("specialkey", this, e);
57497         }
57498     },
57499
57500     // private
57501     onResize: function(w, h){
57502         
57503         return; 
57504     
57505         
57506     },
57507
57508     /**
57509      * Allow or prevent the user from directly editing the field text.  If false is passed,
57510      * the user will only be able to select from the items defined in the dropdown list.  This method
57511      * is the runtime equivalent of setting the 'editable' config option at config time.
57512      * @param {Boolean} value True to allow the user to directly edit the field text
57513      */
57514     setEditable : function(value){
57515          
57516     },
57517
57518     // private
57519     onBeforeLoad : function(){
57520         
57521         Roo.log("Select before load");
57522         return;
57523     
57524         this.innerList.update(this.loadingText ?
57525                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
57526         //this.restrictHeight();
57527         this.selectedIndex = -1;
57528     },
57529
57530     // private
57531     onLoad : function(){
57532
57533     
57534         var dom = this.el.dom;
57535         dom.innerHTML = '';
57536          var od = dom.ownerDocument;
57537          
57538         if (this.emptyText) {
57539             var op = od.createElement('option');
57540             op.setAttribute('value', '');
57541             op.innerHTML = String.format('{0}', this.emptyText);
57542             dom.appendChild(op);
57543         }
57544         if(this.store.getCount() > 0){
57545            
57546             var vf = this.valueField;
57547             var df = this.displayField;
57548             this.store.data.each(function(r) {
57549                 // which colmsn to use... testing - cdoe / title..
57550                 var op = od.createElement('option');
57551                 op.setAttribute('value', r.data[vf]);
57552                 op.innerHTML = String.format('{0}', r.data[df]);
57553                 dom.appendChild(op);
57554             });
57555             if (typeof(this.defaultValue != 'undefined')) {
57556                 this.setValue(this.defaultValue);
57557             }
57558             
57559              
57560         }else{
57561             //this.onEmptyResults();
57562         }
57563         //this.el.focus();
57564     },
57565     // private
57566     onLoadException : function()
57567     {
57568         dom.innerHTML = '';
57569             
57570         Roo.log("Select on load exception");
57571         return;
57572     
57573         this.collapse();
57574         Roo.log(this.store.reader.jsonData);
57575         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
57576             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
57577         }
57578         
57579         
57580     },
57581     // private
57582     onTypeAhead : function(){
57583          
57584     },
57585
57586     // private
57587     onSelect : function(record, index){
57588         Roo.log('on select?');
57589         return;
57590         if(this.fireEvent('beforeselect', this, record, index) !== false){
57591             this.setFromData(index > -1 ? record.data : false);
57592             this.collapse();
57593             this.fireEvent('select', this, record, index);
57594         }
57595     },
57596
57597     /**
57598      * Returns the currently selected field value or empty string if no value is set.
57599      * @return {String} value The selected value
57600      */
57601     getValue : function(){
57602         var dom = this.el.dom;
57603         this.value = dom.options[dom.selectedIndex].value;
57604         return this.value;
57605         
57606     },
57607
57608     /**
57609      * Clears any text/value currently set in the field
57610      */
57611     clearValue : function(){
57612         this.value = '';
57613         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
57614         
57615     },
57616
57617     /**
57618      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
57619      * will be displayed in the field.  If the value does not match the data value of an existing item,
57620      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
57621      * Otherwise the field will be blank (although the value will still be set).
57622      * @param {String} value The value to match
57623      */
57624     setValue : function(v){
57625         var d = this.el.dom;
57626         for (var i =0; i < d.options.length;i++) {
57627             if (v == d.options[i].value) {
57628                 d.selectedIndex = i;
57629                 this.value = v;
57630                 return;
57631             }
57632         }
57633         this.clearValue();
57634     },
57635     /**
57636      * @property {Object} the last set data for the element
57637      */
57638     
57639     lastData : false,
57640     /**
57641      * Sets the value of the field based on a object which is related to the record format for the store.
57642      * @param {Object} value the value to set as. or false on reset?
57643      */
57644     setFromData : function(o){
57645         Roo.log('setfrom data?');
57646          
57647         
57648         
57649     },
57650     // private
57651     reset : function(){
57652         this.clearValue();
57653     },
57654     // private
57655     findRecord : function(prop, value){
57656         
57657         return false;
57658     
57659         var record;
57660         if(this.store.getCount() > 0){
57661             this.store.each(function(r){
57662                 if(r.data[prop] == value){
57663                     record = r;
57664                     return false;
57665                 }
57666                 return true;
57667             });
57668         }
57669         return record;
57670     },
57671     
57672     getName: function()
57673     {
57674         // returns hidden if it's set..
57675         if (!this.rendered) {return ''};
57676         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
57677         
57678     },
57679      
57680
57681     
57682
57683     // private
57684     onEmptyResults : function(){
57685         Roo.log('empty results');
57686         //this.collapse();
57687     },
57688
57689     /**
57690      * Returns true if the dropdown list is expanded, else false.
57691      */
57692     isExpanded : function(){
57693         return false;
57694     },
57695
57696     /**
57697      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
57698      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57699      * @param {String} value The data value of the item to select
57700      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57701      * selected item if it is not currently in view (defaults to true)
57702      * @return {Boolean} True if the value matched an item in the list, else false
57703      */
57704     selectByValue : function(v, scrollIntoView){
57705         Roo.log('select By Value');
57706         return false;
57707     
57708         if(v !== undefined && v !== null){
57709             var r = this.findRecord(this.valueField || this.displayField, v);
57710             if(r){
57711                 this.select(this.store.indexOf(r), scrollIntoView);
57712                 return true;
57713             }
57714         }
57715         return false;
57716     },
57717
57718     /**
57719      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
57720      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57721      * @param {Number} index The zero-based index of the list item to select
57722      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57723      * selected item if it is not currently in view (defaults to true)
57724      */
57725     select : function(index, scrollIntoView){
57726         Roo.log('select ');
57727         return  ;
57728         
57729         this.selectedIndex = index;
57730         this.view.select(index);
57731         if(scrollIntoView !== false){
57732             var el = this.view.getNode(index);
57733             if(el){
57734                 this.innerList.scrollChildIntoView(el, false);
57735             }
57736         }
57737     },
57738
57739       
57740
57741     // private
57742     validateBlur : function(){
57743         
57744         return;
57745         
57746     },
57747
57748     // private
57749     initQuery : function(){
57750         this.doQuery(this.getRawValue());
57751     },
57752
57753     // private
57754     doForce : function(){
57755         if(this.el.dom.value.length > 0){
57756             this.el.dom.value =
57757                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
57758              
57759         }
57760     },
57761
57762     /**
57763      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
57764      * query allowing the query action to be canceled if needed.
57765      * @param {String} query The SQL query to execute
57766      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
57767      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
57768      * saved in the current store (defaults to false)
57769      */
57770     doQuery : function(q, forceAll){
57771         
57772         Roo.log('doQuery?');
57773         if(q === undefined || q === null){
57774             q = '';
57775         }
57776         var qe = {
57777             query: q,
57778             forceAll: forceAll,
57779             combo: this,
57780             cancel:false
57781         };
57782         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
57783             return false;
57784         }
57785         q = qe.query;
57786         forceAll = qe.forceAll;
57787         if(forceAll === true || (q.length >= this.minChars)){
57788             if(this.lastQuery != q || this.alwaysQuery){
57789                 this.lastQuery = q;
57790                 if(this.mode == 'local'){
57791                     this.selectedIndex = -1;
57792                     if(forceAll){
57793                         this.store.clearFilter();
57794                     }else{
57795                         this.store.filter(this.displayField, q);
57796                     }
57797                     this.onLoad();
57798                 }else{
57799                     this.store.baseParams[this.queryParam] = q;
57800                     this.store.load({
57801                         params: this.getParams(q)
57802                     });
57803                     this.expand();
57804                 }
57805             }else{
57806                 this.selectedIndex = -1;
57807                 this.onLoad();   
57808             }
57809         }
57810     },
57811
57812     // private
57813     getParams : function(q){
57814         var p = {};
57815         //p[this.queryParam] = q;
57816         if(this.pageSize){
57817             p.start = 0;
57818             p.limit = this.pageSize;
57819         }
57820         return p;
57821     },
57822
57823     /**
57824      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
57825      */
57826     collapse : function(){
57827         
57828     },
57829
57830     // private
57831     collapseIf : function(e){
57832         
57833     },
57834
57835     /**
57836      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
57837      */
57838     expand : function(){
57839         
57840     } ,
57841
57842     // private
57843      
57844
57845     /** 
57846     * @cfg {Boolean} grow 
57847     * @hide 
57848     */
57849     /** 
57850     * @cfg {Number} growMin 
57851     * @hide 
57852     */
57853     /** 
57854     * @cfg {Number} growMax 
57855     * @hide 
57856     */
57857     /**
57858      * @hide
57859      * @method autoSize
57860      */
57861     
57862     setWidth : function()
57863     {
57864         
57865     },
57866     getResizeEl : function(){
57867         return this.el;
57868     }
57869 });//<script type="text/javasscript">
57870  
57871
57872 /**
57873  * @class Roo.DDView
57874  * A DnD enabled version of Roo.View.
57875  * @param {Element/String} container The Element in which to create the View.
57876  * @param {String} tpl The template string used to create the markup for each element of the View
57877  * @param {Object} config The configuration properties. These include all the config options of
57878  * {@link Roo.View} plus some specific to this class.<br>
57879  * <p>
57880  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
57881  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
57882  * <p>
57883  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
57884 .x-view-drag-insert-above {
57885         border-top:1px dotted #3366cc;
57886 }
57887 .x-view-drag-insert-below {
57888         border-bottom:1px dotted #3366cc;
57889 }
57890 </code></pre>
57891  * 
57892  */
57893  
57894 Roo.DDView = function(container, tpl, config) {
57895     Roo.DDView.superclass.constructor.apply(this, arguments);
57896     this.getEl().setStyle("outline", "0px none");
57897     this.getEl().unselectable();
57898     if (this.dragGroup) {
57899         this.setDraggable(this.dragGroup.split(","));
57900     }
57901     if (this.dropGroup) {
57902         this.setDroppable(this.dropGroup.split(","));
57903     }
57904     if (this.deletable) {
57905         this.setDeletable();
57906     }
57907     this.isDirtyFlag = false;
57908         this.addEvents({
57909                 "drop" : true
57910         });
57911 };
57912
57913 Roo.extend(Roo.DDView, Roo.View, {
57914 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
57915 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
57916 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
57917 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
57918
57919         isFormField: true,
57920
57921         reset: Roo.emptyFn,
57922         
57923         clearInvalid: Roo.form.Field.prototype.clearInvalid,
57924
57925         validate: function() {
57926                 return true;
57927         },
57928         
57929         destroy: function() {
57930                 this.purgeListeners();
57931                 this.getEl.removeAllListeners();
57932                 this.getEl().remove();
57933                 if (this.dragZone) {
57934                         if (this.dragZone.destroy) {
57935                                 this.dragZone.destroy();
57936                         }
57937                 }
57938                 if (this.dropZone) {
57939                         if (this.dropZone.destroy) {
57940                                 this.dropZone.destroy();
57941                         }
57942                 }
57943         },
57944
57945 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
57946         getName: function() {
57947                 return this.name;
57948         },
57949
57950 /**     Loads the View from a JSON string representing the Records to put into the Store. */
57951         setValue: function(v) {
57952                 if (!this.store) {
57953                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
57954                 }
57955                 var data = {};
57956                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
57957                 this.store.proxy = new Roo.data.MemoryProxy(data);
57958                 this.store.load();
57959         },
57960
57961 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
57962         getValue: function() {
57963                 var result = '(';
57964                 this.store.each(function(rec) {
57965                         result += rec.id + ',';
57966                 });
57967                 return result.substr(0, result.length - 1) + ')';
57968         },
57969         
57970         getIds: function() {
57971                 var i = 0, result = new Array(this.store.getCount());
57972                 this.store.each(function(rec) {
57973                         result[i++] = rec.id;
57974                 });
57975                 return result;
57976         },
57977         
57978         isDirty: function() {
57979                 return this.isDirtyFlag;
57980         },
57981
57982 /**
57983  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
57984  *      whole Element becomes the target, and this causes the drop gesture to append.
57985  */
57986     getTargetFromEvent : function(e) {
57987                 var target = e.getTarget();
57988                 while ((target !== null) && (target.parentNode != this.el.dom)) {
57989                 target = target.parentNode;
57990                 }
57991                 if (!target) {
57992                         target = this.el.dom.lastChild || this.el.dom;
57993                 }
57994                 return target;
57995     },
57996
57997 /**
57998  *      Create the drag data which consists of an object which has the property "ddel" as
57999  *      the drag proxy element. 
58000  */
58001     getDragData : function(e) {
58002         var target = this.findItemFromChild(e.getTarget());
58003                 if(target) {
58004                         this.handleSelection(e);
58005                         var selNodes = this.getSelectedNodes();
58006             var dragData = {
58007                 source: this,
58008                 copy: this.copy || (this.allowCopy && e.ctrlKey),
58009                 nodes: selNodes,
58010                 records: []
58011                         };
58012                         var selectedIndices = this.getSelectedIndexes();
58013                         for (var i = 0; i < selectedIndices.length; i++) {
58014                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
58015                         }
58016                         if (selNodes.length == 1) {
58017                                 dragData.ddel = target.cloneNode(true); // the div element
58018                         } else {
58019                                 var div = document.createElement('div'); // create the multi element drag "ghost"
58020                                 div.className = 'multi-proxy';
58021                                 for (var i = 0, len = selNodes.length; i < len; i++) {
58022                                         div.appendChild(selNodes[i].cloneNode(true));
58023                                 }
58024                                 dragData.ddel = div;
58025                         }
58026             //console.log(dragData)
58027             //console.log(dragData.ddel.innerHTML)
58028                         return dragData;
58029                 }
58030         //console.log('nodragData')
58031                 return false;
58032     },
58033     
58034 /**     Specify to which ddGroup items in this DDView may be dragged. */
58035     setDraggable: function(ddGroup) {
58036         if (ddGroup instanceof Array) {
58037                 Roo.each(ddGroup, this.setDraggable, this);
58038                 return;
58039         }
58040         if (this.dragZone) {
58041                 this.dragZone.addToGroup(ddGroup);
58042         } else {
58043                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
58044                                 containerScroll: true,
58045                                 ddGroup: ddGroup 
58046
58047                         });
58048 //                      Draggability implies selection. DragZone's mousedown selects the element.
58049                         if (!this.multiSelect) { this.singleSelect = true; }
58050
58051 //                      Wire the DragZone's handlers up to methods in *this*
58052                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
58053                 }
58054     },
58055
58056 /**     Specify from which ddGroup this DDView accepts drops. */
58057     setDroppable: function(ddGroup) {
58058         if (ddGroup instanceof Array) {
58059                 Roo.each(ddGroup, this.setDroppable, this);
58060                 return;
58061         }
58062         if (this.dropZone) {
58063                 this.dropZone.addToGroup(ddGroup);
58064         } else {
58065                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
58066                                 containerScroll: true,
58067                                 ddGroup: ddGroup
58068                         });
58069
58070 //                      Wire the DropZone's handlers up to methods in *this*
58071                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
58072                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
58073                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
58074                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
58075                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
58076                 }
58077     },
58078
58079 /**     Decide whether to drop above or below a View node. */
58080     getDropPoint : function(e, n, dd){
58081         if (n == this.el.dom) { return "above"; }
58082                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
58083                 var c = t + (b - t) / 2;
58084                 var y = Roo.lib.Event.getPageY(e);
58085                 if(y <= c) {
58086                         return "above";
58087                 }else{
58088                         return "below";
58089                 }
58090     },
58091
58092     onNodeEnter : function(n, dd, e, data){
58093                 return false;
58094     },
58095     
58096     onNodeOver : function(n, dd, e, data){
58097                 var pt = this.getDropPoint(e, n, dd);
58098                 // set the insert point style on the target node
58099                 var dragElClass = this.dropNotAllowed;
58100                 if (pt) {
58101                         var targetElClass;
58102                         if (pt == "above"){
58103                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
58104                                 targetElClass = "x-view-drag-insert-above";
58105                         } else {
58106                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
58107                                 targetElClass = "x-view-drag-insert-below";
58108                         }
58109                         if (this.lastInsertClass != targetElClass){
58110                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
58111                                 this.lastInsertClass = targetElClass;
58112                         }
58113                 }
58114                 return dragElClass;
58115         },
58116
58117     onNodeOut : function(n, dd, e, data){
58118                 this.removeDropIndicators(n);
58119     },
58120
58121     onNodeDrop : function(n, dd, e, data){
58122         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
58123                 return false;
58124         }
58125         var pt = this.getDropPoint(e, n, dd);
58126                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
58127                 if (pt == "below") { insertAt++; }
58128                 for (var i = 0; i < data.records.length; i++) {
58129                         var r = data.records[i];
58130                         var dup = this.store.getById(r.id);
58131                         if (dup && (dd != this.dragZone)) {
58132                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
58133                         } else {
58134                                 if (data.copy) {
58135                                         this.store.insert(insertAt++, r.copy());
58136                                 } else {
58137                                         data.source.isDirtyFlag = true;
58138                                         r.store.remove(r);
58139                                         this.store.insert(insertAt++, r);
58140                                 }
58141                                 this.isDirtyFlag = true;
58142                         }
58143                 }
58144                 this.dragZone.cachedTarget = null;
58145                 return true;
58146     },
58147
58148     removeDropIndicators : function(n){
58149                 if(n){
58150                         Roo.fly(n).removeClass([
58151                                 "x-view-drag-insert-above",
58152                                 "x-view-drag-insert-below"]);
58153                         this.lastInsertClass = "_noclass";
58154                 }
58155     },
58156
58157 /**
58158  *      Utility method. Add a delete option to the DDView's context menu.
58159  *      @param {String} imageUrl The URL of the "delete" icon image.
58160  */
58161         setDeletable: function(imageUrl) {
58162                 if (!this.singleSelect && !this.multiSelect) {
58163                         this.singleSelect = true;
58164                 }
58165                 var c = this.getContextMenu();
58166                 this.contextMenu.on("itemclick", function(item) {
58167                         switch (item.id) {
58168                                 case "delete":
58169                                         this.remove(this.getSelectedIndexes());
58170                                         break;
58171                         }
58172                 }, this);
58173                 this.contextMenu.add({
58174                         icon: imageUrl,
58175                         id: "delete",
58176                         text: 'Delete'
58177                 });
58178         },
58179         
58180 /**     Return the context menu for this DDView. */
58181         getContextMenu: function() {
58182                 if (!this.contextMenu) {
58183 //                      Create the View's context menu
58184                         this.contextMenu = new Roo.menu.Menu({
58185                                 id: this.id + "-contextmenu"
58186                         });
58187                         this.el.on("contextmenu", this.showContextMenu, this);
58188                 }
58189                 return this.contextMenu;
58190         },
58191         
58192         disableContextMenu: function() {
58193                 if (this.contextMenu) {
58194                         this.el.un("contextmenu", this.showContextMenu, this);
58195                 }
58196         },
58197
58198         showContextMenu: function(e, item) {
58199         item = this.findItemFromChild(e.getTarget());
58200                 if (item) {
58201                         e.stopEvent();
58202                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
58203                         this.contextMenu.showAt(e.getXY());
58204             }
58205     },
58206
58207 /**
58208  *      Remove {@link Roo.data.Record}s at the specified indices.
58209  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
58210  */
58211     remove: function(selectedIndices) {
58212                 selectedIndices = [].concat(selectedIndices);
58213                 for (var i = 0; i < selectedIndices.length; i++) {
58214                         var rec = this.store.getAt(selectedIndices[i]);
58215                         this.store.remove(rec);
58216                 }
58217     },
58218
58219 /**
58220  *      Double click fires the event, but also, if this is draggable, and there is only one other
58221  *      related DropZone, it transfers the selected node.
58222  */
58223     onDblClick : function(e){
58224         var item = this.findItemFromChild(e.getTarget());
58225         if(item){
58226             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
58227                 return false;
58228             }
58229             if (this.dragGroup) {
58230                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
58231                     while (targets.indexOf(this.dropZone) > -1) {
58232                             targets.remove(this.dropZone);
58233                                 }
58234                     if (targets.length == 1) {
58235                                         this.dragZone.cachedTarget = null;
58236                         var el = Roo.get(targets[0].getEl());
58237                         var box = el.getBox(true);
58238                         targets[0].onNodeDrop(el.dom, {
58239                                 target: el.dom,
58240                                 xy: [box.x, box.y + box.height - 1]
58241                         }, null, this.getDragData(e));
58242                     }
58243                 }
58244         }
58245     },
58246     
58247     handleSelection: function(e) {
58248                 this.dragZone.cachedTarget = null;
58249         var item = this.findItemFromChild(e.getTarget());
58250         if (!item) {
58251                 this.clearSelections(true);
58252                 return;
58253         }
58254                 if (item && (this.multiSelect || this.singleSelect)){
58255                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
58256                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
58257                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
58258                                 this.unselect(item);
58259                         } else {
58260                                 this.select(item, this.multiSelect && e.ctrlKey);
58261                                 this.lastSelection = item;
58262                         }
58263                 }
58264     },
58265
58266     onItemClick : function(item, index, e){
58267                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
58268                         return false;
58269                 }
58270                 return true;
58271     },
58272
58273     unselect : function(nodeInfo, suppressEvent){
58274                 var node = this.getNode(nodeInfo);
58275                 if(node && this.isSelected(node)){
58276                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
58277                                 Roo.fly(node).removeClass(this.selectedClass);
58278                                 this.selections.remove(node);
58279                                 if(!suppressEvent){
58280                                         this.fireEvent("selectionchange", this, this.selections);
58281                                 }
58282                         }
58283                 }
58284     }
58285 });
58286 /*
58287  * Based on:
58288  * Ext JS Library 1.1.1
58289  * Copyright(c) 2006-2007, Ext JS, LLC.
58290  *
58291  * Originally Released Under LGPL - original licence link has changed is not relivant.
58292  *
58293  * Fork - LGPL
58294  * <script type="text/javascript">
58295  */
58296  
58297 /**
58298  * @class Roo.LayoutManager
58299  * @extends Roo.util.Observable
58300  * Base class for layout managers.
58301  */
58302 Roo.LayoutManager = function(container, config){
58303     Roo.LayoutManager.superclass.constructor.call(this);
58304     this.el = Roo.get(container);
58305     // ie scrollbar fix
58306     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
58307         document.body.scroll = "no";
58308     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
58309         this.el.position('relative');
58310     }
58311     this.id = this.el.id;
58312     this.el.addClass("x-layout-container");
58313     /** false to disable window resize monitoring @type Boolean */
58314     this.monitorWindowResize = true;
58315     this.regions = {};
58316     this.addEvents({
58317         /**
58318          * @event layout
58319          * Fires when a layout is performed. 
58320          * @param {Roo.LayoutManager} this
58321          */
58322         "layout" : true,
58323         /**
58324          * @event regionresized
58325          * Fires when the user resizes a region. 
58326          * @param {Roo.LayoutRegion} region The resized region
58327          * @param {Number} newSize The new size (width for east/west, height for north/south)
58328          */
58329         "regionresized" : true,
58330         /**
58331          * @event regioncollapsed
58332          * Fires when a region is collapsed. 
58333          * @param {Roo.LayoutRegion} region The collapsed region
58334          */
58335         "regioncollapsed" : true,
58336         /**
58337          * @event regionexpanded
58338          * Fires when a region is expanded.  
58339          * @param {Roo.LayoutRegion} region The expanded region
58340          */
58341         "regionexpanded" : true
58342     });
58343     this.updating = false;
58344     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
58345 };
58346
58347 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
58348     /**
58349      * Returns true if this layout is currently being updated
58350      * @return {Boolean}
58351      */
58352     isUpdating : function(){
58353         return this.updating; 
58354     },
58355     
58356     /**
58357      * Suspend the LayoutManager from doing auto-layouts while
58358      * making multiple add or remove calls
58359      */
58360     beginUpdate : function(){
58361         this.updating = true;    
58362     },
58363     
58364     /**
58365      * Restore auto-layouts and optionally disable the manager from performing a layout
58366      * @param {Boolean} noLayout true to disable a layout update 
58367      */
58368     endUpdate : function(noLayout){
58369         this.updating = false;
58370         if(!noLayout){
58371             this.layout();
58372         }    
58373     },
58374     
58375     layout: function(){
58376         
58377     },
58378     
58379     onRegionResized : function(region, newSize){
58380         this.fireEvent("regionresized", region, newSize);
58381         this.layout();
58382     },
58383     
58384     onRegionCollapsed : function(region){
58385         this.fireEvent("regioncollapsed", region);
58386     },
58387     
58388     onRegionExpanded : function(region){
58389         this.fireEvent("regionexpanded", region);
58390     },
58391         
58392     /**
58393      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
58394      * performs box-model adjustments.
58395      * @return {Object} The size as an object {width: (the width), height: (the height)}
58396      */
58397     getViewSize : function(){
58398         var size;
58399         if(this.el.dom != document.body){
58400             size = this.el.getSize();
58401         }else{
58402             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
58403         }
58404         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
58405         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
58406         return size;
58407     },
58408     
58409     /**
58410      * Returns the Element this layout is bound to.
58411      * @return {Roo.Element}
58412      */
58413     getEl : function(){
58414         return this.el;
58415     },
58416     
58417     /**
58418      * Returns the specified region.
58419      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
58420      * @return {Roo.LayoutRegion}
58421      */
58422     getRegion : function(target){
58423         return this.regions[target.toLowerCase()];
58424     },
58425     
58426     onWindowResize : function(){
58427         if(this.monitorWindowResize){
58428             this.layout();
58429         }
58430     }
58431 });/*
58432  * Based on:
58433  * Ext JS Library 1.1.1
58434  * Copyright(c) 2006-2007, Ext JS, LLC.
58435  *
58436  * Originally Released Under LGPL - original licence link has changed is not relivant.
58437  *
58438  * Fork - LGPL
58439  * <script type="text/javascript">
58440  */
58441 /**
58442  * @class Roo.BorderLayout
58443  * @extends Roo.LayoutManager
58444  * @children Roo.ContentPanel
58445  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
58446  * please see: <br><br>
58447  * <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>
58448  * <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>
58449  * Example:
58450  <pre><code>
58451  var layout = new Roo.BorderLayout(document.body, {
58452     north: {
58453         initialSize: 25,
58454         titlebar: false
58455     },
58456     west: {
58457         split:true,
58458         initialSize: 200,
58459         minSize: 175,
58460         maxSize: 400,
58461         titlebar: true,
58462         collapsible: true
58463     },
58464     east: {
58465         split:true,
58466         initialSize: 202,
58467         minSize: 175,
58468         maxSize: 400,
58469         titlebar: true,
58470         collapsible: true
58471     },
58472     south: {
58473         split:true,
58474         initialSize: 100,
58475         minSize: 100,
58476         maxSize: 200,
58477         titlebar: true,
58478         collapsible: true
58479     },
58480     center: {
58481         titlebar: true,
58482         autoScroll:true,
58483         resizeTabs: true,
58484         minTabWidth: 50,
58485         preferredTabWidth: 150
58486     }
58487 });
58488
58489 // shorthand
58490 var CP = Roo.ContentPanel;
58491
58492 layout.beginUpdate();
58493 layout.add("north", new CP("north", "North"));
58494 layout.add("south", new CP("south", {title: "South", closable: true}));
58495 layout.add("west", new CP("west", {title: "West"}));
58496 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
58497 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
58498 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
58499 layout.getRegion("center").showPanel("center1");
58500 layout.endUpdate();
58501 </code></pre>
58502
58503 <b>The container the layout is rendered into can be either the body element or any other element.
58504 If it is not the body element, the container needs to either be an absolute positioned element,
58505 or you will need to add "position:relative" to the css of the container.  You will also need to specify
58506 the container size if it is not the body element.</b>
58507
58508 * @constructor
58509 * Create a new BorderLayout
58510 * @param {String/HTMLElement/Element} container The container this layout is bound to
58511 * @param {Object} config Configuration options
58512  */
58513 Roo.BorderLayout = function(container, config){
58514     config = config || {};
58515     Roo.BorderLayout.superclass.constructor.call(this, container, config);
58516     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
58517     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
58518         var target = this.factory.validRegions[i];
58519         if(config[target]){
58520             this.addRegion(target, config[target]);
58521         }
58522     }
58523 };
58524
58525 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
58526         
58527         /**
58528          * @cfg {Roo.LayoutRegion} east
58529          */
58530         /**
58531          * @cfg {Roo.LayoutRegion} west
58532          */
58533         /**
58534          * @cfg {Roo.LayoutRegion} north
58535          */
58536         /**
58537          * @cfg {Roo.LayoutRegion} south
58538          */
58539         /**
58540          * @cfg {Roo.LayoutRegion} center
58541          */
58542     /**
58543      * Creates and adds a new region if it doesn't already exist.
58544      * @param {String} target The target region key (north, south, east, west or center).
58545      * @param {Object} config The regions config object
58546      * @return {BorderLayoutRegion} The new region
58547      */
58548     addRegion : function(target, config){
58549         if(!this.regions[target]){
58550             var r = this.factory.create(target, this, config);
58551             this.bindRegion(target, r);
58552         }
58553         return this.regions[target];
58554     },
58555
58556     // private (kinda)
58557     bindRegion : function(name, r){
58558         this.regions[name] = r;
58559         r.on("visibilitychange", this.layout, this);
58560         r.on("paneladded", this.layout, this);
58561         r.on("panelremoved", this.layout, this);
58562         r.on("invalidated", this.layout, this);
58563         r.on("resized", this.onRegionResized, this);
58564         r.on("collapsed", this.onRegionCollapsed, this);
58565         r.on("expanded", this.onRegionExpanded, this);
58566     },
58567
58568     /**
58569      * Performs a layout update.
58570      */
58571     layout : function(){
58572         if(this.updating) {
58573             return;
58574         }
58575         var size = this.getViewSize();
58576         var w = size.width;
58577         var h = size.height;
58578         var centerW = w;
58579         var centerH = h;
58580         var centerY = 0;
58581         var centerX = 0;
58582         //var x = 0, y = 0;
58583
58584         var rs = this.regions;
58585         var north = rs["north"];
58586         var south = rs["south"]; 
58587         var west = rs["west"];
58588         var east = rs["east"];
58589         var center = rs["center"];
58590         //if(this.hideOnLayout){ // not supported anymore
58591             //c.el.setStyle("display", "none");
58592         //}
58593         if(north && north.isVisible()){
58594             var b = north.getBox();
58595             var m = north.getMargins();
58596             b.width = w - (m.left+m.right);
58597             b.x = m.left;
58598             b.y = m.top;
58599             centerY = b.height + b.y + m.bottom;
58600             centerH -= centerY;
58601             north.updateBox(this.safeBox(b));
58602         }
58603         if(south && south.isVisible()){
58604             var b = south.getBox();
58605             var m = south.getMargins();
58606             b.width = w - (m.left+m.right);
58607             b.x = m.left;
58608             var totalHeight = (b.height + m.top + m.bottom);
58609             b.y = h - totalHeight + m.top;
58610             centerH -= totalHeight;
58611             south.updateBox(this.safeBox(b));
58612         }
58613         if(west && west.isVisible()){
58614             var b = west.getBox();
58615             var m = west.getMargins();
58616             b.height = centerH - (m.top+m.bottom);
58617             b.x = m.left;
58618             b.y = centerY + m.top;
58619             var totalWidth = (b.width + m.left + m.right);
58620             centerX += totalWidth;
58621             centerW -= totalWidth;
58622             west.updateBox(this.safeBox(b));
58623         }
58624         if(east && east.isVisible()){
58625             var b = east.getBox();
58626             var m = east.getMargins();
58627             b.height = centerH - (m.top+m.bottom);
58628             var totalWidth = (b.width + m.left + m.right);
58629             b.x = w - totalWidth + m.left;
58630             b.y = centerY + m.top;
58631             centerW -= totalWidth;
58632             east.updateBox(this.safeBox(b));
58633         }
58634         if(center){
58635             var m = center.getMargins();
58636             var centerBox = {
58637                 x: centerX + m.left,
58638                 y: centerY + m.top,
58639                 width: centerW - (m.left+m.right),
58640                 height: centerH - (m.top+m.bottom)
58641             };
58642             //if(this.hideOnLayout){
58643                 //center.el.setStyle("display", "block");
58644             //}
58645             center.updateBox(this.safeBox(centerBox));
58646         }
58647         this.el.repaint();
58648         this.fireEvent("layout", this);
58649     },
58650
58651     // private
58652     safeBox : function(box){
58653         box.width = Math.max(0, box.width);
58654         box.height = Math.max(0, box.height);
58655         return box;
58656     },
58657
58658     /**
58659      * Adds a ContentPanel (or subclass) to this layout.
58660      * @param {String} target The target region key (north, south, east, west or center).
58661      * @param {Roo.ContentPanel} panel The panel to add
58662      * @return {Roo.ContentPanel} The added panel
58663      */
58664     add : function(target, panel){
58665          
58666         target = target.toLowerCase();
58667         return this.regions[target].add(panel);
58668     },
58669
58670     /**
58671      * Remove a ContentPanel (or subclass) to this layout.
58672      * @param {String} target The target region key (north, south, east, west or center).
58673      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
58674      * @return {Roo.ContentPanel} The removed panel
58675      */
58676     remove : function(target, panel){
58677         target = target.toLowerCase();
58678         return this.regions[target].remove(panel);
58679     },
58680
58681     /**
58682      * Searches all regions for a panel with the specified id
58683      * @param {String} panelId
58684      * @return {Roo.ContentPanel} The panel or null if it wasn't found
58685      */
58686     findPanel : function(panelId){
58687         var rs = this.regions;
58688         for(var target in rs){
58689             if(typeof rs[target] != "function"){
58690                 var p = rs[target].getPanel(panelId);
58691                 if(p){
58692                     return p;
58693                 }
58694             }
58695         }
58696         return null;
58697     },
58698
58699     /**
58700      * Searches all regions for a panel with the specified id and activates (shows) it.
58701      * @param {String/ContentPanel} panelId The panels id or the panel itself
58702      * @return {Roo.ContentPanel} The shown panel or null
58703      */
58704     showPanel : function(panelId) {
58705       var rs = this.regions;
58706       for(var target in rs){
58707          var r = rs[target];
58708          if(typeof r != "function"){
58709             if(r.hasPanel(panelId)){
58710                return r.showPanel(panelId);
58711             }
58712          }
58713       }
58714       return null;
58715    },
58716
58717    /**
58718      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
58719      * @param {Roo.state.Provider} provider (optional) An alternate state provider
58720      */
58721     restoreState : function(provider){
58722         if(!provider){
58723             provider = Roo.state.Manager;
58724         }
58725         var sm = new Roo.LayoutStateManager();
58726         sm.init(this, provider);
58727     },
58728
58729     /**
58730      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
58731      * object should contain properties for each region to add ContentPanels to, and each property's value should be
58732      * a valid ContentPanel config object.  Example:
58733      * <pre><code>
58734 // Create the main layout
58735 var layout = new Roo.BorderLayout('main-ct', {
58736     west: {
58737         split:true,
58738         minSize: 175,
58739         titlebar: true
58740     },
58741     center: {
58742         title:'Components'
58743     }
58744 }, 'main-ct');
58745
58746 // Create and add multiple ContentPanels at once via configs
58747 layout.batchAdd({
58748    west: {
58749        id: 'source-files',
58750        autoCreate:true,
58751        title:'Ext Source Files',
58752        autoScroll:true,
58753        fitToFrame:true
58754    },
58755    center : {
58756        el: cview,
58757        autoScroll:true,
58758        fitToFrame:true,
58759        toolbar: tb,
58760        resizeEl:'cbody'
58761    }
58762 });
58763 </code></pre>
58764      * @param {Object} regions An object containing ContentPanel configs by region name
58765      */
58766     batchAdd : function(regions){
58767         this.beginUpdate();
58768         for(var rname in regions){
58769             var lr = this.regions[rname];
58770             if(lr){
58771                 this.addTypedPanels(lr, regions[rname]);
58772             }
58773         }
58774         this.endUpdate();
58775     },
58776
58777     // private
58778     addTypedPanels : function(lr, ps){
58779         if(typeof ps == 'string'){
58780             lr.add(new Roo.ContentPanel(ps));
58781         }
58782         else if(ps instanceof Array){
58783             for(var i =0, len = ps.length; i < len; i++){
58784                 this.addTypedPanels(lr, ps[i]);
58785             }
58786         }
58787         else if(!ps.events){ // raw config?
58788             var el = ps.el;
58789             delete ps.el; // prevent conflict
58790             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
58791         }
58792         else {  // panel object assumed!
58793             lr.add(ps);
58794         }
58795     },
58796     /**
58797      * Adds a xtype elements to the layout.
58798      * <pre><code>
58799
58800 layout.addxtype({
58801        xtype : 'ContentPanel',
58802        region: 'west',
58803        items: [ .... ]
58804    }
58805 );
58806
58807 layout.addxtype({
58808         xtype : 'NestedLayoutPanel',
58809         region: 'west',
58810         layout: {
58811            center: { },
58812            west: { }   
58813         },
58814         items : [ ... list of content panels or nested layout panels.. ]
58815    }
58816 );
58817 </code></pre>
58818      * @param {Object} cfg Xtype definition of item to add.
58819      */
58820     addxtype : function(cfg)
58821     {
58822         // basically accepts a pannel...
58823         // can accept a layout region..!?!?
58824         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
58825         
58826         if (!cfg.xtype.match(/Panel$/)) {
58827             return false;
58828         }
58829         var ret = false;
58830         
58831         if (typeof(cfg.region) == 'undefined') {
58832             Roo.log("Failed to add Panel, region was not set");
58833             Roo.log(cfg);
58834             return false;
58835         }
58836         var region = cfg.region;
58837         delete cfg.region;
58838         
58839           
58840         var xitems = [];
58841         if (cfg.items) {
58842             xitems = cfg.items;
58843             delete cfg.items;
58844         }
58845         var nb = false;
58846         
58847         switch(cfg.xtype) 
58848         {
58849             case 'ContentPanel':  // ContentPanel (el, cfg)
58850             case 'ScrollPanel':  // ContentPanel (el, cfg)
58851             case 'ViewPanel': 
58852                 if(cfg.autoCreate) {
58853                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58854                 } else {
58855                     var el = this.el.createChild();
58856                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
58857                 }
58858                 
58859                 this.add(region, ret);
58860                 break;
58861             
58862             
58863             case 'TreePanel': // our new panel!
58864                 cfg.el = this.el.createChild();
58865                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58866                 this.add(region, ret);
58867                 break;
58868             
58869             case 'NestedLayoutPanel': 
58870                 // create a new Layout (which is  a Border Layout...
58871                 var el = this.el.createChild();
58872                 var clayout = cfg.layout;
58873                 delete cfg.layout;
58874                 clayout.items   = clayout.items  || [];
58875                 // replace this exitems with the clayout ones..
58876                 xitems = clayout.items;
58877                  
58878                 
58879                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
58880                     cfg.background = false;
58881                 }
58882                 var layout = new Roo.BorderLayout(el, clayout);
58883                 
58884                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
58885                 //console.log('adding nested layout panel '  + cfg.toSource());
58886                 this.add(region, ret);
58887                 nb = {}; /// find first...
58888                 break;
58889                 
58890             case 'GridPanel': 
58891             
58892                 // needs grid and region
58893                 
58894                 //var el = this.getRegion(region).el.createChild();
58895                 var el = this.el.createChild();
58896                 // create the grid first...
58897                 
58898                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
58899                 delete cfg.grid;
58900                 if (region == 'center' && this.active ) {
58901                     cfg.background = false;
58902                 }
58903                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
58904                 
58905                 this.add(region, ret);
58906                 if (cfg.background) {
58907                     ret.on('activate', function(gp) {
58908                         if (!gp.grid.rendered) {
58909                             gp.grid.render();
58910                         }
58911                     });
58912                 } else {
58913                     grid.render();
58914                 }
58915                 break;
58916            
58917            
58918            
58919                 
58920                 
58921                 
58922             default:
58923                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
58924                     
58925                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58926                     this.add(region, ret);
58927                 } else {
58928                 
58929                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
58930                     return null;
58931                 }
58932                 
58933              // GridPanel (grid, cfg)
58934             
58935         }
58936         this.beginUpdate();
58937         // add children..
58938         var region = '';
58939         var abn = {};
58940         Roo.each(xitems, function(i)  {
58941             region = nb && i.region ? i.region : false;
58942             
58943             var add = ret.addxtype(i);
58944            
58945             if (region) {
58946                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
58947                 if (!i.background) {
58948                     abn[region] = nb[region] ;
58949                 }
58950             }
58951             
58952         });
58953         this.endUpdate();
58954
58955         // make the last non-background panel active..
58956         //if (nb) { Roo.log(abn); }
58957         if (nb) {
58958             
58959             for(var r in abn) {
58960                 region = this.getRegion(r);
58961                 if (region) {
58962                     // tried using nb[r], but it does not work..
58963                      
58964                     region.showPanel(abn[r]);
58965                    
58966                 }
58967             }
58968         }
58969         return ret;
58970         
58971     }
58972 });
58973
58974 /**
58975  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
58976  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
58977  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
58978  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
58979  * <pre><code>
58980 // shorthand
58981 var CP = Roo.ContentPanel;
58982
58983 var layout = Roo.BorderLayout.create({
58984     north: {
58985         initialSize: 25,
58986         titlebar: false,
58987         panels: [new CP("north", "North")]
58988     },
58989     west: {
58990         split:true,
58991         initialSize: 200,
58992         minSize: 175,
58993         maxSize: 400,
58994         titlebar: true,
58995         collapsible: true,
58996         panels: [new CP("west", {title: "West"})]
58997     },
58998     east: {
58999         split:true,
59000         initialSize: 202,
59001         minSize: 175,
59002         maxSize: 400,
59003         titlebar: true,
59004         collapsible: true,
59005         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
59006     },
59007     south: {
59008         split:true,
59009         initialSize: 100,
59010         minSize: 100,
59011         maxSize: 200,
59012         titlebar: true,
59013         collapsible: true,
59014         panels: [new CP("south", {title: "South", closable: true})]
59015     },
59016     center: {
59017         titlebar: true,
59018         autoScroll:true,
59019         resizeTabs: true,
59020         minTabWidth: 50,
59021         preferredTabWidth: 150,
59022         panels: [
59023             new CP("center1", {title: "Close Me", closable: true}),
59024             new CP("center2", {title: "Center Panel", closable: false})
59025         ]
59026     }
59027 }, document.body);
59028
59029 layout.getRegion("center").showPanel("center1");
59030 </code></pre>
59031  * @param config
59032  * @param targetEl
59033  */
59034 Roo.BorderLayout.create = function(config, targetEl){
59035     var layout = new Roo.BorderLayout(targetEl || document.body, config);
59036     layout.beginUpdate();
59037     var regions = Roo.BorderLayout.RegionFactory.validRegions;
59038     for(var j = 0, jlen = regions.length; j < jlen; j++){
59039         var lr = regions[j];
59040         if(layout.regions[lr] && config[lr].panels){
59041             var r = layout.regions[lr];
59042             var ps = config[lr].panels;
59043             layout.addTypedPanels(r, ps);
59044         }
59045     }
59046     layout.endUpdate();
59047     return layout;
59048 };
59049
59050 // private
59051 Roo.BorderLayout.RegionFactory = {
59052     // private
59053     validRegions : ["north","south","east","west","center"],
59054
59055     // private
59056     create : function(target, mgr, config){
59057         target = target.toLowerCase();
59058         if(config.lightweight || config.basic){
59059             return new Roo.BasicLayoutRegion(mgr, config, target);
59060         }
59061         switch(target){
59062             case "north":
59063                 return new Roo.NorthLayoutRegion(mgr, config);
59064             case "south":
59065                 return new Roo.SouthLayoutRegion(mgr, config);
59066             case "east":
59067                 return new Roo.EastLayoutRegion(mgr, config);
59068             case "west":
59069                 return new Roo.WestLayoutRegion(mgr, config);
59070             case "center":
59071                 return new Roo.CenterLayoutRegion(mgr, config);
59072         }
59073         throw 'Layout region "'+target+'" not supported.';
59074     }
59075 };/*
59076  * Based on:
59077  * Ext JS Library 1.1.1
59078  * Copyright(c) 2006-2007, Ext JS, LLC.
59079  *
59080  * Originally Released Under LGPL - original licence link has changed is not relivant.
59081  *
59082  * Fork - LGPL
59083  * <script type="text/javascript">
59084  */
59085  
59086 /**
59087  * @class Roo.BasicLayoutRegion
59088  * @extends Roo.util.Observable
59089  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
59090  * and does not have a titlebar, tabs or any other features. All it does is size and position 
59091  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
59092  */
59093 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
59094     this.mgr = mgr;
59095     this.position  = pos;
59096     this.events = {
59097         /**
59098          * @scope Roo.BasicLayoutRegion
59099          */
59100         
59101         /**
59102          * @event beforeremove
59103          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
59104          * @param {Roo.LayoutRegion} this
59105          * @param {Roo.ContentPanel} panel The panel
59106          * @param {Object} e The cancel event object
59107          */
59108         "beforeremove" : true,
59109         /**
59110          * @event invalidated
59111          * Fires when the layout for this region is changed.
59112          * @param {Roo.LayoutRegion} this
59113          */
59114         "invalidated" : true,
59115         /**
59116          * @event visibilitychange
59117          * Fires when this region is shown or hidden 
59118          * @param {Roo.LayoutRegion} this
59119          * @param {Boolean} visibility true or false
59120          */
59121         "visibilitychange" : true,
59122         /**
59123          * @event paneladded
59124          * Fires when a panel is added. 
59125          * @param {Roo.LayoutRegion} this
59126          * @param {Roo.ContentPanel} panel The panel
59127          */
59128         "paneladded" : true,
59129         /**
59130          * @event panelremoved
59131          * Fires when a panel is removed. 
59132          * @param {Roo.LayoutRegion} this
59133          * @param {Roo.ContentPanel} panel The panel
59134          */
59135         "panelremoved" : true,
59136         /**
59137          * @event beforecollapse
59138          * Fires when this region before collapse.
59139          * @param {Roo.LayoutRegion} this
59140          */
59141         "beforecollapse" : true,
59142         /**
59143          * @event collapsed
59144          * Fires when this region is collapsed.
59145          * @param {Roo.LayoutRegion} this
59146          */
59147         "collapsed" : true,
59148         /**
59149          * @event expanded
59150          * Fires when this region is expanded.
59151          * @param {Roo.LayoutRegion} this
59152          */
59153         "expanded" : true,
59154         /**
59155          * @event slideshow
59156          * Fires when this region is slid into view.
59157          * @param {Roo.LayoutRegion} this
59158          */
59159         "slideshow" : true,
59160         /**
59161          * @event slidehide
59162          * Fires when this region slides out of view. 
59163          * @param {Roo.LayoutRegion} this
59164          */
59165         "slidehide" : true,
59166         /**
59167          * @event panelactivated
59168          * Fires when a panel is activated. 
59169          * @param {Roo.LayoutRegion} this
59170          * @param {Roo.ContentPanel} panel The activated panel
59171          */
59172         "panelactivated" : true,
59173         /**
59174          * @event resized
59175          * Fires when the user resizes this region. 
59176          * @param {Roo.LayoutRegion} this
59177          * @param {Number} newSize The new size (width for east/west, height for north/south)
59178          */
59179         "resized" : true
59180     };
59181     /** A collection of panels in this region. @type Roo.util.MixedCollection */
59182     this.panels = new Roo.util.MixedCollection();
59183     this.panels.getKey = this.getPanelId.createDelegate(this);
59184     this.box = null;
59185     this.activePanel = null;
59186     // ensure listeners are added...
59187     
59188     if (config.listeners || config.events) {
59189         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
59190             listeners : config.listeners || {},
59191             events : config.events || {}
59192         });
59193     }
59194     
59195     if(skipConfig !== true){
59196         this.applyConfig(config);
59197     }
59198 };
59199
59200 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
59201     getPanelId : function(p){
59202         return p.getId();
59203     },
59204     
59205     applyConfig : function(config){
59206         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
59207         this.config = config;
59208         
59209     },
59210     
59211     /**
59212      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
59213      * the width, for horizontal (north, south) the height.
59214      * @param {Number} newSize The new width or height
59215      */
59216     resizeTo : function(newSize){
59217         var el = this.el ? this.el :
59218                  (this.activePanel ? this.activePanel.getEl() : null);
59219         if(el){
59220             switch(this.position){
59221                 case "east":
59222                 case "west":
59223                     el.setWidth(newSize);
59224                     this.fireEvent("resized", this, newSize);
59225                 break;
59226                 case "north":
59227                 case "south":
59228                     el.setHeight(newSize);
59229                     this.fireEvent("resized", this, newSize);
59230                 break;                
59231             }
59232         }
59233     },
59234     
59235     getBox : function(){
59236         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
59237     },
59238     
59239     getMargins : function(){
59240         return this.margins;
59241     },
59242     
59243     updateBox : function(box){
59244         this.box = box;
59245         var el = this.activePanel.getEl();
59246         el.dom.style.left = box.x + "px";
59247         el.dom.style.top = box.y + "px";
59248         this.activePanel.setSize(box.width, box.height);
59249     },
59250     
59251     /**
59252      * Returns the container element for this region.
59253      * @return {Roo.Element}
59254      */
59255     getEl : function(){
59256         return this.activePanel;
59257     },
59258     
59259     /**
59260      * Returns true if this region is currently visible.
59261      * @return {Boolean}
59262      */
59263     isVisible : function(){
59264         return this.activePanel ? true : false;
59265     },
59266     
59267     setActivePanel : function(panel){
59268         panel = this.getPanel(panel);
59269         if(this.activePanel && this.activePanel != panel){
59270             this.activePanel.setActiveState(false);
59271             this.activePanel.getEl().setLeftTop(-10000,-10000);
59272         }
59273         this.activePanel = panel;
59274         panel.setActiveState(true);
59275         if(this.box){
59276             panel.setSize(this.box.width, this.box.height);
59277         }
59278         this.fireEvent("panelactivated", this, panel);
59279         this.fireEvent("invalidated");
59280     },
59281     
59282     /**
59283      * Show the specified panel.
59284      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
59285      * @return {Roo.ContentPanel} The shown panel or null
59286      */
59287     showPanel : function(panel){
59288         if(panel = this.getPanel(panel)){
59289             this.setActivePanel(panel);
59290         }
59291         return panel;
59292     },
59293     
59294     /**
59295      * Get the active panel for this region.
59296      * @return {Roo.ContentPanel} The active panel or null
59297      */
59298     getActivePanel : function(){
59299         return this.activePanel;
59300     },
59301     
59302     /**
59303      * Add the passed ContentPanel(s)
59304      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59305      * @return {Roo.ContentPanel} The panel added (if only one was added)
59306      */
59307     add : function(panel){
59308         if(arguments.length > 1){
59309             for(var i = 0, len = arguments.length; i < len; i++) {
59310                 this.add(arguments[i]);
59311             }
59312             return null;
59313         }
59314         if(this.hasPanel(panel)){
59315             this.showPanel(panel);
59316             return panel;
59317         }
59318         var el = panel.getEl();
59319         if(el.dom.parentNode != this.mgr.el.dom){
59320             this.mgr.el.dom.appendChild(el.dom);
59321         }
59322         if(panel.setRegion){
59323             panel.setRegion(this);
59324         }
59325         this.panels.add(panel);
59326         el.setStyle("position", "absolute");
59327         if(!panel.background){
59328             this.setActivePanel(panel);
59329             if(this.config.initialSize && this.panels.getCount()==1){
59330                 this.resizeTo(this.config.initialSize);
59331             }
59332         }
59333         this.fireEvent("paneladded", this, panel);
59334         return panel;
59335     },
59336     
59337     /**
59338      * Returns true if the panel is in this region.
59339      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59340      * @return {Boolean}
59341      */
59342     hasPanel : function(panel){
59343         if(typeof panel == "object"){ // must be panel obj
59344             panel = panel.getId();
59345         }
59346         return this.getPanel(panel) ? true : false;
59347     },
59348     
59349     /**
59350      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59351      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59352      * @param {Boolean} preservePanel Overrides the config preservePanel option
59353      * @return {Roo.ContentPanel} The panel that was removed
59354      */
59355     remove : function(panel, preservePanel){
59356         panel = this.getPanel(panel);
59357         if(!panel){
59358             return null;
59359         }
59360         var e = {};
59361         this.fireEvent("beforeremove", this, panel, e);
59362         if(e.cancel === true){
59363             return null;
59364         }
59365         var panelId = panel.getId();
59366         this.panels.removeKey(panelId);
59367         return panel;
59368     },
59369     
59370     /**
59371      * Returns the panel specified or null if it's not in this region.
59372      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59373      * @return {Roo.ContentPanel}
59374      */
59375     getPanel : function(id){
59376         if(typeof id == "object"){ // must be panel obj
59377             return id;
59378         }
59379         return this.panels.get(id);
59380     },
59381     
59382     /**
59383      * Returns this regions position (north/south/east/west/center).
59384      * @return {String} 
59385      */
59386     getPosition: function(){
59387         return this.position;    
59388     }
59389 });/*
59390  * Based on:
59391  * Ext JS Library 1.1.1
59392  * Copyright(c) 2006-2007, Ext JS, LLC.
59393  *
59394  * Originally Released Under LGPL - original licence link has changed is not relivant.
59395  *
59396  * Fork - LGPL
59397  * <script type="text/javascript">
59398  */
59399  
59400 /**
59401  * @class Roo.LayoutRegion
59402  * @extends Roo.BasicLayoutRegion
59403  * This class represents a region in a layout manager.
59404  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
59405  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
59406  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
59407  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
59408  * @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})
59409  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
59410  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
59411  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
59412  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
59413  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
59414  * @cfg {String}    title           The title for the region (overrides panel titles)
59415  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
59416  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
59417  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
59418  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
59419  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
59420  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
59421  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
59422  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
59423  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
59424  * @cfg {Boolean}   showPin         True to show a pin button
59425  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
59426  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
59427  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
59428  * @cfg {Number}    width           For East/West panels
59429  * @cfg {Number}    height          For North/South panels
59430  * @cfg {Boolean}   split           To show the splitter
59431  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
59432  */
59433 Roo.LayoutRegion = function(mgr, config, pos){
59434     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
59435     var dh = Roo.DomHelper;
59436     /** This region's container element 
59437     * @type Roo.Element */
59438     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
59439     /** This region's title element 
59440     * @type Roo.Element */
59441
59442     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
59443         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
59444         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
59445     ]}, true);
59446     this.titleEl.enableDisplayMode();
59447     /** This region's title text element 
59448     * @type HTMLElement */
59449     this.titleTextEl = this.titleEl.dom.firstChild;
59450     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
59451     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
59452     this.closeBtn.enableDisplayMode();
59453     this.closeBtn.on("click", this.closeClicked, this);
59454     this.closeBtn.hide();
59455
59456     this.createBody(config);
59457     this.visible = true;
59458     this.collapsed = false;
59459
59460     if(config.hideWhenEmpty){
59461         this.hide();
59462         this.on("paneladded", this.validateVisibility, this);
59463         this.on("panelremoved", this.validateVisibility, this);
59464     }
59465     this.applyConfig(config);
59466 };
59467
59468 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
59469
59470     createBody : function(){
59471         /** This region's body element 
59472         * @type Roo.Element */
59473         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
59474     },
59475
59476     applyConfig : function(c){
59477         if(c.collapsible && this.position != "center" && !this.collapsedEl){
59478             var dh = Roo.DomHelper;
59479             if(c.titlebar !== false){
59480                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
59481                 this.collapseBtn.on("click", this.collapse, this);
59482                 this.collapseBtn.enableDisplayMode();
59483
59484                 if(c.showPin === true || this.showPin){
59485                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
59486                     this.stickBtn.enableDisplayMode();
59487                     this.stickBtn.on("click", this.expand, this);
59488                     this.stickBtn.hide();
59489                 }
59490             }
59491             /** This region's collapsed element
59492             * @type Roo.Element */
59493             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
59494                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
59495             ]}, true);
59496             if(c.floatable !== false){
59497                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
59498                this.collapsedEl.on("click", this.collapseClick, this);
59499             }
59500
59501             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
59502                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
59503                    id: "message", unselectable: "on", style:{"float":"left"}});
59504                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
59505              }
59506             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
59507             this.expandBtn.on("click", this.expand, this);
59508         }
59509         if(this.collapseBtn){
59510             this.collapseBtn.setVisible(c.collapsible == true);
59511         }
59512         this.cmargins = c.cmargins || this.cmargins ||
59513                          (this.position == "west" || this.position == "east" ?
59514                              {top: 0, left: 2, right:2, bottom: 0} :
59515                              {top: 2, left: 0, right:0, bottom: 2});
59516         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
59517         this.bottomTabs = c.tabPosition != "top";
59518         this.autoScroll = c.autoScroll || false;
59519         if(this.autoScroll){
59520             this.bodyEl.setStyle("overflow", "auto");
59521         }else{
59522             this.bodyEl.setStyle("overflow", "hidden");
59523         }
59524         //if(c.titlebar !== false){
59525             if((!c.titlebar && !c.title) || c.titlebar === false){
59526                 this.titleEl.hide();
59527             }else{
59528                 this.titleEl.show();
59529                 if(c.title){
59530                     this.titleTextEl.innerHTML = c.title;
59531                 }
59532             }
59533         //}
59534         this.duration = c.duration || .30;
59535         this.slideDuration = c.slideDuration || .45;
59536         this.config = c;
59537         if(c.collapsed){
59538             this.collapse(true);
59539         }
59540         if(c.hidden){
59541             this.hide();
59542         }
59543     },
59544     /**
59545      * Returns true if this region is currently visible.
59546      * @return {Boolean}
59547      */
59548     isVisible : function(){
59549         return this.visible;
59550     },
59551
59552     /**
59553      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
59554      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
59555      */
59556     setCollapsedTitle : function(title){
59557         title = title || "&#160;";
59558         if(this.collapsedTitleTextEl){
59559             this.collapsedTitleTextEl.innerHTML = title;
59560         }
59561     },
59562
59563     getBox : function(){
59564         var b;
59565         if(!this.collapsed){
59566             b = this.el.getBox(false, true);
59567         }else{
59568             b = this.collapsedEl.getBox(false, true);
59569         }
59570         return b;
59571     },
59572
59573     getMargins : function(){
59574         return this.collapsed ? this.cmargins : this.margins;
59575     },
59576
59577     highlight : function(){
59578         this.el.addClass("x-layout-panel-dragover");
59579     },
59580
59581     unhighlight : function(){
59582         this.el.removeClass("x-layout-panel-dragover");
59583     },
59584
59585     updateBox : function(box){
59586         this.box = box;
59587         if(!this.collapsed){
59588             this.el.dom.style.left = box.x + "px";
59589             this.el.dom.style.top = box.y + "px";
59590             this.updateBody(box.width, box.height);
59591         }else{
59592             this.collapsedEl.dom.style.left = box.x + "px";
59593             this.collapsedEl.dom.style.top = box.y + "px";
59594             this.collapsedEl.setSize(box.width, box.height);
59595         }
59596         if(this.tabs){
59597             this.tabs.autoSizeTabs();
59598         }
59599     },
59600
59601     updateBody : function(w, h){
59602         if(w !== null){
59603             this.el.setWidth(w);
59604             w -= this.el.getBorderWidth("rl");
59605             if(this.config.adjustments){
59606                 w += this.config.adjustments[0];
59607             }
59608         }
59609         if(h !== null){
59610             this.el.setHeight(h);
59611             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
59612             h -= this.el.getBorderWidth("tb");
59613             if(this.config.adjustments){
59614                 h += this.config.adjustments[1];
59615             }
59616             this.bodyEl.setHeight(h);
59617             if(this.tabs){
59618                 h = this.tabs.syncHeight(h);
59619             }
59620         }
59621         if(this.panelSize){
59622             w = w !== null ? w : this.panelSize.width;
59623             h = h !== null ? h : this.panelSize.height;
59624         }
59625         if(this.activePanel){
59626             var el = this.activePanel.getEl();
59627             w = w !== null ? w : el.getWidth();
59628             h = h !== null ? h : el.getHeight();
59629             this.panelSize = {width: w, height: h};
59630             this.activePanel.setSize(w, h);
59631         }
59632         if(Roo.isIE && this.tabs){
59633             this.tabs.el.repaint();
59634         }
59635     },
59636
59637     /**
59638      * Returns the container element for this region.
59639      * @return {Roo.Element}
59640      */
59641     getEl : function(){
59642         return this.el;
59643     },
59644
59645     /**
59646      * Hides this region.
59647      */
59648     hide : function(){
59649         if(!this.collapsed){
59650             this.el.dom.style.left = "-2000px";
59651             this.el.hide();
59652         }else{
59653             this.collapsedEl.dom.style.left = "-2000px";
59654             this.collapsedEl.hide();
59655         }
59656         this.visible = false;
59657         this.fireEvent("visibilitychange", this, false);
59658     },
59659
59660     /**
59661      * Shows this region if it was previously hidden.
59662      */
59663     show : function(){
59664         if(!this.collapsed){
59665             this.el.show();
59666         }else{
59667             this.collapsedEl.show();
59668         }
59669         this.visible = true;
59670         this.fireEvent("visibilitychange", this, true);
59671     },
59672
59673     closeClicked : function(){
59674         if(this.activePanel){
59675             this.remove(this.activePanel);
59676         }
59677     },
59678
59679     collapseClick : function(e){
59680         if(this.isSlid){
59681            e.stopPropagation();
59682            this.slideIn();
59683         }else{
59684            e.stopPropagation();
59685            this.slideOut();
59686         }
59687     },
59688
59689     /**
59690      * Collapses this region.
59691      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
59692      */
59693     collapse : function(skipAnim, skipCheck){
59694         if(this.collapsed) {
59695             return;
59696         }
59697         
59698         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
59699             
59700             this.collapsed = true;
59701             if(this.split){
59702                 this.split.el.hide();
59703             }
59704             if(this.config.animate && skipAnim !== true){
59705                 this.fireEvent("invalidated", this);
59706                 this.animateCollapse();
59707             }else{
59708                 this.el.setLocation(-20000,-20000);
59709                 this.el.hide();
59710                 this.collapsedEl.show();
59711                 this.fireEvent("collapsed", this);
59712                 this.fireEvent("invalidated", this);
59713             }
59714         }
59715         
59716     },
59717
59718     animateCollapse : function(){
59719         // overridden
59720     },
59721
59722     /**
59723      * Expands this region if it was previously collapsed.
59724      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
59725      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
59726      */
59727     expand : function(e, skipAnim){
59728         if(e) {
59729             e.stopPropagation();
59730         }
59731         if(!this.collapsed || this.el.hasActiveFx()) {
59732             return;
59733         }
59734         if(this.isSlid){
59735             this.afterSlideIn();
59736             skipAnim = true;
59737         }
59738         this.collapsed = false;
59739         if(this.config.animate && skipAnim !== true){
59740             this.animateExpand();
59741         }else{
59742             this.el.show();
59743             if(this.split){
59744                 this.split.el.show();
59745             }
59746             this.collapsedEl.setLocation(-2000,-2000);
59747             this.collapsedEl.hide();
59748             this.fireEvent("invalidated", this);
59749             this.fireEvent("expanded", this);
59750         }
59751     },
59752
59753     animateExpand : function(){
59754         // overridden
59755     },
59756
59757     initTabs : function()
59758     {
59759         this.bodyEl.setStyle("overflow", "hidden");
59760         var ts = new Roo.TabPanel(
59761                 this.bodyEl.dom,
59762                 {
59763                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
59764                     disableTooltips: this.config.disableTabTips,
59765                     toolbar : this.config.toolbar
59766                 }
59767         );
59768         if(this.config.hideTabs){
59769             ts.stripWrap.setDisplayed(false);
59770         }
59771         this.tabs = ts;
59772         ts.resizeTabs = this.config.resizeTabs === true;
59773         ts.minTabWidth = this.config.minTabWidth || 40;
59774         ts.maxTabWidth = this.config.maxTabWidth || 250;
59775         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
59776         ts.monitorResize = false;
59777         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59778         ts.bodyEl.addClass('x-layout-tabs-body');
59779         this.panels.each(this.initPanelAsTab, this);
59780     },
59781
59782     initPanelAsTab : function(panel){
59783         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
59784                     this.config.closeOnTab && panel.isClosable());
59785         if(panel.tabTip !== undefined){
59786             ti.setTooltip(panel.tabTip);
59787         }
59788         ti.on("activate", function(){
59789               this.setActivePanel(panel);
59790         }, this);
59791         if(this.config.closeOnTab){
59792             ti.on("beforeclose", function(t, e){
59793                 e.cancel = true;
59794                 this.remove(panel);
59795             }, this);
59796         }
59797         return ti;
59798     },
59799
59800     updatePanelTitle : function(panel, title){
59801         if(this.activePanel == panel){
59802             this.updateTitle(title);
59803         }
59804         if(this.tabs){
59805             var ti = this.tabs.getTab(panel.getEl().id);
59806             ti.setText(title);
59807             if(panel.tabTip !== undefined){
59808                 ti.setTooltip(panel.tabTip);
59809             }
59810         }
59811     },
59812
59813     updateTitle : function(title){
59814         if(this.titleTextEl && !this.config.title){
59815             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
59816         }
59817     },
59818
59819     setActivePanel : function(panel){
59820         panel = this.getPanel(panel);
59821         if(this.activePanel && this.activePanel != panel){
59822             this.activePanel.setActiveState(false);
59823         }
59824         this.activePanel = panel;
59825         panel.setActiveState(true);
59826         if(this.panelSize){
59827             panel.setSize(this.panelSize.width, this.panelSize.height);
59828         }
59829         if(this.closeBtn){
59830             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
59831         }
59832         this.updateTitle(panel.getTitle());
59833         if(this.tabs){
59834             this.fireEvent("invalidated", this);
59835         }
59836         this.fireEvent("panelactivated", this, panel);
59837     },
59838
59839     /**
59840      * Shows the specified panel.
59841      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
59842      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
59843      */
59844     showPanel : function(panel)
59845     {
59846         panel = this.getPanel(panel);
59847         if(panel){
59848             if(this.tabs){
59849                 var tab = this.tabs.getTab(panel.getEl().id);
59850                 if(tab.isHidden()){
59851                     this.tabs.unhideTab(tab.id);
59852                 }
59853                 tab.activate();
59854             }else{
59855                 this.setActivePanel(panel);
59856             }
59857         }
59858         return panel;
59859     },
59860
59861     /**
59862      * Get the active panel for this region.
59863      * @return {Roo.ContentPanel} The active panel or null
59864      */
59865     getActivePanel : function(){
59866         return this.activePanel;
59867     },
59868
59869     validateVisibility : function(){
59870         if(this.panels.getCount() < 1){
59871             this.updateTitle("&#160;");
59872             this.closeBtn.hide();
59873             this.hide();
59874         }else{
59875             if(!this.isVisible()){
59876                 this.show();
59877             }
59878         }
59879     },
59880
59881     /**
59882      * Adds the passed ContentPanel(s) to this region.
59883      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59884      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
59885      */
59886     add : function(panel){
59887         if(arguments.length > 1){
59888             for(var i = 0, len = arguments.length; i < len; i++) {
59889                 this.add(arguments[i]);
59890             }
59891             return null;
59892         }
59893         if(this.hasPanel(panel)){
59894             this.showPanel(panel);
59895             return panel;
59896         }
59897         panel.setRegion(this);
59898         this.panels.add(panel);
59899         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
59900             this.bodyEl.dom.appendChild(panel.getEl().dom);
59901             if(panel.background !== true){
59902                 this.setActivePanel(panel);
59903             }
59904             this.fireEvent("paneladded", this, panel);
59905             return panel;
59906         }
59907         if(!this.tabs){
59908             this.initTabs();
59909         }else{
59910             this.initPanelAsTab(panel);
59911         }
59912         if(panel.background !== true){
59913             this.tabs.activate(panel.getEl().id);
59914         }
59915         this.fireEvent("paneladded", this, panel);
59916         return panel;
59917     },
59918
59919     /**
59920      * Hides the tab for the specified panel.
59921      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59922      */
59923     hidePanel : function(panel){
59924         if(this.tabs && (panel = this.getPanel(panel))){
59925             this.tabs.hideTab(panel.getEl().id);
59926         }
59927     },
59928
59929     /**
59930      * Unhides the tab for a previously hidden panel.
59931      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59932      */
59933     unhidePanel : function(panel){
59934         if(this.tabs && (panel = this.getPanel(panel))){
59935             this.tabs.unhideTab(panel.getEl().id);
59936         }
59937     },
59938
59939     clearPanels : function(){
59940         while(this.panels.getCount() > 0){
59941              this.remove(this.panels.first());
59942         }
59943     },
59944
59945     /**
59946      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59947      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59948      * @param {Boolean} preservePanel Overrides the config preservePanel option
59949      * @return {Roo.ContentPanel} The panel that was removed
59950      */
59951     remove : function(panel, preservePanel){
59952         panel = this.getPanel(panel);
59953         if(!panel){
59954             return null;
59955         }
59956         var e = {};
59957         this.fireEvent("beforeremove", this, panel, e);
59958         if(e.cancel === true){
59959             return null;
59960         }
59961         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
59962         var panelId = panel.getId();
59963         this.panels.removeKey(panelId);
59964         if(preservePanel){
59965             document.body.appendChild(panel.getEl().dom);
59966         }
59967         if(this.tabs){
59968             this.tabs.removeTab(panel.getEl().id);
59969         }else if (!preservePanel){
59970             this.bodyEl.dom.removeChild(panel.getEl().dom);
59971         }
59972         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
59973             var p = this.panels.first();
59974             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
59975             tempEl.appendChild(p.getEl().dom);
59976             this.bodyEl.update("");
59977             this.bodyEl.dom.appendChild(p.getEl().dom);
59978             tempEl = null;
59979             this.updateTitle(p.getTitle());
59980             this.tabs = null;
59981             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59982             this.setActivePanel(p);
59983         }
59984         panel.setRegion(null);
59985         if(this.activePanel == panel){
59986             this.activePanel = null;
59987         }
59988         if(this.config.autoDestroy !== false && preservePanel !== true){
59989             try{panel.destroy();}catch(e){}
59990         }
59991         this.fireEvent("panelremoved", this, panel);
59992         return panel;
59993     },
59994
59995     /**
59996      * Returns the TabPanel component used by this region
59997      * @return {Roo.TabPanel}
59998      */
59999     getTabs : function(){
60000         return this.tabs;
60001     },
60002
60003     createTool : function(parentEl, className){
60004         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
60005             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
60006         btn.addClassOnOver("x-layout-tools-button-over");
60007         return btn;
60008     }
60009 });/*
60010  * Based on:
60011  * Ext JS Library 1.1.1
60012  * Copyright(c) 2006-2007, Ext JS, LLC.
60013  *
60014  * Originally Released Under LGPL - original licence link has changed is not relivant.
60015  *
60016  * Fork - LGPL
60017  * <script type="text/javascript">
60018  */
60019  
60020
60021
60022 /**
60023  * @class Roo.SplitLayoutRegion
60024  * @extends Roo.LayoutRegion
60025  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
60026  */
60027 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
60028     this.cursor = cursor;
60029     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
60030 };
60031
60032 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
60033     splitTip : "Drag to resize.",
60034     collapsibleSplitTip : "Drag to resize. Double click to hide.",
60035     useSplitTips : false,
60036
60037     applyConfig : function(config){
60038         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
60039         if(config.split){
60040             if(!this.split){
60041                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
60042                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
60043                 /** The SplitBar for this region 
60044                 * @type Roo.SplitBar */
60045                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
60046                 this.split.on("moved", this.onSplitMove, this);
60047                 this.split.useShim = config.useShim === true;
60048                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
60049                 if(this.useSplitTips){
60050                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
60051                 }
60052                 if(config.collapsible){
60053                     this.split.el.on("dblclick", this.collapse,  this);
60054                 }
60055             }
60056             if(typeof config.minSize != "undefined"){
60057                 this.split.minSize = config.minSize;
60058             }
60059             if(typeof config.maxSize != "undefined"){
60060                 this.split.maxSize = config.maxSize;
60061             }
60062             if(config.hideWhenEmpty || config.hidden || config.collapsed){
60063                 this.hideSplitter();
60064             }
60065         }
60066     },
60067
60068     getHMaxSize : function(){
60069          var cmax = this.config.maxSize || 10000;
60070          var center = this.mgr.getRegion("center");
60071          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
60072     },
60073
60074     getVMaxSize : function(){
60075          var cmax = this.config.maxSize || 10000;
60076          var center = this.mgr.getRegion("center");
60077          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
60078     },
60079
60080     onSplitMove : function(split, newSize){
60081         this.fireEvent("resized", this, newSize);
60082     },
60083     
60084     /** 
60085      * Returns the {@link Roo.SplitBar} for this region.
60086      * @return {Roo.SplitBar}
60087      */
60088     getSplitBar : function(){
60089         return this.split;
60090     },
60091     
60092     hide : function(){
60093         this.hideSplitter();
60094         Roo.SplitLayoutRegion.superclass.hide.call(this);
60095     },
60096
60097     hideSplitter : function(){
60098         if(this.split){
60099             this.split.el.setLocation(-2000,-2000);
60100             this.split.el.hide();
60101         }
60102     },
60103
60104     show : function(){
60105         if(this.split){
60106             this.split.el.show();
60107         }
60108         Roo.SplitLayoutRegion.superclass.show.call(this);
60109     },
60110     
60111     beforeSlide: function(){
60112         if(Roo.isGecko){// firefox overflow auto bug workaround
60113             this.bodyEl.clip();
60114             if(this.tabs) {
60115                 this.tabs.bodyEl.clip();
60116             }
60117             if(this.activePanel){
60118                 this.activePanel.getEl().clip();
60119                 
60120                 if(this.activePanel.beforeSlide){
60121                     this.activePanel.beforeSlide();
60122                 }
60123             }
60124         }
60125     },
60126     
60127     afterSlide : function(){
60128         if(Roo.isGecko){// firefox overflow auto bug workaround
60129             this.bodyEl.unclip();
60130             if(this.tabs) {
60131                 this.tabs.bodyEl.unclip();
60132             }
60133             if(this.activePanel){
60134                 this.activePanel.getEl().unclip();
60135                 if(this.activePanel.afterSlide){
60136                     this.activePanel.afterSlide();
60137                 }
60138             }
60139         }
60140     },
60141
60142     initAutoHide : function(){
60143         if(this.autoHide !== false){
60144             if(!this.autoHideHd){
60145                 var st = new Roo.util.DelayedTask(this.slideIn, this);
60146                 this.autoHideHd = {
60147                     "mouseout": function(e){
60148                         if(!e.within(this.el, true)){
60149                             st.delay(500);
60150                         }
60151                     },
60152                     "mouseover" : function(e){
60153                         st.cancel();
60154                     },
60155                     scope : this
60156                 };
60157             }
60158             this.el.on(this.autoHideHd);
60159         }
60160     },
60161
60162     clearAutoHide : function(){
60163         if(this.autoHide !== false){
60164             this.el.un("mouseout", this.autoHideHd.mouseout);
60165             this.el.un("mouseover", this.autoHideHd.mouseover);
60166         }
60167     },
60168
60169     clearMonitor : function(){
60170         Roo.get(document).un("click", this.slideInIf, this);
60171     },
60172
60173     // these names are backwards but not changed for compat
60174     slideOut : function(){
60175         if(this.isSlid || this.el.hasActiveFx()){
60176             return;
60177         }
60178         this.isSlid = true;
60179         if(this.collapseBtn){
60180             this.collapseBtn.hide();
60181         }
60182         this.closeBtnState = this.closeBtn.getStyle('display');
60183         this.closeBtn.hide();
60184         if(this.stickBtn){
60185             this.stickBtn.show();
60186         }
60187         this.el.show();
60188         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
60189         this.beforeSlide();
60190         this.el.setStyle("z-index", 10001);
60191         this.el.slideIn(this.getSlideAnchor(), {
60192             callback: function(){
60193                 this.afterSlide();
60194                 this.initAutoHide();
60195                 Roo.get(document).on("click", this.slideInIf, this);
60196                 this.fireEvent("slideshow", this);
60197             },
60198             scope: this,
60199             block: true
60200         });
60201     },
60202
60203     afterSlideIn : function(){
60204         this.clearAutoHide();
60205         this.isSlid = false;
60206         this.clearMonitor();
60207         this.el.setStyle("z-index", "");
60208         if(this.collapseBtn){
60209             this.collapseBtn.show();
60210         }
60211         this.closeBtn.setStyle('display', this.closeBtnState);
60212         if(this.stickBtn){
60213             this.stickBtn.hide();
60214         }
60215         this.fireEvent("slidehide", this);
60216     },
60217
60218     slideIn : function(cb){
60219         if(!this.isSlid || this.el.hasActiveFx()){
60220             Roo.callback(cb);
60221             return;
60222         }
60223         this.isSlid = false;
60224         this.beforeSlide();
60225         this.el.slideOut(this.getSlideAnchor(), {
60226             callback: function(){
60227                 this.el.setLeftTop(-10000, -10000);
60228                 this.afterSlide();
60229                 this.afterSlideIn();
60230                 Roo.callback(cb);
60231             },
60232             scope: this,
60233             block: true
60234         });
60235     },
60236     
60237     slideInIf : function(e){
60238         if(!e.within(this.el)){
60239             this.slideIn();
60240         }
60241     },
60242
60243     animateCollapse : function(){
60244         this.beforeSlide();
60245         this.el.setStyle("z-index", 20000);
60246         var anchor = this.getSlideAnchor();
60247         this.el.slideOut(anchor, {
60248             callback : function(){
60249                 this.el.setStyle("z-index", "");
60250                 this.collapsedEl.slideIn(anchor, {duration:.3});
60251                 this.afterSlide();
60252                 this.el.setLocation(-10000,-10000);
60253                 this.el.hide();
60254                 this.fireEvent("collapsed", this);
60255             },
60256             scope: this,
60257             block: true
60258         });
60259     },
60260
60261     animateExpand : function(){
60262         this.beforeSlide();
60263         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
60264         this.el.setStyle("z-index", 20000);
60265         this.collapsedEl.hide({
60266             duration:.1
60267         });
60268         this.el.slideIn(this.getSlideAnchor(), {
60269             callback : function(){
60270                 this.el.setStyle("z-index", "");
60271                 this.afterSlide();
60272                 if(this.split){
60273                     this.split.el.show();
60274                 }
60275                 this.fireEvent("invalidated", this);
60276                 this.fireEvent("expanded", this);
60277             },
60278             scope: this,
60279             block: true
60280         });
60281     },
60282
60283     anchors : {
60284         "west" : "left",
60285         "east" : "right",
60286         "north" : "top",
60287         "south" : "bottom"
60288     },
60289
60290     sanchors : {
60291         "west" : "l",
60292         "east" : "r",
60293         "north" : "t",
60294         "south" : "b"
60295     },
60296
60297     canchors : {
60298         "west" : "tl-tr",
60299         "east" : "tr-tl",
60300         "north" : "tl-bl",
60301         "south" : "bl-tl"
60302     },
60303
60304     getAnchor : function(){
60305         return this.anchors[this.position];
60306     },
60307
60308     getCollapseAnchor : function(){
60309         return this.canchors[this.position];
60310     },
60311
60312     getSlideAnchor : function(){
60313         return this.sanchors[this.position];
60314     },
60315
60316     getAlignAdj : function(){
60317         var cm = this.cmargins;
60318         switch(this.position){
60319             case "west":
60320                 return [0, 0];
60321             break;
60322             case "east":
60323                 return [0, 0];
60324             break;
60325             case "north":
60326                 return [0, 0];
60327             break;
60328             case "south":
60329                 return [0, 0];
60330             break;
60331         }
60332     },
60333
60334     getExpandAdj : function(){
60335         var c = this.collapsedEl, cm = this.cmargins;
60336         switch(this.position){
60337             case "west":
60338                 return [-(cm.right+c.getWidth()+cm.left), 0];
60339             break;
60340             case "east":
60341                 return [cm.right+c.getWidth()+cm.left, 0];
60342             break;
60343             case "north":
60344                 return [0, -(cm.top+cm.bottom+c.getHeight())];
60345             break;
60346             case "south":
60347                 return [0, cm.top+cm.bottom+c.getHeight()];
60348             break;
60349         }
60350     }
60351 });/*
60352  * Based on:
60353  * Ext JS Library 1.1.1
60354  * Copyright(c) 2006-2007, Ext JS, LLC.
60355  *
60356  * Originally Released Under LGPL - original licence link has changed is not relivant.
60357  *
60358  * Fork - LGPL
60359  * <script type="text/javascript">
60360  */
60361 /*
60362  * These classes are private internal classes
60363  */
60364 Roo.CenterLayoutRegion = function(mgr, config){
60365     Roo.LayoutRegion.call(this, mgr, config, "center");
60366     this.visible = true;
60367     this.minWidth = config.minWidth || 20;
60368     this.minHeight = config.minHeight || 20;
60369 };
60370
60371 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
60372     hide : function(){
60373         // center panel can't be hidden
60374     },
60375     
60376     show : function(){
60377         // center panel can't be hidden
60378     },
60379     
60380     getMinWidth: function(){
60381         return this.minWidth;
60382     },
60383     
60384     getMinHeight: function(){
60385         return this.minHeight;
60386     }
60387 });
60388
60389
60390 Roo.NorthLayoutRegion = function(mgr, config){
60391     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
60392     if(this.split){
60393         this.split.placement = Roo.SplitBar.TOP;
60394         this.split.orientation = Roo.SplitBar.VERTICAL;
60395         this.split.el.addClass("x-layout-split-v");
60396     }
60397     var size = config.initialSize || config.height;
60398     if(typeof size != "undefined"){
60399         this.el.setHeight(size);
60400     }
60401 };
60402 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
60403     orientation: Roo.SplitBar.VERTICAL,
60404     getBox : function(){
60405         if(this.collapsed){
60406             return this.collapsedEl.getBox();
60407         }
60408         var box = this.el.getBox();
60409         if(this.split){
60410             box.height += this.split.el.getHeight();
60411         }
60412         return box;
60413     },
60414     
60415     updateBox : function(box){
60416         if(this.split && !this.collapsed){
60417             box.height -= this.split.el.getHeight();
60418             this.split.el.setLeft(box.x);
60419             this.split.el.setTop(box.y+box.height);
60420             this.split.el.setWidth(box.width);
60421         }
60422         if(this.collapsed){
60423             this.updateBody(box.width, null);
60424         }
60425         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60426     }
60427 });
60428
60429 Roo.SouthLayoutRegion = function(mgr, config){
60430     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
60431     if(this.split){
60432         this.split.placement = Roo.SplitBar.BOTTOM;
60433         this.split.orientation = Roo.SplitBar.VERTICAL;
60434         this.split.el.addClass("x-layout-split-v");
60435     }
60436     var size = config.initialSize || config.height;
60437     if(typeof size != "undefined"){
60438         this.el.setHeight(size);
60439     }
60440 };
60441 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
60442     orientation: Roo.SplitBar.VERTICAL,
60443     getBox : function(){
60444         if(this.collapsed){
60445             return this.collapsedEl.getBox();
60446         }
60447         var box = this.el.getBox();
60448         if(this.split){
60449             var sh = this.split.el.getHeight();
60450             box.height += sh;
60451             box.y -= sh;
60452         }
60453         return box;
60454     },
60455     
60456     updateBox : function(box){
60457         if(this.split && !this.collapsed){
60458             var sh = this.split.el.getHeight();
60459             box.height -= sh;
60460             box.y += sh;
60461             this.split.el.setLeft(box.x);
60462             this.split.el.setTop(box.y-sh);
60463             this.split.el.setWidth(box.width);
60464         }
60465         if(this.collapsed){
60466             this.updateBody(box.width, null);
60467         }
60468         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60469     }
60470 });
60471
60472 Roo.EastLayoutRegion = function(mgr, config){
60473     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
60474     if(this.split){
60475         this.split.placement = Roo.SplitBar.RIGHT;
60476         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60477         this.split.el.addClass("x-layout-split-h");
60478     }
60479     var size = config.initialSize || config.width;
60480     if(typeof size != "undefined"){
60481         this.el.setWidth(size);
60482     }
60483 };
60484 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
60485     orientation: Roo.SplitBar.HORIZONTAL,
60486     getBox : function(){
60487         if(this.collapsed){
60488             return this.collapsedEl.getBox();
60489         }
60490         var box = this.el.getBox();
60491         if(this.split){
60492             var sw = this.split.el.getWidth();
60493             box.width += sw;
60494             box.x -= sw;
60495         }
60496         return box;
60497     },
60498
60499     updateBox : function(box){
60500         if(this.split && !this.collapsed){
60501             var sw = this.split.el.getWidth();
60502             box.width -= sw;
60503             this.split.el.setLeft(box.x);
60504             this.split.el.setTop(box.y);
60505             this.split.el.setHeight(box.height);
60506             box.x += sw;
60507         }
60508         if(this.collapsed){
60509             this.updateBody(null, box.height);
60510         }
60511         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60512     }
60513 });
60514
60515 Roo.WestLayoutRegion = function(mgr, config){
60516     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
60517     if(this.split){
60518         this.split.placement = Roo.SplitBar.LEFT;
60519         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60520         this.split.el.addClass("x-layout-split-h");
60521     }
60522     var size = config.initialSize || config.width;
60523     if(typeof size != "undefined"){
60524         this.el.setWidth(size);
60525     }
60526 };
60527 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
60528     orientation: Roo.SplitBar.HORIZONTAL,
60529     getBox : function(){
60530         if(this.collapsed){
60531             return this.collapsedEl.getBox();
60532         }
60533         var box = this.el.getBox();
60534         if(this.split){
60535             box.width += this.split.el.getWidth();
60536         }
60537         return box;
60538     },
60539     
60540     updateBox : function(box){
60541         if(this.split && !this.collapsed){
60542             var sw = this.split.el.getWidth();
60543             box.width -= sw;
60544             this.split.el.setLeft(box.x+box.width);
60545             this.split.el.setTop(box.y);
60546             this.split.el.setHeight(box.height);
60547         }
60548         if(this.collapsed){
60549             this.updateBody(null, box.height);
60550         }
60551         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60552     }
60553 });
60554 /*
60555  * Based on:
60556  * Ext JS Library 1.1.1
60557  * Copyright(c) 2006-2007, Ext JS, LLC.
60558  *
60559  * Originally Released Under LGPL - original licence link has changed is not relivant.
60560  *
60561  * Fork - LGPL
60562  * <script type="text/javascript">
60563  */
60564  
60565  
60566 /*
60567  * Private internal class for reading and applying state
60568  */
60569 Roo.LayoutStateManager = function(layout){
60570      // default empty state
60571      this.state = {
60572         north: {},
60573         south: {},
60574         east: {},
60575         west: {}       
60576     };
60577 };
60578
60579 Roo.LayoutStateManager.prototype = {
60580     init : function(layout, provider){
60581         this.provider = provider;
60582         var state = provider.get(layout.id+"-layout-state");
60583         if(state){
60584             var wasUpdating = layout.isUpdating();
60585             if(!wasUpdating){
60586                 layout.beginUpdate();
60587             }
60588             for(var key in state){
60589                 if(typeof state[key] != "function"){
60590                     var rstate = state[key];
60591                     var r = layout.getRegion(key);
60592                     if(r && rstate){
60593                         if(rstate.size){
60594                             r.resizeTo(rstate.size);
60595                         }
60596                         if(rstate.collapsed == true){
60597                             r.collapse(true);
60598                         }else{
60599                             r.expand(null, true);
60600                         }
60601                     }
60602                 }
60603             }
60604             if(!wasUpdating){
60605                 layout.endUpdate();
60606             }
60607             this.state = state; 
60608         }
60609         this.layout = layout;
60610         layout.on("regionresized", this.onRegionResized, this);
60611         layout.on("regioncollapsed", this.onRegionCollapsed, this);
60612         layout.on("regionexpanded", this.onRegionExpanded, this);
60613     },
60614     
60615     storeState : function(){
60616         this.provider.set(this.layout.id+"-layout-state", this.state);
60617     },
60618     
60619     onRegionResized : function(region, newSize){
60620         this.state[region.getPosition()].size = newSize;
60621         this.storeState();
60622     },
60623     
60624     onRegionCollapsed : function(region){
60625         this.state[region.getPosition()].collapsed = true;
60626         this.storeState();
60627     },
60628     
60629     onRegionExpanded : function(region){
60630         this.state[region.getPosition()].collapsed = false;
60631         this.storeState();
60632     }
60633 };/*
60634  * Based on:
60635  * Ext JS Library 1.1.1
60636  * Copyright(c) 2006-2007, Ext JS, LLC.
60637  *
60638  * Originally Released Under LGPL - original licence link has changed is not relivant.
60639  *
60640  * Fork - LGPL
60641  * <script type="text/javascript">
60642  */
60643 /**
60644  * @class Roo.ContentPanel
60645  * @extends Roo.util.Observable
60646  * @children Roo.form.Form Roo.JsonView Roo.View
60647  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60648  * A basic ContentPanel element.
60649  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
60650  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
60651  * @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
60652  * @cfg {Boolean}   closable      True if the panel can be closed/removed
60653  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
60654  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
60655  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
60656  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
60657  * @cfg {String} title          The title for this panel
60658  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
60659  * @cfg {String} url            Calls {@link #setUrl} with this value
60660  * @cfg {String} region (center|north|south|east|west) [required] which region to put this panel on (when used with xtype constructors)
60661  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
60662  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
60663  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
60664  * @cfg {String}    style  Extra style to add to the content panel
60665  * @cfg {Roo.menu.Menu} menu  popup menu
60666
60667  * @constructor
60668  * Create a new ContentPanel.
60669  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
60670  * @param {String/Object} config A string to set only the title or a config object
60671  * @param {String} content (optional) Set the HTML content for this panel
60672  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
60673  */
60674 Roo.ContentPanel = function(el, config, content){
60675     
60676     /*
60677     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
60678         config = el;
60679         el = Roo.id();
60680     }
60681     if (config && config.parentLayout) { 
60682         el = config.parentLayout.el.createChild(); 
60683     }
60684     */
60685     if(el.autoCreate){ // xtype is available if this is called from factory
60686         config = el;
60687         el = Roo.id();
60688     }
60689     this.el = Roo.get(el);
60690     if(!this.el && config && config.autoCreate){
60691         if(typeof config.autoCreate == "object"){
60692             if(!config.autoCreate.id){
60693                 config.autoCreate.id = config.id||el;
60694             }
60695             this.el = Roo.DomHelper.append(document.body,
60696                         config.autoCreate, true);
60697         }else{
60698             this.el = Roo.DomHelper.append(document.body,
60699                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
60700         }
60701     }
60702     
60703     
60704     this.closable = false;
60705     this.loaded = false;
60706     this.active = false;
60707     if(typeof config == "string"){
60708         this.title = config;
60709     }else{
60710         Roo.apply(this, config);
60711     }
60712     
60713     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
60714         this.wrapEl = this.el.wrap();
60715         this.toolbar.container = this.el.insertSibling(false, 'before');
60716         this.toolbar = new Roo.Toolbar(this.toolbar);
60717     }
60718     
60719     // xtype created footer. - not sure if will work as we normally have to render first..
60720     if (this.footer && !this.footer.el && this.footer.xtype) {
60721         if (!this.wrapEl) {
60722             this.wrapEl = this.el.wrap();
60723         }
60724     
60725         this.footer.container = this.wrapEl.createChild();
60726          
60727         this.footer = Roo.factory(this.footer, Roo);
60728         
60729     }
60730     
60731     if(this.resizeEl){
60732         this.resizeEl = Roo.get(this.resizeEl, true);
60733     }else{
60734         this.resizeEl = this.el;
60735     }
60736     // handle view.xtype
60737     
60738  
60739     
60740     
60741     this.addEvents({
60742         /**
60743          * @event activate
60744          * Fires when this panel is activated. 
60745          * @param {Roo.ContentPanel} this
60746          */
60747         "activate" : true,
60748         /**
60749          * @event deactivate
60750          * Fires when this panel is activated. 
60751          * @param {Roo.ContentPanel} this
60752          */
60753         "deactivate" : true,
60754
60755         /**
60756          * @event resize
60757          * Fires when this panel is resized if fitToFrame is true.
60758          * @param {Roo.ContentPanel} this
60759          * @param {Number} width The width after any component adjustments
60760          * @param {Number} height The height after any component adjustments
60761          */
60762         "resize" : true,
60763         
60764          /**
60765          * @event render
60766          * Fires when this tab is created
60767          * @param {Roo.ContentPanel} this
60768          */
60769         "render" : true
60770          
60771         
60772     });
60773     
60774
60775     
60776     
60777     if(this.autoScroll){
60778         this.resizeEl.setStyle("overflow", "auto");
60779     } else {
60780         // fix randome scrolling
60781         this.el.on('scroll', function() {
60782             Roo.log('fix random scolling');
60783             this.scrollTo('top',0); 
60784         });
60785     }
60786     content = content || this.content;
60787     if(content){
60788         this.setContent(content);
60789     }
60790     if(config && config.url){
60791         this.setUrl(this.url, this.params, this.loadOnce);
60792     }
60793     
60794     
60795     
60796     Roo.ContentPanel.superclass.constructor.call(this);
60797     
60798     if (this.view && typeof(this.view.xtype) != 'undefined') {
60799         this.view.el = this.el.appendChild(document.createElement("div"));
60800         this.view = Roo.factory(this.view); 
60801         this.view.render  &&  this.view.render(false, '');  
60802     }
60803     
60804     
60805     this.fireEvent('render', this);
60806 };
60807
60808 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
60809     tabTip:'',
60810     setRegion : function(region){
60811         this.region = region;
60812         if(region){
60813            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
60814         }else{
60815            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
60816         } 
60817     },
60818     
60819     /**
60820      * Returns the toolbar for this Panel if one was configured. 
60821      * @return {Roo.Toolbar} 
60822      */
60823     getToolbar : function(){
60824         return this.toolbar;
60825     },
60826     
60827     setActiveState : function(active){
60828         this.active = active;
60829         if(!active){
60830             this.fireEvent("deactivate", this);
60831         }else{
60832             this.fireEvent("activate", this);
60833         }
60834     },
60835     /**
60836      * Updates this panel's element
60837      * @param {String} content The new content
60838      * @param {Boolean} loadScripts (optional) true to look for and process scripts
60839     */
60840     setContent : function(content, loadScripts){
60841         this.el.update(content, loadScripts);
60842     },
60843
60844     ignoreResize : function(w, h){
60845         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
60846             return true;
60847         }else{
60848             this.lastSize = {width: w, height: h};
60849             return false;
60850         }
60851     },
60852     /**
60853      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
60854      * @return {Roo.UpdateManager} The UpdateManager
60855      */
60856     getUpdateManager : function(){
60857         return this.el.getUpdateManager();
60858     },
60859      /**
60860      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
60861      * @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:
60862 <pre><code>
60863 panel.load({
60864     url: "your-url.php",
60865     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
60866     callback: yourFunction,
60867     scope: yourObject, //(optional scope)
60868     discardUrl: false,
60869     nocache: false,
60870     text: "Loading...",
60871     timeout: 30,
60872     scripts: false
60873 });
60874 </code></pre>
60875      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
60876      * 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.
60877      * @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}
60878      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
60879      * @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.
60880      * @return {Roo.ContentPanel} this
60881      */
60882     load : function(){
60883         var um = this.el.getUpdateManager();
60884         um.update.apply(um, arguments);
60885         return this;
60886     },
60887
60888
60889     /**
60890      * 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.
60891      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
60892      * @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)
60893      * @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)
60894      * @return {Roo.UpdateManager} The UpdateManager
60895      */
60896     setUrl : function(url, params, loadOnce){
60897         if(this.refreshDelegate){
60898             this.removeListener("activate", this.refreshDelegate);
60899         }
60900         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
60901         this.on("activate", this.refreshDelegate);
60902         return this.el.getUpdateManager();
60903     },
60904     
60905     _handleRefresh : function(url, params, loadOnce){
60906         if(!loadOnce || !this.loaded){
60907             var updater = this.el.getUpdateManager();
60908             updater.update(url, params, this._setLoaded.createDelegate(this));
60909         }
60910     },
60911     
60912     _setLoaded : function(){
60913         this.loaded = true;
60914     }, 
60915     
60916     /**
60917      * Returns this panel's id
60918      * @return {String} 
60919      */
60920     getId : function(){
60921         return this.el.id;
60922     },
60923     
60924     /** 
60925      * Returns this panel's element - used by regiosn to add.
60926      * @return {Roo.Element} 
60927      */
60928     getEl : function(){
60929         return this.wrapEl || this.el;
60930     },
60931     
60932     adjustForComponents : function(width, height)
60933     {
60934         //Roo.log('adjustForComponents ');
60935         if(this.resizeEl != this.el){
60936             width -= this.el.getFrameWidth('lr');
60937             height -= this.el.getFrameWidth('tb');
60938         }
60939         if(this.toolbar){
60940             var te = this.toolbar.getEl();
60941             height -= te.getHeight();
60942             te.setWidth(width);
60943         }
60944         if(this.footer){
60945             var te = this.footer.getEl();
60946             //Roo.log("footer:" + te.getHeight());
60947             
60948             height -= te.getHeight();
60949             te.setWidth(width);
60950         }
60951         
60952         
60953         if(this.adjustments){
60954             width += this.adjustments[0];
60955             height += this.adjustments[1];
60956         }
60957         return {"width": width, "height": height};
60958     },
60959     
60960     setSize : function(width, height){
60961         if(this.fitToFrame && !this.ignoreResize(width, height)){
60962             if(this.fitContainer && this.resizeEl != this.el){
60963                 this.el.setSize(width, height);
60964             }
60965             var size = this.adjustForComponents(width, height);
60966             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
60967             this.fireEvent('resize', this, size.width, size.height);
60968         }
60969     },
60970     
60971     /**
60972      * Returns this panel's title
60973      * @return {String} 
60974      */
60975     getTitle : function(){
60976         return this.title;
60977     },
60978     
60979     /**
60980      * Set this panel's title
60981      * @param {String} title
60982      */
60983     setTitle : function(title){
60984         this.title = title;
60985         if(this.region){
60986             this.region.updatePanelTitle(this, title);
60987         }
60988     },
60989     
60990     /**
60991      * Returns true is this panel was configured to be closable
60992      * @return {Boolean} 
60993      */
60994     isClosable : function(){
60995         return this.closable;
60996     },
60997     
60998     beforeSlide : function(){
60999         this.el.clip();
61000         this.resizeEl.clip();
61001     },
61002     
61003     afterSlide : function(){
61004         this.el.unclip();
61005         this.resizeEl.unclip();
61006     },
61007     
61008     /**
61009      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
61010      *   Will fail silently if the {@link #setUrl} method has not been called.
61011      *   This does not activate the panel, just updates its content.
61012      */
61013     refresh : function(){
61014         if(this.refreshDelegate){
61015            this.loaded = false;
61016            this.refreshDelegate();
61017         }
61018     },
61019     
61020     /**
61021      * Destroys this panel
61022      */
61023     destroy : function(){
61024         this.el.removeAllListeners();
61025         var tempEl = document.createElement("span");
61026         tempEl.appendChild(this.el.dom);
61027         tempEl.innerHTML = "";
61028         this.el.remove();
61029         this.el = null;
61030     },
61031     
61032     /**
61033      * form - if the content panel contains a form - this is a reference to it.
61034      * @type {Roo.form.Form}
61035      */
61036     form : false,
61037     /**
61038      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
61039      *    This contains a reference to it.
61040      * @type {Roo.View}
61041      */
61042     view : false,
61043     
61044       /**
61045      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
61046      * <pre><code>
61047
61048 layout.addxtype({
61049        xtype : 'Form',
61050        items: [ .... ]
61051    }
61052 );
61053
61054 </code></pre>
61055      * @param {Object} cfg Xtype definition of item to add.
61056      */
61057     
61058     addxtype : function(cfg) {
61059         if(cfg.xtype.match(/^UploadCropbox$/)) {
61060
61061             this.cropbox = new Roo.factory(cfg);
61062
61063             this.cropbox.render(this.el);
61064
61065             return this.cropbox;
61066         }
61067         // add form..
61068         if (cfg.xtype.match(/^Form$/)) {
61069             
61070             var el;
61071             //if (this.footer) {
61072             //    el = this.footer.container.insertSibling(false, 'before');
61073             //} else {
61074                 el = this.el.createChild();
61075             //}
61076
61077             this.form = new  Roo.form.Form(cfg);
61078             
61079             
61080             if ( this.form.allItems.length) {
61081                 this.form.render(el.dom);
61082             }
61083             return this.form;
61084         }
61085         // should only have one of theses..
61086         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
61087             // views.. should not be just added - used named prop 'view''
61088             
61089             cfg.el = this.el.appendChild(document.createElement("div"));
61090             // factory?
61091             
61092             var ret = new Roo.factory(cfg);
61093              
61094              ret.render && ret.render(false, ''); // render blank..
61095             this.view = ret;
61096             return ret;
61097         }
61098         return false;
61099     }
61100 });
61101
61102
61103
61104
61105
61106
61107
61108
61109
61110
61111
61112
61113 /**
61114  * @class Roo.GridPanel
61115  * @extends Roo.ContentPanel
61116  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61117  * @constructor
61118  * Create a new GridPanel.
61119  * @cfg {Roo.grid.Grid} grid The grid for this panel
61120  */
61121 Roo.GridPanel = function(grid, config){
61122     
61123     // universal ctor...
61124     if (typeof(grid.grid) != 'undefined') {
61125         config = grid;
61126         grid = config.grid;
61127     }
61128     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
61129         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
61130         
61131     this.wrapper.dom.appendChild(grid.getGridEl().dom);
61132     
61133     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
61134     
61135     if(this.toolbar){
61136         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
61137     }
61138     // xtype created footer. - not sure if will work as we normally have to render first..
61139     if (this.footer && !this.footer.el && this.footer.xtype) {
61140         
61141         this.footer.container = this.grid.getView().getFooterPanel(true);
61142         this.footer.dataSource = this.grid.dataSource;
61143         this.footer = Roo.factory(this.footer, Roo);
61144         
61145     }
61146     
61147     grid.monitorWindowResize = false; // turn off autosizing
61148     grid.autoHeight = false;
61149     grid.autoWidth = false;
61150     this.grid = grid;
61151     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
61152 };
61153
61154 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
61155     getId : function(){
61156         return this.grid.id;
61157     },
61158     
61159     /**
61160      * Returns the grid for this panel
61161      * @return {Roo.grid.Grid} 
61162      */
61163     getGrid : function(){
61164         return this.grid;    
61165     },
61166     
61167     setSize : function(width, height){
61168         if(!this.ignoreResize(width, height)){
61169             var grid = this.grid;
61170             var size = this.adjustForComponents(width, height);
61171             grid.getGridEl().setSize(size.width, size.height);
61172             grid.autoSize();
61173         }
61174     },
61175     
61176     beforeSlide : function(){
61177         this.grid.getView().scroller.clip();
61178     },
61179     
61180     afterSlide : function(){
61181         this.grid.getView().scroller.unclip();
61182     },
61183     
61184     destroy : function(){
61185         this.grid.destroy();
61186         delete this.grid;
61187         Roo.GridPanel.superclass.destroy.call(this); 
61188     }
61189 });
61190
61191
61192 /**
61193  * @class Roo.NestedLayoutPanel
61194  * @extends Roo.ContentPanel
61195  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61196  * @cfg {Roo.BorderLayout} layout   [required] The layout for this panel
61197  *
61198  * 
61199  * @constructor
61200  * Create a new NestedLayoutPanel.
61201  * 
61202  * 
61203  * @param {Roo.BorderLayout} layout [required] The layout for this panel
61204  * @param {String/Object} config A string to set only the title or a config object
61205  */
61206 Roo.NestedLayoutPanel = function(layout, config)
61207 {
61208     // construct with only one argument..
61209     /* FIXME - implement nicer consturctors
61210     if (layout.layout) {
61211         config = layout;
61212         layout = config.layout;
61213         delete config.layout;
61214     }
61215     if (layout.xtype && !layout.getEl) {
61216         // then layout needs constructing..
61217         layout = Roo.factory(layout, Roo);
61218     }
61219     */
61220     
61221     
61222     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
61223     
61224     layout.monitorWindowResize = false; // turn off autosizing
61225     this.layout = layout;
61226     this.layout.getEl().addClass("x-layout-nested-layout");
61227     
61228     
61229     
61230     
61231 };
61232
61233 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
61234
61235     layout : false,
61236
61237     setSize : function(width, height){
61238         if(!this.ignoreResize(width, height)){
61239             var size = this.adjustForComponents(width, height);
61240             var el = this.layout.getEl();
61241             el.setSize(size.width, size.height);
61242             var touch = el.dom.offsetWidth;
61243             this.layout.layout();
61244             // ie requires a double layout on the first pass
61245             if(Roo.isIE && !this.initialized){
61246                 this.initialized = true;
61247                 this.layout.layout();
61248             }
61249         }
61250     },
61251     
61252     // activate all subpanels if not currently active..
61253     
61254     setActiveState : function(active){
61255         this.active = active;
61256         if(!active){
61257             this.fireEvent("deactivate", this);
61258             return;
61259         }
61260         
61261         this.fireEvent("activate", this);
61262         // not sure if this should happen before or after..
61263         if (!this.layout) {
61264             return; // should not happen..
61265         }
61266         var reg = false;
61267         for (var r in this.layout.regions) {
61268             reg = this.layout.getRegion(r);
61269             if (reg.getActivePanel()) {
61270                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
61271                 reg.setActivePanel(reg.getActivePanel());
61272                 continue;
61273             }
61274             if (!reg.panels.length) {
61275                 continue;
61276             }
61277             reg.showPanel(reg.getPanel(0));
61278         }
61279         
61280         
61281         
61282         
61283     },
61284     
61285     /**
61286      * Returns the nested BorderLayout for this panel
61287      * @return {Roo.BorderLayout}
61288      */
61289     getLayout : function(){
61290         return this.layout;
61291     },
61292     
61293      /**
61294      * Adds a xtype elements to the layout of the nested panel
61295      * <pre><code>
61296
61297 panel.addxtype({
61298        xtype : 'ContentPanel',
61299        region: 'west',
61300        items: [ .... ]
61301    }
61302 );
61303
61304 panel.addxtype({
61305         xtype : 'NestedLayoutPanel',
61306         region: 'west',
61307         layout: {
61308            center: { },
61309            west: { }   
61310         },
61311         items : [ ... list of content panels or nested layout panels.. ]
61312    }
61313 );
61314 </code></pre>
61315      * @param {Object} cfg Xtype definition of item to add.
61316      */
61317     addxtype : function(cfg) {
61318         return this.layout.addxtype(cfg);
61319     
61320     }
61321 });
61322
61323 Roo.ScrollPanel = function(el, config, content){
61324     config = config || {};
61325     config.fitToFrame = true;
61326     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
61327     
61328     this.el.dom.style.overflow = "hidden";
61329     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
61330     this.el.removeClass("x-layout-inactive-content");
61331     this.el.on("mousewheel", this.onWheel, this);
61332
61333     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
61334     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
61335     up.unselectable(); down.unselectable();
61336     up.on("click", this.scrollUp, this);
61337     down.on("click", this.scrollDown, this);
61338     up.addClassOnOver("x-scroller-btn-over");
61339     down.addClassOnOver("x-scroller-btn-over");
61340     up.addClassOnClick("x-scroller-btn-click");
61341     down.addClassOnClick("x-scroller-btn-click");
61342     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
61343
61344     this.resizeEl = this.el;
61345     this.el = wrap; this.up = up; this.down = down;
61346 };
61347
61348 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
61349     increment : 100,
61350     wheelIncrement : 5,
61351     scrollUp : function(){
61352         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
61353     },
61354
61355     scrollDown : function(){
61356         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
61357     },
61358
61359     afterScroll : function(){
61360         var el = this.resizeEl;
61361         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
61362         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61363         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61364     },
61365
61366     setSize : function(){
61367         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
61368         this.afterScroll();
61369     },
61370
61371     onWheel : function(e){
61372         var d = e.getWheelDelta();
61373         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
61374         this.afterScroll();
61375         e.stopEvent();
61376     },
61377
61378     setContent : function(content, loadScripts){
61379         this.resizeEl.update(content, loadScripts);
61380     }
61381
61382 });
61383
61384
61385
61386 /**
61387  * @class Roo.TreePanel
61388  * @extends Roo.ContentPanel
61389  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61390  * Treepanel component
61391  * 
61392  * @constructor
61393  * Create a new TreePanel. - defaults to fit/scoll contents.
61394  * @param {String/Object} config A string to set only the panel's title, or a config object
61395  */
61396 Roo.TreePanel = function(config){
61397     var el = config.el;
61398     var tree = config.tree;
61399     delete config.tree; 
61400     delete config.el; // hopefull!
61401     
61402     // wrapper for IE7 strict & safari scroll issue
61403     
61404     var treeEl = el.createChild();
61405     config.resizeEl = treeEl;
61406     
61407     
61408     
61409     Roo.TreePanel.superclass.constructor.call(this, el, config);
61410  
61411  
61412     this.tree = new Roo.tree.TreePanel(treeEl , tree);
61413     //console.log(tree);
61414     this.on('activate', function()
61415     {
61416         if (this.tree.rendered) {
61417             return;
61418         }
61419         //console.log('render tree');
61420         this.tree.render();
61421     });
61422     // this should not be needed.. - it's actually the 'el' that resizes?
61423     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
61424     
61425     //this.on('resize',  function (cp, w, h) {
61426     //        this.tree.innerCt.setWidth(w);
61427     //        this.tree.innerCt.setHeight(h);
61428     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
61429     //});
61430
61431         
61432     
61433 };
61434
61435 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
61436     fitToFrame : true,
61437     autoScroll : true,
61438     /*
61439      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
61440      */
61441     tree : false
61442
61443 });
61444 /*
61445  * Based on:
61446  * Ext JS Library 1.1.1
61447  * Copyright(c) 2006-2007, Ext JS, LLC.
61448  *
61449  * Originally Released Under LGPL - original licence link has changed is not relivant.
61450  *
61451  * Fork - LGPL
61452  * <script type="text/javascript">
61453  */
61454  
61455
61456 /**
61457  * @class Roo.ReaderLayout
61458  * @extends Roo.BorderLayout
61459  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
61460  * center region containing two nested regions (a top one for a list view and one for item preview below),
61461  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
61462  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
61463  * expedites the setup of the overall layout and regions for this common application style.
61464  * Example:
61465  <pre><code>
61466 var reader = new Roo.ReaderLayout();
61467 var CP = Roo.ContentPanel;  // shortcut for adding
61468
61469 reader.beginUpdate();
61470 reader.add("north", new CP("north", "North"));
61471 reader.add("west", new CP("west", {title: "West"}));
61472 reader.add("east", new CP("east", {title: "East"}));
61473
61474 reader.regions.listView.add(new CP("listView", "List"));
61475 reader.regions.preview.add(new CP("preview", "Preview"));
61476 reader.endUpdate();
61477 </code></pre>
61478 * @constructor
61479 * Create a new ReaderLayout
61480 * @param {Object} config Configuration options
61481 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
61482 * document.body if omitted)
61483 */
61484 Roo.ReaderLayout = function(config, renderTo){
61485     var c = config || {size:{}};
61486     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
61487         north: c.north !== false ? Roo.apply({
61488             split:false,
61489             initialSize: 32,
61490             titlebar: false
61491         }, c.north) : false,
61492         west: c.west !== false ? Roo.apply({
61493             split:true,
61494             initialSize: 200,
61495             minSize: 175,
61496             maxSize: 400,
61497             titlebar: true,
61498             collapsible: true,
61499             animate: true,
61500             margins:{left:5,right:0,bottom:5,top:5},
61501             cmargins:{left:5,right:5,bottom:5,top:5}
61502         }, c.west) : false,
61503         east: c.east !== false ? Roo.apply({
61504             split:true,
61505             initialSize: 200,
61506             minSize: 175,
61507             maxSize: 400,
61508             titlebar: true,
61509             collapsible: true,
61510             animate: true,
61511             margins:{left:0,right:5,bottom:5,top:5},
61512             cmargins:{left:5,right:5,bottom:5,top:5}
61513         }, c.east) : false,
61514         center: Roo.apply({
61515             tabPosition: 'top',
61516             autoScroll:false,
61517             closeOnTab: true,
61518             titlebar:false,
61519             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
61520         }, c.center)
61521     });
61522
61523     this.el.addClass('x-reader');
61524
61525     this.beginUpdate();
61526
61527     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
61528         south: c.preview !== false ? Roo.apply({
61529             split:true,
61530             initialSize: 200,
61531             minSize: 100,
61532             autoScroll:true,
61533             collapsible:true,
61534             titlebar: true,
61535             cmargins:{top:5,left:0, right:0, bottom:0}
61536         }, c.preview) : false,
61537         center: Roo.apply({
61538             autoScroll:false,
61539             titlebar:false,
61540             minHeight:200
61541         }, c.listView)
61542     });
61543     this.add('center', new Roo.NestedLayoutPanel(inner,
61544             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
61545
61546     this.endUpdate();
61547
61548     this.regions.preview = inner.getRegion('south');
61549     this.regions.listView = inner.getRegion('center');
61550 };
61551
61552 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
61553  * Based on:
61554  * Ext JS Library 1.1.1
61555  * Copyright(c) 2006-2007, Ext JS, LLC.
61556  *
61557  * Originally Released Under LGPL - original licence link has changed is not relivant.
61558  *
61559  * Fork - LGPL
61560  * <script type="text/javascript">
61561  */
61562  
61563 /**
61564  * @class Roo.grid.Grid
61565  * @extends Roo.util.Observable
61566  * This class represents the primary interface of a component based grid control.
61567  * <br><br>Usage:<pre><code>
61568  var grid = new Roo.grid.Grid("my-container-id", {
61569      ds: myDataStore,
61570      cm: myColModel,
61571      selModel: mySelectionModel,
61572      autoSizeColumns: true,
61573      monitorWindowResize: false,
61574      trackMouseOver: true
61575  });
61576  // set any options
61577  grid.render();
61578  * </code></pre>
61579  * <b>Common Problems:</b><br/>
61580  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
61581  * element will correct this<br/>
61582  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
61583  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
61584  * are unpredictable.<br/>
61585  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
61586  * grid to calculate dimensions/offsets.<br/>
61587   * @constructor
61588  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
61589  * The container MUST have some type of size defined for the grid to fill. The container will be
61590  * automatically set to position relative if it isn't already.
61591  * @param {Object} config A config object that sets properties on this grid.
61592  */
61593 Roo.grid.Grid = function(container, config){
61594         // initialize the container
61595         this.container = Roo.get(container);
61596         this.container.update("");
61597         this.container.setStyle("overflow", "hidden");
61598     this.container.addClass('x-grid-container');
61599
61600     this.id = this.container.id;
61601
61602     Roo.apply(this, config);
61603     // check and correct shorthanded configs
61604     if(this.ds){
61605         this.dataSource = this.ds;
61606         delete this.ds;
61607     }
61608     if(this.cm){
61609         this.colModel = this.cm;
61610         delete this.cm;
61611     }
61612     if(this.sm){
61613         this.selModel = this.sm;
61614         delete this.sm;
61615     }
61616
61617     if (this.selModel) {
61618         this.selModel = Roo.factory(this.selModel, Roo.grid);
61619         this.sm = this.selModel;
61620         this.sm.xmodule = this.xmodule || false;
61621     }
61622     if (typeof(this.colModel.config) == 'undefined') {
61623         this.colModel = new Roo.grid.ColumnModel(this.colModel);
61624         this.cm = this.colModel;
61625         this.cm.xmodule = this.xmodule || false;
61626     }
61627     if (this.dataSource) {
61628         this.dataSource= Roo.factory(this.dataSource, Roo.data);
61629         this.ds = this.dataSource;
61630         this.ds.xmodule = this.xmodule || false;
61631          
61632     }
61633     
61634     
61635     
61636     if(this.width){
61637         this.container.setWidth(this.width);
61638     }
61639
61640     if(this.height){
61641         this.container.setHeight(this.height);
61642     }
61643     /** @private */
61644         this.addEvents({
61645         // raw events
61646         /**
61647          * @event click
61648          * The raw click event for the entire grid.
61649          * @param {Roo.EventObject} e
61650          */
61651         "click" : true,
61652         /**
61653          * @event dblclick
61654          * The raw dblclick event for the entire grid.
61655          * @param {Roo.EventObject} e
61656          */
61657         "dblclick" : true,
61658         /**
61659          * @event contextmenu
61660          * The raw contextmenu event for the entire grid.
61661          * @param {Roo.EventObject} e
61662          */
61663         "contextmenu" : true,
61664         /**
61665          * @event mousedown
61666          * The raw mousedown event for the entire grid.
61667          * @param {Roo.EventObject} e
61668          */
61669         "mousedown" : true,
61670         /**
61671          * @event mouseup
61672          * The raw mouseup event for the entire grid.
61673          * @param {Roo.EventObject} e
61674          */
61675         "mouseup" : true,
61676         /**
61677          * @event mouseover
61678          * The raw mouseover event for the entire grid.
61679          * @param {Roo.EventObject} e
61680          */
61681         "mouseover" : true,
61682         /**
61683          * @event mouseout
61684          * The raw mouseout event for the entire grid.
61685          * @param {Roo.EventObject} e
61686          */
61687         "mouseout" : true,
61688         /**
61689          * @event keypress
61690          * The raw keypress event for the entire grid.
61691          * @param {Roo.EventObject} e
61692          */
61693         "keypress" : true,
61694         /**
61695          * @event keydown
61696          * The raw keydown event for the entire grid.
61697          * @param {Roo.EventObject} e
61698          */
61699         "keydown" : true,
61700
61701         // custom events
61702
61703         /**
61704          * @event cellclick
61705          * Fires when a cell is clicked
61706          * @param {Grid} this
61707          * @param {Number} rowIndex
61708          * @param {Number} columnIndex
61709          * @param {Roo.EventObject} e
61710          */
61711         "cellclick" : true,
61712         /**
61713          * @event celldblclick
61714          * Fires when a cell is double clicked
61715          * @param {Grid} this
61716          * @param {Number} rowIndex
61717          * @param {Number} columnIndex
61718          * @param {Roo.EventObject} e
61719          */
61720         "celldblclick" : true,
61721         /**
61722          * @event rowclick
61723          * Fires when a row is clicked
61724          * @param {Grid} this
61725          * @param {Number} rowIndex
61726          * @param {Roo.EventObject} e
61727          */
61728         "rowclick" : true,
61729         /**
61730          * @event rowdblclick
61731          * Fires when a row is double clicked
61732          * @param {Grid} this
61733          * @param {Number} rowIndex
61734          * @param {Roo.EventObject} e
61735          */
61736         "rowdblclick" : true,
61737         /**
61738          * @event headerclick
61739          * Fires when a header is clicked
61740          * @param {Grid} this
61741          * @param {Number} columnIndex
61742          * @param {Roo.EventObject} e
61743          */
61744         "headerclick" : true,
61745         /**
61746          * @event headerdblclick
61747          * Fires when a header cell is double clicked
61748          * @param {Grid} this
61749          * @param {Number} columnIndex
61750          * @param {Roo.EventObject} e
61751          */
61752         "headerdblclick" : true,
61753         /**
61754          * @event rowcontextmenu
61755          * Fires when a row is right clicked
61756          * @param {Grid} this
61757          * @param {Number} rowIndex
61758          * @param {Roo.EventObject} e
61759          */
61760         "rowcontextmenu" : true,
61761         /**
61762          * @event cellcontextmenu
61763          * Fires when a cell is right clicked
61764          * @param {Grid} this
61765          * @param {Number} rowIndex
61766          * @param {Number} cellIndex
61767          * @param {Roo.EventObject} e
61768          */
61769          "cellcontextmenu" : true,
61770         /**
61771          * @event headercontextmenu
61772          * Fires when a header is right clicked
61773          * @param {Grid} this
61774          * @param {Number} columnIndex
61775          * @param {Roo.EventObject} e
61776          */
61777         "headercontextmenu" : true,
61778         /**
61779          * @event bodyscroll
61780          * Fires when the body element is scrolled
61781          * @param {Number} scrollLeft
61782          * @param {Number} scrollTop
61783          */
61784         "bodyscroll" : true,
61785         /**
61786          * @event columnresize
61787          * Fires when the user resizes a column
61788          * @param {Number} columnIndex
61789          * @param {Number} newSize
61790          */
61791         "columnresize" : true,
61792         /**
61793          * @event columnmove
61794          * Fires when the user moves a column
61795          * @param {Number} oldIndex
61796          * @param {Number} newIndex
61797          */
61798         "columnmove" : true,
61799         /**
61800          * @event startdrag
61801          * Fires when row(s) start being dragged
61802          * @param {Grid} this
61803          * @param {Roo.GridDD} dd The drag drop object
61804          * @param {event} e The raw browser event
61805          */
61806         "startdrag" : true,
61807         /**
61808          * @event enddrag
61809          * Fires when a drag operation is complete
61810          * @param {Grid} this
61811          * @param {Roo.GridDD} dd The drag drop object
61812          * @param {event} e The raw browser event
61813          */
61814         "enddrag" : true,
61815         /**
61816          * @event dragdrop
61817          * Fires when dragged row(s) are dropped on a valid DD target
61818          * @param {Grid} this
61819          * @param {Roo.GridDD} dd The drag drop object
61820          * @param {String} targetId The target drag drop object
61821          * @param {event} e The raw browser event
61822          */
61823         "dragdrop" : true,
61824         /**
61825          * @event dragover
61826          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
61827          * @param {Grid} this
61828          * @param {Roo.GridDD} dd The drag drop object
61829          * @param {String} targetId The target drag drop object
61830          * @param {event} e The raw browser event
61831          */
61832         "dragover" : true,
61833         /**
61834          * @event dragenter
61835          *  Fires when the dragged row(s) first cross another DD target while being dragged
61836          * @param {Grid} this
61837          * @param {Roo.GridDD} dd The drag drop object
61838          * @param {String} targetId The target drag drop object
61839          * @param {event} e The raw browser event
61840          */
61841         "dragenter" : true,
61842         /**
61843          * @event dragout
61844          * Fires when the dragged row(s) leave another DD target while being dragged
61845          * @param {Grid} this
61846          * @param {Roo.GridDD} dd The drag drop object
61847          * @param {String} targetId The target drag drop object
61848          * @param {event} e The raw browser event
61849          */
61850         "dragout" : true,
61851         /**
61852          * @event rowclass
61853          * Fires when a row is rendered, so you can change add a style to it.
61854          * @param {GridView} gridview   The grid view
61855          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
61856          */
61857         'rowclass' : true,
61858
61859         /**
61860          * @event render
61861          * Fires when the grid is rendered
61862          * @param {Grid} grid
61863          */
61864         'render' : true
61865     });
61866
61867     Roo.grid.Grid.superclass.constructor.call(this);
61868 };
61869 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
61870     
61871     /**
61872          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
61873          */
61874         /**
61875          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
61876          */
61877         /**
61878          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
61879          */
61880         /**
61881          * @cfg {Roo.data.Store} ds The data store for the grid
61882          */
61883         /**
61884          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
61885          */
61886         /**
61887      * @cfg {String} ddGroup - drag drop group.
61888      */
61889       /**
61890      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
61891      */
61892
61893     /**
61894      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
61895      */
61896     minColumnWidth : 25,
61897
61898     /**
61899      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
61900      * <b>on initial render.</b> It is more efficient to explicitly size the columns
61901      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
61902      */
61903     autoSizeColumns : false,
61904
61905     /**
61906      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
61907      */
61908     autoSizeHeaders : true,
61909
61910     /**
61911      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
61912      */
61913     monitorWindowResize : true,
61914
61915     /**
61916      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
61917      * rows measured to get a columns size. Default is 0 (all rows).
61918      */
61919     maxRowsToMeasure : 0,
61920
61921     /**
61922      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
61923      */
61924     trackMouseOver : true,
61925
61926     /**
61927     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
61928     */
61929       /**
61930     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
61931     */
61932     
61933     /**
61934     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
61935     */
61936     enableDragDrop : false,
61937     
61938     /**
61939     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
61940     */
61941     enableColumnMove : true,
61942     
61943     /**
61944     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
61945     */
61946     enableColumnHide : true,
61947     
61948     /**
61949     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
61950     */
61951     enableRowHeightSync : false,
61952     
61953     /**
61954     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
61955     */
61956     stripeRows : true,
61957     
61958     /**
61959     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
61960     */
61961     autoHeight : false,
61962
61963     /**
61964      * @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.
61965      */
61966     autoExpandColumn : false,
61967
61968     /**
61969     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
61970     * Default is 50.
61971     */
61972     autoExpandMin : 50,
61973
61974     /**
61975     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
61976     */
61977     autoExpandMax : 1000,
61978
61979     /**
61980     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
61981     */
61982     view : null,
61983
61984     /**
61985     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
61986     */
61987     loadMask : false,
61988     /**
61989     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
61990     */
61991     dropTarget: false,
61992      /**
61993     * @cfg {boolean} sortColMenu Sort the column order menu when it shows (usefull for long lists..) default false
61994     */ 
61995     sortColMenu : false,
61996     
61997     // private
61998     rendered : false,
61999
62000     /**
62001     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
62002     * of a fixed width. Default is false.
62003     */
62004     /**
62005     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
62006     */
62007     
62008     
62009     /**
62010     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
62011     * %0 is replaced with the number of selected rows.
62012     */
62013     ddText : "{0} selected row{1}",
62014     
62015     
62016     /**
62017      * Called once after all setup has been completed and the grid is ready to be rendered.
62018      * @return {Roo.grid.Grid} this
62019      */
62020     render : function()
62021     {
62022         var c = this.container;
62023         // try to detect autoHeight/width mode
62024         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
62025             this.autoHeight = true;
62026         }
62027         var view = this.getView();
62028         view.init(this);
62029
62030         c.on("click", this.onClick, this);
62031         c.on("dblclick", this.onDblClick, this);
62032         c.on("contextmenu", this.onContextMenu, this);
62033         c.on("keydown", this.onKeyDown, this);
62034         if (Roo.isTouch) {
62035             c.on("touchstart", this.onTouchStart, this);
62036         }
62037
62038         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
62039
62040         this.getSelectionModel().init(this);
62041
62042         view.render();
62043
62044         if(this.loadMask){
62045             this.loadMask = new Roo.LoadMask(this.container,
62046                     Roo.apply({store:this.dataSource}, this.loadMask));
62047         }
62048         
62049         
62050         if (this.toolbar && this.toolbar.xtype) {
62051             this.toolbar.container = this.getView().getHeaderPanel(true);
62052             this.toolbar = new Roo.Toolbar(this.toolbar);
62053         }
62054         if (this.footer && this.footer.xtype) {
62055             this.footer.dataSource = this.getDataSource();
62056             this.footer.container = this.getView().getFooterPanel(true);
62057             this.footer = Roo.factory(this.footer, Roo);
62058         }
62059         if (this.dropTarget && this.dropTarget.xtype) {
62060             delete this.dropTarget.xtype;
62061             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
62062         }
62063         
62064         
62065         this.rendered = true;
62066         this.fireEvent('render', this);
62067         return this;
62068     },
62069
62070     /**
62071      * Reconfigures the grid to use a different Store and Column Model.
62072      * The View will be bound to the new objects and refreshed.
62073      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
62074      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
62075      */
62076     reconfigure : function(dataSource, colModel){
62077         if(this.loadMask){
62078             this.loadMask.destroy();
62079             this.loadMask = new Roo.LoadMask(this.container,
62080                     Roo.apply({store:dataSource}, this.loadMask));
62081         }
62082         this.view.bind(dataSource, colModel);
62083         this.dataSource = dataSource;
62084         this.colModel = colModel;
62085         this.view.refresh(true);
62086     },
62087     /**
62088      * addColumns
62089      * Add's a column, default at the end..
62090      
62091      * @param {int} position to add (default end)
62092      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
62093      */
62094     addColumns : function(pos, ar)
62095     {
62096         
62097         for (var i =0;i< ar.length;i++) {
62098             var cfg = ar[i];
62099             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
62100             this.cm.lookup[cfg.id] = cfg;
62101         }
62102         
62103         
62104         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
62105             pos = this.cm.config.length; //this.cm.config.push(cfg);
62106         } 
62107         pos = Math.max(0,pos);
62108         ar.unshift(0);
62109         ar.unshift(pos);
62110         this.cm.config.splice.apply(this.cm.config, ar);
62111         
62112         
62113         
62114         this.view.generateRules(this.cm);
62115         this.view.refresh(true);
62116         
62117     },
62118     
62119     
62120     
62121     
62122     // private
62123     onKeyDown : function(e){
62124         this.fireEvent("keydown", e);
62125     },
62126
62127     /**
62128      * Destroy this grid.
62129      * @param {Boolean} removeEl True to remove the element
62130      */
62131     destroy : function(removeEl, keepListeners){
62132         if(this.loadMask){
62133             this.loadMask.destroy();
62134         }
62135         var c = this.container;
62136         c.removeAllListeners();
62137         this.view.destroy();
62138         this.colModel.purgeListeners();
62139         if(!keepListeners){
62140             this.purgeListeners();
62141         }
62142         c.update("");
62143         if(removeEl === true){
62144             c.remove();
62145         }
62146     },
62147
62148     // private
62149     processEvent : function(name, e){
62150         // does this fire select???
62151         //Roo.log('grid:processEvent '  + name);
62152         
62153         if (name != 'touchstart' ) {
62154             this.fireEvent(name, e);    
62155         }
62156         
62157         var t = e.getTarget();
62158         var v = this.view;
62159         var header = v.findHeaderIndex(t);
62160         if(header !== false){
62161             var ename = name == 'touchstart' ? 'click' : name;
62162              
62163             this.fireEvent("header" + ename, this, header, e);
62164         }else{
62165             var row = v.findRowIndex(t);
62166             var cell = v.findCellIndex(t);
62167             if (name == 'touchstart') {
62168                 // first touch is always a click.
62169                 // hopefull this happens after selection is updated.?
62170                 name = false;
62171                 
62172                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
62173                     var cs = this.selModel.getSelectedCell();
62174                     if (row == cs[0] && cell == cs[1]){
62175                         name = 'dblclick';
62176                     }
62177                 }
62178                 if (typeof(this.selModel.getSelections) != 'undefined') {
62179                     var cs = this.selModel.getSelections();
62180                     var ds = this.dataSource;
62181                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
62182                         name = 'dblclick';
62183                     }
62184                 }
62185                 if (!name) {
62186                     return;
62187                 }
62188             }
62189             
62190             
62191             if(row !== false){
62192                 this.fireEvent("row" + name, this, row, e);
62193                 if(cell !== false){
62194                     this.fireEvent("cell" + name, this, row, cell, e);
62195                 }
62196             }
62197         }
62198     },
62199
62200     // private
62201     onClick : function(e){
62202         this.processEvent("click", e);
62203     },
62204    // private
62205     onTouchStart : function(e){
62206         this.processEvent("touchstart", e);
62207     },
62208
62209     // private
62210     onContextMenu : function(e, t){
62211         this.processEvent("contextmenu", e);
62212     },
62213
62214     // private
62215     onDblClick : function(e){
62216         this.processEvent("dblclick", e);
62217     },
62218
62219     // private
62220     walkCells : function(row, col, step, fn, scope){
62221         var cm = this.colModel, clen = cm.getColumnCount();
62222         var ds = this.dataSource, rlen = ds.getCount(), first = true;
62223         if(step < 0){
62224             if(col < 0){
62225                 row--;
62226                 first = false;
62227             }
62228             while(row >= 0){
62229                 if(!first){
62230                     col = clen-1;
62231                 }
62232                 first = false;
62233                 while(col >= 0){
62234                     if(fn.call(scope || this, row, col, cm) === true){
62235                         return [row, col];
62236                     }
62237                     col--;
62238                 }
62239                 row--;
62240             }
62241         } else {
62242             if(col >= clen){
62243                 row++;
62244                 first = false;
62245             }
62246             while(row < rlen){
62247                 if(!first){
62248                     col = 0;
62249                 }
62250                 first = false;
62251                 while(col < clen){
62252                     if(fn.call(scope || this, row, col, cm) === true){
62253                         return [row, col];
62254                     }
62255                     col++;
62256                 }
62257                 row++;
62258             }
62259         }
62260         return null;
62261     },
62262
62263     // private
62264     getSelections : function(){
62265         return this.selModel.getSelections();
62266     },
62267
62268     /**
62269      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
62270      * but if manual update is required this method will initiate it.
62271      */
62272     autoSize : function(){
62273         if(this.rendered){
62274             this.view.layout();
62275             if(this.view.adjustForScroll){
62276                 this.view.adjustForScroll();
62277             }
62278         }
62279     },
62280
62281     /**
62282      * Returns the grid's underlying element.
62283      * @return {Element} The element
62284      */
62285     getGridEl : function(){
62286         return this.container;
62287     },
62288
62289     // private for compatibility, overridden by editor grid
62290     stopEditing : function(){},
62291
62292     /**
62293      * Returns the grid's SelectionModel.
62294      * @return {SelectionModel}
62295      */
62296     getSelectionModel : function(){
62297         if(!this.selModel){
62298             this.selModel = new Roo.grid.RowSelectionModel();
62299         }
62300         return this.selModel;
62301     },
62302
62303     /**
62304      * Returns the grid's DataSource.
62305      * @return {DataSource}
62306      */
62307     getDataSource : function(){
62308         return this.dataSource;
62309     },
62310
62311     /**
62312      * Returns the grid's ColumnModel.
62313      * @return {ColumnModel}
62314      */
62315     getColumnModel : function(){
62316         return this.colModel;
62317     },
62318
62319     /**
62320      * Returns the grid's GridView object.
62321      * @return {GridView}
62322      */
62323     getView : function(){
62324         if(!this.view){
62325             this.view = new Roo.grid.GridView(this.viewConfig);
62326             this.relayEvents(this.view, [
62327                 "beforerowremoved", "beforerowsinserted",
62328                 "beforerefresh", "rowremoved",
62329                 "rowsinserted", "rowupdated" ,"refresh"
62330             ]);
62331         }
62332         return this.view;
62333     },
62334     /**
62335      * Called to get grid's drag proxy text, by default returns this.ddText.
62336      * Override this to put something different in the dragged text.
62337      * @return {String}
62338      */
62339     getDragDropText : function(){
62340         var count = this.selModel.getCount();
62341         return String.format(this.ddText, count, count == 1 ? '' : 's');
62342     }
62343 });
62344 /*
62345  * Based on:
62346  * Ext JS Library 1.1.1
62347  * Copyright(c) 2006-2007, Ext JS, LLC.
62348  *
62349  * Originally Released Under LGPL - original licence link has changed is not relivant.
62350  *
62351  * Fork - LGPL
62352  * <script type="text/javascript">
62353  */
62354  /**
62355  * @class Roo.grid.AbstractGridView
62356  * @extends Roo.util.Observable
62357  * @abstract
62358  * Abstract base class for grid Views
62359  * @constructor
62360  */
62361 Roo.grid.AbstractGridView = function(){
62362         this.grid = null;
62363         
62364         this.events = {
62365             "beforerowremoved" : true,
62366             "beforerowsinserted" : true,
62367             "beforerefresh" : true,
62368             "rowremoved" : true,
62369             "rowsinserted" : true,
62370             "rowupdated" : true,
62371             "refresh" : true
62372         };
62373     Roo.grid.AbstractGridView.superclass.constructor.call(this);
62374 };
62375
62376 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
62377     rowClass : "x-grid-row",
62378     cellClass : "x-grid-cell",
62379     tdClass : "x-grid-td",
62380     hdClass : "x-grid-hd",
62381     splitClass : "x-grid-hd-split",
62382     
62383     init: function(grid){
62384         this.grid = grid;
62385                 var cid = this.grid.getGridEl().id;
62386         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
62387         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
62388         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
62389         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
62390         },
62391         
62392     getColumnRenderers : function(){
62393         var renderers = [];
62394         var cm = this.grid.colModel;
62395         var colCount = cm.getColumnCount();
62396         for(var i = 0; i < colCount; i++){
62397             renderers[i] = cm.getRenderer(i);
62398         }
62399         return renderers;
62400     },
62401     
62402     getColumnIds : function(){
62403         var ids = [];
62404         var cm = this.grid.colModel;
62405         var colCount = cm.getColumnCount();
62406         for(var i = 0; i < colCount; i++){
62407             ids[i] = cm.getColumnId(i);
62408         }
62409         return ids;
62410     },
62411     
62412     getDataIndexes : function(){
62413         if(!this.indexMap){
62414             this.indexMap = this.buildIndexMap();
62415         }
62416         return this.indexMap.colToData;
62417     },
62418     
62419     getColumnIndexByDataIndex : function(dataIndex){
62420         if(!this.indexMap){
62421             this.indexMap = this.buildIndexMap();
62422         }
62423         return this.indexMap.dataToCol[dataIndex];
62424     },
62425     
62426     /**
62427      * Set a css style for a column dynamically. 
62428      * @param {Number} colIndex The index of the column
62429      * @param {String} name The css property name
62430      * @param {String} value The css value
62431      */
62432     setCSSStyle : function(colIndex, name, value){
62433         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
62434         Roo.util.CSS.updateRule(selector, name, value);
62435     },
62436     
62437     generateRules : function(cm){
62438         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
62439         Roo.util.CSS.removeStyleSheet(rulesId);
62440         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62441             var cid = cm.getColumnId(i);
62442             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
62443                          this.tdSelector, cid, " {\n}\n",
62444                          this.hdSelector, cid, " {\n}\n",
62445                          this.splitSelector, cid, " {\n}\n");
62446         }
62447         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
62448     }
62449 });/*
62450  * Based on:
62451  * Ext JS Library 1.1.1
62452  * Copyright(c) 2006-2007, Ext JS, LLC.
62453  *
62454  * Originally Released Under LGPL - original licence link has changed is not relivant.
62455  *
62456  * Fork - LGPL
62457  * <script type="text/javascript">
62458  */
62459
62460 // private
62461 // This is a support class used internally by the Grid components
62462 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
62463     this.grid = grid;
62464     this.view = grid.getView();
62465     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62466     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
62467     if(hd2){
62468         this.setHandleElId(Roo.id(hd));
62469         this.setOuterHandleElId(Roo.id(hd2));
62470     }
62471     this.scroll = false;
62472 };
62473 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
62474     maxDragWidth: 120,
62475     getDragData : function(e){
62476         var t = Roo.lib.Event.getTarget(e);
62477         var h = this.view.findHeaderCell(t);
62478         if(h){
62479             return {ddel: h.firstChild, header:h};
62480         }
62481         return false;
62482     },
62483
62484     onInitDrag : function(e){
62485         this.view.headersDisabled = true;
62486         var clone = this.dragData.ddel.cloneNode(true);
62487         clone.id = Roo.id();
62488         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
62489         this.proxy.update(clone);
62490         return true;
62491     },
62492
62493     afterValidDrop : function(){
62494         var v = this.view;
62495         setTimeout(function(){
62496             v.headersDisabled = false;
62497         }, 50);
62498     },
62499
62500     afterInvalidDrop : function(){
62501         var v = this.view;
62502         setTimeout(function(){
62503             v.headersDisabled = false;
62504         }, 50);
62505     }
62506 });
62507 /*
62508  * Based on:
62509  * Ext JS Library 1.1.1
62510  * Copyright(c) 2006-2007, Ext JS, LLC.
62511  *
62512  * Originally Released Under LGPL - original licence link has changed is not relivant.
62513  *
62514  * Fork - LGPL
62515  * <script type="text/javascript">
62516  */
62517 // private
62518 // This is a support class used internally by the Grid components
62519 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
62520     this.grid = grid;
62521     this.view = grid.getView();
62522     // split the proxies so they don't interfere with mouse events
62523     this.proxyTop = Roo.DomHelper.append(document.body, {
62524         cls:"col-move-top", html:"&#160;"
62525     }, true);
62526     this.proxyBottom = Roo.DomHelper.append(document.body, {
62527         cls:"col-move-bottom", html:"&#160;"
62528     }, true);
62529     this.proxyTop.hide = this.proxyBottom.hide = function(){
62530         this.setLeftTop(-100,-100);
62531         this.setStyle("visibility", "hidden");
62532     };
62533     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62534     // temporarily disabled
62535     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
62536     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
62537 };
62538 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
62539     proxyOffsets : [-4, -9],
62540     fly: Roo.Element.fly,
62541
62542     getTargetFromEvent : function(e){
62543         var t = Roo.lib.Event.getTarget(e);
62544         var cindex = this.view.findCellIndex(t);
62545         if(cindex !== false){
62546             return this.view.getHeaderCell(cindex);
62547         }
62548         return null;
62549     },
62550
62551     nextVisible : function(h){
62552         var v = this.view, cm = this.grid.colModel;
62553         h = h.nextSibling;
62554         while(h){
62555             if(!cm.isHidden(v.getCellIndex(h))){
62556                 return h;
62557             }
62558             h = h.nextSibling;
62559         }
62560         return null;
62561     },
62562
62563     prevVisible : function(h){
62564         var v = this.view, cm = this.grid.colModel;
62565         h = h.prevSibling;
62566         while(h){
62567             if(!cm.isHidden(v.getCellIndex(h))){
62568                 return h;
62569             }
62570             h = h.prevSibling;
62571         }
62572         return null;
62573     },
62574
62575     positionIndicator : function(h, n, e){
62576         var x = Roo.lib.Event.getPageX(e);
62577         var r = Roo.lib.Dom.getRegion(n.firstChild);
62578         var px, pt, py = r.top + this.proxyOffsets[1];
62579         if((r.right - x) <= (r.right-r.left)/2){
62580             px = r.right+this.view.borderWidth;
62581             pt = "after";
62582         }else{
62583             px = r.left;
62584             pt = "before";
62585         }
62586         var oldIndex = this.view.getCellIndex(h);
62587         var newIndex = this.view.getCellIndex(n);
62588
62589         if(this.grid.colModel.isFixed(newIndex)){
62590             return false;
62591         }
62592
62593         var locked = this.grid.colModel.isLocked(newIndex);
62594
62595         if(pt == "after"){
62596             newIndex++;
62597         }
62598         if(oldIndex < newIndex){
62599             newIndex--;
62600         }
62601         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
62602             return false;
62603         }
62604         px +=  this.proxyOffsets[0];
62605         this.proxyTop.setLeftTop(px, py);
62606         this.proxyTop.show();
62607         if(!this.bottomOffset){
62608             this.bottomOffset = this.view.mainHd.getHeight();
62609         }
62610         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
62611         this.proxyBottom.show();
62612         return pt;
62613     },
62614
62615     onNodeEnter : function(n, dd, e, data){
62616         if(data.header != n){
62617             this.positionIndicator(data.header, n, e);
62618         }
62619     },
62620
62621     onNodeOver : function(n, dd, e, data){
62622         var result = false;
62623         if(data.header != n){
62624             result = this.positionIndicator(data.header, n, e);
62625         }
62626         if(!result){
62627             this.proxyTop.hide();
62628             this.proxyBottom.hide();
62629         }
62630         return result ? this.dropAllowed : this.dropNotAllowed;
62631     },
62632
62633     onNodeOut : function(n, dd, e, data){
62634         this.proxyTop.hide();
62635         this.proxyBottom.hide();
62636     },
62637
62638     onNodeDrop : function(n, dd, e, data){
62639         var h = data.header;
62640         if(h != n){
62641             var cm = this.grid.colModel;
62642             var x = Roo.lib.Event.getPageX(e);
62643             var r = Roo.lib.Dom.getRegion(n.firstChild);
62644             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
62645             var oldIndex = this.view.getCellIndex(h);
62646             var newIndex = this.view.getCellIndex(n);
62647             var locked = cm.isLocked(newIndex);
62648             if(pt == "after"){
62649                 newIndex++;
62650             }
62651             if(oldIndex < newIndex){
62652                 newIndex--;
62653             }
62654             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
62655                 return false;
62656             }
62657             cm.setLocked(oldIndex, locked, true);
62658             cm.moveColumn(oldIndex, newIndex);
62659             this.grid.fireEvent("columnmove", oldIndex, newIndex);
62660             return true;
62661         }
62662         return false;
62663     }
62664 });
62665 /*
62666  * Based on:
62667  * Ext JS Library 1.1.1
62668  * Copyright(c) 2006-2007, Ext JS, LLC.
62669  *
62670  * Originally Released Under LGPL - original licence link has changed is not relivant.
62671  *
62672  * Fork - LGPL
62673  * <script type="text/javascript">
62674  */
62675   
62676 /**
62677  * @class Roo.grid.GridView
62678  * @extends Roo.util.Observable
62679  *
62680  * @constructor
62681  * @param {Object} config
62682  */
62683 Roo.grid.GridView = function(config){
62684     Roo.grid.GridView.superclass.constructor.call(this);
62685     this.el = null;
62686
62687     Roo.apply(this, config);
62688 };
62689
62690 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
62691
62692     unselectable :  'unselectable="on"',
62693     unselectableCls :  'x-unselectable',
62694     
62695     
62696     rowClass : "x-grid-row",
62697
62698     cellClass : "x-grid-col",
62699
62700     tdClass : "x-grid-td",
62701
62702     hdClass : "x-grid-hd",
62703
62704     splitClass : "x-grid-split",
62705
62706     sortClasses : ["sort-asc", "sort-desc"],
62707
62708     enableMoveAnim : false,
62709
62710     hlColor: "C3DAF9",
62711
62712     dh : Roo.DomHelper,
62713
62714     fly : Roo.Element.fly,
62715
62716     css : Roo.util.CSS,
62717
62718     borderWidth: 1,
62719
62720     splitOffset: 3,
62721
62722     scrollIncrement : 22,
62723
62724     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
62725
62726     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
62727
62728     bind : function(ds, cm){
62729         if(this.ds){
62730             this.ds.un("load", this.onLoad, this);
62731             this.ds.un("datachanged", this.onDataChange, this);
62732             this.ds.un("add", this.onAdd, this);
62733             this.ds.un("remove", this.onRemove, this);
62734             this.ds.un("update", this.onUpdate, this);
62735             this.ds.un("clear", this.onClear, this);
62736         }
62737         if(ds){
62738             ds.on("load", this.onLoad, this);
62739             ds.on("datachanged", this.onDataChange, this);
62740             ds.on("add", this.onAdd, this);
62741             ds.on("remove", this.onRemove, this);
62742             ds.on("update", this.onUpdate, this);
62743             ds.on("clear", this.onClear, this);
62744         }
62745         this.ds = ds;
62746
62747         if(this.cm){
62748             this.cm.un("widthchange", this.onColWidthChange, this);
62749             this.cm.un("headerchange", this.onHeaderChange, this);
62750             this.cm.un("hiddenchange", this.onHiddenChange, this);
62751             this.cm.un("columnmoved", this.onColumnMove, this);
62752             this.cm.un("columnlockchange", this.onColumnLock, this);
62753         }
62754         if(cm){
62755             this.generateRules(cm);
62756             cm.on("widthchange", this.onColWidthChange, this);
62757             cm.on("headerchange", this.onHeaderChange, this);
62758             cm.on("hiddenchange", this.onHiddenChange, this);
62759             cm.on("columnmoved", this.onColumnMove, this);
62760             cm.on("columnlockchange", this.onColumnLock, this);
62761         }
62762         this.cm = cm;
62763     },
62764
62765     init: function(grid){
62766         Roo.grid.GridView.superclass.init.call(this, grid);
62767
62768         this.bind(grid.dataSource, grid.colModel);
62769
62770         grid.on("headerclick", this.handleHeaderClick, this);
62771
62772         if(grid.trackMouseOver){
62773             grid.on("mouseover", this.onRowOver, this);
62774             grid.on("mouseout", this.onRowOut, this);
62775         }
62776         grid.cancelTextSelection = function(){};
62777         this.gridId = grid.id;
62778
62779         var tpls = this.templates || {};
62780
62781         if(!tpls.master){
62782             tpls.master = new Roo.Template(
62783                '<div class="x-grid" hidefocus="true">',
62784                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
62785                   '<div class="x-grid-topbar"></div>',
62786                   '<div class="x-grid-scroller"><div></div></div>',
62787                   '<div class="x-grid-locked">',
62788                       '<div class="x-grid-header">{lockedHeader}</div>',
62789                       '<div class="x-grid-body">{lockedBody}</div>',
62790                   "</div>",
62791                   '<div class="x-grid-viewport">',
62792                       '<div class="x-grid-header">{header}</div>',
62793                       '<div class="x-grid-body">{body}</div>',
62794                   "</div>",
62795                   '<div class="x-grid-bottombar"></div>',
62796                  
62797                   '<div class="x-grid-resize-proxy">&#160;</div>',
62798                "</div>"
62799             );
62800             tpls.master.disableformats = true;
62801         }
62802
62803         if(!tpls.header){
62804             tpls.header = new Roo.Template(
62805                '<table border="0" cellspacing="0" cellpadding="0">',
62806                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
62807                "</table>{splits}"
62808             );
62809             tpls.header.disableformats = true;
62810         }
62811         tpls.header.compile();
62812
62813         if(!tpls.hcell){
62814             tpls.hcell = new Roo.Template(
62815                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
62816                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
62817                 "</div></td>"
62818              );
62819              tpls.hcell.disableFormats = true;
62820         }
62821         tpls.hcell.compile();
62822
62823         if(!tpls.hsplit){
62824             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
62825                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
62826             tpls.hsplit.disableFormats = true;
62827         }
62828         tpls.hsplit.compile();
62829
62830         if(!tpls.body){
62831             tpls.body = new Roo.Template(
62832                '<table border="0" cellspacing="0" cellpadding="0">',
62833                "<tbody>{rows}</tbody>",
62834                "</table>"
62835             );
62836             tpls.body.disableFormats = true;
62837         }
62838         tpls.body.compile();
62839
62840         if(!tpls.row){
62841             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
62842             tpls.row.disableFormats = true;
62843         }
62844         tpls.row.compile();
62845
62846         if(!tpls.cell){
62847             tpls.cell = new Roo.Template(
62848                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
62849                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
62850                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
62851                 "</td>"
62852             );
62853             tpls.cell.disableFormats = true;
62854         }
62855         tpls.cell.compile();
62856
62857         this.templates = tpls;
62858     },
62859
62860     // remap these for backwards compat
62861     onColWidthChange : function(){
62862         this.updateColumns.apply(this, arguments);
62863     },
62864     onHeaderChange : function(){
62865         this.updateHeaders.apply(this, arguments);
62866     }, 
62867     onHiddenChange : function(){
62868         this.handleHiddenChange.apply(this, arguments);
62869     },
62870     onColumnMove : function(){
62871         this.handleColumnMove.apply(this, arguments);
62872     },
62873     onColumnLock : function(){
62874         this.handleLockChange.apply(this, arguments);
62875     },
62876
62877     onDataChange : function(){
62878         this.refresh();
62879         this.updateHeaderSortState();
62880     },
62881
62882     onClear : function(){
62883         this.refresh();
62884     },
62885
62886     onUpdate : function(ds, record){
62887         this.refreshRow(record);
62888     },
62889
62890     refreshRow : function(record){
62891         var ds = this.ds, index;
62892         if(typeof record == 'number'){
62893             index = record;
62894             record = ds.getAt(index);
62895         }else{
62896             index = ds.indexOf(record);
62897         }
62898         this.insertRows(ds, index, index, true);
62899         this.onRemove(ds, record, index+1, true);
62900         this.syncRowHeights(index, index);
62901         this.layout();
62902         this.fireEvent("rowupdated", this, index, record);
62903     },
62904
62905     onAdd : function(ds, records, index){
62906         this.insertRows(ds, index, index + (records.length-1));
62907     },
62908
62909     onRemove : function(ds, record, index, isUpdate){
62910         if(isUpdate !== true){
62911             this.fireEvent("beforerowremoved", this, index, record);
62912         }
62913         var bt = this.getBodyTable(), lt = this.getLockedTable();
62914         if(bt.rows[index]){
62915             bt.firstChild.removeChild(bt.rows[index]);
62916         }
62917         if(lt.rows[index]){
62918             lt.firstChild.removeChild(lt.rows[index]);
62919         }
62920         if(isUpdate !== true){
62921             this.stripeRows(index);
62922             this.syncRowHeights(index, index);
62923             this.layout();
62924             this.fireEvent("rowremoved", this, index, record);
62925         }
62926     },
62927
62928     onLoad : function(){
62929         this.scrollToTop();
62930     },
62931
62932     /**
62933      * Scrolls the grid to the top
62934      */
62935     scrollToTop : function(){
62936         if(this.scroller){
62937             this.scroller.dom.scrollTop = 0;
62938             this.syncScroll();
62939         }
62940     },
62941
62942     /**
62943      * Gets a panel in the header of the grid that can be used for toolbars etc.
62944      * After modifying the contents of this panel a call to grid.autoSize() may be
62945      * required to register any changes in size.
62946      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
62947      * @return Roo.Element
62948      */
62949     getHeaderPanel : function(doShow){
62950         if(doShow){
62951             this.headerPanel.show();
62952         }
62953         return this.headerPanel;
62954     },
62955
62956     /**
62957      * Gets a panel in the footer of the grid that can be used for toolbars etc.
62958      * After modifying the contents of this panel a call to grid.autoSize() may be
62959      * required to register any changes in size.
62960      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
62961      * @return Roo.Element
62962      */
62963     getFooterPanel : function(doShow){
62964         if(doShow){
62965             this.footerPanel.show();
62966         }
62967         return this.footerPanel;
62968     },
62969
62970     initElements : function(){
62971         var E = Roo.Element;
62972         var el = this.grid.getGridEl().dom.firstChild;
62973         var cs = el.childNodes;
62974
62975         this.el = new E(el);
62976         
62977          this.focusEl = new E(el.firstChild);
62978         this.focusEl.swallowEvent("click", true);
62979         
62980         this.headerPanel = new E(cs[1]);
62981         this.headerPanel.enableDisplayMode("block");
62982
62983         this.scroller = new E(cs[2]);
62984         this.scrollSizer = new E(this.scroller.dom.firstChild);
62985
62986         this.lockedWrap = new E(cs[3]);
62987         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
62988         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
62989
62990         this.mainWrap = new E(cs[4]);
62991         this.mainHd = new E(this.mainWrap.dom.firstChild);
62992         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
62993
62994         this.footerPanel = new E(cs[5]);
62995         this.footerPanel.enableDisplayMode("block");
62996
62997         this.resizeProxy = new E(cs[6]);
62998
62999         this.headerSelector = String.format(
63000            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
63001            this.lockedHd.id, this.mainHd.id
63002         );
63003
63004         this.splitterSelector = String.format(
63005            '#{0} div.x-grid-split, #{1} div.x-grid-split',
63006            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
63007         );
63008     },
63009     idToCssName : function(s)
63010     {
63011         return s.replace(/[^a-z0-9]+/ig, '-');
63012     },
63013
63014     getHeaderCell : function(index){
63015         return Roo.DomQuery.select(this.headerSelector)[index];
63016     },
63017
63018     getHeaderCellMeasure : function(index){
63019         return this.getHeaderCell(index).firstChild;
63020     },
63021
63022     getHeaderCellText : function(index){
63023         return this.getHeaderCell(index).firstChild.firstChild;
63024     },
63025
63026     getLockedTable : function(){
63027         return this.lockedBody.dom.firstChild;
63028     },
63029
63030     getBodyTable : function(){
63031         return this.mainBody.dom.firstChild;
63032     },
63033
63034     getLockedRow : function(index){
63035         return this.getLockedTable().rows[index];
63036     },
63037
63038     getRow : function(index){
63039         return this.getBodyTable().rows[index];
63040     },
63041
63042     getRowComposite : function(index){
63043         if(!this.rowEl){
63044             this.rowEl = new Roo.CompositeElementLite();
63045         }
63046         var els = [], lrow, mrow;
63047         if(lrow = this.getLockedRow(index)){
63048             els.push(lrow);
63049         }
63050         if(mrow = this.getRow(index)){
63051             els.push(mrow);
63052         }
63053         this.rowEl.elements = els;
63054         return this.rowEl;
63055     },
63056     /**
63057      * Gets the 'td' of the cell
63058      * 
63059      * @param {Integer} rowIndex row to select
63060      * @param {Integer} colIndex column to select
63061      * 
63062      * @return {Object} 
63063      */
63064     getCell : function(rowIndex, colIndex){
63065         var locked = this.cm.getLockedCount();
63066         var source;
63067         if(colIndex < locked){
63068             source = this.lockedBody.dom.firstChild;
63069         }else{
63070             source = this.mainBody.dom.firstChild;
63071             colIndex -= locked;
63072         }
63073         return source.rows[rowIndex].childNodes[colIndex];
63074     },
63075
63076     getCellText : function(rowIndex, colIndex){
63077         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
63078     },
63079
63080     getCellBox : function(cell){
63081         var b = this.fly(cell).getBox();
63082         if(Roo.isOpera){ // opera fails to report the Y
63083             b.y = cell.offsetTop + this.mainBody.getY();
63084         }
63085         return b;
63086     },
63087
63088     getCellIndex : function(cell){
63089         var id = String(cell.className).match(this.cellRE);
63090         if(id){
63091             return parseInt(id[1], 10);
63092         }
63093         return 0;
63094     },
63095
63096     findHeaderIndex : function(n){
63097         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
63098         return r ? this.getCellIndex(r) : false;
63099     },
63100
63101     findHeaderCell : function(n){
63102         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
63103         return r ? r : false;
63104     },
63105
63106     findRowIndex : function(n){
63107         if(!n){
63108             return false;
63109         }
63110         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
63111         return r ? r.rowIndex : false;
63112     },
63113
63114     findCellIndex : function(node){
63115         var stop = this.el.dom;
63116         while(node && node != stop){
63117             if(this.findRE.test(node.className)){
63118                 return this.getCellIndex(node);
63119             }
63120             node = node.parentNode;
63121         }
63122         return false;
63123     },
63124
63125     getColumnId : function(index){
63126         return this.cm.getColumnId(index);
63127     },
63128
63129     getSplitters : function()
63130     {
63131         if(this.splitterSelector){
63132            return Roo.DomQuery.select(this.splitterSelector);
63133         }else{
63134             return null;
63135       }
63136     },
63137
63138     getSplitter : function(index){
63139         return this.getSplitters()[index];
63140     },
63141
63142     onRowOver : function(e, t){
63143         var row;
63144         if((row = this.findRowIndex(t)) !== false){
63145             this.getRowComposite(row).addClass("x-grid-row-over");
63146         }
63147     },
63148
63149     onRowOut : function(e, t){
63150         var row;
63151         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
63152             this.getRowComposite(row).removeClass("x-grid-row-over");
63153         }
63154     },
63155
63156     renderHeaders : function(){
63157         var cm = this.cm;
63158         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
63159         var cb = [], lb = [], sb = [], lsb = [], p = {};
63160         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63161             p.cellId = "x-grid-hd-0-" + i;
63162             p.splitId = "x-grid-csplit-0-" + i;
63163             p.id = cm.getColumnId(i);
63164             p.value = cm.getColumnHeader(i) || "";
63165             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
63166             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
63167             if(!cm.isLocked(i)){
63168                 cb[cb.length] = ct.apply(p);
63169                 sb[sb.length] = st.apply(p);
63170             }else{
63171                 lb[lb.length] = ct.apply(p);
63172                 lsb[lsb.length] = st.apply(p);
63173             }
63174         }
63175         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
63176                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
63177     },
63178
63179     updateHeaders : function(){
63180         var html = this.renderHeaders();
63181         this.lockedHd.update(html[0]);
63182         this.mainHd.update(html[1]);
63183     },
63184
63185     /**
63186      * Focuses the specified row.
63187      * @param {Number} row The row index
63188      */
63189     focusRow : function(row)
63190     {
63191         //Roo.log('GridView.focusRow');
63192         var x = this.scroller.dom.scrollLeft;
63193         this.focusCell(row, 0, false);
63194         this.scroller.dom.scrollLeft = x;
63195     },
63196
63197     /**
63198      * Focuses the specified cell.
63199      * @param {Number} row The row index
63200      * @param {Number} col The column index
63201      * @param {Boolean} hscroll false to disable horizontal scrolling
63202      */
63203     focusCell : function(row, col, hscroll)
63204     {
63205         //Roo.log('GridView.focusCell');
63206         var el = this.ensureVisible(row, col, hscroll);
63207         this.focusEl.alignTo(el, "tl-tl");
63208         if(Roo.isGecko){
63209             this.focusEl.focus();
63210         }else{
63211             this.focusEl.focus.defer(1, this.focusEl);
63212         }
63213     },
63214
63215     /**
63216      * Scrolls the specified cell into view
63217      * @param {Number} row The row index
63218      * @param {Number} col The column index
63219      * @param {Boolean} hscroll false to disable horizontal scrolling
63220      */
63221     ensureVisible : function(row, col, hscroll)
63222     {
63223         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
63224         //return null; //disable for testing.
63225         if(typeof row != "number"){
63226             row = row.rowIndex;
63227         }
63228         if(row < 0 && row >= this.ds.getCount()){
63229             return  null;
63230         }
63231         col = (col !== undefined ? col : 0);
63232         var cm = this.grid.colModel;
63233         while(cm.isHidden(col)){
63234             col++;
63235         }
63236
63237         var el = this.getCell(row, col);
63238         if(!el){
63239             return null;
63240         }
63241         var c = this.scroller.dom;
63242
63243         var ctop = parseInt(el.offsetTop, 10);
63244         var cleft = parseInt(el.offsetLeft, 10);
63245         var cbot = ctop + el.offsetHeight;
63246         var cright = cleft + el.offsetWidth;
63247         
63248         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
63249         var stop = parseInt(c.scrollTop, 10);
63250         var sleft = parseInt(c.scrollLeft, 10);
63251         var sbot = stop + ch;
63252         var sright = sleft + c.clientWidth;
63253         /*
63254         Roo.log('GridView.ensureVisible:' +
63255                 ' ctop:' + ctop +
63256                 ' c.clientHeight:' + c.clientHeight +
63257                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
63258                 ' stop:' + stop +
63259                 ' cbot:' + cbot +
63260                 ' sbot:' + sbot +
63261                 ' ch:' + ch  
63262                 );
63263         */
63264         if(ctop < stop){
63265             c.scrollTop = ctop;
63266             //Roo.log("set scrolltop to ctop DISABLE?");
63267         }else if(cbot > sbot){
63268             //Roo.log("set scrolltop to cbot-ch");
63269             c.scrollTop = cbot-ch;
63270         }
63271         
63272         if(hscroll !== false){
63273             if(cleft < sleft){
63274                 c.scrollLeft = cleft;
63275             }else if(cright > sright){
63276                 c.scrollLeft = cright-c.clientWidth;
63277             }
63278         }
63279          
63280         return el;
63281     },
63282
63283     updateColumns : function(){
63284         this.grid.stopEditing();
63285         var cm = this.grid.colModel, colIds = this.getColumnIds();
63286         //var totalWidth = cm.getTotalWidth();
63287         var pos = 0;
63288         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63289             //if(cm.isHidden(i)) continue;
63290             var w = cm.getColumnWidth(i);
63291             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
63292             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
63293         }
63294         this.updateSplitters();
63295     },
63296
63297     generateRules : function(cm){
63298         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
63299         Roo.util.CSS.removeStyleSheet(rulesId);
63300         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63301             var cid = cm.getColumnId(i);
63302             var align = '';
63303             if(cm.config[i].align){
63304                 align = 'text-align:'+cm.config[i].align+';';
63305             }
63306             var hidden = '';
63307             if(cm.isHidden(i)){
63308                 hidden = 'display:none;';
63309             }
63310             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
63311             ruleBuf.push(
63312                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
63313                     this.hdSelector, cid, " {\n", align, width, "}\n",
63314                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
63315                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
63316         }
63317         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
63318     },
63319
63320     updateSplitters : function(){
63321         var cm = this.cm, s = this.getSplitters();
63322         if(s){ // splitters not created yet
63323             var pos = 0, locked = true;
63324             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63325                 if(cm.isHidden(i)) {
63326                     continue;
63327                 }
63328                 var w = cm.getColumnWidth(i); // make sure it's a number
63329                 if(!cm.isLocked(i) && locked){
63330                     pos = 0;
63331                     locked = false;
63332                 }
63333                 pos += w;
63334                 s[i].style.left = (pos-this.splitOffset) + "px";
63335             }
63336         }
63337     },
63338
63339     handleHiddenChange : function(colModel, colIndex, hidden){
63340         if(hidden){
63341             this.hideColumn(colIndex);
63342         }else{
63343             this.unhideColumn(colIndex);
63344         }
63345     },
63346
63347     hideColumn : function(colIndex){
63348         var cid = this.getColumnId(colIndex);
63349         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
63350         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
63351         if(Roo.isSafari){
63352             this.updateHeaders();
63353         }
63354         this.updateSplitters();
63355         this.layout();
63356     },
63357
63358     unhideColumn : function(colIndex){
63359         var cid = this.getColumnId(colIndex);
63360         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
63361         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
63362
63363         if(Roo.isSafari){
63364             this.updateHeaders();
63365         }
63366         this.updateSplitters();
63367         this.layout();
63368     },
63369
63370     insertRows : function(dm, firstRow, lastRow, isUpdate){
63371         if(firstRow == 0 && lastRow == dm.getCount()-1){
63372             this.refresh();
63373         }else{
63374             if(!isUpdate){
63375                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
63376             }
63377             var s = this.getScrollState();
63378             var markup = this.renderRows(firstRow, lastRow);
63379             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
63380             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
63381             this.restoreScroll(s);
63382             if(!isUpdate){
63383                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
63384                 this.syncRowHeights(firstRow, lastRow);
63385                 this.stripeRows(firstRow);
63386                 this.layout();
63387             }
63388         }
63389     },
63390
63391     bufferRows : function(markup, target, index){
63392         var before = null, trows = target.rows, tbody = target.tBodies[0];
63393         if(index < trows.length){
63394             before = trows[index];
63395         }
63396         var b = document.createElement("div");
63397         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
63398         var rows = b.firstChild.rows;
63399         for(var i = 0, len = rows.length; i < len; i++){
63400             if(before){
63401                 tbody.insertBefore(rows[0], before);
63402             }else{
63403                 tbody.appendChild(rows[0]);
63404             }
63405         }
63406         b.innerHTML = "";
63407         b = null;
63408     },
63409
63410     deleteRows : function(dm, firstRow, lastRow){
63411         if(dm.getRowCount()<1){
63412             this.fireEvent("beforerefresh", this);
63413             this.mainBody.update("");
63414             this.lockedBody.update("");
63415             this.fireEvent("refresh", this);
63416         }else{
63417             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
63418             var bt = this.getBodyTable();
63419             var tbody = bt.firstChild;
63420             var rows = bt.rows;
63421             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
63422                 tbody.removeChild(rows[firstRow]);
63423             }
63424             this.stripeRows(firstRow);
63425             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
63426         }
63427     },
63428
63429     updateRows : function(dataSource, firstRow, lastRow){
63430         var s = this.getScrollState();
63431         this.refresh();
63432         this.restoreScroll(s);
63433     },
63434
63435     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
63436         if(!noRefresh){
63437            this.refresh();
63438         }
63439         this.updateHeaderSortState();
63440     },
63441
63442     getScrollState : function(){
63443         
63444         var sb = this.scroller.dom;
63445         return {left: sb.scrollLeft, top: sb.scrollTop};
63446     },
63447
63448     stripeRows : function(startRow){
63449         if(!this.grid.stripeRows || this.ds.getCount() < 1){
63450             return;
63451         }
63452         startRow = startRow || 0;
63453         var rows = this.getBodyTable().rows;
63454         var lrows = this.getLockedTable().rows;
63455         var cls = ' x-grid-row-alt ';
63456         for(var i = startRow, len = rows.length; i < len; i++){
63457             var row = rows[i], lrow = lrows[i];
63458             var isAlt = ((i+1) % 2 == 0);
63459             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
63460             if(isAlt == hasAlt){
63461                 continue;
63462             }
63463             if(isAlt){
63464                 row.className += " x-grid-row-alt";
63465             }else{
63466                 row.className = row.className.replace("x-grid-row-alt", "");
63467             }
63468             if(lrow){
63469                 lrow.className = row.className;
63470             }
63471         }
63472     },
63473
63474     restoreScroll : function(state){
63475         //Roo.log('GridView.restoreScroll');
63476         var sb = this.scroller.dom;
63477         sb.scrollLeft = state.left;
63478         sb.scrollTop = state.top;
63479         this.syncScroll();
63480     },
63481
63482     syncScroll : function(){
63483         //Roo.log('GridView.syncScroll');
63484         var sb = this.scroller.dom;
63485         var sh = this.mainHd.dom;
63486         var bs = this.mainBody.dom;
63487         var lv = this.lockedBody.dom;
63488         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
63489         lv.scrollTop = bs.scrollTop = sb.scrollTop;
63490     },
63491
63492     handleScroll : function(e){
63493         this.syncScroll();
63494         var sb = this.scroller.dom;
63495         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
63496         e.stopEvent();
63497     },
63498
63499     handleWheel : function(e){
63500         var d = e.getWheelDelta();
63501         this.scroller.dom.scrollTop -= d*22;
63502         // set this here to prevent jumpy scrolling on large tables
63503         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
63504         e.stopEvent();
63505     },
63506
63507     renderRows : function(startRow, endRow){
63508         // pull in all the crap needed to render rows
63509         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
63510         var colCount = cm.getColumnCount();
63511
63512         if(ds.getCount() < 1){
63513             return ["", ""];
63514         }
63515
63516         // build a map for all the columns
63517         var cs = [];
63518         for(var i = 0; i < colCount; i++){
63519             var name = cm.getDataIndex(i);
63520             cs[i] = {
63521                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
63522                 renderer : cm.getRenderer(i),
63523                 id : cm.getColumnId(i),
63524                 locked : cm.isLocked(i),
63525                 has_editor : cm.isCellEditable(i)
63526             };
63527         }
63528
63529         startRow = startRow || 0;
63530         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
63531
63532         // records to render
63533         var rs = ds.getRange(startRow, endRow);
63534
63535         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
63536     },
63537
63538     // As much as I hate to duplicate code, this was branched because FireFox really hates
63539     // [].join("") on strings. The performance difference was substantial enough to
63540     // branch this function
63541     doRender : Roo.isGecko ?
63542             function(cs, rs, ds, startRow, colCount, stripe){
63543                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63544                 // buffers
63545                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63546                 
63547                 var hasListener = this.grid.hasListener('rowclass');
63548                 var rowcfg = {};
63549                 for(var j = 0, len = rs.length; j < len; j++){
63550                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
63551                     for(var i = 0; i < colCount; i++){
63552                         c = cs[i];
63553                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63554                         p.id = c.id;
63555                         p.css = p.attr = "";
63556                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63557                         if(p.value == undefined || p.value === "") {
63558                             p.value = "&#160;";
63559                         }
63560                         if(c.has_editor){
63561                             p.css += ' x-grid-editable-cell';
63562                         }
63563                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
63564                             p.css +=  ' x-grid-dirty-cell';
63565                         }
63566                         var markup = ct.apply(p);
63567                         if(!c.locked){
63568                             cb+= markup;
63569                         }else{
63570                             lcb+= markup;
63571                         }
63572                     }
63573                     var alt = [];
63574                     if(stripe && ((rowIndex+1) % 2 == 0)){
63575                         alt.push("x-grid-row-alt")
63576                     }
63577                     if(r.dirty){
63578                         alt.push(  " x-grid-dirty-row");
63579                     }
63580                     rp.cells = lcb;
63581                     if(this.getRowClass){
63582                         alt.push(this.getRowClass(r, rowIndex));
63583                     }
63584                     if (hasListener) {
63585                         rowcfg = {
63586                              
63587                             record: r,
63588                             rowIndex : rowIndex,
63589                             rowClass : ''
63590                         };
63591                         this.grid.fireEvent('rowclass', this, rowcfg);
63592                         alt.push(rowcfg.rowClass);
63593                     }
63594                     rp.alt = alt.join(" ");
63595                     lbuf+= rt.apply(rp);
63596                     rp.cells = cb;
63597                     buf+=  rt.apply(rp);
63598                 }
63599                 return [lbuf, buf];
63600             } :
63601             function(cs, rs, ds, startRow, colCount, stripe){
63602                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63603                 // buffers
63604                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63605                 var hasListener = this.grid.hasListener('rowclass');
63606  
63607                 var rowcfg = {};
63608                 for(var j = 0, len = rs.length; j < len; j++){
63609                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
63610                     for(var i = 0; i < colCount; i++){
63611                         c = cs[i];
63612                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63613                         p.id = c.id;
63614                         p.css = p.attr = "";
63615                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63616                         if(p.value == undefined || p.value === "") {
63617                             p.value = "&#160;";
63618                         }
63619                         //Roo.log(c);
63620                          if(c.has_editor){
63621                             p.css += ' x-grid-editable-cell';
63622                         }
63623                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
63624                             p.css += ' x-grid-dirty-cell' 
63625                         }
63626                         
63627                         var markup = ct.apply(p);
63628                         if(!c.locked){
63629                             cb[cb.length] = markup;
63630                         }else{
63631                             lcb[lcb.length] = markup;
63632                         }
63633                     }
63634                     var alt = [];
63635                     if(stripe && ((rowIndex+1) % 2 == 0)){
63636                         alt.push( "x-grid-row-alt");
63637                     }
63638                     if(r.dirty){
63639                         alt.push(" x-grid-dirty-row");
63640                     }
63641                     rp.cells = lcb;
63642                     if(this.getRowClass){
63643                         alt.push( this.getRowClass(r, rowIndex));
63644                     }
63645                     if (hasListener) {
63646                         rowcfg = {
63647                              
63648                             record: r,
63649                             rowIndex : rowIndex,
63650                             rowClass : ''
63651                         };
63652                         this.grid.fireEvent('rowclass', this, rowcfg);
63653                         alt.push(rowcfg.rowClass);
63654                     }
63655                     
63656                     rp.alt = alt.join(" ");
63657                     rp.cells = lcb.join("");
63658                     lbuf[lbuf.length] = rt.apply(rp);
63659                     rp.cells = cb.join("");
63660                     buf[buf.length] =  rt.apply(rp);
63661                 }
63662                 return [lbuf.join(""), buf.join("")];
63663             },
63664
63665     renderBody : function(){
63666         var markup = this.renderRows();
63667         var bt = this.templates.body;
63668         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
63669     },
63670
63671     /**
63672      * Refreshes the grid
63673      * @param {Boolean} headersToo
63674      */
63675     refresh : function(headersToo){
63676         this.fireEvent("beforerefresh", this);
63677         this.grid.stopEditing();
63678         var result = this.renderBody();
63679         this.lockedBody.update(result[0]);
63680         this.mainBody.update(result[1]);
63681         if(headersToo === true){
63682             this.updateHeaders();
63683             this.updateColumns();
63684             this.updateSplitters();
63685             this.updateHeaderSortState();
63686         }
63687         this.syncRowHeights();
63688         this.layout();
63689         this.fireEvent("refresh", this);
63690     },
63691
63692     handleColumnMove : function(cm, oldIndex, newIndex){
63693         this.indexMap = null;
63694         var s = this.getScrollState();
63695         this.refresh(true);
63696         this.restoreScroll(s);
63697         this.afterMove(newIndex);
63698     },
63699
63700     afterMove : function(colIndex){
63701         if(this.enableMoveAnim && Roo.enableFx){
63702             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
63703         }
63704         // if multisort - fix sortOrder, and reload..
63705         if (this.grid.dataSource.multiSort) {
63706             // the we can call sort again..
63707             var dm = this.grid.dataSource;
63708             var cm = this.grid.colModel;
63709             var so = [];
63710             for(var i = 0; i < cm.config.length; i++ ) {
63711                 
63712                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
63713                     continue; // dont' bother, it's not in sort list or being set.
63714                 }
63715                 
63716                 so.push(cm.config[i].dataIndex);
63717             };
63718             dm.sortOrder = so;
63719             dm.load(dm.lastOptions);
63720             
63721             
63722         }
63723         
63724     },
63725
63726     updateCell : function(dm, rowIndex, dataIndex){
63727         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
63728         if(typeof colIndex == "undefined"){ // not present in grid
63729             return;
63730         }
63731         var cm = this.grid.colModel;
63732         var cell = this.getCell(rowIndex, colIndex);
63733         var cellText = this.getCellText(rowIndex, colIndex);
63734
63735         var p = {
63736             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
63737             id : cm.getColumnId(colIndex),
63738             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
63739         };
63740         var renderer = cm.getRenderer(colIndex);
63741         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
63742         if(typeof val == "undefined" || val === "") {
63743             val = "&#160;";
63744         }
63745         cellText.innerHTML = val;
63746         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
63747         this.syncRowHeights(rowIndex, rowIndex);
63748     },
63749
63750     calcColumnWidth : function(colIndex, maxRowsToMeasure){
63751         var maxWidth = 0;
63752         if(this.grid.autoSizeHeaders){
63753             var h = this.getHeaderCellMeasure(colIndex);
63754             maxWidth = Math.max(maxWidth, h.scrollWidth);
63755         }
63756         var tb, index;
63757         if(this.cm.isLocked(colIndex)){
63758             tb = this.getLockedTable();
63759             index = colIndex;
63760         }else{
63761             tb = this.getBodyTable();
63762             index = colIndex - this.cm.getLockedCount();
63763         }
63764         if(tb && tb.rows){
63765             var rows = tb.rows;
63766             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
63767             for(var i = 0; i < stopIndex; i++){
63768                 var cell = rows[i].childNodes[index].firstChild;
63769                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
63770             }
63771         }
63772         return maxWidth + /*margin for error in IE*/ 5;
63773     },
63774     /**
63775      * Autofit a column to its content.
63776      * @param {Number} colIndex
63777      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
63778      */
63779      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
63780          if(this.cm.isHidden(colIndex)){
63781              return; // can't calc a hidden column
63782          }
63783         if(forceMinSize){
63784             var cid = this.cm.getColumnId(colIndex);
63785             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
63786            if(this.grid.autoSizeHeaders){
63787                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
63788            }
63789         }
63790         var newWidth = this.calcColumnWidth(colIndex);
63791         this.cm.setColumnWidth(colIndex,
63792             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
63793         if(!suppressEvent){
63794             this.grid.fireEvent("columnresize", colIndex, newWidth);
63795         }
63796     },
63797
63798     /**
63799      * Autofits all columns to their content and then expands to fit any extra space in the grid
63800      */
63801      autoSizeColumns : function(){
63802         var cm = this.grid.colModel;
63803         var colCount = cm.getColumnCount();
63804         for(var i = 0; i < colCount; i++){
63805             this.autoSizeColumn(i, true, true);
63806         }
63807         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
63808             this.fitColumns();
63809         }else{
63810             this.updateColumns();
63811             this.layout();
63812         }
63813     },
63814
63815     /**
63816      * Autofits all columns to the grid's width proportionate with their current size
63817      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
63818      */
63819     fitColumns : function(reserveScrollSpace){
63820         var cm = this.grid.colModel;
63821         var colCount = cm.getColumnCount();
63822         var cols = [];
63823         var width = 0;
63824         var i, w;
63825         for (i = 0; i < colCount; i++){
63826             if(!cm.isHidden(i) && !cm.isFixed(i)){
63827                 w = cm.getColumnWidth(i);
63828                 cols.push(i);
63829                 cols.push(w);
63830                 width += w;
63831             }
63832         }
63833         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
63834         if(reserveScrollSpace){
63835             avail -= 17;
63836         }
63837         var frac = (avail - cm.getTotalWidth())/width;
63838         while (cols.length){
63839             w = cols.pop();
63840             i = cols.pop();
63841             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
63842         }
63843         this.updateColumns();
63844         this.layout();
63845     },
63846
63847     onRowSelect : function(rowIndex){
63848         var row = this.getRowComposite(rowIndex);
63849         row.addClass("x-grid-row-selected");
63850     },
63851
63852     onRowDeselect : function(rowIndex){
63853         var row = this.getRowComposite(rowIndex);
63854         row.removeClass("x-grid-row-selected");
63855     },
63856
63857     onCellSelect : function(row, col){
63858         var cell = this.getCell(row, col);
63859         if(cell){
63860             Roo.fly(cell).addClass("x-grid-cell-selected");
63861         }
63862     },
63863
63864     onCellDeselect : function(row, col){
63865         var cell = this.getCell(row, col);
63866         if(cell){
63867             Roo.fly(cell).removeClass("x-grid-cell-selected");
63868         }
63869     },
63870
63871     updateHeaderSortState : function(){
63872         
63873         // sort state can be single { field: xxx, direction : yyy}
63874         // or   { xxx=>ASC , yyy : DESC ..... }
63875         
63876         var mstate = {};
63877         if (!this.ds.multiSort) { 
63878             var state = this.ds.getSortState();
63879             if(!state){
63880                 return;
63881             }
63882             mstate[state.field] = state.direction;
63883             // FIXME... - this is not used here.. but might be elsewhere..
63884             this.sortState = state;
63885             
63886         } else {
63887             mstate = this.ds.sortToggle;
63888         }
63889         //remove existing sort classes..
63890         
63891         var sc = this.sortClasses;
63892         var hds = this.el.select(this.headerSelector).removeClass(sc);
63893         
63894         for(var f in mstate) {
63895         
63896             var sortColumn = this.cm.findColumnIndex(f);
63897             
63898             if(sortColumn != -1){
63899                 var sortDir = mstate[f];        
63900                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
63901             }
63902         }
63903         
63904          
63905         
63906     },
63907
63908
63909     handleHeaderClick : function(g, index,e){
63910         
63911         Roo.log("header click");
63912         
63913         if (Roo.isTouch) {
63914             // touch events on header are handled by context
63915             this.handleHdCtx(g,index,e);
63916             return;
63917         }
63918         
63919         
63920         if(this.headersDisabled){
63921             return;
63922         }
63923         var dm = g.dataSource, cm = g.colModel;
63924         if(!cm.isSortable(index)){
63925             return;
63926         }
63927         g.stopEditing();
63928         
63929         if (dm.multiSort) {
63930             // update the sortOrder
63931             var so = [];
63932             for(var i = 0; i < cm.config.length; i++ ) {
63933                 
63934                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
63935                     continue; // dont' bother, it's not in sort list or being set.
63936                 }
63937                 
63938                 so.push(cm.config[i].dataIndex);
63939             };
63940             dm.sortOrder = so;
63941         }
63942         
63943         
63944         dm.sort(cm.getDataIndex(index));
63945     },
63946
63947
63948     destroy : function(){
63949         if(this.colMenu){
63950             this.colMenu.removeAll();
63951             Roo.menu.MenuMgr.unregister(this.colMenu);
63952             this.colMenu.getEl().remove();
63953             delete this.colMenu;
63954         }
63955         if(this.hmenu){
63956             this.hmenu.removeAll();
63957             Roo.menu.MenuMgr.unregister(this.hmenu);
63958             this.hmenu.getEl().remove();
63959             delete this.hmenu;
63960         }
63961         if(this.grid.enableColumnMove){
63962             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63963             if(dds){
63964                 for(var dd in dds){
63965                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
63966                         var elid = dds[dd].dragElId;
63967                         dds[dd].unreg();
63968                         Roo.get(elid).remove();
63969                     } else if(dds[dd].config.isTarget){
63970                         dds[dd].proxyTop.remove();
63971                         dds[dd].proxyBottom.remove();
63972                         dds[dd].unreg();
63973                     }
63974                     if(Roo.dd.DDM.locationCache[dd]){
63975                         delete Roo.dd.DDM.locationCache[dd];
63976                     }
63977                 }
63978                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63979             }
63980         }
63981         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
63982         this.bind(null, null);
63983         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
63984     },
63985
63986     handleLockChange : function(){
63987         this.refresh(true);
63988     },
63989
63990     onDenyColumnLock : function(){
63991
63992     },
63993
63994     onDenyColumnHide : function(){
63995
63996     },
63997
63998     handleHdMenuClick : function(item){
63999         var index = this.hdCtxIndex;
64000         var cm = this.cm, ds = this.ds;
64001         switch(item.id){
64002             case "asc":
64003                 ds.sort(cm.getDataIndex(index), "ASC");
64004                 break;
64005             case "desc":
64006                 ds.sort(cm.getDataIndex(index), "DESC");
64007                 break;
64008             case "lock":
64009                 var lc = cm.getLockedCount();
64010                 if(cm.getColumnCount(true) <= lc+1){
64011                     this.onDenyColumnLock();
64012                     return;
64013                 }
64014                 if(lc != index){
64015                     cm.setLocked(index, true, true);
64016                     cm.moveColumn(index, lc);
64017                     this.grid.fireEvent("columnmove", index, lc);
64018                 }else{
64019                     cm.setLocked(index, true);
64020                 }
64021             break;
64022             case "unlock":
64023                 var lc = cm.getLockedCount();
64024                 if((lc-1) != index){
64025                     cm.setLocked(index, false, true);
64026                     cm.moveColumn(index, lc-1);
64027                     this.grid.fireEvent("columnmove", index, lc-1);
64028                 }else{
64029                     cm.setLocked(index, false);
64030                 }
64031             break;
64032             case 'wider': // used to expand cols on touch..
64033             case 'narrow':
64034                 var cw = cm.getColumnWidth(index);
64035                 cw += (item.id == 'wider' ? 1 : -1) * 50;
64036                 cw = Math.max(0, cw);
64037                 cw = Math.min(cw,4000);
64038                 cm.setColumnWidth(index, cw);
64039                 break;
64040                 
64041             default:
64042                 index = cm.getIndexById(item.id.substr(4));
64043                 if(index != -1){
64044                     if(item.checked && cm.getColumnCount(true) <= 1){
64045                         this.onDenyColumnHide();
64046                         return false;
64047                     }
64048                     cm.setHidden(index, item.checked);
64049                 }
64050         }
64051         return true;
64052     },
64053
64054     beforeColMenuShow : function(){
64055         var cm = this.cm,  colCount = cm.getColumnCount();
64056         this.colMenu.removeAll();
64057         
64058         var items = [];
64059         for(var i = 0; i < colCount; i++){
64060             items.push({
64061                 id: "col-"+cm.getColumnId(i),
64062                 text: cm.getColumnHeader(i),
64063                 checked: !cm.isHidden(i),
64064                 hideOnClick:false
64065             });
64066         }
64067         
64068         if (this.grid.sortColMenu) {
64069             items.sort(function(a,b) {
64070                 if (a.text == b.text) {
64071                     return 0;
64072                 }
64073                 return a.text.toUpperCase() > b.text.toUpperCase() ? 1 : -1;
64074             });
64075         }
64076         
64077         for(var i = 0; i < colCount; i++){
64078             this.colMenu.add(new Roo.menu.CheckItem(items[i]));
64079         }
64080     },
64081
64082     handleHdCtx : function(g, index, e){
64083         e.stopEvent();
64084         var hd = this.getHeaderCell(index);
64085         this.hdCtxIndex = index;
64086         var ms = this.hmenu.items, cm = this.cm;
64087         ms.get("asc").setDisabled(!cm.isSortable(index));
64088         ms.get("desc").setDisabled(!cm.isSortable(index));
64089         if(this.grid.enableColLock !== false){
64090             ms.get("lock").setDisabled(cm.isLocked(index));
64091             ms.get("unlock").setDisabled(!cm.isLocked(index));
64092         }
64093         this.hmenu.show(hd, "tl-bl");
64094     },
64095
64096     handleHdOver : function(e){
64097         var hd = this.findHeaderCell(e.getTarget());
64098         if(hd && !this.headersDisabled){
64099             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
64100                this.fly(hd).addClass("x-grid-hd-over");
64101             }
64102         }
64103     },
64104
64105     handleHdOut : function(e){
64106         var hd = this.findHeaderCell(e.getTarget());
64107         if(hd){
64108             this.fly(hd).removeClass("x-grid-hd-over");
64109         }
64110     },
64111
64112     handleSplitDblClick : function(e, t){
64113         var i = this.getCellIndex(t);
64114         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
64115             this.autoSizeColumn(i, true);
64116             this.layout();
64117         }
64118     },
64119
64120     render : function(){
64121
64122         var cm = this.cm;
64123         var colCount = cm.getColumnCount();
64124
64125         if(this.grid.monitorWindowResize === true){
64126             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
64127         }
64128         var header = this.renderHeaders();
64129         var body = this.templates.body.apply({rows:""});
64130         var html = this.templates.master.apply({
64131             lockedBody: body,
64132             body: body,
64133             lockedHeader: header[0],
64134             header: header[1]
64135         });
64136
64137         //this.updateColumns();
64138
64139         this.grid.getGridEl().dom.innerHTML = html;
64140
64141         this.initElements();
64142         
64143         // a kludge to fix the random scolling effect in webkit
64144         this.el.on("scroll", function() {
64145             this.el.dom.scrollTop=0; // hopefully not recursive..
64146         },this);
64147
64148         this.scroller.on("scroll", this.handleScroll, this);
64149         this.lockedBody.on("mousewheel", this.handleWheel, this);
64150         this.mainBody.on("mousewheel", this.handleWheel, this);
64151
64152         this.mainHd.on("mouseover", this.handleHdOver, this);
64153         this.mainHd.on("mouseout", this.handleHdOut, this);
64154         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
64155                 {delegate: "."+this.splitClass});
64156
64157         this.lockedHd.on("mouseover", this.handleHdOver, this);
64158         this.lockedHd.on("mouseout", this.handleHdOut, this);
64159         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
64160                 {delegate: "."+this.splitClass});
64161
64162         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
64163             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64164         }
64165
64166         this.updateSplitters();
64167
64168         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
64169             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64170             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64171         }
64172
64173         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
64174             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
64175             this.hmenu.add(
64176                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
64177                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
64178             );
64179             if(this.grid.enableColLock !== false){
64180                 this.hmenu.add('-',
64181                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
64182                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
64183                 );
64184             }
64185             if (Roo.isTouch) {
64186                  this.hmenu.add('-',
64187                     {id:"wider", text: this.columnsWiderText},
64188                     {id:"narrow", text: this.columnsNarrowText }
64189                 );
64190                 
64191                  
64192             }
64193             
64194             if(this.grid.enableColumnHide !== false){
64195
64196                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
64197                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
64198                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
64199
64200                 this.hmenu.add('-',
64201                     {id:"columns", text: this.columnsText, menu: this.colMenu}
64202                 );
64203             }
64204             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
64205
64206             this.grid.on("headercontextmenu", this.handleHdCtx, this);
64207         }
64208
64209         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
64210             this.dd = new Roo.grid.GridDragZone(this.grid, {
64211                 ddGroup : this.grid.ddGroup || 'GridDD'
64212             });
64213             
64214         }
64215
64216         /*
64217         for(var i = 0; i < colCount; i++){
64218             if(cm.isHidden(i)){
64219                 this.hideColumn(i);
64220             }
64221             if(cm.config[i].align){
64222                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
64223                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
64224             }
64225         }*/
64226         
64227         this.updateHeaderSortState();
64228
64229         this.beforeInitialResize();
64230         this.layout(true);
64231
64232         // two part rendering gives faster view to the user
64233         this.renderPhase2.defer(1, this);
64234     },
64235
64236     renderPhase2 : function(){
64237         // render the rows now
64238         this.refresh();
64239         if(this.grid.autoSizeColumns){
64240             this.autoSizeColumns();
64241         }
64242     },
64243
64244     beforeInitialResize : function(){
64245
64246     },
64247
64248     onColumnSplitterMoved : function(i, w){
64249         this.userResized = true;
64250         var cm = this.grid.colModel;
64251         cm.setColumnWidth(i, w, true);
64252         var cid = cm.getColumnId(i);
64253         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
64254         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
64255         this.updateSplitters();
64256         this.layout();
64257         this.grid.fireEvent("columnresize", i, w);
64258     },
64259
64260     syncRowHeights : function(startIndex, endIndex){
64261         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
64262             startIndex = startIndex || 0;
64263             var mrows = this.getBodyTable().rows;
64264             var lrows = this.getLockedTable().rows;
64265             var len = mrows.length-1;
64266             endIndex = Math.min(endIndex || len, len);
64267             for(var i = startIndex; i <= endIndex; i++){
64268                 var m = mrows[i], l = lrows[i];
64269                 var h = Math.max(m.offsetHeight, l.offsetHeight);
64270                 m.style.height = l.style.height = h + "px";
64271             }
64272         }
64273     },
64274
64275     layout : function(initialRender, is2ndPass)
64276     {
64277         var g = this.grid;
64278         var auto = g.autoHeight;
64279         var scrollOffset = 16;
64280         var c = g.getGridEl(), cm = this.cm,
64281                 expandCol = g.autoExpandColumn,
64282                 gv = this;
64283         //c.beginMeasure();
64284
64285         if(!c.dom.offsetWidth){ // display:none?
64286             if(initialRender){
64287                 this.lockedWrap.show();
64288                 this.mainWrap.show();
64289             }
64290             return;
64291         }
64292
64293         var hasLock = this.cm.isLocked(0);
64294
64295         var tbh = this.headerPanel.getHeight();
64296         var bbh = this.footerPanel.getHeight();
64297
64298         if(auto){
64299             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
64300             var newHeight = ch + c.getBorderWidth("tb");
64301             if(g.maxHeight){
64302                 newHeight = Math.min(g.maxHeight, newHeight);
64303             }
64304             c.setHeight(newHeight);
64305         }
64306
64307         if(g.autoWidth){
64308             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
64309         }
64310
64311         var s = this.scroller;
64312
64313         var csize = c.getSize(true);
64314
64315         this.el.setSize(csize.width, csize.height);
64316
64317         this.headerPanel.setWidth(csize.width);
64318         this.footerPanel.setWidth(csize.width);
64319
64320         var hdHeight = this.mainHd.getHeight();
64321         var vw = csize.width;
64322         var vh = csize.height - (tbh + bbh);
64323
64324         s.setSize(vw, vh);
64325
64326         var bt = this.getBodyTable();
64327         
64328         if(cm.getLockedCount() == cm.config.length){
64329             bt = this.getLockedTable();
64330         }
64331         
64332         var ltWidth = hasLock ?
64333                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
64334
64335         var scrollHeight = bt.offsetHeight;
64336         var scrollWidth = ltWidth + bt.offsetWidth;
64337         var vscroll = false, hscroll = false;
64338
64339         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
64340
64341         var lw = this.lockedWrap, mw = this.mainWrap;
64342         var lb = this.lockedBody, mb = this.mainBody;
64343
64344         setTimeout(function(){
64345             var t = s.dom.offsetTop;
64346             var w = s.dom.clientWidth,
64347                 h = s.dom.clientHeight;
64348
64349             lw.setTop(t);
64350             lw.setSize(ltWidth, h);
64351
64352             mw.setLeftTop(ltWidth, t);
64353             mw.setSize(w-ltWidth, h);
64354
64355             lb.setHeight(h-hdHeight);
64356             mb.setHeight(h-hdHeight);
64357
64358             if(is2ndPass !== true && !gv.userResized && expandCol){
64359                 // high speed resize without full column calculation
64360                 
64361                 var ci = cm.getIndexById(expandCol);
64362                 if (ci < 0) {
64363                     ci = cm.findColumnIndex(expandCol);
64364                 }
64365                 ci = Math.max(0, ci); // make sure it's got at least the first col.
64366                 var expandId = cm.getColumnId(ci);
64367                 var  tw = cm.getTotalWidth(false);
64368                 var currentWidth = cm.getColumnWidth(ci);
64369                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
64370                 if(currentWidth != cw){
64371                     cm.setColumnWidth(ci, cw, true);
64372                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64373                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64374                     gv.updateSplitters();
64375                     gv.layout(false, true);
64376                 }
64377             }
64378
64379             if(initialRender){
64380                 lw.show();
64381                 mw.show();
64382             }
64383             //c.endMeasure();
64384         }, 10);
64385     },
64386
64387     onWindowResize : function(){
64388         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
64389             return;
64390         }
64391         this.layout();
64392     },
64393
64394     appendFooter : function(parentEl){
64395         return null;
64396     },
64397
64398     sortAscText : "Sort Ascending",
64399     sortDescText : "Sort Descending",
64400     lockText : "Lock Column",
64401     unlockText : "Unlock Column",
64402     columnsText : "Columns",
64403  
64404     columnsWiderText : "Wider",
64405     columnsNarrowText : "Thinner"
64406 });
64407
64408
64409 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
64410     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
64411     this.proxy.el.addClass('x-grid3-col-dd');
64412 };
64413
64414 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
64415     handleMouseDown : function(e){
64416
64417     },
64418
64419     callHandleMouseDown : function(e){
64420         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
64421     }
64422 });
64423 /*
64424  * Based on:
64425  * Ext JS Library 1.1.1
64426  * Copyright(c) 2006-2007, Ext JS, LLC.
64427  *
64428  * Originally Released Under LGPL - original licence link has changed is not relivant.
64429  *
64430  * Fork - LGPL
64431  * <script type="text/javascript">
64432  */
64433  /**
64434  * @extends Roo.dd.DDProxy
64435  * @class Roo.grid.SplitDragZone
64436  * Support for Column Header resizing
64437  * @constructor
64438  * @param {Object} config
64439  */
64440 // private
64441 // This is a support class used internally by the Grid components
64442 Roo.grid.SplitDragZone = function(grid, hd, hd2){
64443     this.grid = grid;
64444     this.view = grid.getView();
64445     this.proxy = this.view.resizeProxy;
64446     Roo.grid.SplitDragZone.superclass.constructor.call(
64447         this,
64448         hd, // ID
64449         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
64450         {  // CONFIG
64451             dragElId : Roo.id(this.proxy.dom),
64452             resizeFrame:false
64453         }
64454     );
64455     
64456     this.setHandleElId(Roo.id(hd));
64457     if (hd2 !== false) {
64458         this.setOuterHandleElId(Roo.id(hd2));
64459     }
64460     
64461     this.scroll = false;
64462 };
64463 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
64464     fly: Roo.Element.fly,
64465
64466     b4StartDrag : function(x, y){
64467         this.view.headersDisabled = true;
64468         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
64469                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
64470         );
64471         this.proxy.setHeight(h);
64472         
64473         // for old system colWidth really stored the actual width?
64474         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
64475         // which in reality did not work.. - it worked only for fixed sizes
64476         // for resizable we need to use actual sizes.
64477         var w = this.cm.getColumnWidth(this.cellIndex);
64478         if (!this.view.mainWrap) {
64479             // bootstrap.
64480             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
64481         }
64482         
64483         
64484         
64485         // this was w-this.grid.minColumnWidth;
64486         // doesnt really make sense? - w = thie curren width or the rendered one?
64487         var minw = Math.max(w-this.grid.minColumnWidth, 0);
64488         this.resetConstraints();
64489         this.setXConstraint(minw, 1000);
64490         this.setYConstraint(0, 0);
64491         this.minX = x - minw;
64492         this.maxX = x + 1000;
64493         this.startPos = x;
64494         if (!this.view.mainWrap) { // this is Bootstrap code..
64495             this.getDragEl().style.display='block';
64496         }
64497         
64498         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
64499     },
64500
64501
64502     handleMouseDown : function(e){
64503         ev = Roo.EventObject.setEvent(e);
64504         var t = this.fly(ev.getTarget());
64505         if(t.hasClass("x-grid-split")){
64506             this.cellIndex = this.view.getCellIndex(t.dom);
64507             this.split = t.dom;
64508             this.cm = this.grid.colModel;
64509             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
64510                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
64511             }
64512         }
64513     },
64514
64515     endDrag : function(e){
64516         this.view.headersDisabled = false;
64517         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
64518         var diff = endX - this.startPos;
64519         // 
64520         var w = this.cm.getColumnWidth(this.cellIndex);
64521         if (!this.view.mainWrap) {
64522             w = 0;
64523         }
64524         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
64525     },
64526
64527     autoOffset : function(){
64528         this.setDelta(0,0);
64529     }
64530 });/*
64531  * Based on:
64532  * Ext JS Library 1.1.1
64533  * Copyright(c) 2006-2007, Ext JS, LLC.
64534  *
64535  * Originally Released Under LGPL - original licence link has changed is not relivant.
64536  *
64537  * Fork - LGPL
64538  * <script type="text/javascript">
64539  */
64540  
64541 // private
64542 // This is a support class used internally by the Grid components
64543 Roo.grid.GridDragZone = function(grid, config){
64544     this.view = grid.getView();
64545     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
64546     if(this.view.lockedBody){
64547         this.setHandleElId(Roo.id(this.view.mainBody.dom));
64548         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
64549     }
64550     this.scroll = false;
64551     this.grid = grid;
64552     this.ddel = document.createElement('div');
64553     this.ddel.className = 'x-grid-dd-wrap';
64554 };
64555
64556 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
64557     ddGroup : "GridDD",
64558
64559     getDragData : function(e){
64560         var t = Roo.lib.Event.getTarget(e);
64561         var rowIndex = this.view.findRowIndex(t);
64562         var sm = this.grid.selModel;
64563             
64564         //Roo.log(rowIndex);
64565         
64566         if (sm.getSelectedCell) {
64567             // cell selection..
64568             if (!sm.getSelectedCell()) {
64569                 return false;
64570             }
64571             if (rowIndex != sm.getSelectedCell()[0]) {
64572                 return false;
64573             }
64574         
64575         }
64576         if (sm.getSelections && sm.getSelections().length < 1) {
64577             return false;
64578         }
64579         
64580         
64581         // before it used to all dragging of unseleted... - now we dont do that.
64582         if(rowIndex !== false){
64583             
64584             // if editorgrid.. 
64585             
64586             
64587             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
64588                
64589             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
64590               //  
64591             //}
64592             if (e.hasModifier()){
64593                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
64594             }
64595             
64596             Roo.log("getDragData");
64597             
64598             return {
64599                 grid: this.grid,
64600                 ddel: this.ddel,
64601                 rowIndex: rowIndex,
64602                 selections: sm.getSelections ? sm.getSelections() : (
64603                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
64604             };
64605         }
64606         return false;
64607     },
64608     
64609     
64610     onInitDrag : function(e){
64611         var data = this.dragData;
64612         this.ddel.innerHTML = this.grid.getDragDropText();
64613         this.proxy.update(this.ddel);
64614         // fire start drag?
64615     },
64616
64617     afterRepair : function(){
64618         this.dragging = false;
64619     },
64620
64621     getRepairXY : function(e, data){
64622         return false;
64623     },
64624
64625     onEndDrag : function(data, e){
64626         // fire end drag?
64627     },
64628
64629     onValidDrop : function(dd, e, id){
64630         // fire drag drop?
64631         this.hideProxy();
64632     },
64633
64634     beforeInvalidDrop : function(e, id){
64635
64636     }
64637 });/*
64638  * Based on:
64639  * Ext JS Library 1.1.1
64640  * Copyright(c) 2006-2007, Ext JS, LLC.
64641  *
64642  * Originally Released Under LGPL - original licence link has changed is not relivant.
64643  *
64644  * Fork - LGPL
64645  * <script type="text/javascript">
64646  */
64647  
64648
64649 /**
64650  * @class Roo.grid.ColumnModel
64651  * @extends Roo.util.Observable
64652  * This is the default implementation of a ColumnModel used by the Grid. It defines
64653  * the columns in the grid.
64654  * <br>Usage:<br>
64655  <pre><code>
64656  var colModel = new Roo.grid.ColumnModel([
64657         {header: "Ticker", width: 60, sortable: true, locked: true},
64658         {header: "Company Name", width: 150, sortable: true},
64659         {header: "Market Cap.", width: 100, sortable: true},
64660         {header: "$ Sales", width: 100, sortable: true, renderer: money},
64661         {header: "Employees", width: 100, sortable: true, resizable: false}
64662  ]);
64663  </code></pre>
64664  * <p>
64665  
64666  * The config options listed for this class are options which may appear in each
64667  * individual column definition.
64668  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
64669  * @constructor
64670  * @param {Object} config An Array of column config objects. See this class's
64671  * config objects for details.
64672 */
64673 Roo.grid.ColumnModel = function(config){
64674         /**
64675      * The config passed into the constructor
64676      */
64677     this.config = []; //config;
64678     this.lookup = {};
64679
64680     // if no id, create one
64681     // if the column does not have a dataIndex mapping,
64682     // map it to the order it is in the config
64683     for(var i = 0, len = config.length; i < len; i++){
64684         this.addColumn(config[i]);
64685         
64686     }
64687
64688     /**
64689      * The width of columns which have no width specified (defaults to 100)
64690      * @type Number
64691      */
64692     this.defaultWidth = 100;
64693
64694     /**
64695      * Default sortable of columns which have no sortable specified (defaults to false)
64696      * @type Boolean
64697      */
64698     this.defaultSortable = false;
64699
64700     this.addEvents({
64701         /**
64702              * @event widthchange
64703              * Fires when the width of a column changes.
64704              * @param {ColumnModel} this
64705              * @param {Number} columnIndex The column index
64706              * @param {Number} newWidth The new width
64707              */
64708             "widthchange": true,
64709         /**
64710              * @event headerchange
64711              * Fires when the text of a header changes.
64712              * @param {ColumnModel} this
64713              * @param {Number} columnIndex The column index
64714              * @param {Number} newText The new header text
64715              */
64716             "headerchange": true,
64717         /**
64718              * @event hiddenchange
64719              * Fires when a column is hidden or "unhidden".
64720              * @param {ColumnModel} this
64721              * @param {Number} columnIndex The column index
64722              * @param {Boolean} hidden true if hidden, false otherwise
64723              */
64724             "hiddenchange": true,
64725             /**
64726          * @event columnmoved
64727          * Fires when a column is moved.
64728          * @param {ColumnModel} this
64729          * @param {Number} oldIndex
64730          * @param {Number} newIndex
64731          */
64732         "columnmoved" : true,
64733         /**
64734          * @event columlockchange
64735          * Fires when a column's locked state is changed
64736          * @param {ColumnModel} this
64737          * @param {Number} colIndex
64738          * @param {Boolean} locked true if locked
64739          */
64740         "columnlockchange" : true
64741     });
64742     Roo.grid.ColumnModel.superclass.constructor.call(this);
64743 };
64744 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
64745     /**
64746      * @cfg {String} header [required] The header text to display in the Grid view.
64747      */
64748         /**
64749      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
64750      */
64751         /**
64752      * @cfg {String} smHeader Header at Bootsrap Small width
64753      */
64754         /**
64755      * @cfg {String} mdHeader Header at Bootsrap Medium width
64756      */
64757         /**
64758      * @cfg {String} lgHeader Header at Bootsrap Large width
64759      */
64760         /**
64761      * @cfg {String} xlHeader Header at Bootsrap extra Large width
64762      */
64763     /**
64764      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
64765      * {@link Roo.data.Record} definition from which to draw the column's value. If not
64766      * specified, the column's index is used as an index into the Record's data Array.
64767      */
64768     /**
64769      * @cfg {Number} width  The initial width in pixels of the column. Using this
64770      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
64771      */
64772     /**
64773      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
64774      * Defaults to the value of the {@link #defaultSortable} property.
64775      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
64776      */
64777     /**
64778      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
64779      */
64780     /**
64781      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
64782      */
64783     /**
64784      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
64785      */
64786     /**
64787      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
64788      */
64789     /**
64790      * @cfg {Function} renderer A function used to generate HTML markup for a cell
64791      * given the cell's data value. See {@link #setRenderer}. If not specified, the
64792      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
64793      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
64794      */
64795        /**
64796      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
64797      */
64798     /**
64799      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
64800      */
64801     /**
64802      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
64803      */
64804     /**
64805      * @cfg {String} cursor ( auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing)
64806      */
64807     /**
64808      * @cfg {String} tooltip mouse over tooltip text
64809      */
64810     /**
64811      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
64812      */
64813     /**
64814      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
64815      */
64816     /**
64817      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
64818      */
64819     /**
64820      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
64821      */
64822         /**
64823      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
64824      */
64825     /**
64826      * Returns the id of the column at the specified index.
64827      * @param {Number} index The column index
64828      * @return {String} the id
64829      */
64830     getColumnId : function(index){
64831         return this.config[index].id;
64832     },
64833
64834     /**
64835      * Returns the column for a specified id.
64836      * @param {String} id The column id
64837      * @return {Object} the column
64838      */
64839     getColumnById : function(id){
64840         return this.lookup[id];
64841     },
64842
64843     
64844     /**
64845      * Returns the column Object for a specified dataIndex.
64846      * @param {String} dataIndex The column dataIndex
64847      * @return {Object|Boolean} the column or false if not found
64848      */
64849     getColumnByDataIndex: function(dataIndex){
64850         var index = this.findColumnIndex(dataIndex);
64851         return index > -1 ? this.config[index] : false;
64852     },
64853     
64854     /**
64855      * Returns the index for a specified column id.
64856      * @param {String} id The column id
64857      * @return {Number} the index, or -1 if not found
64858      */
64859     getIndexById : function(id){
64860         for(var i = 0, len = this.config.length; i < len; i++){
64861             if(this.config[i].id == id){
64862                 return i;
64863             }
64864         }
64865         return -1;
64866     },
64867     
64868     /**
64869      * Returns the index for a specified column dataIndex.
64870      * @param {String} dataIndex The column dataIndex
64871      * @return {Number} the index, or -1 if not found
64872      */
64873     
64874     findColumnIndex : function(dataIndex){
64875         for(var i = 0, len = this.config.length; i < len; i++){
64876             if(this.config[i].dataIndex == dataIndex){
64877                 return i;
64878             }
64879         }
64880         return -1;
64881     },
64882     
64883     
64884     moveColumn : function(oldIndex, newIndex){
64885         var c = this.config[oldIndex];
64886         this.config.splice(oldIndex, 1);
64887         this.config.splice(newIndex, 0, c);
64888         this.dataMap = null;
64889         this.fireEvent("columnmoved", this, oldIndex, newIndex);
64890     },
64891
64892     isLocked : function(colIndex){
64893         return this.config[colIndex].locked === true;
64894     },
64895
64896     setLocked : function(colIndex, value, suppressEvent){
64897         if(this.isLocked(colIndex) == value){
64898             return;
64899         }
64900         this.config[colIndex].locked = value;
64901         if(!suppressEvent){
64902             this.fireEvent("columnlockchange", this, colIndex, value);
64903         }
64904     },
64905
64906     getTotalLockedWidth : function(){
64907         var totalWidth = 0;
64908         for(var i = 0; i < this.config.length; i++){
64909             if(this.isLocked(i) && !this.isHidden(i)){
64910                 this.totalWidth += this.getColumnWidth(i);
64911             }
64912         }
64913         return totalWidth;
64914     },
64915
64916     getLockedCount : function(){
64917         for(var i = 0, len = this.config.length; i < len; i++){
64918             if(!this.isLocked(i)){
64919                 return i;
64920             }
64921         }
64922         
64923         return this.config.length;
64924     },
64925
64926     /**
64927      * Returns the number of columns.
64928      * @return {Number}
64929      */
64930     getColumnCount : function(visibleOnly){
64931         if(visibleOnly === true){
64932             var c = 0;
64933             for(var i = 0, len = this.config.length; i < len; i++){
64934                 if(!this.isHidden(i)){
64935                     c++;
64936                 }
64937             }
64938             return c;
64939         }
64940         return this.config.length;
64941     },
64942
64943     /**
64944      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
64945      * @param {Function} fn
64946      * @param {Object} scope (optional)
64947      * @return {Array} result
64948      */
64949     getColumnsBy : function(fn, scope){
64950         var r = [];
64951         for(var i = 0, len = this.config.length; i < len; i++){
64952             var c = this.config[i];
64953             if(fn.call(scope||this, c, i) === true){
64954                 r[r.length] = c;
64955             }
64956         }
64957         return r;
64958     },
64959
64960     /**
64961      * Returns true if the specified column is sortable.
64962      * @param {Number} col The column index
64963      * @return {Boolean}
64964      */
64965     isSortable : function(col){
64966         if(typeof this.config[col].sortable == "undefined"){
64967             return this.defaultSortable;
64968         }
64969         return this.config[col].sortable;
64970     },
64971
64972     /**
64973      * Returns the rendering (formatting) function defined for the column.
64974      * @param {Number} col The column index.
64975      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
64976      */
64977     getRenderer : function(col){
64978         if(!this.config[col].renderer){
64979             return Roo.grid.ColumnModel.defaultRenderer;
64980         }
64981         return this.config[col].renderer;
64982     },
64983
64984     /**
64985      * Sets the rendering (formatting) function for a column.
64986      * @param {Number} col The column index
64987      * @param {Function} fn The function to use to process the cell's raw data
64988      * to return HTML markup for the grid view. The render function is called with
64989      * the following parameters:<ul>
64990      * <li>Data value.</li>
64991      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
64992      * <li>css A CSS style string to apply to the table cell.</li>
64993      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
64994      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
64995      * <li>Row index</li>
64996      * <li>Column index</li>
64997      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
64998      */
64999     setRenderer : function(col, fn){
65000         this.config[col].renderer = fn;
65001     },
65002
65003     /**
65004      * Returns the width for the specified column.
65005      * @param {Number} col The column index
65006      * @param (optional) {String} gridSize bootstrap width size.
65007      * @return {Number}
65008      */
65009     getColumnWidth : function(col, gridSize)
65010         {
65011                 var cfg = this.config[col];
65012                 
65013                 if (typeof(gridSize) == 'undefined') {
65014                         return cfg.width * 1 || this.defaultWidth;
65015                 }
65016                 if (gridSize === false) { // if we set it..
65017                         return cfg.width || false;
65018                 }
65019                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
65020                 
65021                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
65022                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
65023                                 continue;
65024                         }
65025                         return cfg[ sizes[i] ];
65026                 }
65027                 return 1;
65028                 
65029     },
65030
65031     /**
65032      * Sets the width for a column.
65033      * @param {Number} col The column index
65034      * @param {Number} width The new width
65035      */
65036     setColumnWidth : function(col, width, suppressEvent){
65037         this.config[col].width = width;
65038         this.totalWidth = null;
65039         if(!suppressEvent){
65040              this.fireEvent("widthchange", this, col, width);
65041         }
65042     },
65043
65044     /**
65045      * Returns the total width of all columns.
65046      * @param {Boolean} includeHidden True to include hidden column widths
65047      * @return {Number}
65048      */
65049     getTotalWidth : function(includeHidden){
65050         if(!this.totalWidth){
65051             this.totalWidth = 0;
65052             for(var i = 0, len = this.config.length; i < len; i++){
65053                 if(includeHidden || !this.isHidden(i)){
65054                     this.totalWidth += this.getColumnWidth(i);
65055                 }
65056             }
65057         }
65058         return this.totalWidth;
65059     },
65060
65061     /**
65062      * Returns the header for the specified column.
65063      * @param {Number} col The column index
65064      * @return {String}
65065      */
65066     getColumnHeader : function(col){
65067         return this.config[col].header;
65068     },
65069
65070     /**
65071      * Sets the header for a column.
65072      * @param {Number} col The column index
65073      * @param {String} header The new header
65074      */
65075     setColumnHeader : function(col, header){
65076         this.config[col].header = header;
65077         this.fireEvent("headerchange", this, col, header);
65078     },
65079
65080     /**
65081      * Returns the tooltip for the specified column.
65082      * @param {Number} col The column index
65083      * @return {String}
65084      */
65085     getColumnTooltip : function(col){
65086             return this.config[col].tooltip;
65087     },
65088     /**
65089      * Sets the tooltip for a column.
65090      * @param {Number} col The column index
65091      * @param {String} tooltip The new tooltip
65092      */
65093     setColumnTooltip : function(col, tooltip){
65094             this.config[col].tooltip = tooltip;
65095     },
65096
65097     /**
65098      * Returns the dataIndex for the specified column.
65099      * @param {Number} col The column index
65100      * @return {Number}
65101      */
65102     getDataIndex : function(col){
65103         return this.config[col].dataIndex;
65104     },
65105
65106     /**
65107      * Sets the dataIndex for a column.
65108      * @param {Number} col The column index
65109      * @param {Number} dataIndex The new dataIndex
65110      */
65111     setDataIndex : function(col, dataIndex){
65112         this.config[col].dataIndex = dataIndex;
65113     },
65114
65115     
65116     
65117     /**
65118      * Returns true if the cell is editable.
65119      * @param {Number} colIndex The column index
65120      * @param {Number} rowIndex The row index - this is nto actually used..?
65121      * @return {Boolean}
65122      */
65123     isCellEditable : function(colIndex, rowIndex){
65124         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
65125     },
65126
65127     /**
65128      * Returns the editor defined for the cell/column.
65129      * return false or null to disable editing.
65130      * @param {Number} colIndex The column index
65131      * @param {Number} rowIndex The row index
65132      * @return {Object}
65133      */
65134     getCellEditor : function(colIndex, rowIndex){
65135         return this.config[colIndex].editor;
65136     },
65137
65138     /**
65139      * Sets if a column is editable.
65140      * @param {Number} col The column index
65141      * @param {Boolean} editable True if the column is editable
65142      */
65143     setEditable : function(col, editable){
65144         this.config[col].editable = editable;
65145     },
65146
65147
65148     /**
65149      * Returns true if the column is hidden.
65150      * @param {Number} colIndex The column index
65151      * @return {Boolean}
65152      */
65153     isHidden : function(colIndex){
65154         return this.config[colIndex].hidden;
65155     },
65156
65157
65158     /**
65159      * Returns true if the column width cannot be changed
65160      */
65161     isFixed : function(colIndex){
65162         return this.config[colIndex].fixed;
65163     },
65164
65165     /**
65166      * Returns true if the column can be resized
65167      * @return {Boolean}
65168      */
65169     isResizable : function(colIndex){
65170         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
65171     },
65172     /**
65173      * Sets if a column is hidden.
65174      * @param {Number} colIndex The column index
65175      * @param {Boolean} hidden True if the column is hidden
65176      */
65177     setHidden : function(colIndex, hidden){
65178         this.config[colIndex].hidden = hidden;
65179         this.totalWidth = null;
65180         this.fireEvent("hiddenchange", this, colIndex, hidden);
65181     },
65182
65183     /**
65184      * Sets the editor for a column.
65185      * @param {Number} col The column index
65186      * @param {Object} editor The editor object
65187      */
65188     setEditor : function(col, editor){
65189         this.config[col].editor = editor;
65190     },
65191     /**
65192      * Add a column (experimental...) - defaults to adding to the end..
65193      * @param {Object} config 
65194     */
65195     addColumn : function(c)
65196     {
65197     
65198         var i = this.config.length;
65199         this.config[i] = c;
65200         
65201         if(typeof c.dataIndex == "undefined"){
65202             c.dataIndex = i;
65203         }
65204         if(typeof c.renderer == "string"){
65205             c.renderer = Roo.util.Format[c.renderer];
65206         }
65207         if(typeof c.id == "undefined"){
65208             c.id = Roo.id();
65209         }
65210         if(c.editor && c.editor.xtype){
65211             c.editor  = Roo.factory(c.editor, Roo.grid);
65212         }
65213         if(c.editor && c.editor.isFormField){
65214             c.editor = new Roo.grid.GridEditor(c.editor);
65215         }
65216         this.lookup[c.id] = c;
65217     }
65218     
65219 });
65220
65221 Roo.grid.ColumnModel.defaultRenderer = function(value)
65222 {
65223     if(typeof value == "object") {
65224         return value;
65225     }
65226         if(typeof value == "string" && value.length < 1){
65227             return "&#160;";
65228         }
65229     
65230         return String.format("{0}", value);
65231 };
65232
65233 // Alias for backwards compatibility
65234 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
65235 /*
65236  * Based on:
65237  * Ext JS Library 1.1.1
65238  * Copyright(c) 2006-2007, Ext JS, LLC.
65239  *
65240  * Originally Released Under LGPL - original licence link has changed is not relivant.
65241  *
65242  * Fork - LGPL
65243  * <script type="text/javascript">
65244  */
65245
65246 /**
65247  * @class Roo.grid.AbstractSelectionModel
65248  * @extends Roo.util.Observable
65249  * @abstract
65250  * Abstract base class for grid SelectionModels.  It provides the interface that should be
65251  * implemented by descendant classes.  This class should not be directly instantiated.
65252  * @constructor
65253  */
65254 Roo.grid.AbstractSelectionModel = function(){
65255     this.locked = false;
65256     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
65257 };
65258
65259 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
65260     /** @ignore Called by the grid automatically. Do not call directly. */
65261     init : function(grid){
65262         this.grid = grid;
65263         this.initEvents();
65264     },
65265
65266     /**
65267      * Locks the selections.
65268      */
65269     lock : function(){
65270         this.locked = true;
65271     },
65272
65273     /**
65274      * Unlocks the selections.
65275      */
65276     unlock : function(){
65277         this.locked = false;
65278     },
65279
65280     /**
65281      * Returns true if the selections are locked.
65282      * @return {Boolean}
65283      */
65284     isLocked : function(){
65285         return this.locked;
65286     }
65287 });/*
65288  * Based on:
65289  * Ext JS Library 1.1.1
65290  * Copyright(c) 2006-2007, Ext JS, LLC.
65291  *
65292  * Originally Released Under LGPL - original licence link has changed is not relivant.
65293  *
65294  * Fork - LGPL
65295  * <script type="text/javascript">
65296  */
65297 /**
65298  * @extends Roo.grid.AbstractSelectionModel
65299  * @class Roo.grid.RowSelectionModel
65300  * The default SelectionModel used by {@link Roo.grid.Grid}.
65301  * It supports multiple selections and keyboard selection/navigation. 
65302  * @constructor
65303  * @param {Object} config
65304  */
65305 Roo.grid.RowSelectionModel = function(config){
65306     Roo.apply(this, config);
65307     this.selections = new Roo.util.MixedCollection(false, function(o){
65308         return o.id;
65309     });
65310
65311     this.last = false;
65312     this.lastActive = false;
65313
65314     this.addEvents({
65315         /**
65316         * @event selectionchange
65317         * Fires when the selection changes
65318         * @param {SelectionModel} this
65319         */
65320        "selectionchange" : true,
65321        /**
65322         * @event afterselectionchange
65323         * Fires after the selection changes (eg. by key press or clicking)
65324         * @param {SelectionModel} this
65325         */
65326        "afterselectionchange" : true,
65327        /**
65328         * @event beforerowselect
65329         * Fires when a row is selected being selected, return false to cancel.
65330         * @param {SelectionModel} this
65331         * @param {Number} rowIndex The selected index
65332         * @param {Boolean} keepExisting False if other selections will be cleared
65333         */
65334        "beforerowselect" : true,
65335        /**
65336         * @event rowselect
65337         * Fires when a row is selected.
65338         * @param {SelectionModel} this
65339         * @param {Number} rowIndex The selected index
65340         * @param {Roo.data.Record} r The record
65341         */
65342        "rowselect" : true,
65343        /**
65344         * @event rowdeselect
65345         * Fires when a row is deselected.
65346         * @param {SelectionModel} this
65347         * @param {Number} rowIndex The selected index
65348         */
65349         "rowdeselect" : true
65350     });
65351     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
65352     this.locked = false;
65353 };
65354
65355 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
65356     /**
65357      * @cfg {Boolean} singleSelect
65358      * True to allow selection of only one row at a time (defaults to false)
65359      */
65360     singleSelect : false,
65361
65362     // private
65363     initEvents : function(){
65364
65365         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
65366             this.grid.on("mousedown", this.handleMouseDown, this);
65367         }else{ // allow click to work like normal
65368             this.grid.on("rowclick", this.handleDragableRowClick, this);
65369         }
65370         // bootstrap does not have a view..
65371         var view = this.grid.view ? this.grid.view : this.grid;
65372         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
65373             "up" : function(e){
65374                 if(!e.shiftKey){
65375                     this.selectPrevious(e.shiftKey);
65376                 }else if(this.last !== false && this.lastActive !== false){
65377                     var last = this.last;
65378                     this.selectRange(this.last,  this.lastActive-1);
65379                     view.focusRow(this.lastActive);
65380                     if(last !== false){
65381                         this.last = last;
65382                     }
65383                 }else{
65384                     this.selectFirstRow();
65385                 }
65386                 this.fireEvent("afterselectionchange", this);
65387             },
65388             "down" : function(e){
65389                 if(!e.shiftKey){
65390                     this.selectNext(e.shiftKey);
65391                 }else if(this.last !== false && this.lastActive !== false){
65392                     var last = this.last;
65393                     this.selectRange(this.last,  this.lastActive+1);
65394                     view.focusRow(this.lastActive);
65395                     if(last !== false){
65396                         this.last = last;
65397                     }
65398                 }else{
65399                     this.selectFirstRow();
65400                 }
65401                 this.fireEvent("afterselectionchange", this);
65402             },
65403             scope: this
65404         });
65405
65406          
65407         view.on("refresh", this.onRefresh, this);
65408         view.on("rowupdated", this.onRowUpdated, this);
65409         view.on("rowremoved", this.onRemove, this);
65410     },
65411
65412     // private
65413     onRefresh : function(){
65414         var ds = this.grid.ds, i, v = this.grid.view;
65415         var s = this.selections;
65416         s.each(function(r){
65417             if((i = ds.indexOfId(r.id)) != -1){
65418                 v.onRowSelect(i);
65419                 s.add(ds.getAt(i)); // updating the selection relate data
65420             }else{
65421                 s.remove(r);
65422             }
65423         });
65424     },
65425
65426     // private
65427     onRemove : function(v, index, r){
65428         this.selections.remove(r);
65429     },
65430
65431     // private
65432     onRowUpdated : function(v, index, r){
65433         if(this.isSelected(r)){
65434             v.onRowSelect(index);
65435         }
65436     },
65437
65438     /**
65439      * Select records.
65440      * @param {Array} records The records to select
65441      * @param {Boolean} keepExisting (optional) True to keep existing selections
65442      */
65443     selectRecords : function(records, keepExisting){
65444         if(!keepExisting){
65445             this.clearSelections();
65446         }
65447         var ds = this.grid.ds;
65448         for(var i = 0, len = records.length; i < len; i++){
65449             this.selectRow(ds.indexOf(records[i]), true);
65450         }
65451     },
65452
65453     /**
65454      * Gets the number of selected rows.
65455      * @return {Number}
65456      */
65457     getCount : function(){
65458         return this.selections.length;
65459     },
65460
65461     /**
65462      * Selects the first row in the grid.
65463      */
65464     selectFirstRow : function(){
65465         this.selectRow(0);
65466     },
65467
65468     /**
65469      * Select the last row.
65470      * @param {Boolean} keepExisting (optional) True to keep existing selections
65471      */
65472     selectLastRow : function(keepExisting){
65473         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
65474     },
65475
65476     /**
65477      * Selects the row immediately following the last selected row.
65478      * @param {Boolean} keepExisting (optional) True to keep existing selections
65479      */
65480     selectNext : function(keepExisting){
65481         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
65482             this.selectRow(this.last+1, keepExisting);
65483             var view = this.grid.view ? this.grid.view : this.grid;
65484             view.focusRow(this.last);
65485         }
65486     },
65487
65488     /**
65489      * Selects the row that precedes the last selected row.
65490      * @param {Boolean} keepExisting (optional) True to keep existing selections
65491      */
65492     selectPrevious : function(keepExisting){
65493         if(this.last){
65494             this.selectRow(this.last-1, keepExisting);
65495             var view = this.grid.view ? this.grid.view : this.grid;
65496             view.focusRow(this.last);
65497         }
65498     },
65499
65500     /**
65501      * Returns the selected records
65502      * @return {Array} Array of selected records
65503      */
65504     getSelections : function(){
65505         return [].concat(this.selections.items);
65506     },
65507
65508     /**
65509      * Returns the first selected record.
65510      * @return {Record}
65511      */
65512     getSelected : function(){
65513         return this.selections.itemAt(0);
65514     },
65515
65516
65517     /**
65518      * Clears all selections.
65519      */
65520     clearSelections : function(fast){
65521         if(this.locked) {
65522             return;
65523         }
65524         if(fast !== true){
65525             var ds = this.grid.ds;
65526             var s = this.selections;
65527             s.each(function(r){
65528                 this.deselectRow(ds.indexOfId(r.id));
65529             }, this);
65530             s.clear();
65531         }else{
65532             this.selections.clear();
65533         }
65534         this.last = false;
65535     },
65536
65537
65538     /**
65539      * Selects all rows.
65540      */
65541     selectAll : function(){
65542         if(this.locked) {
65543             return;
65544         }
65545         this.selections.clear();
65546         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
65547             this.selectRow(i, true);
65548         }
65549     },
65550
65551     /**
65552      * Returns True if there is a selection.
65553      * @return {Boolean}
65554      */
65555     hasSelection : function(){
65556         return this.selections.length > 0;
65557     },
65558
65559     /**
65560      * Returns True if the specified row is selected.
65561      * @param {Number/Record} record The record or index of the record to check
65562      * @return {Boolean}
65563      */
65564     isSelected : function(index){
65565         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
65566         return (r && this.selections.key(r.id) ? true : false);
65567     },
65568
65569     /**
65570      * Returns True if the specified record id is selected.
65571      * @param {String} id The id of record to check
65572      * @return {Boolean}
65573      */
65574     isIdSelected : function(id){
65575         return (this.selections.key(id) ? true : false);
65576     },
65577
65578     // private
65579     handleMouseDown : function(e, t)
65580     {
65581         var view = this.grid.view ? this.grid.view : this.grid;
65582         var rowIndex;
65583         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
65584             return;
65585         };
65586         if(e.shiftKey && this.last !== false){
65587             var last = this.last;
65588             this.selectRange(last, rowIndex, e.ctrlKey);
65589             this.last = last; // reset the last
65590             view.focusRow(rowIndex);
65591         }else{
65592             var isSelected = this.isSelected(rowIndex);
65593             if(e.button !== 0 && isSelected){
65594                 view.focusRow(rowIndex);
65595             }else if(e.ctrlKey && isSelected){
65596                 this.deselectRow(rowIndex);
65597             }else if(!isSelected){
65598                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
65599                 view.focusRow(rowIndex);
65600             }
65601         }
65602         this.fireEvent("afterselectionchange", this);
65603     },
65604     // private
65605     handleDragableRowClick :  function(grid, rowIndex, e) 
65606     {
65607         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
65608             this.selectRow(rowIndex, false);
65609             var view = this.grid.view ? this.grid.view : this.grid;
65610             view.focusRow(rowIndex);
65611              this.fireEvent("afterselectionchange", this);
65612         }
65613     },
65614     
65615     /**
65616      * Selects multiple rows.
65617      * @param {Array} rows Array of the indexes of the row to select
65618      * @param {Boolean} keepExisting (optional) True to keep existing selections
65619      */
65620     selectRows : function(rows, keepExisting){
65621         if(!keepExisting){
65622             this.clearSelections();
65623         }
65624         for(var i = 0, len = rows.length; i < len; i++){
65625             this.selectRow(rows[i], true);
65626         }
65627     },
65628
65629     /**
65630      * Selects a range of rows. All rows in between startRow and endRow are also selected.
65631      * @param {Number} startRow The index of the first row in the range
65632      * @param {Number} endRow The index of the last row in the range
65633      * @param {Boolean} keepExisting (optional) True to retain existing selections
65634      */
65635     selectRange : function(startRow, endRow, keepExisting){
65636         if(this.locked) {
65637             return;
65638         }
65639         if(!keepExisting){
65640             this.clearSelections();
65641         }
65642         if(startRow <= endRow){
65643             for(var i = startRow; i <= endRow; i++){
65644                 this.selectRow(i, true);
65645             }
65646         }else{
65647             for(var i = startRow; i >= endRow; i--){
65648                 this.selectRow(i, true);
65649             }
65650         }
65651     },
65652
65653     /**
65654      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
65655      * @param {Number} startRow The index of the first row in the range
65656      * @param {Number} endRow The index of the last row in the range
65657      */
65658     deselectRange : function(startRow, endRow, preventViewNotify){
65659         if(this.locked) {
65660             return;
65661         }
65662         for(var i = startRow; i <= endRow; i++){
65663             this.deselectRow(i, preventViewNotify);
65664         }
65665     },
65666
65667     /**
65668      * Selects a row.
65669      * @param {Number} row The index of the row to select
65670      * @param {Boolean} keepExisting (optional) True to keep existing selections
65671      */
65672     selectRow : function(index, keepExisting, preventViewNotify){
65673         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
65674             return;
65675         }
65676         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
65677             if(!keepExisting || this.singleSelect){
65678                 this.clearSelections();
65679             }
65680             var r = this.grid.ds.getAt(index);
65681             this.selections.add(r);
65682             this.last = this.lastActive = index;
65683             if(!preventViewNotify){
65684                 var view = this.grid.view ? this.grid.view : this.grid;
65685                 view.onRowSelect(index);
65686             }
65687             this.fireEvent("rowselect", this, index, r);
65688             this.fireEvent("selectionchange", this);
65689         }
65690     },
65691
65692     /**
65693      * Deselects a row.
65694      * @param {Number} row The index of the row to deselect
65695      */
65696     deselectRow : function(index, preventViewNotify){
65697         if(this.locked) {
65698             return;
65699         }
65700         if(this.last == index){
65701             this.last = false;
65702         }
65703         if(this.lastActive == index){
65704             this.lastActive = false;
65705         }
65706         var r = this.grid.ds.getAt(index);
65707         this.selections.remove(r);
65708         if(!preventViewNotify){
65709             var view = this.grid.view ? this.grid.view : this.grid;
65710             view.onRowDeselect(index);
65711         }
65712         this.fireEvent("rowdeselect", this, index);
65713         this.fireEvent("selectionchange", this);
65714     },
65715
65716     // private
65717     restoreLast : function(){
65718         if(this._last){
65719             this.last = this._last;
65720         }
65721     },
65722
65723     // private
65724     acceptsNav : function(row, col, cm){
65725         return !cm.isHidden(col) && cm.isCellEditable(col, row);
65726     },
65727
65728     // private
65729     onEditorKey : function(field, e){
65730         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
65731         if(k == e.TAB){
65732             e.stopEvent();
65733             ed.completeEdit();
65734             if(e.shiftKey){
65735                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
65736             }else{
65737                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65738             }
65739         }else if(k == e.ENTER && !e.ctrlKey){
65740             e.stopEvent();
65741             ed.completeEdit();
65742             if(e.shiftKey){
65743                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
65744             }else{
65745                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
65746             }
65747         }else if(k == e.ESC){
65748             ed.cancelEdit();
65749         }
65750         if(newCell){
65751             g.startEditing(newCell[0], newCell[1]);
65752         }
65753     }
65754 });/*
65755  * Based on:
65756  * Ext JS Library 1.1.1
65757  * Copyright(c) 2006-2007, Ext JS, LLC.
65758  *
65759  * Originally Released Under LGPL - original licence link has changed is not relivant.
65760  *
65761  * Fork - LGPL
65762  * <script type="text/javascript">
65763  */
65764 /**
65765  * @class Roo.grid.CellSelectionModel
65766  * @extends Roo.grid.AbstractSelectionModel
65767  * This class provides the basic implementation for cell selection in a grid.
65768  * @constructor
65769  * @param {Object} config The object containing the configuration of this model.
65770  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
65771  */
65772 Roo.grid.CellSelectionModel = function(config){
65773     Roo.apply(this, config);
65774
65775     this.selection = null;
65776
65777     this.addEvents({
65778         /**
65779              * @event beforerowselect
65780              * Fires before a cell is selected.
65781              * @param {SelectionModel} this
65782              * @param {Number} rowIndex The selected row index
65783              * @param {Number} colIndex The selected cell index
65784              */
65785             "beforecellselect" : true,
65786         /**
65787              * @event cellselect
65788              * Fires when a cell is selected.
65789              * @param {SelectionModel} this
65790              * @param {Number} rowIndex The selected row index
65791              * @param {Number} colIndex The selected cell index
65792              */
65793             "cellselect" : true,
65794         /**
65795              * @event selectionchange
65796              * Fires when the active selection changes.
65797              * @param {SelectionModel} this
65798              * @param {Object} selection null for no selection or an object (o) with two properties
65799                 <ul>
65800                 <li>o.record: the record object for the row the selection is in</li>
65801                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
65802                 </ul>
65803              */
65804             "selectionchange" : true,
65805         /**
65806              * @event tabend
65807              * Fires when the tab (or enter) was pressed on the last editable cell
65808              * You can use this to trigger add new row.
65809              * @param {SelectionModel} this
65810              */
65811             "tabend" : true,
65812          /**
65813              * @event beforeeditnext
65814              * Fires before the next editable sell is made active
65815              * You can use this to skip to another cell or fire the tabend
65816              *    if you set cell to false
65817              * @param {Object} eventdata object : { cell : [ row, col ] } 
65818              */
65819             "beforeeditnext" : true
65820     });
65821     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
65822 };
65823
65824 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
65825     
65826     enter_is_tab: false,
65827
65828     /** @ignore */
65829     initEvents : function(){
65830         this.grid.on("mousedown", this.handleMouseDown, this);
65831         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
65832         var view = this.grid.view;
65833         view.on("refresh", this.onViewChange, this);
65834         view.on("rowupdated", this.onRowUpdated, this);
65835         view.on("beforerowremoved", this.clearSelections, this);
65836         view.on("beforerowsinserted", this.clearSelections, this);
65837         if(this.grid.isEditor){
65838             this.grid.on("beforeedit", this.beforeEdit,  this);
65839         }
65840     },
65841
65842         //private
65843     beforeEdit : function(e){
65844         this.select(e.row, e.column, false, true, e.record);
65845     },
65846
65847         //private
65848     onRowUpdated : function(v, index, r){
65849         if(this.selection && this.selection.record == r){
65850             v.onCellSelect(index, this.selection.cell[1]);
65851         }
65852     },
65853
65854         //private
65855     onViewChange : function(){
65856         this.clearSelections(true);
65857     },
65858
65859         /**
65860          * Returns the currently selected cell,.
65861          * @return {Array} The selected cell (row, column) or null if none selected.
65862          */
65863     getSelectedCell : function(){
65864         return this.selection ? this.selection.cell : null;
65865     },
65866
65867     /**
65868      * Clears all selections.
65869      * @param {Boolean} true to prevent the gridview from being notified about the change.
65870      */
65871     clearSelections : function(preventNotify){
65872         var s = this.selection;
65873         if(s){
65874             if(preventNotify !== true){
65875                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
65876             }
65877             this.selection = null;
65878             this.fireEvent("selectionchange", this, null);
65879         }
65880     },
65881
65882     /**
65883      * Returns true if there is a selection.
65884      * @return {Boolean}
65885      */
65886     hasSelection : function(){
65887         return this.selection ? true : false;
65888     },
65889
65890     /** @ignore */
65891     handleMouseDown : function(e, t){
65892         var v = this.grid.getView();
65893         if(this.isLocked()){
65894             return;
65895         };
65896         var row = v.findRowIndex(t);
65897         var cell = v.findCellIndex(t);
65898         if(row !== false && cell !== false){
65899             this.select(row, cell);
65900         }
65901     },
65902
65903     /**
65904      * Selects a cell.
65905      * @param {Number} rowIndex
65906      * @param {Number} collIndex
65907      */
65908     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
65909         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
65910             this.clearSelections();
65911             r = r || this.grid.dataSource.getAt(rowIndex);
65912             this.selection = {
65913                 record : r,
65914                 cell : [rowIndex, colIndex]
65915             };
65916             if(!preventViewNotify){
65917                 var v = this.grid.getView();
65918                 v.onCellSelect(rowIndex, colIndex);
65919                 if(preventFocus !== true){
65920                     v.focusCell(rowIndex, colIndex);
65921                 }
65922             }
65923             this.fireEvent("cellselect", this, rowIndex, colIndex);
65924             this.fireEvent("selectionchange", this, this.selection);
65925         }
65926     },
65927
65928         //private
65929     isSelectable : function(rowIndex, colIndex, cm){
65930         return !cm.isHidden(colIndex);
65931     },
65932
65933     /** @ignore */
65934     handleKeyDown : function(e){
65935         //Roo.log('Cell Sel Model handleKeyDown');
65936         if(!e.isNavKeyPress()){
65937             return;
65938         }
65939         var g = this.grid, s = this.selection;
65940         if(!s){
65941             e.stopEvent();
65942             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
65943             if(cell){
65944                 this.select(cell[0], cell[1]);
65945             }
65946             return;
65947         }
65948         var sm = this;
65949         var walk = function(row, col, step){
65950             return g.walkCells(row, col, step, sm.isSelectable,  sm);
65951         };
65952         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
65953         var newCell;
65954
65955       
65956
65957         switch(k){
65958             case e.TAB:
65959                 // handled by onEditorKey
65960                 if (g.isEditor && g.editing) {
65961                     return;
65962                 }
65963                 if(e.shiftKey) {
65964                     newCell = walk(r, c-1, -1);
65965                 } else {
65966                     newCell = walk(r, c+1, 1);
65967                 }
65968                 break;
65969             
65970             case e.DOWN:
65971                newCell = walk(r+1, c, 1);
65972                 break;
65973             
65974             case e.UP:
65975                 newCell = walk(r-1, c, -1);
65976                 break;
65977             
65978             case e.RIGHT:
65979                 newCell = walk(r, c+1, 1);
65980                 break;
65981             
65982             case e.LEFT:
65983                 newCell = walk(r, c-1, -1);
65984                 break;
65985             
65986             case e.ENTER:
65987                 
65988                 if(g.isEditor && !g.editing){
65989                    g.startEditing(r, c);
65990                    e.stopEvent();
65991                    return;
65992                 }
65993                 
65994                 
65995              break;
65996         };
65997         if(newCell){
65998             this.select(newCell[0], newCell[1]);
65999             e.stopEvent();
66000             
66001         }
66002     },
66003
66004     acceptsNav : function(row, col, cm){
66005         return !cm.isHidden(col) && cm.isCellEditable(col, row);
66006     },
66007     /**
66008      * Selects a cell.
66009      * @param {Number} field (not used) - as it's normally used as a listener
66010      * @param {Number} e - event - fake it by using
66011      *
66012      * var e = Roo.EventObjectImpl.prototype;
66013      * e.keyCode = e.TAB
66014      *
66015      * 
66016      */
66017     onEditorKey : function(field, e){
66018         
66019         var k = e.getKey(),
66020             newCell,
66021             g = this.grid,
66022             ed = g.activeEditor,
66023             forward = false;
66024         ///Roo.log('onEditorKey' + k);
66025         
66026         
66027         if (this.enter_is_tab && k == e.ENTER) {
66028             k = e.TAB;
66029         }
66030         
66031         if(k == e.TAB){
66032             if(e.shiftKey){
66033                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
66034             }else{
66035                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
66036                 forward = true;
66037             }
66038             
66039             e.stopEvent();
66040             
66041         } else if(k == e.ENTER &&  !e.ctrlKey){
66042             ed.completeEdit();
66043             e.stopEvent();
66044             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
66045         
66046                 } else if(k == e.ESC){
66047             ed.cancelEdit();
66048         }
66049                 
66050         if (newCell) {
66051             var ecall = { cell : newCell, forward : forward };
66052             this.fireEvent('beforeeditnext', ecall );
66053             newCell = ecall.cell;
66054                         forward = ecall.forward;
66055         }
66056                 
66057         if(newCell){
66058             //Roo.log('next cell after edit');
66059             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
66060         } else if (forward) {
66061             // tabbed past last
66062             this.fireEvent.defer(100, this, ['tabend',this]);
66063         }
66064     }
66065 });/*
66066  * Based on:
66067  * Ext JS Library 1.1.1
66068  * Copyright(c) 2006-2007, Ext JS, LLC.
66069  *
66070  * Originally Released Under LGPL - original licence link has changed is not relivant.
66071  *
66072  * Fork - LGPL
66073  * <script type="text/javascript">
66074  */
66075  
66076 /**
66077  * @class Roo.grid.EditorGrid
66078  * @extends Roo.grid.Grid
66079  * Class for creating and editable grid.
66080  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
66081  * The container MUST have some type of size defined for the grid to fill. The container will be 
66082  * automatically set to position relative if it isn't already.
66083  * @param {Object} dataSource The data model to bind to
66084  * @param {Object} colModel The column model with info about this grid's columns
66085  */
66086 Roo.grid.EditorGrid = function(container, config){
66087     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
66088     this.getGridEl().addClass("xedit-grid");
66089
66090     if(!this.selModel){
66091         this.selModel = new Roo.grid.CellSelectionModel();
66092     }
66093
66094     this.activeEditor = null;
66095
66096         this.addEvents({
66097             /**
66098              * @event beforeedit
66099              * Fires before cell editing is triggered. The edit event object has the following properties <br />
66100              * <ul style="padding:5px;padding-left:16px;">
66101              * <li>grid - This grid</li>
66102              * <li>record - The record being edited</li>
66103              * <li>field - The field name being edited</li>
66104              * <li>value - The value for the field being edited.</li>
66105              * <li>row - The grid row index</li>
66106              * <li>column - The grid column index</li>
66107              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
66108              * </ul>
66109              * @param {Object} e An edit event (see above for description)
66110              */
66111             "beforeedit" : true,
66112             /**
66113              * @event afteredit
66114              * Fires after a cell is edited. <br />
66115              * <ul style="padding:5px;padding-left:16px;">
66116              * <li>grid - This grid</li>
66117              * <li>record - The record being edited</li>
66118              * <li>field - The field name being edited</li>
66119              * <li>value - The value being set</li>
66120              * <li>originalValue - The original value for the field, before the edit.</li>
66121              * <li>row - The grid row index</li>
66122              * <li>column - The grid column index</li>
66123              * </ul>
66124              * @param {Object} e An edit event (see above for description)
66125              */
66126             "afteredit" : true,
66127             /**
66128              * @event validateedit
66129              * Fires after a cell is edited, but before the value is set in the record. 
66130          * You can use this to modify the value being set in the field, Return false
66131              * to cancel the change. The edit event object has the following properties <br />
66132              * <ul style="padding:5px;padding-left:16px;">
66133          * <li>editor - This editor</li>
66134              * <li>grid - This grid</li>
66135              * <li>record - The record being edited</li>
66136              * <li>field - The field name being edited</li>
66137              * <li>value - The value being set</li>
66138              * <li>originalValue - The original value for the field, before the edit.</li>
66139              * <li>row - The grid row index</li>
66140              * <li>column - The grid column index</li>
66141              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
66142              * </ul>
66143              * @param {Object} e An edit event (see above for description)
66144              */
66145             "validateedit" : true
66146         });
66147     this.on("bodyscroll", this.stopEditing,  this);
66148     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
66149 };
66150
66151 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
66152     /**
66153      * @cfg {Number} clicksToEdit
66154      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
66155      */
66156     clicksToEdit: 2,
66157
66158     // private
66159     isEditor : true,
66160     // private
66161     trackMouseOver: false, // causes very odd FF errors
66162
66163     onCellDblClick : function(g, row, col){
66164         this.startEditing(row, col);
66165     },
66166
66167     onEditComplete : function(ed, value, startValue){
66168         this.editing = false;
66169         this.activeEditor = null;
66170         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
66171         var r = ed.record;
66172         var field = this.colModel.getDataIndex(ed.col);
66173         var e = {
66174             grid: this,
66175             record: r,
66176             field: field,
66177             originalValue: startValue,
66178             value: value,
66179             row: ed.row,
66180             column: ed.col,
66181             cancel:false,
66182             editor: ed
66183         };
66184         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
66185         cell.show();
66186           
66187         if(String(value) !== String(startValue)){
66188             
66189             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
66190                 r.set(field, e.value);
66191                 // if we are dealing with a combo box..
66192                 // then we also set the 'name' colum to be the displayField
66193                 if (ed.field.displayField && ed.field.name) {
66194                     r.set(ed.field.name, ed.field.el.dom.value);
66195                 }
66196                 
66197                 delete e.cancel; //?? why!!!
66198                 this.fireEvent("afteredit", e);
66199             }
66200         } else {
66201             this.fireEvent("afteredit", e); // always fire it!
66202         }
66203         this.view.focusCell(ed.row, ed.col);
66204     },
66205
66206     /**
66207      * Starts editing the specified for the specified row/column
66208      * @param {Number} rowIndex
66209      * @param {Number} colIndex
66210      */
66211     startEditing : function(row, col){
66212         this.stopEditing();
66213         if(this.colModel.isCellEditable(col, row)){
66214             this.view.ensureVisible(row, col, true);
66215           
66216             var r = this.dataSource.getAt(row);
66217             var field = this.colModel.getDataIndex(col);
66218             var cell = Roo.get(this.view.getCell(row,col));
66219             var e = {
66220                 grid: this,
66221                 record: r,
66222                 field: field,
66223                 value: r.data[field],
66224                 row: row,
66225                 column: col,
66226                 cancel:false 
66227             };
66228             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
66229                 this.editing = true;
66230                 var ed = this.colModel.getCellEditor(col, row);
66231                 
66232                 if (!ed) {
66233                     return;
66234                 }
66235                 if(!ed.rendered){
66236                     ed.render(ed.parentEl || document.body);
66237                 }
66238                 ed.field.reset();
66239                
66240                 cell.hide();
66241                 
66242                 (function(){ // complex but required for focus issues in safari, ie and opera
66243                     ed.row = row;
66244                     ed.col = col;
66245                     ed.record = r;
66246                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
66247                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
66248                     this.activeEditor = ed;
66249                     var v = r.data[field];
66250                     ed.startEdit(this.view.getCell(row, col), v);
66251                     // combo's with 'displayField and name set
66252                     if (ed.field.displayField && ed.field.name) {
66253                         ed.field.el.dom.value = r.data[ed.field.name];
66254                     }
66255                     
66256                     
66257                 }).defer(50, this);
66258             }
66259         }
66260     },
66261         
66262     /**
66263      * Stops any active editing
66264      */
66265     stopEditing : function(){
66266         if(this.activeEditor){
66267             this.activeEditor.completeEdit();
66268         }
66269         this.activeEditor = null;
66270     },
66271         
66272          /**
66273      * Called to get grid's drag proxy text, by default returns this.ddText.
66274      * @return {String}
66275      */
66276     getDragDropText : function(){
66277         var count = this.selModel.getSelectedCell() ? 1 : 0;
66278         return String.format(this.ddText, count, count == 1 ? '' : 's');
66279     }
66280         
66281 });/*
66282  * Based on:
66283  * Ext JS Library 1.1.1
66284  * Copyright(c) 2006-2007, Ext JS, LLC.
66285  *
66286  * Originally Released Under LGPL - original licence link has changed is not relivant.
66287  *
66288  * Fork - LGPL
66289  * <script type="text/javascript">
66290  */
66291
66292 // private - not really -- you end up using it !
66293 // This is a support class used internally by the Grid components
66294
66295 /**
66296  * @class Roo.grid.GridEditor
66297  * @extends Roo.Editor
66298  * Class for creating and editable grid elements.
66299  * @param {Object} config any settings (must include field)
66300  */
66301 Roo.grid.GridEditor = function(field, config){
66302     if (!config && field.field) {
66303         config = field;
66304         field = Roo.factory(config.field, Roo.form);
66305     }
66306     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
66307     field.monitorTab = false;
66308 };
66309
66310 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
66311     
66312     /**
66313      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
66314      */
66315     
66316     alignment: "tl-tl",
66317     autoSize: "width",
66318     hideEl : false,
66319     cls: "x-small-editor x-grid-editor",
66320     shim:false,
66321     shadow:"frame"
66322 });/*
66323  * Based on:
66324  * Ext JS Library 1.1.1
66325  * Copyright(c) 2006-2007, Ext JS, LLC.
66326  *
66327  * Originally Released Under LGPL - original licence link has changed is not relivant.
66328  *
66329  * Fork - LGPL
66330  * <script type="text/javascript">
66331  */
66332   
66333
66334   
66335 Roo.grid.PropertyRecord = Roo.data.Record.create([
66336     {name:'name',type:'string'},  'value'
66337 ]);
66338
66339
66340 Roo.grid.PropertyStore = function(grid, source){
66341     this.grid = grid;
66342     this.store = new Roo.data.Store({
66343         recordType : Roo.grid.PropertyRecord
66344     });
66345     this.store.on('update', this.onUpdate,  this);
66346     if(source){
66347         this.setSource(source);
66348     }
66349     Roo.grid.PropertyStore.superclass.constructor.call(this);
66350 };
66351
66352
66353
66354 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
66355     setSource : function(o){
66356         this.source = o;
66357         this.store.removeAll();
66358         var data = [];
66359         for(var k in o){
66360             if(this.isEditableValue(o[k])){
66361                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
66362             }
66363         }
66364         this.store.loadRecords({records: data}, {}, true);
66365     },
66366
66367     onUpdate : function(ds, record, type){
66368         if(type == Roo.data.Record.EDIT){
66369             var v = record.data['value'];
66370             var oldValue = record.modified['value'];
66371             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
66372                 this.source[record.id] = v;
66373                 record.commit();
66374                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
66375             }else{
66376                 record.reject();
66377             }
66378         }
66379     },
66380
66381     getProperty : function(row){
66382        return this.store.getAt(row);
66383     },
66384
66385     isEditableValue: function(val){
66386         if(val && val instanceof Date){
66387             return true;
66388         }else if(typeof val == 'object' || typeof val == 'function'){
66389             return false;
66390         }
66391         return true;
66392     },
66393
66394     setValue : function(prop, value){
66395         this.source[prop] = value;
66396         this.store.getById(prop).set('value', value);
66397     },
66398
66399     getSource : function(){
66400         return this.source;
66401     }
66402 });
66403
66404 Roo.grid.PropertyColumnModel = function(grid, store){
66405     this.grid = grid;
66406     var g = Roo.grid;
66407     g.PropertyColumnModel.superclass.constructor.call(this, [
66408         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
66409         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
66410     ]);
66411     this.store = store;
66412     this.bselect = Roo.DomHelper.append(document.body, {
66413         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
66414             {tag: 'option', value: 'true', html: 'true'},
66415             {tag: 'option', value: 'false', html: 'false'}
66416         ]
66417     });
66418     Roo.id(this.bselect);
66419     var f = Roo.form;
66420     this.editors = {
66421         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
66422         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
66423         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
66424         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
66425         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
66426     };
66427     this.renderCellDelegate = this.renderCell.createDelegate(this);
66428     this.renderPropDelegate = this.renderProp.createDelegate(this);
66429 };
66430
66431 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
66432     
66433     
66434     nameText : 'Name',
66435     valueText : 'Value',
66436     
66437     dateFormat : 'm/j/Y',
66438     
66439     
66440     renderDate : function(dateVal){
66441         return dateVal.dateFormat(this.dateFormat);
66442     },
66443
66444     renderBool : function(bVal){
66445         return bVal ? 'true' : 'false';
66446     },
66447
66448     isCellEditable : function(colIndex, rowIndex){
66449         return colIndex == 1;
66450     },
66451
66452     getRenderer : function(col){
66453         return col == 1 ?
66454             this.renderCellDelegate : this.renderPropDelegate;
66455     },
66456
66457     renderProp : function(v){
66458         return this.getPropertyName(v);
66459     },
66460
66461     renderCell : function(val){
66462         var rv = val;
66463         if(val instanceof Date){
66464             rv = this.renderDate(val);
66465         }else if(typeof val == 'boolean'){
66466             rv = this.renderBool(val);
66467         }
66468         return Roo.util.Format.htmlEncode(rv);
66469     },
66470
66471     getPropertyName : function(name){
66472         var pn = this.grid.propertyNames;
66473         return pn && pn[name] ? pn[name] : name;
66474     },
66475
66476     getCellEditor : function(colIndex, rowIndex){
66477         var p = this.store.getProperty(rowIndex);
66478         var n = p.data['name'], val = p.data['value'];
66479         
66480         if(typeof(this.grid.customEditors[n]) == 'string'){
66481             return this.editors[this.grid.customEditors[n]];
66482         }
66483         if(typeof(this.grid.customEditors[n]) != 'undefined'){
66484             return this.grid.customEditors[n];
66485         }
66486         if(val instanceof Date){
66487             return this.editors['date'];
66488         }else if(typeof val == 'number'){
66489             return this.editors['number'];
66490         }else if(typeof val == 'boolean'){
66491             return this.editors['boolean'];
66492         }else{
66493             return this.editors['string'];
66494         }
66495     }
66496 });
66497
66498 /**
66499  * @class Roo.grid.PropertyGrid
66500  * @extends Roo.grid.EditorGrid
66501  * This class represents the  interface of a component based property grid control.
66502  * <br><br>Usage:<pre><code>
66503  var grid = new Roo.grid.PropertyGrid("my-container-id", {
66504       
66505  });
66506  // set any options
66507  grid.render();
66508  * </code></pre>
66509   
66510  * @constructor
66511  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66512  * The container MUST have some type of size defined for the grid to fill. The container will be
66513  * automatically set to position relative if it isn't already.
66514  * @param {Object} config A config object that sets properties on this grid.
66515  */
66516 Roo.grid.PropertyGrid = function(container, config){
66517     config = config || {};
66518     var store = new Roo.grid.PropertyStore(this);
66519     this.store = store;
66520     var cm = new Roo.grid.PropertyColumnModel(this, store);
66521     store.store.sort('name', 'ASC');
66522     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
66523         ds: store.store,
66524         cm: cm,
66525         enableColLock:false,
66526         enableColumnMove:false,
66527         stripeRows:false,
66528         trackMouseOver: false,
66529         clicksToEdit:1
66530     }, config));
66531     this.getGridEl().addClass('x-props-grid');
66532     this.lastEditRow = null;
66533     this.on('columnresize', this.onColumnResize, this);
66534     this.addEvents({
66535          /**
66536              * @event beforepropertychange
66537              * Fires before a property changes (return false to stop?)
66538              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66539              * @param {String} id Record Id
66540              * @param {String} newval New Value
66541          * @param {String} oldval Old Value
66542              */
66543         "beforepropertychange": true,
66544         /**
66545              * @event propertychange
66546              * Fires after a property changes
66547              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66548              * @param {String} id Record Id
66549              * @param {String} newval New Value
66550          * @param {String} oldval Old Value
66551              */
66552         "propertychange": true
66553     });
66554     this.customEditors = this.customEditors || {};
66555 };
66556 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
66557     
66558      /**
66559      * @cfg {Object} customEditors map of colnames=> custom editors.
66560      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
66561      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
66562      * false disables editing of the field.
66563          */
66564     
66565       /**
66566      * @cfg {Object} propertyNames map of property Names to their displayed value
66567          */
66568     
66569     render : function(){
66570         Roo.grid.PropertyGrid.superclass.render.call(this);
66571         this.autoSize.defer(100, this);
66572     },
66573
66574     autoSize : function(){
66575         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
66576         if(this.view){
66577             this.view.fitColumns();
66578         }
66579     },
66580
66581     onColumnResize : function(){
66582         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
66583         this.autoSize();
66584     },
66585     /**
66586      * Sets the data for the Grid
66587      * accepts a Key => Value object of all the elements avaiable.
66588      * @param {Object} data  to appear in grid.
66589      */
66590     setSource : function(source){
66591         this.store.setSource(source);
66592         //this.autoSize();
66593     },
66594     /**
66595      * Gets all the data from the grid.
66596      * @return {Object} data  data stored in grid
66597      */
66598     getSource : function(){
66599         return this.store.getSource();
66600     }
66601 });/*
66602   
66603  * Licence LGPL
66604  
66605  */
66606  
66607 /**
66608  * @class Roo.grid.Calendar
66609  * @extends Roo.grid.Grid
66610  * This class extends the Grid to provide a calendar widget
66611  * <br><br>Usage:<pre><code>
66612  var grid = new Roo.grid.Calendar("my-container-id", {
66613      ds: myDataStore,
66614      cm: myColModel,
66615      selModel: mySelectionModel,
66616      autoSizeColumns: true,
66617      monitorWindowResize: false,
66618      trackMouseOver: true
66619      eventstore : real data store..
66620  });
66621  // set any options
66622  grid.render();
66623   
66624   * @constructor
66625  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66626  * The container MUST have some type of size defined for the grid to fill. The container will be
66627  * automatically set to position relative if it isn't already.
66628  * @param {Object} config A config object that sets properties on this grid.
66629  */
66630 Roo.grid.Calendar = function(container, config){
66631         // initialize the container
66632         this.container = Roo.get(container);
66633         this.container.update("");
66634         this.container.setStyle("overflow", "hidden");
66635     this.container.addClass('x-grid-container');
66636
66637     this.id = this.container.id;
66638
66639     Roo.apply(this, config);
66640     // check and correct shorthanded configs
66641     
66642     var rows = [];
66643     var d =1;
66644     for (var r = 0;r < 6;r++) {
66645         
66646         rows[r]=[];
66647         for (var c =0;c < 7;c++) {
66648             rows[r][c]= '';
66649         }
66650     }
66651     if (this.eventStore) {
66652         this.eventStore= Roo.factory(this.eventStore, Roo.data);
66653         this.eventStore.on('load',this.onLoad, this);
66654         this.eventStore.on('beforeload',this.clearEvents, this);
66655          
66656     }
66657     
66658     this.dataSource = new Roo.data.Store({
66659             proxy: new Roo.data.MemoryProxy(rows),
66660             reader: new Roo.data.ArrayReader({}, [
66661                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
66662     });
66663
66664     this.dataSource.load();
66665     this.ds = this.dataSource;
66666     this.ds.xmodule = this.xmodule || false;
66667     
66668     
66669     var cellRender = function(v,x,r)
66670     {
66671         return String.format(
66672             '<div class="fc-day  fc-widget-content"><div>' +
66673                 '<div class="fc-event-container"></div>' +
66674                 '<div class="fc-day-number">{0}</div>'+
66675                 
66676                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
66677             '</div></div>', v);
66678     
66679     }
66680     
66681     
66682     this.colModel = new Roo.grid.ColumnModel( [
66683         {
66684             xtype: 'ColumnModel',
66685             xns: Roo.grid,
66686             dataIndex : 'weekday0',
66687             header : 'Sunday',
66688             renderer : cellRender
66689         },
66690         {
66691             xtype: 'ColumnModel',
66692             xns: Roo.grid,
66693             dataIndex : 'weekday1',
66694             header : 'Monday',
66695             renderer : cellRender
66696         },
66697         {
66698             xtype: 'ColumnModel',
66699             xns: Roo.grid,
66700             dataIndex : 'weekday2',
66701             header : 'Tuesday',
66702             renderer : cellRender
66703         },
66704         {
66705             xtype: 'ColumnModel',
66706             xns: Roo.grid,
66707             dataIndex : 'weekday3',
66708             header : 'Wednesday',
66709             renderer : cellRender
66710         },
66711         {
66712             xtype: 'ColumnModel',
66713             xns: Roo.grid,
66714             dataIndex : 'weekday4',
66715             header : 'Thursday',
66716             renderer : cellRender
66717         },
66718         {
66719             xtype: 'ColumnModel',
66720             xns: Roo.grid,
66721             dataIndex : 'weekday5',
66722             header : 'Friday',
66723             renderer : cellRender
66724         },
66725         {
66726             xtype: 'ColumnModel',
66727             xns: Roo.grid,
66728             dataIndex : 'weekday6',
66729             header : 'Saturday',
66730             renderer : cellRender
66731         }
66732     ]);
66733     this.cm = this.colModel;
66734     this.cm.xmodule = this.xmodule || false;
66735  
66736         
66737           
66738     //this.selModel = new Roo.grid.CellSelectionModel();
66739     //this.sm = this.selModel;
66740     //this.selModel.init(this);
66741     
66742     
66743     if(this.width){
66744         this.container.setWidth(this.width);
66745     }
66746
66747     if(this.height){
66748         this.container.setHeight(this.height);
66749     }
66750     /** @private */
66751         this.addEvents({
66752         // raw events
66753         /**
66754          * @event click
66755          * The raw click event for the entire grid.
66756          * @param {Roo.EventObject} e
66757          */
66758         "click" : true,
66759         /**
66760          * @event dblclick
66761          * The raw dblclick event for the entire grid.
66762          * @param {Roo.EventObject} e
66763          */
66764         "dblclick" : true,
66765         /**
66766          * @event contextmenu
66767          * The raw contextmenu event for the entire grid.
66768          * @param {Roo.EventObject} e
66769          */
66770         "contextmenu" : true,
66771         /**
66772          * @event mousedown
66773          * The raw mousedown event for the entire grid.
66774          * @param {Roo.EventObject} e
66775          */
66776         "mousedown" : true,
66777         /**
66778          * @event mouseup
66779          * The raw mouseup event for the entire grid.
66780          * @param {Roo.EventObject} e
66781          */
66782         "mouseup" : true,
66783         /**
66784          * @event mouseover
66785          * The raw mouseover event for the entire grid.
66786          * @param {Roo.EventObject} e
66787          */
66788         "mouseover" : true,
66789         /**
66790          * @event mouseout
66791          * The raw mouseout event for the entire grid.
66792          * @param {Roo.EventObject} e
66793          */
66794         "mouseout" : true,
66795         /**
66796          * @event keypress
66797          * The raw keypress event for the entire grid.
66798          * @param {Roo.EventObject} e
66799          */
66800         "keypress" : true,
66801         /**
66802          * @event keydown
66803          * The raw keydown event for the entire grid.
66804          * @param {Roo.EventObject} e
66805          */
66806         "keydown" : true,
66807
66808         // custom events
66809
66810         /**
66811          * @event cellclick
66812          * Fires when a cell is clicked
66813          * @param {Grid} this
66814          * @param {Number} rowIndex
66815          * @param {Number} columnIndex
66816          * @param {Roo.EventObject} e
66817          */
66818         "cellclick" : true,
66819         /**
66820          * @event celldblclick
66821          * Fires when a cell is double clicked
66822          * @param {Grid} this
66823          * @param {Number} rowIndex
66824          * @param {Number} columnIndex
66825          * @param {Roo.EventObject} e
66826          */
66827         "celldblclick" : true,
66828         /**
66829          * @event rowclick
66830          * Fires when a row is clicked
66831          * @param {Grid} this
66832          * @param {Number} rowIndex
66833          * @param {Roo.EventObject} e
66834          */
66835         "rowclick" : true,
66836         /**
66837          * @event rowdblclick
66838          * Fires when a row is double clicked
66839          * @param {Grid} this
66840          * @param {Number} rowIndex
66841          * @param {Roo.EventObject} e
66842          */
66843         "rowdblclick" : true,
66844         /**
66845          * @event headerclick
66846          * Fires when a header is clicked
66847          * @param {Grid} this
66848          * @param {Number} columnIndex
66849          * @param {Roo.EventObject} e
66850          */
66851         "headerclick" : true,
66852         /**
66853          * @event headerdblclick
66854          * Fires when a header cell is double clicked
66855          * @param {Grid} this
66856          * @param {Number} columnIndex
66857          * @param {Roo.EventObject} e
66858          */
66859         "headerdblclick" : true,
66860         /**
66861          * @event rowcontextmenu
66862          * Fires when a row is right clicked
66863          * @param {Grid} this
66864          * @param {Number} rowIndex
66865          * @param {Roo.EventObject} e
66866          */
66867         "rowcontextmenu" : true,
66868         /**
66869          * @event cellcontextmenu
66870          * Fires when a cell is right clicked
66871          * @param {Grid} this
66872          * @param {Number} rowIndex
66873          * @param {Number} cellIndex
66874          * @param {Roo.EventObject} e
66875          */
66876          "cellcontextmenu" : true,
66877         /**
66878          * @event headercontextmenu
66879          * Fires when a header is right clicked
66880          * @param {Grid} this
66881          * @param {Number} columnIndex
66882          * @param {Roo.EventObject} e
66883          */
66884         "headercontextmenu" : true,
66885         /**
66886          * @event bodyscroll
66887          * Fires when the body element is scrolled
66888          * @param {Number} scrollLeft
66889          * @param {Number} scrollTop
66890          */
66891         "bodyscroll" : true,
66892         /**
66893          * @event columnresize
66894          * Fires when the user resizes a column
66895          * @param {Number} columnIndex
66896          * @param {Number} newSize
66897          */
66898         "columnresize" : true,
66899         /**
66900          * @event columnmove
66901          * Fires when the user moves a column
66902          * @param {Number} oldIndex
66903          * @param {Number} newIndex
66904          */
66905         "columnmove" : true,
66906         /**
66907          * @event startdrag
66908          * Fires when row(s) start being dragged
66909          * @param {Grid} this
66910          * @param {Roo.GridDD} dd The drag drop object
66911          * @param {event} e The raw browser event
66912          */
66913         "startdrag" : true,
66914         /**
66915          * @event enddrag
66916          * Fires when a drag operation is complete
66917          * @param {Grid} this
66918          * @param {Roo.GridDD} dd The drag drop object
66919          * @param {event} e The raw browser event
66920          */
66921         "enddrag" : true,
66922         /**
66923          * @event dragdrop
66924          * Fires when dragged row(s) are dropped on a valid DD target
66925          * @param {Grid} this
66926          * @param {Roo.GridDD} dd The drag drop object
66927          * @param {String} targetId The target drag drop object
66928          * @param {event} e The raw browser event
66929          */
66930         "dragdrop" : true,
66931         /**
66932          * @event dragover
66933          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
66934          * @param {Grid} this
66935          * @param {Roo.GridDD} dd The drag drop object
66936          * @param {String} targetId The target drag drop object
66937          * @param {event} e The raw browser event
66938          */
66939         "dragover" : true,
66940         /**
66941          * @event dragenter
66942          *  Fires when the dragged row(s) first cross another DD target while being dragged
66943          * @param {Grid} this
66944          * @param {Roo.GridDD} dd The drag drop object
66945          * @param {String} targetId The target drag drop object
66946          * @param {event} e The raw browser event
66947          */
66948         "dragenter" : true,
66949         /**
66950          * @event dragout
66951          * Fires when the dragged row(s) leave another DD target while being dragged
66952          * @param {Grid} this
66953          * @param {Roo.GridDD} dd The drag drop object
66954          * @param {String} targetId The target drag drop object
66955          * @param {event} e The raw browser event
66956          */
66957         "dragout" : true,
66958         /**
66959          * @event rowclass
66960          * Fires when a row is rendered, so you can change add a style to it.
66961          * @param {GridView} gridview   The grid view
66962          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
66963          */
66964         'rowclass' : true,
66965
66966         /**
66967          * @event render
66968          * Fires when the grid is rendered
66969          * @param {Grid} grid
66970          */
66971         'render' : true,
66972             /**
66973              * @event select
66974              * Fires when a date is selected
66975              * @param {DatePicker} this
66976              * @param {Date} date The selected date
66977              */
66978         'select': true,
66979         /**
66980              * @event monthchange
66981              * Fires when the displayed month changes 
66982              * @param {DatePicker} this
66983              * @param {Date} date The selected month
66984              */
66985         'monthchange': true,
66986         /**
66987              * @event evententer
66988              * Fires when mouse over an event
66989              * @param {Calendar} this
66990              * @param {event} Event
66991              */
66992         'evententer': true,
66993         /**
66994              * @event eventleave
66995              * Fires when the mouse leaves an
66996              * @param {Calendar} this
66997              * @param {event}
66998              */
66999         'eventleave': true,
67000         /**
67001              * @event eventclick
67002              * Fires when the mouse click an
67003              * @param {Calendar} this
67004              * @param {event}
67005              */
67006         'eventclick': true,
67007         /**
67008              * @event eventrender
67009              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
67010              * @param {Calendar} this
67011              * @param {data} data to be modified
67012              */
67013         'eventrender': true
67014         
67015     });
67016
67017     Roo.grid.Grid.superclass.constructor.call(this);
67018     this.on('render', function() {
67019         this.view.el.addClass('x-grid-cal'); 
67020         
67021         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
67022
67023     },this);
67024     
67025     if (!Roo.grid.Calendar.style) {
67026         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
67027             
67028             
67029             '.x-grid-cal .x-grid-col' :  {
67030                 height: 'auto !important',
67031                 'vertical-align': 'top'
67032             },
67033             '.x-grid-cal  .fc-event-hori' : {
67034                 height: '14px'
67035             }
67036              
67037             
67038         }, Roo.id());
67039     }
67040
67041     
67042     
67043 };
67044 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
67045     /**
67046      * @cfg {Store} eventStore The store that loads events.
67047      */
67048     eventStore : 25,
67049
67050      
67051     activeDate : false,
67052     startDay : 0,
67053     autoWidth : true,
67054     monitorWindowResize : false,
67055
67056     
67057     resizeColumns : function() {
67058         var col = (this.view.el.getWidth() / 7) - 3;
67059         // loop through cols, and setWidth
67060         for(var i =0 ; i < 7 ; i++){
67061             this.cm.setColumnWidth(i, col);
67062         }
67063     },
67064      setDate :function(date) {
67065         
67066         Roo.log('setDate?');
67067         
67068         this.resizeColumns();
67069         var vd = this.activeDate;
67070         this.activeDate = date;
67071 //        if(vd && this.el){
67072 //            var t = date.getTime();
67073 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
67074 //                Roo.log('using add remove');
67075 //                
67076 //                this.fireEvent('monthchange', this, date);
67077 //                
67078 //                this.cells.removeClass("fc-state-highlight");
67079 //                this.cells.each(function(c){
67080 //                   if(c.dateValue == t){
67081 //                       c.addClass("fc-state-highlight");
67082 //                       setTimeout(function(){
67083 //                            try{c.dom.firstChild.focus();}catch(e){}
67084 //                       }, 50);
67085 //                       return false;
67086 //                   }
67087 //                   return true;
67088 //                });
67089 //                return;
67090 //            }
67091 //        }
67092         
67093         var days = date.getDaysInMonth();
67094         
67095         var firstOfMonth = date.getFirstDateOfMonth();
67096         var startingPos = firstOfMonth.getDay()-this.startDay;
67097         
67098         if(startingPos < this.startDay){
67099             startingPos += 7;
67100         }
67101         
67102         var pm = date.add(Date.MONTH, -1);
67103         var prevStart = pm.getDaysInMonth()-startingPos;
67104 //        
67105         
67106         
67107         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
67108         
67109         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
67110         //this.cells.addClassOnOver('fc-state-hover');
67111         
67112         var cells = this.cells.elements;
67113         var textEls = this.textNodes;
67114         
67115         //Roo.each(cells, function(cell){
67116         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
67117         //});
67118         
67119         days += startingPos;
67120
67121         // convert everything to numbers so it's fast
67122         var day = 86400000;
67123         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
67124         //Roo.log(d);
67125         //Roo.log(pm);
67126         //Roo.log(prevStart);
67127         
67128         var today = new Date().clearTime().getTime();
67129         var sel = date.clearTime().getTime();
67130         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
67131         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
67132         var ddMatch = this.disabledDatesRE;
67133         var ddText = this.disabledDatesText;
67134         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
67135         var ddaysText = this.disabledDaysText;
67136         var format = this.format;
67137         
67138         var setCellClass = function(cal, cell){
67139             
67140             //Roo.log('set Cell Class');
67141             cell.title = "";
67142             var t = d.getTime();
67143             
67144             //Roo.log(d);
67145             
67146             
67147             cell.dateValue = t;
67148             if(t == today){
67149                 cell.className += " fc-today";
67150                 cell.className += " fc-state-highlight";
67151                 cell.title = cal.todayText;
67152             }
67153             if(t == sel){
67154                 // disable highlight in other month..
67155                 cell.className += " fc-state-highlight";
67156                 
67157             }
67158             // disabling
67159             if(t < min) {
67160                 //cell.className = " fc-state-disabled";
67161                 cell.title = cal.minText;
67162                 return;
67163             }
67164             if(t > max) {
67165                 //cell.className = " fc-state-disabled";
67166                 cell.title = cal.maxText;
67167                 return;
67168             }
67169             if(ddays){
67170                 if(ddays.indexOf(d.getDay()) != -1){
67171                     // cell.title = ddaysText;
67172                    // cell.className = " fc-state-disabled";
67173                 }
67174             }
67175             if(ddMatch && format){
67176                 var fvalue = d.dateFormat(format);
67177                 if(ddMatch.test(fvalue)){
67178                     cell.title = ddText.replace("%0", fvalue);
67179                    cell.className = " fc-state-disabled";
67180                 }
67181             }
67182             
67183             if (!cell.initialClassName) {
67184                 cell.initialClassName = cell.dom.className;
67185             }
67186             
67187             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
67188         };
67189
67190         var i = 0;
67191         
67192         for(; i < startingPos; i++) {
67193             cells[i].dayName =  (++prevStart);
67194             Roo.log(textEls[i]);
67195             d.setDate(d.getDate()+1);
67196             
67197             //cells[i].className = "fc-past fc-other-month";
67198             setCellClass(this, cells[i]);
67199         }
67200         
67201         var intDay = 0;
67202         
67203         for(; i < days; i++){
67204             intDay = i - startingPos + 1;
67205             cells[i].dayName =  (intDay);
67206             d.setDate(d.getDate()+1);
67207             
67208             cells[i].className = ''; // "x-date-active";
67209             setCellClass(this, cells[i]);
67210         }
67211         var extraDays = 0;
67212         
67213         for(; i < 42; i++) {
67214             //textEls[i].innerHTML = (++extraDays);
67215             
67216             d.setDate(d.getDate()+1);
67217             cells[i].dayName = (++extraDays);
67218             cells[i].className = "fc-future fc-other-month";
67219             setCellClass(this, cells[i]);
67220         }
67221         
67222         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
67223         
67224         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
67225         
67226         // this will cause all the cells to mis
67227         var rows= [];
67228         var i =0;
67229         for (var r = 0;r < 6;r++) {
67230             for (var c =0;c < 7;c++) {
67231                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
67232             }    
67233         }
67234         
67235         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
67236         for(i=0;i<cells.length;i++) {
67237             
67238             this.cells.elements[i].dayName = cells[i].dayName ;
67239             this.cells.elements[i].className = cells[i].className;
67240             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
67241             this.cells.elements[i].title = cells[i].title ;
67242             this.cells.elements[i].dateValue = cells[i].dateValue ;
67243         }
67244         
67245         
67246         
67247         
67248         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
67249         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
67250         
67251         ////if(totalRows != 6){
67252             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
67253            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
67254        // }
67255         
67256         this.fireEvent('monthchange', this, date);
67257         
67258         
67259     },
67260  /**
67261      * Returns the grid's SelectionModel.
67262      * @return {SelectionModel}
67263      */
67264     getSelectionModel : function(){
67265         if(!this.selModel){
67266             this.selModel = new Roo.grid.CellSelectionModel();
67267         }
67268         return this.selModel;
67269     },
67270
67271     load: function() {
67272         this.eventStore.load()
67273         
67274         
67275         
67276     },
67277     
67278     findCell : function(dt) {
67279         dt = dt.clearTime().getTime();
67280         var ret = false;
67281         this.cells.each(function(c){
67282             //Roo.log("check " +c.dateValue + '?=' + dt);
67283             if(c.dateValue == dt){
67284                 ret = c;
67285                 return false;
67286             }
67287             return true;
67288         });
67289         
67290         return ret;
67291     },
67292     
67293     findCells : function(rec) {
67294         var s = rec.data.start_dt.clone().clearTime().getTime();
67295        // Roo.log(s);
67296         var e= rec.data.end_dt.clone().clearTime().getTime();
67297        // Roo.log(e);
67298         var ret = [];
67299         this.cells.each(function(c){
67300              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
67301             
67302             if(c.dateValue > e){
67303                 return ;
67304             }
67305             if(c.dateValue < s){
67306                 return ;
67307             }
67308             ret.push(c);
67309         });
67310         
67311         return ret;    
67312     },
67313     
67314     findBestRow: function(cells)
67315     {
67316         var ret = 0;
67317         
67318         for (var i =0 ; i < cells.length;i++) {
67319             ret  = Math.max(cells[i].rows || 0,ret);
67320         }
67321         return ret;
67322         
67323     },
67324     
67325     
67326     addItem : function(rec)
67327     {
67328         // look for vertical location slot in
67329         var cells = this.findCells(rec);
67330         
67331         rec.row = this.findBestRow(cells);
67332         
67333         // work out the location.
67334         
67335         var crow = false;
67336         var rows = [];
67337         for(var i =0; i < cells.length; i++) {
67338             if (!crow) {
67339                 crow = {
67340                     start : cells[i],
67341                     end :  cells[i]
67342                 };
67343                 continue;
67344             }
67345             if (crow.start.getY() == cells[i].getY()) {
67346                 // on same row.
67347                 crow.end = cells[i];
67348                 continue;
67349             }
67350             // different row.
67351             rows.push(crow);
67352             crow = {
67353                 start: cells[i],
67354                 end : cells[i]
67355             };
67356             
67357         }
67358         
67359         rows.push(crow);
67360         rec.els = [];
67361         rec.rows = rows;
67362         rec.cells = cells;
67363         for (var i = 0; i < cells.length;i++) {
67364             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
67365             
67366         }
67367         
67368         
67369     },
67370     
67371     clearEvents: function() {
67372         
67373         if (!this.eventStore.getCount()) {
67374             return;
67375         }
67376         // reset number of rows in cells.
67377         Roo.each(this.cells.elements, function(c){
67378             c.rows = 0;
67379         });
67380         
67381         this.eventStore.each(function(e) {
67382             this.clearEvent(e);
67383         },this);
67384         
67385     },
67386     
67387     clearEvent : function(ev)
67388     {
67389         if (ev.els) {
67390             Roo.each(ev.els, function(el) {
67391                 el.un('mouseenter' ,this.onEventEnter, this);
67392                 el.un('mouseleave' ,this.onEventLeave, this);
67393                 el.remove();
67394             },this);
67395             ev.els = [];
67396         }
67397     },
67398     
67399     
67400     renderEvent : function(ev,ctr) {
67401         if (!ctr) {
67402              ctr = this.view.el.select('.fc-event-container',true).first();
67403         }
67404         
67405          
67406         this.clearEvent(ev);
67407             //code
67408        
67409         
67410         
67411         ev.els = [];
67412         var cells = ev.cells;
67413         var rows = ev.rows;
67414         this.fireEvent('eventrender', this, ev);
67415         
67416         for(var i =0; i < rows.length; i++) {
67417             
67418             cls = '';
67419             if (i == 0) {
67420                 cls += ' fc-event-start';
67421             }
67422             if ((i+1) == rows.length) {
67423                 cls += ' fc-event-end';
67424             }
67425             
67426             //Roo.log(ev.data);
67427             // how many rows should it span..
67428             var cg = this.eventTmpl.append(ctr,Roo.apply({
67429                 fccls : cls
67430                 
67431             }, ev.data) , true);
67432             
67433             
67434             cg.on('mouseenter' ,this.onEventEnter, this, ev);
67435             cg.on('mouseleave' ,this.onEventLeave, this, ev);
67436             cg.on('click', this.onEventClick, this, ev);
67437             
67438             ev.els.push(cg);
67439             
67440             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
67441             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
67442             //Roo.log(cg);
67443              
67444             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
67445             cg.setWidth(ebox.right - sbox.x -2);
67446         }
67447     },
67448     
67449     renderEvents: function()
67450     {   
67451         // first make sure there is enough space..
67452         
67453         if (!this.eventTmpl) {
67454             this.eventTmpl = new Roo.Template(
67455                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
67456                     '<div class="fc-event-inner">' +
67457                         '<span class="fc-event-time">{time}</span>' +
67458                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
67459                     '</div>' +
67460                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
67461                 '</div>'
67462             );
67463                 
67464         }
67465                
67466         
67467         
67468         this.cells.each(function(c) {
67469             //Roo.log(c.select('.fc-day-content div',true).first());
67470             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
67471         });
67472         
67473         var ctr = this.view.el.select('.fc-event-container',true).first();
67474         
67475         var cls;
67476         this.eventStore.each(function(ev){
67477             
67478             this.renderEvent(ev);
67479              
67480              
67481         }, this);
67482         this.view.layout();
67483         
67484     },
67485     
67486     onEventEnter: function (e, el,event,d) {
67487         this.fireEvent('evententer', this, el, event);
67488     },
67489     
67490     onEventLeave: function (e, el,event,d) {
67491         this.fireEvent('eventleave', this, el, event);
67492     },
67493     
67494     onEventClick: function (e, el,event,d) {
67495         this.fireEvent('eventclick', this, el, event);
67496     },
67497     
67498     onMonthChange: function () {
67499         this.store.load();
67500     },
67501     
67502     onLoad: function () {
67503         
67504         //Roo.log('calendar onload');
67505 //         
67506         if(this.eventStore.getCount() > 0){
67507             
67508            
67509             
67510             this.eventStore.each(function(d){
67511                 
67512                 
67513                 // FIXME..
67514                 var add =   d.data;
67515                 if (typeof(add.end_dt) == 'undefined')  {
67516                     Roo.log("Missing End time in calendar data: ");
67517                     Roo.log(d);
67518                     return;
67519                 }
67520                 if (typeof(add.start_dt) == 'undefined')  {
67521                     Roo.log("Missing Start time in calendar data: ");
67522                     Roo.log(d);
67523                     return;
67524                 }
67525                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
67526                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
67527                 add.id = add.id || d.id;
67528                 add.title = add.title || '??';
67529                 
67530                 this.addItem(d);
67531                 
67532              
67533             },this);
67534         }
67535         
67536         this.renderEvents();
67537     }
67538     
67539
67540 });
67541 /*
67542  grid : {
67543                 xtype: 'Grid',
67544                 xns: Roo.grid,
67545                 listeners : {
67546                     render : function ()
67547                     {
67548                         _this.grid = this;
67549                         
67550                         if (!this.view.el.hasClass('course-timesheet')) {
67551                             this.view.el.addClass('course-timesheet');
67552                         }
67553                         if (this.tsStyle) {
67554                             this.ds.load({});
67555                             return; 
67556                         }
67557                         Roo.log('width');
67558                         Roo.log(_this.grid.view.el.getWidth());
67559                         
67560                         
67561                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
67562                             '.course-timesheet .x-grid-row' : {
67563                                 height: '80px'
67564                             },
67565                             '.x-grid-row td' : {
67566                                 'vertical-align' : 0
67567                             },
67568                             '.course-edit-link' : {
67569                                 'color' : 'blue',
67570                                 'text-overflow' : 'ellipsis',
67571                                 'overflow' : 'hidden',
67572                                 'white-space' : 'nowrap',
67573                                 'cursor' : 'pointer'
67574                             },
67575                             '.sub-link' : {
67576                                 'color' : 'green'
67577                             },
67578                             '.de-act-sup-link' : {
67579                                 'color' : 'purple',
67580                                 'text-decoration' : 'line-through'
67581                             },
67582                             '.de-act-link' : {
67583                                 'color' : 'red',
67584                                 'text-decoration' : 'line-through'
67585                             },
67586                             '.course-timesheet .course-highlight' : {
67587                                 'border-top-style': 'dashed !important',
67588                                 'border-bottom-bottom': 'dashed !important'
67589                             },
67590                             '.course-timesheet .course-item' : {
67591                                 'font-family'   : 'tahoma, arial, helvetica',
67592                                 'font-size'     : '11px',
67593                                 'overflow'      : 'hidden',
67594                                 'padding-left'  : '10px',
67595                                 'padding-right' : '10px',
67596                                 'padding-top' : '10px' 
67597                             }
67598                             
67599                         }, Roo.id());
67600                                 this.ds.load({});
67601                     }
67602                 },
67603                 autoWidth : true,
67604                 monitorWindowResize : false,
67605                 cellrenderer : function(v,x,r)
67606                 {
67607                     return v;
67608                 },
67609                 sm : {
67610                     xtype: 'CellSelectionModel',
67611                     xns: Roo.grid
67612                 },
67613                 dataSource : {
67614                     xtype: 'Store',
67615                     xns: Roo.data,
67616                     listeners : {
67617                         beforeload : function (_self, options)
67618                         {
67619                             options.params = options.params || {};
67620                             options.params._month = _this.monthField.getValue();
67621                             options.params.limit = 9999;
67622                             options.params['sort'] = 'when_dt';    
67623                             options.params['dir'] = 'ASC';    
67624                             this.proxy.loadResponse = this.loadResponse;
67625                             Roo.log("load?");
67626                             //this.addColumns();
67627                         },
67628                         load : function (_self, records, options)
67629                         {
67630                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
67631                                 // if you click on the translation.. you can edit it...
67632                                 var el = Roo.get(this);
67633                                 var id = el.dom.getAttribute('data-id');
67634                                 var d = el.dom.getAttribute('data-date');
67635                                 var t = el.dom.getAttribute('data-time');
67636                                 //var id = this.child('span').dom.textContent;
67637                                 
67638                                 //Roo.log(this);
67639                                 Pman.Dialog.CourseCalendar.show({
67640                                     id : id,
67641                                     when_d : d,
67642                                     when_t : t,
67643                                     productitem_active : id ? 1 : 0
67644                                 }, function() {
67645                                     _this.grid.ds.load({});
67646                                 });
67647                            
67648                            });
67649                            
67650                            _this.panel.fireEvent('resize', [ '', '' ]);
67651                         }
67652                     },
67653                     loadResponse : function(o, success, response){
67654                             // this is overridden on before load..
67655                             
67656                             Roo.log("our code?");       
67657                             //Roo.log(success);
67658                             //Roo.log(response)
67659                             delete this.activeRequest;
67660                             if(!success){
67661                                 this.fireEvent("loadexception", this, o, response);
67662                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67663                                 return;
67664                             }
67665                             var result;
67666                             try {
67667                                 result = o.reader.read(response);
67668                             }catch(e){
67669                                 Roo.log("load exception?");
67670                                 this.fireEvent("loadexception", this, o, response, e);
67671                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67672                                 return;
67673                             }
67674                             Roo.log("ready...");        
67675                             // loop through result.records;
67676                             // and set this.tdate[date] = [] << array of records..
67677                             _this.tdata  = {};
67678                             Roo.each(result.records, function(r){
67679                                 //Roo.log(r.data);
67680                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
67681                                     _this.tdata[r.data.when_dt.format('j')] = [];
67682                                 }
67683                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
67684                             });
67685                             
67686                             //Roo.log(_this.tdata);
67687                             
67688                             result.records = [];
67689                             result.totalRecords = 6;
67690                     
67691                             // let's generate some duumy records for the rows.
67692                             //var st = _this.dateField.getValue();
67693                             
67694                             // work out monday..
67695                             //st = st.add(Date.DAY, -1 * st.format('w'));
67696                             
67697                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67698                             
67699                             var firstOfMonth = date.getFirstDayOfMonth();
67700                             var days = date.getDaysInMonth();
67701                             var d = 1;
67702                             var firstAdded = false;
67703                             for (var i = 0; i < result.totalRecords ; i++) {
67704                                 //var d= st.add(Date.DAY, i);
67705                                 var row = {};
67706                                 var added = 0;
67707                                 for(var w = 0 ; w < 7 ; w++){
67708                                     if(!firstAdded && firstOfMonth != w){
67709                                         continue;
67710                                     }
67711                                     if(d > days){
67712                                         continue;
67713                                     }
67714                                     firstAdded = true;
67715                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
67716                                     row['weekday'+w] = String.format(
67717                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
67718                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
67719                                                     d,
67720                                                     date.format('Y-m-')+dd
67721                                                 );
67722                                     added++;
67723                                     if(typeof(_this.tdata[d]) != 'undefined'){
67724                                         Roo.each(_this.tdata[d], function(r){
67725                                             var is_sub = '';
67726                                             var deactive = '';
67727                                             var id = r.id;
67728                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
67729                                             if(r.parent_id*1>0){
67730                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
67731                                                 id = r.parent_id;
67732                                             }
67733                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
67734                                                 deactive = 'de-act-link';
67735                                             }
67736                                             
67737                                             row['weekday'+w] += String.format(
67738                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
67739                                                     id, //0
67740                                                     r.product_id_name, //1
67741                                                     r.when_dt.format('h:ia'), //2
67742                                                     is_sub, //3
67743                                                     deactive, //4
67744                                                     desc // 5
67745                                             );
67746                                         });
67747                                     }
67748                                     d++;
67749                                 }
67750                                 
67751                                 // only do this if something added..
67752                                 if(added > 0){ 
67753                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
67754                                 }
67755                                 
67756                                 
67757                                 // push it twice. (second one with an hour..
67758                                 
67759                             }
67760                             //Roo.log(result);
67761                             this.fireEvent("load", this, o, o.request.arg);
67762                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
67763                         },
67764                     sortInfo : {field: 'when_dt', direction : 'ASC' },
67765                     proxy : {
67766                         xtype: 'HttpProxy',
67767                         xns: Roo.data,
67768                         method : 'GET',
67769                         url : baseURL + '/Roo/Shop_course.php'
67770                     },
67771                     reader : {
67772                         xtype: 'JsonReader',
67773                         xns: Roo.data,
67774                         id : 'id',
67775                         fields : [
67776                             {
67777                                 'name': 'id',
67778                                 'type': 'int'
67779                             },
67780                             {
67781                                 'name': 'when_dt',
67782                                 'type': 'string'
67783                             },
67784                             {
67785                                 'name': 'end_dt',
67786                                 'type': 'string'
67787                             },
67788                             {
67789                                 'name': 'parent_id',
67790                                 'type': 'int'
67791                             },
67792                             {
67793                                 'name': 'product_id',
67794                                 'type': 'int'
67795                             },
67796                             {
67797                                 'name': 'productitem_id',
67798                                 'type': 'int'
67799                             },
67800                             {
67801                                 'name': 'guid',
67802                                 'type': 'int'
67803                             }
67804                         ]
67805                     }
67806                 },
67807                 toolbar : {
67808                     xtype: 'Toolbar',
67809                     xns: Roo,
67810                     items : [
67811                         {
67812                             xtype: 'Button',
67813                             xns: Roo.Toolbar,
67814                             listeners : {
67815                                 click : function (_self, e)
67816                                 {
67817                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67818                                     sd.setMonth(sd.getMonth()-1);
67819                                     _this.monthField.setValue(sd.format('Y-m-d'));
67820                                     _this.grid.ds.load({});
67821                                 }
67822                             },
67823                             text : "Back"
67824                         },
67825                         {
67826                             xtype: 'Separator',
67827                             xns: Roo.Toolbar
67828                         },
67829                         {
67830                             xtype: 'MonthField',
67831                             xns: Roo.form,
67832                             listeners : {
67833                                 render : function (_self)
67834                                 {
67835                                     _this.monthField = _self;
67836                                    // _this.monthField.set  today
67837                                 },
67838                                 select : function (combo, date)
67839                                 {
67840                                     _this.grid.ds.load({});
67841                                 }
67842                             },
67843                             value : (function() { return new Date(); })()
67844                         },
67845                         {
67846                             xtype: 'Separator',
67847                             xns: Roo.Toolbar
67848                         },
67849                         {
67850                             xtype: 'TextItem',
67851                             xns: Roo.Toolbar,
67852                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
67853                         },
67854                         {
67855                             xtype: 'Fill',
67856                             xns: Roo.Toolbar
67857                         },
67858                         {
67859                             xtype: 'Button',
67860                             xns: Roo.Toolbar,
67861                             listeners : {
67862                                 click : function (_self, e)
67863                                 {
67864                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67865                                     sd.setMonth(sd.getMonth()+1);
67866                                     _this.monthField.setValue(sd.format('Y-m-d'));
67867                                     _this.grid.ds.load({});
67868                                 }
67869                             },
67870                             text : "Next"
67871                         }
67872                     ]
67873                 },
67874                  
67875             }
67876         };
67877         
67878         *//*
67879  * Based on:
67880  * Ext JS Library 1.1.1
67881  * Copyright(c) 2006-2007, Ext JS, LLC.
67882  *
67883  * Originally Released Under LGPL - original licence link has changed is not relivant.
67884  *
67885  * Fork - LGPL
67886  * <script type="text/javascript">
67887  */
67888  
67889 /**
67890  * @class Roo.LoadMask
67891  * A simple utility class for generically masking elements while loading data.  If the element being masked has
67892  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
67893  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
67894  * element's UpdateManager load indicator and will be destroyed after the initial load.
67895  * @constructor
67896  * Create a new LoadMask
67897  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
67898  * @param {Object} config The config object
67899  */
67900 Roo.LoadMask = function(el, config){
67901     this.el = Roo.get(el);
67902     Roo.apply(this, config);
67903     if(this.store){
67904         this.store.on('beforeload', this.onBeforeLoad, this);
67905         this.store.on('load', this.onLoad, this);
67906         this.store.on('loadexception', this.onLoadException, this);
67907         this.removeMask = false;
67908     }else{
67909         var um = this.el.getUpdateManager();
67910         um.showLoadIndicator = false; // disable the default indicator
67911         um.on('beforeupdate', this.onBeforeLoad, this);
67912         um.on('update', this.onLoad, this);
67913         um.on('failure', this.onLoad, this);
67914         this.removeMask = true;
67915     }
67916 };
67917
67918 Roo.LoadMask.prototype = {
67919     /**
67920      * @cfg {Boolean} removeMask
67921      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
67922      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
67923      */
67924     removeMask : false,
67925     /**
67926      * @cfg {String} msg
67927      * The text to display in a centered loading message box (defaults to 'Loading...')
67928      */
67929     msg : 'Loading...',
67930     /**
67931      * @cfg {String} msgCls
67932      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
67933      */
67934     msgCls : 'x-mask-loading',
67935
67936     /**
67937      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
67938      * @type Boolean
67939      */
67940     disabled: false,
67941
67942     /**
67943      * Disables the mask to prevent it from being displayed
67944      */
67945     disable : function(){
67946        this.disabled = true;
67947     },
67948
67949     /**
67950      * Enables the mask so that it can be displayed
67951      */
67952     enable : function(){
67953         this.disabled = false;
67954     },
67955     
67956     onLoadException : function()
67957     {
67958         Roo.log(arguments);
67959         
67960         if (typeof(arguments[3]) != 'undefined') {
67961             Roo.MessageBox.alert("Error loading",arguments[3]);
67962         } 
67963         /*
67964         try {
67965             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
67966                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
67967             }   
67968         } catch(e) {
67969             
67970         }
67971         */
67972     
67973         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67974     },
67975     // private
67976     onLoad : function()
67977     {
67978         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67979     },
67980
67981     // private
67982     onBeforeLoad : function(){
67983         if(!this.disabled){
67984             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
67985         }
67986     },
67987
67988     // private
67989     destroy : function(){
67990         if(this.store){
67991             this.store.un('beforeload', this.onBeforeLoad, this);
67992             this.store.un('load', this.onLoad, this);
67993             this.store.un('loadexception', this.onLoadException, this);
67994         }else{
67995             var um = this.el.getUpdateManager();
67996             um.un('beforeupdate', this.onBeforeLoad, this);
67997             um.un('update', this.onLoad, this);
67998             um.un('failure', this.onLoad, this);
67999         }
68000     }
68001 };/*
68002  * Based on:
68003  * Ext JS Library 1.1.1
68004  * Copyright(c) 2006-2007, Ext JS, LLC.
68005  *
68006  * Originally Released Under LGPL - original licence link has changed is not relivant.
68007  *
68008  * Fork - LGPL
68009  * <script type="text/javascript">
68010  */
68011
68012
68013 /**
68014  * @class Roo.XTemplate
68015  * @extends Roo.Template
68016  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
68017 <pre><code>
68018 var t = new Roo.XTemplate(
68019         '&lt;select name="{name}"&gt;',
68020                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
68021         '&lt;/select&gt;'
68022 );
68023  
68024 // then append, applying the master template values
68025  </code></pre>
68026  *
68027  * Supported features:
68028  *
68029  *  Tags:
68030
68031 <pre><code>
68032       {a_variable} - output encoded.
68033       {a_variable.format:("Y-m-d")} - call a method on the variable
68034       {a_variable:raw} - unencoded output
68035       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
68036       {a_variable:this.method_on_template(...)} - call a method on the template object.
68037  
68038 </code></pre>
68039  *  The tpl tag:
68040 <pre><code>
68041         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
68042         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
68043         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
68044         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
68045   
68046         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
68047         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
68048 </code></pre>
68049  *      
68050  */
68051 Roo.XTemplate = function()
68052 {
68053     Roo.XTemplate.superclass.constructor.apply(this, arguments);
68054     if (this.html) {
68055         this.compile();
68056     }
68057 };
68058
68059
68060 Roo.extend(Roo.XTemplate, Roo.Template, {
68061
68062     /**
68063      * The various sub templates
68064      */
68065     tpls : false,
68066     /**
68067      *
68068      * basic tag replacing syntax
68069      * WORD:WORD()
68070      *
68071      * // you can fake an object call by doing this
68072      *  x.t:(test,tesT) 
68073      * 
68074      */
68075     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
68076
68077     /**
68078      * compile the template
68079      *
68080      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
68081      *
68082      */
68083     compile: function()
68084     {
68085         var s = this.html;
68086      
68087         s = ['<tpl>', s, '</tpl>'].join('');
68088     
68089         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
68090             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
68091             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
68092             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
68093             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
68094             m,
68095             id     = 0,
68096             tpls   = [];
68097     
68098         while(true == !!(m = s.match(re))){
68099             var forMatch   = m[0].match(nameRe),
68100                 ifMatch   = m[0].match(ifRe),
68101                 execMatch   = m[0].match(execRe),
68102                 namedMatch   = m[0].match(namedRe),
68103                 
68104                 exp  = null, 
68105                 fn   = null,
68106                 exec = null,
68107                 name = forMatch && forMatch[1] ? forMatch[1] : '';
68108                 
68109             if (ifMatch) {
68110                 // if - puts fn into test..
68111                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
68112                 if(exp){
68113                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
68114                 }
68115             }
68116             
68117             if (execMatch) {
68118                 // exec - calls a function... returns empty if true is  returned.
68119                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
68120                 if(exp){
68121                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
68122                 }
68123             }
68124             
68125             
68126             if (name) {
68127                 // for = 
68128                 switch(name){
68129                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
68130                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
68131                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
68132                 }
68133             }
68134             var uid = namedMatch ? namedMatch[1] : id;
68135             
68136             
68137             tpls.push({
68138                 id:     namedMatch ? namedMatch[1] : id,
68139                 target: name,
68140                 exec:   exec,
68141                 test:   fn,
68142                 body:   m[1] || ''
68143             });
68144             if (namedMatch) {
68145                 s = s.replace(m[0], '');
68146             } else { 
68147                 s = s.replace(m[0], '{xtpl'+ id + '}');
68148             }
68149             ++id;
68150         }
68151         this.tpls = [];
68152         for(var i = tpls.length-1; i >= 0; --i){
68153             this.compileTpl(tpls[i]);
68154             this.tpls[tpls[i].id] = tpls[i];
68155         }
68156         this.master = tpls[tpls.length-1];
68157         return this;
68158     },
68159     /**
68160      * same as applyTemplate, except it's done to one of the subTemplates
68161      * when using named templates, you can do:
68162      *
68163      * var str = pl.applySubTemplate('your-name', values);
68164      *
68165      * 
68166      * @param {Number} id of the template
68167      * @param {Object} values to apply to template
68168      * @param {Object} parent (normaly the instance of this object)
68169      */
68170     applySubTemplate : function(id, values, parent)
68171     {
68172         
68173         
68174         var t = this.tpls[id];
68175         
68176         
68177         try { 
68178             if(t.test && !t.test.call(this, values, parent)){
68179                 return '';
68180             }
68181         } catch(e) {
68182             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
68183             Roo.log(e.toString());
68184             Roo.log(t.test);
68185             return ''
68186         }
68187         try { 
68188             
68189             if(t.exec && t.exec.call(this, values, parent)){
68190                 return '';
68191             }
68192         } catch(e) {
68193             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
68194             Roo.log(e.toString());
68195             Roo.log(t.exec);
68196             return ''
68197         }
68198         try {
68199             var vs = t.target ? t.target.call(this, values, parent) : values;
68200             parent = t.target ? values : parent;
68201             if(t.target && vs instanceof Array){
68202                 var buf = [];
68203                 for(var i = 0, len = vs.length; i < len; i++){
68204                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
68205                 }
68206                 return buf.join('');
68207             }
68208             return t.compiled.call(this, vs, parent);
68209         } catch (e) {
68210             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
68211             Roo.log(e.toString());
68212             Roo.log(t.compiled);
68213             return '';
68214         }
68215     },
68216
68217     compileTpl : function(tpl)
68218     {
68219         var fm = Roo.util.Format;
68220         var useF = this.disableFormats !== true;
68221         var sep = Roo.isGecko ? "+" : ",";
68222         var undef = function(str) {
68223             Roo.log("Property not found :"  + str);
68224             return '';
68225         };
68226         
68227         var fn = function(m, name, format, args)
68228         {
68229             //Roo.log(arguments);
68230             args = args ? args.replace(/\\'/g,"'") : args;
68231             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
68232             if (typeof(format) == 'undefined') {
68233                 format= 'htmlEncode';
68234             }
68235             if (format == 'raw' ) {
68236                 format = false;
68237             }
68238             
68239             if(name.substr(0, 4) == 'xtpl'){
68240                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
68241             }
68242             
68243             // build an array of options to determine if value is undefined..
68244             
68245             // basically get 'xxxx.yyyy' then do
68246             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
68247             //    (function () { Roo.log("Property not found"); return ''; })() :
68248             //    ......
68249             
68250             var udef_ar = [];
68251             var lookfor = '';
68252             Roo.each(name.split('.'), function(st) {
68253                 lookfor += (lookfor.length ? '.': '') + st;
68254                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
68255             });
68256             
68257             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
68258             
68259             
68260             if(format && useF){
68261                 
68262                 args = args ? ',' + args : "";
68263                  
68264                 if(format.substr(0, 5) != "this."){
68265                     format = "fm." + format + '(';
68266                 }else{
68267                     format = 'this.call("'+ format.substr(5) + '", ';
68268                     args = ", values";
68269                 }
68270                 
68271                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
68272             }
68273              
68274             if (args.length) {
68275                 // called with xxyx.yuu:(test,test)
68276                 // change to ()
68277                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
68278             }
68279             // raw.. - :raw modifier..
68280             return "'"+ sep + udef_st  + name + ")"+sep+"'";
68281             
68282         };
68283         var body;
68284         // branched to use + in gecko and [].join() in others
68285         if(Roo.isGecko){
68286             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
68287                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
68288                     "';};};";
68289         }else{
68290             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
68291             body.push(tpl.body.replace(/(\r\n|\n)/g,
68292                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
68293             body.push("'].join('');};};");
68294             body = body.join('');
68295         }
68296         
68297         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
68298        
68299         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
68300         eval(body);
68301         
68302         return this;
68303     },
68304
68305     applyTemplate : function(values){
68306         return this.master.compiled.call(this, values, {});
68307         //var s = this.subs;
68308     },
68309
68310     apply : function(){
68311         return this.applyTemplate.apply(this, arguments);
68312     }
68313
68314  });
68315
68316 Roo.XTemplate.from = function(el){
68317     el = Roo.getDom(el);
68318     return new Roo.XTemplate(el.value || el.innerHTML);
68319 };Roo.dialog = {};
68320 /*
68321 * Licence: LGPL
68322 */
68323
68324 /**
68325  * @class Roo.dialog.UploadCropbox
68326  * @extends Roo.BoxComponent
68327  * Dialog UploadCropbox class
68328  * @cfg {String} emptyText show when image has been loaded
68329  * @cfg {String} rotateNotify show when image too small to rotate
68330  * @cfg {Number} errorTimeout default 3000
68331  * @cfg {Number} minWidth default 300
68332  * @cfg {Number} minHeight default 300
68333  * @cfg {Number} outputMaxWidth default 1200
68334  * @cfg {Number} windowSize default 300
68335  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
68336  * @cfg {Boolean} isDocument (true|false) default false
68337  * @cfg {String} url action url
68338  * @cfg {String} paramName default 'imageUpload'
68339  * @cfg {String} method default POST
68340  * @cfg {Boolean} loadMask (true|false) default true
68341  * @cfg {Boolean} loadingText default 'Loading...'
68342  * 
68343  * @constructor
68344  * Create a new UploadCropbox
68345  * @param {Object} config The config object
68346  */
68347
68348  Roo.dialog.UploadCropbox = function(config){
68349     Roo.dialog.UploadCropbox.superclass.constructor.call(this, config);
68350     
68351     this.addEvents({
68352         /**
68353          * @event beforeselectfile
68354          * Fire before select file
68355          * @param {Roo.dialog.UploadCropbox} this
68356          */
68357         "beforeselectfile" : true,
68358         /**
68359          * @event initial
68360          * Fire after initEvent
68361          * @param {Roo.dialog.UploadCropbox} this
68362          */
68363         "initial" : true,
68364         /**
68365          * @event crop
68366          * Fire after initEvent
68367          * @param {Roo.dialog.UploadCropbox} this
68368          * @param {String} data
68369          */
68370         "crop" : true,
68371         /**
68372          * @event prepare
68373          * Fire when preparing the file data
68374          * @param {Roo.dialog.UploadCropbox} this
68375          * @param {Object} file
68376          */
68377         "prepare" : true,
68378         /**
68379          * @event exception
68380          * Fire when get exception
68381          * @param {Roo.dialog.UploadCropbox} this
68382          * @param {XMLHttpRequest} xhr
68383          */
68384         "exception" : true,
68385         /**
68386          * @event beforeloadcanvas
68387          * Fire before load the canvas
68388          * @param {Roo.dialog.UploadCropbox} this
68389          * @param {String} src
68390          */
68391         "beforeloadcanvas" : true,
68392         /**
68393          * @event trash
68394          * Fire when trash image
68395          * @param {Roo.dialog.UploadCropbox} this
68396          */
68397         "trash" : true,
68398         /**
68399          * @event download
68400          * Fire when download the image
68401          * @param {Roo.dialog.UploadCropbox} this
68402          */
68403         "download" : true,
68404         /**
68405          * @event footerbuttonclick
68406          * Fire when footerbuttonclick
68407          * @param {Roo.dialog.UploadCropbox} this
68408          * @param {String} type
68409          */
68410         "footerbuttonclick" : true,
68411         /**
68412          * @event resize
68413          * Fire when resize
68414          * @param {Roo.dialog.UploadCropbox} this
68415          */
68416         "resize" : true,
68417         /**
68418          * @event rotate
68419          * Fire when rotate the image
68420          * @param {Roo.dialog.UploadCropbox} this
68421          * @param {String} pos
68422          */
68423         "rotate" : true,
68424         /**
68425          * @event inspect
68426          * Fire when inspect the file
68427          * @param {Roo.dialog.UploadCropbox} this
68428          * @param {Object} file
68429          */
68430         "inspect" : true,
68431         /**
68432          * @event upload
68433          * Fire when xhr upload the file
68434          * @param {Roo.dialog.UploadCropbox} this
68435          * @param {Object} data
68436          */
68437         "upload" : true,
68438         /**
68439          * @event arrange
68440          * Fire when arrange the file data
68441          * @param {Roo.dialog.UploadCropbox} this
68442          * @param {Object} formData
68443          */
68444         "arrange" : true,
68445         /**
68446          * @event loadcanvas
68447          * Fire after load the canvas
68448          * @param {Roo.dialog.UploadCropbox}
68449          * @param {Object} imgEl
68450          */
68451         "loadcanvas" : true
68452     });
68453     
68454     this.buttons = this.buttons || Roo.dialog.UploadCropbox.footer.STANDARD;
68455 };
68456
68457 Roo.extend(Roo.dialog.UploadCropbox, Roo.Component,  {
68458     
68459     emptyText : 'Click to upload image',
68460     rotateNotify : 'Image is too small to rotate',
68461     errorTimeout : 3000,
68462     scale : 0,
68463     baseScale : 1,
68464     rotate : 0,
68465     dragable : false,
68466     pinching : false,
68467     mouseX : 0,
68468     mouseY : 0,
68469     cropData : false,
68470     minWidth : 300,
68471     minHeight : 300,
68472     outputMaxWidth : 1200,
68473     windowSize : 300,
68474     file : false,
68475     exif : {},
68476     baseRotate : 1,
68477     cropType : 'image/jpeg',
68478     buttons : false,
68479     canvasLoaded : false,
68480     isDocument : false,
68481     method : 'POST',
68482     paramName : 'imageUpload',
68483     loadMask : true,
68484     loadingText : 'Loading...',
68485     maskEl : false,
68486     
68487     getAutoCreate : function()
68488     {
68489         var cfg = {
68490             tag : 'div',
68491             cls : 'roo-upload-cropbox',
68492             cn : [
68493                 {
68494                     tag : 'input',
68495                     cls : 'roo-upload-cropbox-selector',
68496                     type : 'file'
68497                 },
68498                 {
68499                     tag : 'div',
68500                     cls : 'roo-upload-cropbox-body',
68501                     style : 'cursor:pointer',
68502                     cn : [
68503                         {
68504                             tag : 'div',
68505                             cls : 'roo-upload-cropbox-preview'
68506                         },
68507                         {
68508                             tag : 'div',
68509                             cls : 'roo-upload-cropbox-thumb'
68510                         },
68511                         {
68512                             tag : 'div',
68513                             cls : 'roo-upload-cropbox-empty-notify',
68514                             html : this.emptyText
68515                         },
68516                         {
68517                             tag : 'div',
68518                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
68519                             html : this.rotateNotify
68520                         }
68521                     ]
68522                 },
68523                 {
68524                     tag : 'div',
68525                     cls : 'roo-upload-cropbox-footer',
68526                     cn : {
68527                         tag : 'div',
68528                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
68529                         cn : []
68530                     }
68531                 }
68532             ]
68533         };
68534         
68535         return cfg;
68536     },
68537     
68538     onRender : function(ct, position)
68539     {
68540         Roo.dialog.UploadCropbox.superclass.onRender.call(this, ct, position);
68541
68542         if(this.el){
68543             if (this.el.attr('xtype')) {
68544                 this.el.attr('xtypex', this.el.attr('xtype'));
68545                 this.el.dom.removeAttribute('xtype');
68546                 
68547                 this.initEvents();
68548             }
68549         }
68550         else {
68551             var cfg = Roo.apply({},  this.getAutoCreate());
68552         
68553             cfg.id = this.id || Roo.id();
68554             
68555             if (this.cls) {
68556                 cfg.cls = (typeof(cfg.cls) == 'undefined' ? this.cls : cfg.cls) + ' ' + this.cls;
68557             }
68558             
68559             if (this.style) { // fixme needs to support more complex style data.
68560                 cfg.style = (typeof(cfg.style) == 'undefined' ? this.style : cfg.style) + '; ' + this.style;
68561             }
68562             
68563             this.el = ct.createChild(cfg, position);
68564             
68565             this.initEvents();
68566         }
68567         
68568         if (this.buttons.length) {
68569             
68570             Roo.each(this.buttons, function(bb) {
68571                 
68572                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
68573                 
68574                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
68575                 
68576             }, this);
68577         }
68578         
68579         if(this.loadMask){
68580             this.maskEl = this.el;
68581         }
68582     },
68583     
68584     initEvents : function()
68585     {
68586         this.urlAPI = (window.createObjectURL && window) || 
68587                                 (window.URL && URL.revokeObjectURL && URL) || 
68588                                 (window.webkitURL && webkitURL);
68589                         
68590         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
68591         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68592         
68593         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
68594         this.selectorEl.hide();
68595         
68596         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
68597         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68598         
68599         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
68600         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68601         this.thumbEl.hide();
68602         
68603         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
68604         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68605         
68606         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
68607         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68608         this.errorEl.hide();
68609         
68610         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
68611         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
68612         this.footerEl.hide();
68613         
68614         this.setThumbBoxSize();
68615         
68616         this.bind();
68617         
68618         this.resize();
68619         
68620         this.fireEvent('initial', this);
68621     },
68622
68623     bind : function()
68624     {
68625         var _this = this;
68626         
68627         window.addEventListener("resize", function() { _this.resize(); } );
68628         
68629         this.bodyEl.on('click', this.beforeSelectFile, this);
68630         
68631         if(Roo.isTouch){
68632             this.bodyEl.on('touchstart', this.onTouchStart, this);
68633             this.bodyEl.on('touchmove', this.onTouchMove, this);
68634             this.bodyEl.on('touchend', this.onTouchEnd, this);
68635         }
68636         
68637         if(!Roo.isTouch){
68638             this.bodyEl.on('mousedown', this.onMouseDown, this);
68639             this.bodyEl.on('mousemove', this.onMouseMove, this);
68640             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
68641             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
68642             Roo.get(document).on('mouseup', this.onMouseUp, this);
68643         }
68644         
68645         this.selectorEl.on('change', this.onFileSelected, this);
68646     },
68647     
68648     reset : function()
68649     {    
68650         this.scale = 0;
68651         this.baseScale = 1;
68652         this.rotate = 0;
68653         this.baseRotate = 1;
68654         this.dragable = false;
68655         this.pinching = false;
68656         this.mouseX = 0;
68657         this.mouseY = 0;
68658         this.cropData = false;
68659         this.notifyEl.dom.innerHTML = this.emptyText;
68660         
68661         // this.selectorEl.dom.value = '';
68662         
68663     },
68664     
68665     resize : function()
68666     {
68667         if(this.fireEvent('resize', this) != false){
68668             this.setThumbBoxPosition();
68669             this.setCanvasPosition();
68670         }
68671     },
68672     
68673     onFooterButtonClick : function(e, el, o, type)
68674     {
68675         switch (type) {
68676             case 'rotate-left' :
68677                 this.onRotateLeft(e);
68678                 break;
68679             case 'rotate-right' :
68680                 this.onRotateRight(e);
68681                 break;
68682             case 'picture' :
68683                 this.beforeSelectFile(e);
68684                 break;
68685             case 'trash' :
68686                 this.trash(e);
68687                 break;
68688             case 'crop' :
68689                 this.crop(e);
68690                 break;
68691             case 'download' :
68692                 this.download(e);
68693                 break;
68694             case 'center' :
68695                 this.center(e);
68696                 break;
68697             default :
68698                 break;
68699         }
68700         
68701         this.fireEvent('footerbuttonclick', this, type);
68702     },
68703     
68704     beforeSelectFile : function(e)
68705     {
68706         e.preventDefault();
68707         
68708         if(this.fireEvent('beforeselectfile', this) != false){
68709             this.selectorEl.dom.click();
68710         }
68711     },
68712     
68713     onFileSelected : function(e)
68714     {
68715         e.preventDefault();
68716         
68717         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
68718             return;
68719         }
68720         
68721         var file = this.selectorEl.dom.files[0];
68722         
68723         if(this.fireEvent('inspect', this, file) != false){
68724             this.prepare(file);
68725         }
68726         
68727     },
68728     
68729     trash : function(e)
68730     {
68731         this.fireEvent('trash', this);
68732     },
68733     
68734     download : function(e)
68735     {
68736         this.fireEvent('download', this);
68737     },
68738
68739     center : function(e)
68740     {
68741         this.setCanvasPosition();
68742     },
68743     
68744     loadCanvas : function(src)
68745     {   
68746         if(this.fireEvent('beforeloadcanvas', this, src) != false){
68747             
68748             this.reset();
68749             
68750             this.imageEl = document.createElement('img');
68751             
68752             var _this = this;
68753             
68754             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
68755             
68756             this.imageEl.src = src;
68757         }
68758     },
68759     
68760     onLoadCanvas : function()
68761     {   
68762         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
68763         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
68764
68765         if(this.fireEvent('loadcanvas', this, this.imageEl) != false){
68766         
68767             this.bodyEl.un('click', this.beforeSelectFile, this);
68768             
68769             this.notifyEl.hide();
68770             this.thumbEl.show();
68771             this.footerEl.show();
68772             
68773             this.baseRotateLevel();
68774             
68775             if(this.isDocument){
68776                 this.setThumbBoxSize();
68777             }
68778             
68779             this.setThumbBoxPosition();
68780             
68781             this.baseScaleLevel();
68782             
68783             this.draw();
68784             
68785             this.resize();
68786             
68787             this.canvasLoaded = true;
68788         
68789         }
68790         
68791         if(this.loadMask){
68792             this.maskEl.unmask();
68793         }
68794         
68795     },
68796     
68797     setCanvasPosition : function(center = true)
68798     {   
68799         if(!this.canvasEl){
68800             return;
68801         }
68802
68803         var newCenterLeft = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
68804         var newCenterTop = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
68805
68806         if(center) {
68807             this.previewEl.setLeft(newCenterLeft);
68808             this.previewEl.setTop(newCenterTop);
68809
68810             return;
68811         }
68812         
68813         var oldScaleLevel = this.baseScale * Math.pow(1.02, this.startScale);
68814         var oldCanvasWidth = Math.floor(this.imageEl.OriginWidth * oldScaleLevel);
68815         var oldCanvasHeight = Math.floor(this.imageEl.OriginHeight * oldScaleLevel);
68816
68817         var oldCenterLeft = Math.ceil((this.bodyEl.getWidth() - oldCanvasWidth) / 2);
68818         var oldCenterTop = Math.ceil((this.bodyEl.getHeight() - oldCanvasHeight) / 2);
68819
68820         var leftDiff = newCenterLeft - oldCenterLeft;
68821         var topDiff = newCenterTop - oldCenterTop;
68822
68823         var newPreviewLeft = this.previewEl.getLeft(true) + leftDiff;
68824         var newPreviewTop = this.previewEl.getTop(true) + topDiff;
68825
68826         this.previewEl.setLeft(newPreviewLeft);
68827         this.previewEl.setTop(newPreviewTop);
68828         
68829     },
68830     
68831     onMouseDown : function(e)
68832     {   
68833         e.stopEvent();
68834         
68835         this.dragable = true;
68836         this.pinching = false;
68837         
68838         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
68839             this.dragable = false;
68840             return;
68841         }
68842         
68843         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
68844         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
68845         
68846     },
68847     
68848     onMouseMove : function(e)
68849     {   
68850         e.stopEvent();
68851         
68852         if(!this.canvasLoaded){
68853             return;
68854         }
68855         
68856         if (!this.dragable){
68857             return;
68858         }
68859
68860         var maxPaddingLeft = this.canvasEl.width / 0.9 * 0.05;
68861         var maxPaddingTop = maxPaddingLeft * this.minHeight / this.minWidth;
68862
68863         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight <= this.minWidth / this.minHeight)) {
68864             maxPaddingLeft = (this.canvasEl.height * this.minWidth / this.minHeight - this.canvasEl.width) / 2 + maxPaddingLeft;
68865         }
68866
68867         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight >= this.minWidth / this.minHeight)) {
68868             maxPaddingTop = (this.canvasEl.width * this.minHeight / this.minWidth - this.canvasEl.height) / 2 + maxPaddingTop;
68869         }
68870         
68871         var minX = Math.ceil(this.thumbEl.getLeft(true) + this.thumbEl.getWidth() - this.canvasEl.width - maxPaddingLeft);
68872         var minY = Math.ceil(this.thumbEl.getTop(true) + this.thumbEl.getHeight() - this.canvasEl.height - maxPaddingTop);
68873         
68874         var maxX = Math.ceil(this.thumbEl.getLeft(true) + maxPaddingLeft);
68875         var maxY = Math.ceil(this.thumbEl.getTop(true) +  maxPaddingTop);
68876
68877         if(minX > maxX) {
68878             var tempX = minX;
68879             minX = maxX;
68880             maxX = tempX;
68881         }
68882
68883         if(minY > maxY) {
68884             var tempY = minY;
68885             minY = maxY;
68886             maxY = tempY;
68887         }
68888
68889         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
68890         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
68891         
68892         x = x - this.mouseX;
68893         y = y - this.mouseY;
68894
68895         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
68896         var bgY = Math.ceil(y + this.previewEl.getTop(true));
68897         
68898         bgX = (bgX < minX) ? minX : ((bgX > maxX) ? maxX : bgX);
68899         bgY = (bgY < minY) ? minY : ((bgY > maxY) ? maxY : bgY);
68900         
68901         this.previewEl.setLeft(bgX);
68902         this.previewEl.setTop(bgY);
68903         
68904         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
68905         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
68906     },
68907     
68908     onMouseUp : function(e)
68909     {   
68910         e.stopEvent();
68911         
68912         this.dragable = false;
68913     },
68914     
68915     onMouseWheel : function(e)
68916     {   
68917         e.stopEvent();
68918         
68919         this.startScale = this.scale;
68920         this.scale = (e.getWheelDelta() > 0) ? (this.scale + 1) : (this.scale - 1);
68921         
68922         if(!this.zoomable()){
68923             this.scale = this.startScale;
68924             return;
68925         }
68926
68927         
68928         this.draw();
68929         
68930         return;
68931     },
68932     
68933     zoomable : function()
68934     {
68935         var minScale = this.thumbEl.getWidth() / this.minWidth;
68936         
68937         if(this.minWidth < this.minHeight){
68938             minScale = this.thumbEl.getHeight() / this.minHeight;
68939         }
68940         
68941         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
68942         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
68943  
68944         var maxWidth = this.imageEl.OriginWidth;
68945         var maxHeight = this.imageEl.OriginHeight;
68946
68947
68948         var newCanvasWidth = Math.floor(this.imageEl.OriginWidth * this.getScaleLevel());
68949         var newCanvasHeight = Math.floor(this.imageEl.OriginHeight * this.getScaleLevel());
68950
68951         var oldCenterLeft = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
68952         var oldCenterTop = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
68953
68954         var newCenterLeft = Math.ceil((this.bodyEl.getWidth() - newCanvasWidth) / 2);
68955         var newCenterTop = Math.ceil((this.bodyEl.getHeight() - newCanvasHeight) / 2);
68956
68957         var leftDiff = newCenterLeft - oldCenterLeft;
68958         var topDiff = newCenterTop - oldCenterTop;
68959
68960         var newPreviewLeft = this.previewEl.getLeft(true) + leftDiff;
68961         var newPreviewTop = this.previewEl.getTop(true) + topDiff;
68962
68963         var paddingLeft = newPreviewLeft - this.thumbEl.getLeft(true);
68964         var paddingTop = newPreviewTop - this.thumbEl.getTop(true);
68965
68966         var paddingRight = this.thumbEl.getLeft(true) + this.thumbEl.getWidth() - newCanvasWidth - newPreviewLeft;
68967         var paddingBottom = this.thumbEl.getTop(true) + this.thumbEl.getHeight() - newCanvasHeight - newPreviewTop;
68968
68969         var maxPaddingLeft = newCanvasWidth / 0.9 * 0.05;
68970         var maxPaddingTop = maxPaddingLeft * this.minHeight / this.minWidth;
68971
68972         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight <= this.minWidth / this.minHeight)) {
68973             maxPaddingLeft = (newCanvasHeight * this.minWidth / this.minHeight - newCanvasWidth) / 2 + maxPaddingLeft;
68974         }
68975
68976         if ((this.imageEl.OriginWidth / this.imageEl.OriginHeight >= this.minWidth / this.minHeight)) {
68977             maxPaddingTop = (newCanvasWidth * this.minHeight / this.minWidth - newCanvasHeight) / 2 + maxPaddingTop;
68978         }
68979         
68980         if(
68981                 this.isDocument &&
68982                 (this.rotate == 0 || this.rotate == 180) && 
68983                 (
68984                     width > this.imageEl.OriginWidth || 
68985                     height > this.imageEl.OriginHeight ||
68986                     (width < this.minWidth && height < this.minHeight)
68987                 )
68988         ){
68989             return false;
68990         }
68991         
68992         if(
68993                 this.isDocument &&
68994                 (this.rotate == 90 || this.rotate == 270) && 
68995                 (
68996                     width > this.imageEl.OriginWidth || 
68997                     height > this.imageEl.OriginHeight ||
68998                     (width < this.minHeight && height < this.minWidth)
68999                 )
69000         ){
69001             return false;
69002         }
69003         
69004         if(
69005                 !this.isDocument &&
69006                 (this.rotate == 0 || this.rotate == 180) && 
69007                 (
69008                     // for zoom out
69009                     paddingLeft > maxPaddingLeft ||
69010                     paddingRight > maxPaddingLeft ||
69011                     paddingTop > maxPaddingTop ||
69012                     paddingBottom > maxPaddingTop ||
69013                     // for zoom in
69014                     width > maxWidth ||
69015                     height > maxHeight
69016                 )
69017         ){
69018             return false;
69019         }
69020         
69021         if(
69022                 !this.isDocument &&
69023                 (this.rotate == 90 || this.rotate == 270) && 
69024                 (
69025                     width < this.minHeight || 
69026                     width > this.imageEl.OriginWidth || 
69027                     height < this.minWidth || 
69028                     height > this.imageEl.OriginHeight
69029                 )
69030         ){
69031             return false;
69032         }
69033         
69034         return true;
69035         
69036     },
69037     
69038     onRotateLeft : function(e)
69039     {   
69040         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
69041             
69042             var minScale = this.thumbEl.getWidth() / this.minWidth;
69043             
69044             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
69045             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
69046             
69047             this.startScale = this.scale;
69048             
69049             while (this.getScaleLevel() < minScale){
69050             
69051                 this.scale = this.scale + 1;
69052                 
69053                 if(!this.zoomable()){
69054                     break;
69055                 }
69056                 
69057                 if(
69058                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
69059                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
69060                 ){
69061                     continue;
69062                 }
69063                 
69064                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
69065
69066                 this.draw();
69067                 
69068                 return;
69069             }
69070             
69071             this.scale = this.startScale;
69072             
69073             this.onRotateFail();
69074             
69075             return false;
69076         }
69077         
69078         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
69079
69080         if(this.isDocument){
69081             this.setThumbBoxSize();
69082             this.setThumbBoxPosition();
69083             this.setCanvasPosition();
69084         }
69085         
69086         this.draw();
69087         
69088         this.fireEvent('rotate', this, 'left');
69089         
69090     },
69091     
69092     onRotateRight : function(e)
69093     {
69094         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
69095             
69096             var minScale = this.thumbEl.getWidth() / this.minWidth;
69097         
69098             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
69099             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
69100             
69101             this.startScale = this.scale;
69102             
69103             while (this.getScaleLevel() < minScale){
69104             
69105                 this.scale = this.scale + 1;
69106                 
69107                 if(!this.zoomable()){
69108                     break;
69109                 }
69110                 
69111                 if(
69112                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
69113                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
69114                 ){
69115                     continue;
69116                 }
69117                 
69118                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
69119
69120                 this.draw();
69121                 
69122                 return;
69123             }
69124             
69125             this.scale = this.startScale;
69126             
69127             this.onRotateFail();
69128             
69129             return false;
69130         }
69131         
69132         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
69133
69134         if(this.isDocument){
69135             this.setThumbBoxSize();
69136             this.setThumbBoxPosition();
69137             this.setCanvasPosition();
69138         }
69139         
69140         this.draw();
69141         
69142         this.fireEvent('rotate', this, 'right');
69143     },
69144     
69145     onRotateFail : function()
69146     {
69147         this.errorEl.show(true);
69148         
69149         var _this = this;
69150         
69151         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
69152     },
69153     
69154     draw : function()
69155     {
69156         this.previewEl.dom.innerHTML = '';
69157         
69158         var canvasEl = document.createElement("canvas");
69159         
69160         var contextEl = canvasEl.getContext("2d");
69161         
69162         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
69163         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
69164         var center = this.imageEl.OriginWidth / 2;
69165         
69166         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
69167             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
69168             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
69169             center = this.imageEl.OriginHeight / 2;
69170         }
69171         
69172         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
69173         
69174         contextEl.translate(center, center);
69175         contextEl.rotate(this.rotate * Math.PI / 180);
69176
69177         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
69178         
69179         this.canvasEl = document.createElement("canvas");
69180         
69181         this.contextEl = this.canvasEl.getContext("2d");
69182         
69183         switch (this.rotate) {
69184             case 0 :
69185                 
69186                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
69187                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
69188                 
69189                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69190                 
69191                 break;
69192             case 90 : 
69193                 
69194                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
69195                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
69196                 
69197                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
69198                     this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69199                     break;
69200                 }
69201                 
69202                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69203                 
69204                 break;
69205             case 180 :
69206                 
69207                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
69208                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
69209                 
69210                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
69211                     this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69212                     break;
69213                 }
69214                 
69215                 this.contextEl.drawImage(canvasEl, Math.abs(this.canvasEl.width - this.canvasEl.height), 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69216                 
69217                 break;
69218             case 270 :
69219                 
69220                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
69221                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
69222         
69223                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
69224                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69225                     break;
69226                 }
69227                 
69228                 this.contextEl.drawImage(canvasEl, 0, Math.abs(this.canvasEl.width - this.canvasEl.height), this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
69229                 
69230                 break;
69231             default : 
69232                 break;
69233         }
69234         
69235         this.previewEl.appendChild(this.canvasEl);
69236         
69237         this.setCanvasPosition(false);
69238     },
69239     
69240     crop : function()
69241     {
69242         if(!this.canvasLoaded){
69243             return;
69244         }
69245         
69246         var imageCanvas = document.createElement("canvas");
69247         
69248         var imageContext = imageCanvas.getContext("2d");
69249         
69250         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
69251         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
69252         
69253         var center = imageCanvas.width / 2;
69254         
69255         imageContext.translate(center, center);
69256         
69257         imageContext.rotate(this.rotate * Math.PI / 180);
69258         
69259         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
69260         
69261         var canvas = document.createElement("canvas");
69262         
69263         var context = canvas.getContext("2d");
69264
69265         canvas.width = this.thumbEl.getWidth() / this.getScaleLevel();
69266         
69267         canvas.height = this.thumbEl.getHeight() / this.getScaleLevel();
69268
69269         switch (this.rotate) {
69270             case 0 :
69271                 
69272                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
69273                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
69274                 
69275                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
69276                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
69277                 
69278                 var sx = this.thumbEl.getLeft(true) - this.previewEl.getLeft(true);
69279                 var sy = this.thumbEl.getTop(true) - this.previewEl.getTop(true);
69280
69281                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
69282                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
69283
69284                 if(canvas.width > this.outputMaxWidth) {
69285                     var scale = this.outputMaxWidth / canvas.width;
69286                     canvas.width = canvas.width * scale;
69287                     canvas.height = canvas.height * scale;
69288                     context.scale(scale, scale);
69289                 }
69290
69291                 context.fillStyle = 'white';
69292                 context.fillRect(0, 0, this.thumbEl.getWidth() / this.getScaleLevel(), this.thumbEl.getHeight() / this.getScaleLevel());
69293
69294
69295                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
69296                 
69297                 break;
69298             case 90 : 
69299                 
69300                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
69301                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
69302                 
69303                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
69304                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
69305                 
69306                 var targetWidth = this.minWidth - 2 * x;
69307                 var targetHeight = this.minHeight - 2 * y;
69308                 
69309                 var scale = 1;
69310                 
69311                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
69312                     scale = targetWidth / width;
69313                 }
69314                 
69315                 if(x > 0 && y == 0){
69316                     scale = targetHeight / height;
69317                 }
69318                 
69319                 if(x > 0 && y > 0){
69320                     scale = targetWidth / width;
69321                     
69322                     if(width < height){
69323                         scale = targetHeight / height;
69324                     }
69325                 }
69326                 
69327                 context.scale(scale, scale);
69328                 
69329                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
69330                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
69331
69332                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
69333                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
69334                 
69335                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
69336                 
69337                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
69338                 
69339                 break;
69340             case 180 :
69341                 
69342                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
69343                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
69344                 
69345                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
69346                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
69347                 
69348                 var targetWidth = this.minWidth - 2 * x;
69349                 var targetHeight = this.minHeight - 2 * y;
69350                 
69351                 var scale = 1;
69352                 
69353                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
69354                     scale = targetWidth / width;
69355                 }
69356                 
69357                 if(x > 0 && y == 0){
69358                     scale = targetHeight / height;
69359                 }
69360                 
69361                 if(x > 0 && y > 0){
69362                     scale = targetWidth / width;
69363                     
69364                     if(width < height){
69365                         scale = targetHeight / height;
69366                     }
69367                 }
69368                 
69369                 context.scale(scale, scale);
69370                 
69371                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
69372                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
69373
69374                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
69375                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
69376
69377                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
69378                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
69379                 
69380                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
69381                 
69382                 break;
69383             case 270 :
69384                 
69385                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
69386                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
69387                 
69388                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
69389                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
69390                 
69391                 var targetWidth = this.minWidth - 2 * x;
69392                 var targetHeight = this.minHeight - 2 * y;
69393                 
69394                 var scale = 1;
69395                 
69396                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
69397                     scale = targetWidth / width;
69398                 }
69399                 
69400                 if(x > 0 && y == 0){
69401                     scale = targetHeight / height;
69402                 }
69403                 
69404                 if(x > 0 && y > 0){
69405                     scale = targetWidth / width;
69406                     
69407                     if(width < height){
69408                         scale = targetHeight / height;
69409                     }
69410                 }
69411                 
69412                 context.scale(scale, scale);
69413                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
69414                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
69415
69416                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
69417                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
69418                 
69419                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
69420                 
69421                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
69422                 
69423                 break;
69424             default : 
69425                 break;
69426         }
69427         
69428         this.cropData = canvas.toDataURL(this.cropType);
69429         
69430         if(this.fireEvent('crop', this, this.cropData) !== false){
69431             this.process(this.file, this.cropData);
69432         }
69433         
69434         return;
69435         
69436     },
69437     
69438     setThumbBoxSize : function()
69439     {
69440         var width, height;
69441         
69442         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
69443             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
69444             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
69445             
69446             this.minWidth = width;
69447             this.minHeight = height;
69448             
69449             if(this.rotate == 90 || this.rotate == 270){
69450                 this.minWidth = height;
69451                 this.minHeight = width;
69452             }
69453         }
69454         
69455         height = this.windowSize;
69456         width = Math.ceil(this.minWidth * height / this.minHeight);
69457         
69458         if(this.minWidth > this.minHeight){
69459             width = this.windowSize;
69460             height = Math.ceil(this.minHeight * width / this.minWidth);
69461         }
69462         
69463         this.thumbEl.setStyle({
69464             width : width + 'px',
69465             height : height + 'px'
69466         });
69467
69468         return;
69469             
69470     },
69471     
69472     setThumbBoxPosition : function()
69473     {
69474         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
69475         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
69476         
69477         this.thumbEl.setLeft(x);
69478         this.thumbEl.setTop(y);
69479         
69480     },
69481     
69482     baseRotateLevel : function()
69483     {
69484         this.baseRotate = 1;
69485         
69486         if(
69487                 typeof(this.exif) != 'undefined' &&
69488                 typeof(this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
69489                 [1, 3, 6, 8].indexOf(this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']]) != -1
69490         ){
69491             this.baseRotate = this.exif[Roo.dialog.UploadCropbox['tags']['Orientation']];
69492         }
69493         
69494         this.rotate = Roo.dialog.UploadCropbox['Orientation'][this.baseRotate];
69495         
69496     },
69497     
69498     baseScaleLevel : function()
69499     {
69500         var width, height;
69501         
69502         if(this.isDocument){
69503             
69504             if(this.baseRotate == 6 || this.baseRotate == 8){
69505             
69506                 height = this.thumbEl.getHeight();
69507                 this.baseScale = height / this.imageEl.OriginWidth;
69508
69509                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
69510                     width = this.thumbEl.getWidth();
69511                     this.baseScale = width / this.imageEl.OriginHeight;
69512                 }
69513
69514                 return;
69515             }
69516
69517             height = this.thumbEl.getHeight();
69518             this.baseScale = height / this.imageEl.OriginHeight;
69519
69520             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
69521                 width = this.thumbEl.getWidth();
69522                 this.baseScale = width / this.imageEl.OriginWidth;
69523             }
69524
69525             return;
69526         }
69527         
69528         if(this.baseRotate == 6 || this.baseRotate == 8){
69529             
69530             width = this.thumbEl.getHeight();
69531             this.baseScale = width / this.imageEl.OriginHeight;
69532             
69533             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
69534                 height = this.thumbEl.getWidth();
69535                 this.baseScale = height / this.imageEl.OriginHeight;
69536             }
69537             
69538             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
69539                 height = this.thumbEl.getWidth();
69540                 this.baseScale = height / this.imageEl.OriginHeight;
69541                 
69542                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
69543                     width = this.thumbEl.getHeight();
69544                     this.baseScale = width / this.imageEl.OriginWidth;
69545                 }
69546             }
69547             
69548             return;
69549         }
69550         
69551         width = this.thumbEl.getWidth();
69552         this.baseScale = width / this.imageEl.OriginWidth;
69553         
69554         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
69555             height = this.thumbEl.getHeight();
69556             this.baseScale = height / this.imageEl.OriginHeight;
69557         }
69558         
69559         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
69560             
69561             height = this.thumbEl.getHeight();
69562             this.baseScale = height / this.imageEl.OriginHeight;
69563             
69564             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
69565                 width = this.thumbEl.getWidth();
69566                 this.baseScale = width / this.imageEl.OriginWidth;
69567             }
69568             
69569         }
69570
69571         if(this.imageEl.OriginWidth < this.minWidth || this.imageEl.OriginHeight < this.minHeight) {
69572             this.baseScale = width / this.minWidth;
69573         }
69574
69575         return;
69576     },
69577     
69578     getScaleLevel : function()
69579     {
69580         return this.baseScale * Math.pow(1.02, this.scale);
69581     },
69582     
69583     onTouchStart : function(e)
69584     {
69585         if(!this.canvasLoaded){
69586             this.beforeSelectFile(e);
69587             return;
69588         }
69589         
69590         var touches = e.browserEvent.touches;
69591         
69592         if(!touches){
69593             return;
69594         }
69595         
69596         if(touches.length == 1){
69597             this.onMouseDown(e);
69598             return;
69599         }
69600         
69601         if(touches.length != 2){
69602             return;
69603         }
69604         
69605         var coords = [];
69606         
69607         for(var i = 0, finger; finger = touches[i]; i++){
69608             coords.push(finger.pageX, finger.pageY);
69609         }
69610         
69611         var x = Math.pow(coords[0] - coords[2], 2);
69612         var y = Math.pow(coords[1] - coords[3], 2);
69613         
69614         this.startDistance = Math.sqrt(x + y);
69615         
69616         this.startScale = this.scale;
69617         
69618         this.pinching = true;
69619         this.dragable = false;
69620         
69621     },
69622     
69623     onTouchMove : function(e)
69624     {
69625         if(!this.pinching && !this.dragable){
69626             return;
69627         }
69628         
69629         var touches = e.browserEvent.touches;
69630         
69631         if(!touches){
69632             return;
69633         }
69634         
69635         if(this.dragable){
69636             this.onMouseMove(e);
69637             return;
69638         }
69639         
69640         var coords = [];
69641         
69642         for(var i = 0, finger; finger = touches[i]; i++){
69643             coords.push(finger.pageX, finger.pageY);
69644         }
69645         
69646         var x = Math.pow(coords[0] - coords[2], 2);
69647         var y = Math.pow(coords[1] - coords[3], 2);
69648         
69649         this.endDistance = Math.sqrt(x + y);
69650         
69651         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
69652         
69653         if(!this.zoomable()){
69654             this.scale = this.startScale;
69655             return;
69656         }
69657         
69658         this.draw();
69659         
69660     },
69661     
69662     onTouchEnd : function(e)
69663     {
69664         this.pinching = false;
69665         this.dragable = false;
69666         
69667     },
69668     
69669     process : function(file, crop)
69670     {
69671         if(this.loadMask){
69672             this.maskEl.mask(this.loadingText);
69673         }
69674         
69675         this.xhr = new XMLHttpRequest();
69676         
69677         file.xhr = this.xhr;
69678
69679         this.xhr.open(this.method, this.url, true);
69680         
69681         var headers = {
69682             "Accept": "application/json",
69683             "Cache-Control": "no-cache",
69684             "X-Requested-With": "XMLHttpRequest"
69685         };
69686         
69687         for (var headerName in headers) {
69688             var headerValue = headers[headerName];
69689             if (headerValue) {
69690                 this.xhr.setRequestHeader(headerName, headerValue);
69691             }
69692         }
69693         
69694         var _this = this;
69695         
69696         this.xhr.onload = function()
69697         {
69698             _this.xhrOnLoad(_this.xhr);
69699         }
69700         
69701         this.xhr.onerror = function()
69702         {
69703             _this.xhrOnError(_this.xhr);
69704         }
69705         
69706         var formData = new FormData();
69707
69708         formData.append('returnHTML', 'NO');
69709
69710         if(crop){
69711             formData.append('crop', crop);
69712             var blobBin = atob(crop.split(',')[1]);
69713             var array = [];
69714             for(var i = 0; i < blobBin.length; i++) {
69715                 array.push(blobBin.charCodeAt(i));
69716             }
69717             var croppedFile =new Blob([new Uint8Array(array)], {type: this.cropType});
69718             formData.append(this.paramName, croppedFile, file.name);
69719         }
69720         
69721         if(typeof(file.filename) != 'undefined'){
69722             formData.append('filename', file.filename);
69723         }
69724         
69725         if(typeof(file.mimetype) != 'undefined'){
69726             formData.append('mimetype', file.mimetype);
69727         }
69728
69729         if(this.fireEvent('arrange', this, formData) != false){
69730             this.xhr.send(formData);
69731         };
69732     },
69733     
69734     xhrOnLoad : function(xhr)
69735     {
69736         if(this.loadMask){
69737             this.maskEl.unmask();
69738         }
69739         
69740         if (xhr.readyState !== 4) {
69741             this.fireEvent('exception', this, xhr);
69742             return;
69743         }
69744
69745         var response = Roo.decode(xhr.responseText);
69746         
69747         if(!response.success){
69748             this.fireEvent('exception', this, xhr);
69749             return;
69750         }
69751         
69752         var response = Roo.decode(xhr.responseText);
69753         
69754         this.fireEvent('upload', this, response);
69755         
69756     },
69757     
69758     xhrOnError : function()
69759     {
69760         if(this.loadMask){
69761             this.maskEl.unmask();
69762         }
69763         
69764         Roo.log('xhr on error');
69765         
69766         var response = Roo.decode(xhr.responseText);
69767           
69768         Roo.log(response);
69769         
69770     },
69771     
69772     prepare : function(file)
69773     {   
69774         if(this.loadMask){
69775             this.maskEl.mask(this.loadingText);
69776         }
69777         
69778         this.file = false;
69779         this.exif = {};
69780         
69781         if(typeof(file) === 'string'){
69782             this.loadCanvas(file);
69783             return;
69784         }
69785         
69786         if(!file || !this.urlAPI){
69787             return;
69788         }
69789         
69790         this.file = file;
69791         if(typeof(file.type) != 'undefined' && file.type.length != 0) {
69792             this.cropType = file.type;
69793         }
69794         
69795         var _this = this;
69796         
69797         if(this.fireEvent('prepare', this, this.file) != false){
69798             
69799             var reader = new FileReader();
69800             
69801             reader.onload = function (e) {
69802                 if (e.target.error) {
69803                     Roo.log(e.target.error);
69804                     return;
69805                 }
69806                 
69807                 var buffer = e.target.result,
69808                     dataView = new DataView(buffer),
69809                     offset = 2,
69810                     maxOffset = dataView.byteLength - 4,
69811                     markerBytes,
69812                     markerLength;
69813                 
69814                 if (dataView.getUint16(0) === 0xffd8) {
69815                     while (offset < maxOffset) {
69816                         markerBytes = dataView.getUint16(offset);
69817                         
69818                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
69819                             markerLength = dataView.getUint16(offset + 2) + 2;
69820                             if (offset + markerLength > dataView.byteLength) {
69821                                 Roo.log('Invalid meta data: Invalid segment size.');
69822                                 break;
69823                             }
69824                             
69825                             if(markerBytes == 0xffe1){
69826                                 _this.parseExifData(
69827                                     dataView,
69828                                     offset,
69829                                     markerLength
69830                                 );
69831                             }
69832                             
69833                             offset += markerLength;
69834                             
69835                             continue;
69836                         }
69837                         
69838                         break;
69839                     }
69840                     
69841                 }
69842                 
69843                 var url = _this.urlAPI.createObjectURL(_this.file);
69844                 
69845                 _this.loadCanvas(url);
69846                 
69847                 return;
69848             }
69849             
69850             reader.readAsArrayBuffer(this.file);
69851             
69852         }
69853         
69854     },
69855     
69856     parseExifData : function(dataView, offset, length)
69857     {
69858         var tiffOffset = offset + 10,
69859             littleEndian,
69860             dirOffset;
69861     
69862         if (dataView.getUint32(offset + 4) !== 0x45786966) {
69863             // No Exif data, might be XMP data instead
69864             return;
69865         }
69866         
69867         // Check for the ASCII code for "Exif" (0x45786966):
69868         if (dataView.getUint32(offset + 4) !== 0x45786966) {
69869             // No Exif data, might be XMP data instead
69870             return;
69871         }
69872         if (tiffOffset + 8 > dataView.byteLength) {
69873             Roo.log('Invalid Exif data: Invalid segment size.');
69874             return;
69875         }
69876         // Check for the two null bytes:
69877         if (dataView.getUint16(offset + 8) !== 0x0000) {
69878             Roo.log('Invalid Exif data: Missing byte alignment offset.');
69879             return;
69880         }
69881         // Check the byte alignment:
69882         switch (dataView.getUint16(tiffOffset)) {
69883         case 0x4949:
69884             littleEndian = true;
69885             break;
69886         case 0x4D4D:
69887             littleEndian = false;
69888             break;
69889         default:
69890             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
69891             return;
69892         }
69893         // Check for the TIFF tag marker (0x002A):
69894         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
69895             Roo.log('Invalid Exif data: Missing TIFF marker.');
69896             return;
69897         }
69898         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
69899         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
69900         
69901         this.parseExifTags(
69902             dataView,
69903             tiffOffset,
69904             tiffOffset + dirOffset,
69905             littleEndian
69906         );
69907     },
69908     
69909     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
69910     {
69911         var tagsNumber,
69912             dirEndOffset,
69913             i;
69914         if (dirOffset + 6 > dataView.byteLength) {
69915             Roo.log('Invalid Exif data: Invalid directory offset.');
69916             return;
69917         }
69918         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
69919         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
69920         if (dirEndOffset + 4 > dataView.byteLength) {
69921             Roo.log('Invalid Exif data: Invalid directory size.');
69922             return;
69923         }
69924         for (i = 0; i < tagsNumber; i += 1) {
69925             this.parseExifTag(
69926                 dataView,
69927                 tiffOffset,
69928                 dirOffset + 2 + 12 * i, // tag offset
69929                 littleEndian
69930             );
69931         }
69932         // Return the offset to the next directory:
69933         return dataView.getUint32(dirEndOffset, littleEndian);
69934     },
69935     
69936     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
69937     {
69938         var tag = dataView.getUint16(offset, littleEndian);
69939         
69940         this.exif[tag] = this.getExifValue(
69941             dataView,
69942             tiffOffset,
69943             offset,
69944             dataView.getUint16(offset + 2, littleEndian), // tag type
69945             dataView.getUint32(offset + 4, littleEndian), // tag length
69946             littleEndian
69947         );
69948     },
69949     
69950     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
69951     {
69952         var tagType = Roo.dialog.UploadCropbox.exifTagTypes[type],
69953             tagSize,
69954             dataOffset,
69955             values,
69956             i,
69957             str,
69958             c;
69959     
69960         if (!tagType) {
69961             Roo.log('Invalid Exif data: Invalid tag type.');
69962             return;
69963         }
69964         
69965         tagSize = tagType.size * length;
69966         // Determine if the value is contained in the dataOffset bytes,
69967         // or if the value at the dataOffset is a pointer to the actual data:
69968         dataOffset = tagSize > 4 ?
69969                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
69970         if (dataOffset + tagSize > dataView.byteLength) {
69971             Roo.log('Invalid Exif data: Invalid data offset.');
69972             return;
69973         }
69974         if (length === 1) {
69975             return tagType.getValue(dataView, dataOffset, littleEndian);
69976         }
69977         values = [];
69978         for (i = 0; i < length; i += 1) {
69979             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
69980         }
69981         
69982         if (tagType.ascii) {
69983             str = '';
69984             // Concatenate the chars:
69985             for (i = 0; i < values.length; i += 1) {
69986                 c = values[i];
69987                 // Ignore the terminating NULL byte(s):
69988                 if (c === '\u0000') {
69989                     break;
69990                 }
69991                 str += c;
69992             }
69993             return str;
69994         }
69995         return values;
69996     }
69997     
69998 });
69999
70000 Roo.apply(Roo.dialog.UploadCropbox, {
70001     tags : {
70002         'Orientation': 0x0112
70003     },
70004     
70005     Orientation: {
70006             1: 0, //'top-left',
70007 //            2: 'top-right',
70008             3: 180, //'bottom-right',
70009 //            4: 'bottom-left',
70010 //            5: 'left-top',
70011             6: 90, //'right-top',
70012 //            7: 'right-bottom',
70013             8: 270 //'left-bottom'
70014     },
70015     
70016     exifTagTypes : {
70017         // byte, 8-bit unsigned int:
70018         1: {
70019             getValue: function (dataView, dataOffset) {
70020                 return dataView.getUint8(dataOffset);
70021             },
70022             size: 1
70023         },
70024         // ascii, 8-bit byte:
70025         2: {
70026             getValue: function (dataView, dataOffset) {
70027                 return String.fromCharCode(dataView.getUint8(dataOffset));
70028             },
70029             size: 1,
70030             ascii: true
70031         },
70032         // short, 16 bit int:
70033         3: {
70034             getValue: function (dataView, dataOffset, littleEndian) {
70035                 return dataView.getUint16(dataOffset, littleEndian);
70036             },
70037             size: 2
70038         },
70039         // long, 32 bit int:
70040         4: {
70041             getValue: function (dataView, dataOffset, littleEndian) {
70042                 return dataView.getUint32(dataOffset, littleEndian);
70043             },
70044             size: 4
70045         },
70046         // rational = two long values, first is numerator, second is denominator:
70047         5: {
70048             getValue: function (dataView, dataOffset, littleEndian) {
70049                 return dataView.getUint32(dataOffset, littleEndian) /
70050                     dataView.getUint32(dataOffset + 4, littleEndian);
70051             },
70052             size: 8
70053         },
70054         // slong, 32 bit signed int:
70055         9: {
70056             getValue: function (dataView, dataOffset, littleEndian) {
70057                 return dataView.getInt32(dataOffset, littleEndian);
70058             },
70059             size: 4
70060         },
70061         // srational, two slongs, first is numerator, second is denominator:
70062         10: {
70063             getValue: function (dataView, dataOffset, littleEndian) {
70064                 return dataView.getInt32(dataOffset, littleEndian) /
70065                     dataView.getInt32(dataOffset + 4, littleEndian);
70066             },
70067             size: 8
70068         }
70069     },
70070     
70071     footer : {
70072         STANDARD : [
70073             {
70074                 tag : 'div',
70075                 cls : 'btn-group roo-upload-cropbox-rotate-left',
70076                 action : 'rotate-left',
70077                 cn : [
70078                     {
70079                         tag : 'button',
70080                         cls : 'btn btn-default',
70081                         html : '<i class="fa fa-undo"></i>'
70082                     }
70083                 ]
70084             },
70085             {
70086                 tag : 'div',
70087                 cls : 'btn-group roo-upload-cropbox-picture',
70088                 action : 'picture',
70089                 cn : [
70090                     {
70091                         tag : 'button',
70092                         cls : 'btn btn-default',
70093                         html : '<i class="fa fa-picture-o"></i>'
70094                     }
70095                 ]
70096             },
70097             {
70098                 tag : 'div',
70099                 cls : 'btn-group roo-upload-cropbox-rotate-right',
70100                 action : 'rotate-right',
70101                 cn : [
70102                     {
70103                         tag : 'button',
70104                         cls : 'btn btn-default',
70105                         html : '<i class="fa fa-repeat"></i>'
70106                     }
70107                 ]
70108             }
70109         ],
70110         DOCUMENT : [
70111             {
70112                 tag : 'div',
70113                 cls : 'btn-group roo-upload-cropbox-rotate-left',
70114                 action : 'rotate-left',
70115                 cn : [
70116                     {
70117                         tag : 'button',
70118                         cls : 'btn btn-default',
70119                         html : '<i class="fa fa-undo"></i>'
70120                     }
70121                 ]
70122             },
70123             {
70124                 tag : 'div',
70125                 cls : 'btn-group roo-upload-cropbox-download',
70126                 action : 'download',
70127                 cn : [
70128                     {
70129                         tag : 'button',
70130                         cls : 'btn btn-default',
70131                         html : '<i class="fa fa-download"></i>'
70132                     }
70133                 ]
70134             },
70135             {
70136                 tag : 'div',
70137                 cls : 'btn-group roo-upload-cropbox-crop',
70138                 action : 'crop',
70139                 cn : [
70140                     {
70141                         tag : 'button',
70142                         cls : 'btn btn-default',
70143                         html : '<i class="fa fa-crop"></i>'
70144                     }
70145                 ]
70146             },
70147             {
70148                 tag : 'div',
70149                 cls : 'btn-group roo-upload-cropbox-trash',
70150                 action : 'trash',
70151                 cn : [
70152                     {
70153                         tag : 'button',
70154                         cls : 'btn btn-default',
70155                         html : '<i class="fa fa-trash"></i>'
70156                     }
70157                 ]
70158             },
70159             {
70160                 tag : 'div',
70161                 cls : 'btn-group roo-upload-cropbox-rotate-right',
70162                 action : 'rotate-right',
70163                 cn : [
70164                     {
70165                         tag : 'button',
70166                         cls : 'btn btn-default',
70167                         html : '<i class="fa fa-repeat"></i>'
70168                     }
70169                 ]
70170             }
70171         ],
70172         ROTATOR : [
70173             {
70174                 tag : 'div',
70175                 cls : 'btn-group roo-upload-cropbox-rotate-left',
70176                 action : 'rotate-left',
70177                 cn : [
70178                     {
70179                         tag : 'button',
70180                         cls : 'btn btn-default',
70181                         html : '<i class="fa fa-undo"></i>'
70182                     }
70183                 ]
70184             },
70185             {
70186                 tag : 'div',
70187                 cls : 'btn-group roo-upload-cropbox-rotate-right',
70188                 action : 'rotate-right',
70189                 cn : [
70190                     {
70191                         tag : 'button',
70192                         cls : 'btn btn-default',
70193                         html : '<i class="fa fa-repeat"></i>'
70194                     }
70195                 ]
70196             }
70197         ],
70198         CENTER : [
70199             {
70200                 tag : 'div',
70201                 cls : 'btn-group roo-upload-cropbox-center',
70202                 action : 'center',
70203                 cn : [
70204                     {
70205                         tag : 'button',
70206                         cls : 'btn btn-default',
70207                         html : 'CENTER'
70208                     }
70209                 ]
70210             }
70211         ]
70212     }
70213 });