Roo/form/ComboBoxArray.js
[roojs1] / roojs-ui-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  * These classes are derivatives of the similarly named classes in the YUI Library.
16  * The original license:
17  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
18  * Code licensed under the BSD License:
19  * http://developer.yahoo.net/yui/license.txt
20  */
21
22 (function() {
23
24 var Event=Roo.EventManager;
25 var Dom=Roo.lib.Dom;
26
27 /**
28  * @class Roo.dd.DragDrop
29  * @extends Roo.util.Observable
30  * Defines the interface and base operation of items that that can be
31  * dragged or can be drop targets.  It was designed to be extended, overriding
32  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
33  * Up to three html elements can be associated with a DragDrop instance:
34  * <ul>
35  * <li>linked element: the element that is passed into the constructor.
36  * This is the element which defines the boundaries for interaction with
37  * other DragDrop objects.</li>
38  * <li>handle element(s): The drag operation only occurs if the element that
39  * was clicked matches a handle element.  By default this is the linked
40  * element, but there are times that you will want only a portion of the
41  * linked element to initiate the drag operation, and the setHandleElId()
42  * method provides a way to define this.</li>
43  * <li>drag element: this represents the element that would be moved along
44  * with the cursor during a drag operation.  By default, this is the linked
45  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
46  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
47  * </li>
48  * </ul>
49  * This class should not be instantiated until the onload event to ensure that
50  * the associated elements are available.
51  * The following would define a DragDrop obj that would interact with any
52  * other DragDrop obj in the "group1" group:
53  * <pre>
54  *  dd = new Roo.dd.DragDrop("div1", "group1");
55  * </pre>
56  * Since none of the event handlers have been implemented, nothing would
57  * actually happen if you were to run the code above.  Normally you would
58  * override this class or one of the default implementations, but you can
59  * also override the methods you want on an instance of the class...
60  * <pre>
61  *  dd.onDragDrop = function(e, id) {
62  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
63  *  }
64  * </pre>
65  * @constructor
66  * @param {String} id of the element that is linked to this instance
67  * @param {String} sGroup the group of related DragDrop objects
68  * @param {object} config an object containing configurable attributes
69  *                Valid properties for DragDrop:
70  *                    padding, isTarget, maintainOffset, primaryButtonOnly
71  */
72 Roo.dd.DragDrop = function(id, sGroup, config) {
73     if (id) {
74         this.init(id, sGroup, config);
75     }
76     
77 };
78
79 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
80
81     /**
82      * The id of the element associated with this object.  This is what we
83      * refer to as the "linked element" because the size and position of
84      * this element is used to determine when the drag and drop objects have
85      * interacted.
86      * @property id
87      * @type String
88      */
89     id: null,
90
91     /**
92      * Configuration attributes passed into the constructor
93      * @property config
94      * @type object
95      */
96     config: null,
97
98     /**
99      * The id of the element that will be dragged.  By default this is same
100      * as the linked element , but could be changed to another element. Ex:
101      * Roo.dd.DDProxy
102      * @property dragElId
103      * @type String
104      * @private
105      */
106     dragElId: null,
107
108     /**
109      * the id of the element that initiates the drag operation.  By default
110      * this is the linked element, but could be changed to be a child of this
111      * element.  This lets us do things like only starting the drag when the
112      * header element within the linked html element is clicked.
113      * @property handleElId
114      * @type String
115      * @private
116      */
117     handleElId: null,
118
119     /**
120      * An associative array of HTML tags that will be ignored if clicked.
121      * @property invalidHandleTypes
122      * @type {string: string}
123      */
124     invalidHandleTypes: null,
125
126     /**
127      * An associative array of ids for elements that will be ignored if clicked
128      * @property invalidHandleIds
129      * @type {string: string}
130      */
131     invalidHandleIds: null,
132
133     /**
134      * An indexted array of css class names for elements that will be ignored
135      * if clicked.
136      * @property invalidHandleClasses
137      * @type string[]
138      */
139     invalidHandleClasses: null,
140
141     /**
142      * The linked element's absolute X position at the time the drag was
143      * started
144      * @property startPageX
145      * @type int
146      * @private
147      */
148     startPageX: 0,
149
150     /**
151      * The linked element's absolute X position at the time the drag was
152      * started
153      * @property startPageY
154      * @type int
155      * @private
156      */
157     startPageY: 0,
158
159     /**
160      * The group defines a logical collection of DragDrop objects that are
161      * related.  Instances only get events when interacting with other
162      * DragDrop object in the same group.  This lets us define multiple
163      * groups using a single DragDrop subclass if we want.
164      * @property groups
165      * @type {string: string}
166      */
167     groups: null,
168
169     /**
170      * Individual drag/drop instances can be locked.  This will prevent
171      * onmousedown start drag.
172      * @property locked
173      * @type boolean
174      * @private
175      */
176     locked: false,
177
178     /**
179      * Lock this instance
180      * @method lock
181      */
182     lock: function() { this.locked = true; },
183
184     /**
185      * Unlock this instace
186      * @method unlock
187      */
188     unlock: function() { this.locked = false; },
189
190     /**
191      * By default, all insances can be a drop target.  This can be disabled by
192      * setting isTarget to false.
193      * @method isTarget
194      * @type boolean
195      */
196     isTarget: true,
197
198     /**
199      * The padding configured for this drag and drop object for calculating
200      * the drop zone intersection with this object.
201      * @method padding
202      * @type int[]
203      */
204     padding: null,
205
206     /**
207      * Cached reference to the linked element
208      * @property _domRef
209      * @private
210      */
211     _domRef: null,
212
213     /**
214      * Internal typeof flag
215      * @property __ygDragDrop
216      * @private
217      */
218     __ygDragDrop: true,
219
220     /**
221      * Set to true when horizontal contraints are applied
222      * @property constrainX
223      * @type boolean
224      * @private
225      */
226     constrainX: false,
227
228     /**
229      * Set to true when vertical contraints are applied
230      * @property constrainY
231      * @type boolean
232      * @private
233      */
234     constrainY: false,
235
236     /**
237      * The left constraint
238      * @property minX
239      * @type int
240      * @private
241      */
242     minX: 0,
243
244     /**
245      * The right constraint
246      * @property maxX
247      * @type int
248      * @private
249      */
250     maxX: 0,
251
252     /**
253      * The up constraint
254      * @property minY
255      * @type int
256      * @type int
257      * @private
258      */
259     minY: 0,
260
261     /**
262      * The down constraint
263      * @property maxY
264      * @type int
265      * @private
266      */
267     maxY: 0,
268
269     /**
270      * Maintain offsets when we resetconstraints.  Set to true when you want
271      * the position of the element relative to its parent to stay the same
272      * when the page changes
273      *
274      * @property maintainOffset
275      * @type boolean
276      */
277     maintainOffset: false,
278
279     /**
280      * Array of pixel locations the element will snap to if we specified a
281      * horizontal graduation/interval.  This array is generated automatically
282      * when you define a tick interval.
283      * @property xTicks
284      * @type int[]
285      */
286     xTicks: null,
287
288     /**
289      * Array of pixel locations the element will snap to if we specified a
290      * vertical graduation/interval.  This array is generated automatically
291      * when you define a tick interval.
292      * @property yTicks
293      * @type int[]
294      */
295     yTicks: null,
296
297     /**
298      * By default the drag and drop instance will only respond to the primary
299      * button click (left button for a right-handed mouse).  Set to true to
300      * allow drag and drop to start with any mouse click that is propogated
301      * by the browser
302      * @property primaryButtonOnly
303      * @type boolean
304      */
305     primaryButtonOnly: true,
306
307     /**
308      * The availabe property is false until the linked dom element is accessible.
309      * @property available
310      * @type boolean
311      */
312     available: false,
313
314     /**
315      * By default, drags can only be initiated if the mousedown occurs in the
316      * region the linked element is.  This is done in part to work around a
317      * bug in some browsers that mis-report the mousedown if the previous
318      * mouseup happened outside of the window.  This property is set to true
319      * if outer handles are defined.
320      *
321      * @property hasOuterHandles
322      * @type boolean
323      * @default false
324      */
325     hasOuterHandles: false,
326
327     /**
328      * Code that executes immediately before the startDrag event
329      * @method b4StartDrag
330      * @private
331      */
332     b4StartDrag: function(x, y) { },
333
334     /**
335      * Abstract method called after a drag/drop object is clicked
336      * and the drag or mousedown time thresholds have beeen met.
337      * @method startDrag
338      * @param {int} X click location
339      * @param {int} Y click location
340      */
341     startDrag: function(x, y) { /* override this */ },
342
343     /**
344      * Code that executes immediately before the onDrag event
345      * @method b4Drag
346      * @private
347      */
348     b4Drag: function(e) { },
349
350     /**
351      * Abstract method called during the onMouseMove event while dragging an
352      * object.
353      * @method onDrag
354      * @param {Event} e the mousemove event
355      */
356     onDrag: function(e) { /* override this */ },
357
358     /**
359      * Abstract method called when this element fist begins hovering over
360      * another DragDrop obj
361      * @method onDragEnter
362      * @param {Event} e the mousemove event
363      * @param {String|DragDrop[]} id In POINT mode, the element
364      * id this is hovering over.  In INTERSECT mode, an array of one or more
365      * dragdrop items being hovered over.
366      */
367     onDragEnter: function(e, id) { /* override this */ },
368
369     /**
370      * Code that executes immediately before the onDragOver event
371      * @method b4DragOver
372      * @private
373      */
374     b4DragOver: function(e) { },
375
376     /**
377      * Abstract method called when this element is hovering over another
378      * DragDrop obj
379      * @method onDragOver
380      * @param {Event} e the mousemove event
381      * @param {String|DragDrop[]} id In POINT mode, the element
382      * id this is hovering over.  In INTERSECT mode, an array of dd items
383      * being hovered over.
384      */
385     onDragOver: function(e, id) { /* override this */ },
386
387     /**
388      * Code that executes immediately before the onDragOut event
389      * @method b4DragOut
390      * @private
391      */
392     b4DragOut: function(e) { },
393
394     /**
395      * Abstract method called when we are no longer hovering over an element
396      * @method onDragOut
397      * @param {Event} e the mousemove event
398      * @param {String|DragDrop[]} id In POINT mode, the element
399      * id this was hovering over.  In INTERSECT mode, an array of dd items
400      * that the mouse is no longer over.
401      */
402     onDragOut: function(e, id) { /* override this */ },
403
404     /**
405      * Code that executes immediately before the onDragDrop event
406      * @method b4DragDrop
407      * @private
408      */
409     b4DragDrop: function(e) { },
410
411     /**
412      * Abstract method called when this item is dropped on another DragDrop
413      * obj
414      * @method onDragDrop
415      * @param {Event} e the mouseup event
416      * @param {String|DragDrop[]} id In POINT mode, the element
417      * id this was dropped on.  In INTERSECT mode, an array of dd items this
418      * was dropped on.
419      */
420     onDragDrop: function(e, id) { /* override this */ },
421
422     /**
423      * Abstract method called when this item is dropped on an area with no
424      * drop target
425      * @method onInvalidDrop
426      * @param {Event} e the mouseup event
427      */
428     onInvalidDrop: function(e) { /* override this */ },
429
430     /**
431      * Code that executes immediately before the endDrag event
432      * @method b4EndDrag
433      * @private
434      */
435     b4EndDrag: function(e) { },
436
437     /**
438      * Fired when we are done dragging the object
439      * @method endDrag
440      * @param {Event} e the mouseup event
441      */
442     endDrag: function(e) { /* override this */ },
443
444     /**
445      * Code executed immediately before the onMouseDown event
446      * @method b4MouseDown
447      * @param {Event} e the mousedown event
448      * @private
449      */
450     b4MouseDown: function(e) {  },
451
452     /**
453      * Event handler that fires when a drag/drop obj gets a mousedown
454      * @method onMouseDown
455      * @param {Event} e the mousedown event
456      */
457     onMouseDown: function(e) { /* override this */ },
458
459     /**
460      * Event handler that fires when a drag/drop obj gets a mouseup
461      * @method onMouseUp
462      * @param {Event} e the mouseup event
463      */
464     onMouseUp: function(e) { /* override this */ },
465
466     /**
467      * Override the onAvailable method to do what is needed after the initial
468      * position was determined.
469      * @method onAvailable
470      */
471     onAvailable: function () {
472     },
473
474     /*
475      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
476      * @type Object
477      */
478     defaultPadding : {left:0, right:0, top:0, bottom:0},
479
480     /*
481      * Initializes the drag drop object's constraints to restrict movement to a certain element.
482  *
483  * Usage:
484  <pre><code>
485  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
486                 { dragElId: "existingProxyDiv" });
487  dd.startDrag = function(){
488      this.constrainTo("parent-id");
489  };
490  </code></pre>
491  * Or you can initalize it using the {@link Roo.Element} object:
492  <pre><code>
493  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
494      startDrag : function(){
495          this.constrainTo("parent-id");
496      }
497  });
498  </code></pre>
499      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
500      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
501      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
502      * an object containing the sides to pad. For example: {right:10, bottom:10}
503      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
504      */
505     constrainTo : function(constrainTo, pad, inContent){
506         if(typeof pad == "number"){
507             pad = {left: pad, right:pad, top:pad, bottom:pad};
508         }
509         pad = pad || this.defaultPadding;
510         var b = Roo.get(this.getEl()).getBox();
511         var ce = Roo.get(constrainTo);
512         var s = ce.getScroll();
513         var c, cd = ce.dom;
514         if(cd == document.body){
515             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
516         }else{
517             xy = ce.getXY();
518             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
519         }
520
521
522         var topSpace = b.y - c.y;
523         var leftSpace = b.x - c.x;
524
525         this.resetConstraints();
526         this.setXConstraint(leftSpace - (pad.left||0), // left
527                 c.width - leftSpace - b.width - (pad.right||0) //right
528         );
529         this.setYConstraint(topSpace - (pad.top||0), //top
530                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
531         );
532     },
533
534     /**
535      * Returns a reference to the linked element
536      * @method getEl
537      * @return {HTMLElement} the html element
538      */
539     getEl: function() {
540         if (!this._domRef) {
541             this._domRef = Roo.getDom(this.id);
542         }
543
544         return this._domRef;
545     },
546
547     /**
548      * Returns a reference to the actual element to drag.  By default this is
549      * the same as the html element, but it can be assigned to another
550      * element. An example of this can be found in Roo.dd.DDProxy
551      * @method getDragEl
552      * @return {HTMLElement} the html element
553      */
554     getDragEl: function() {
555         return Roo.getDom(this.dragElId);
556     },
557
558     /**
559      * Sets up the DragDrop object.  Must be called in the constructor of any
560      * Roo.dd.DragDrop subclass
561      * @method init
562      * @param id the id of the linked element
563      * @param {String} sGroup the group of related items
564      * @param {object} config configuration attributes
565      */
566     init: function(id, sGroup, config) {
567         this.initTarget(id, sGroup, config);
568         Event.on(this.id, "mousedown", this.handleMouseDown, this);
569         // Event.on(this.id, "selectstart", Event.preventDefault);
570     },
571
572     /**
573      * Initializes Targeting functionality only... the object does not
574      * get a mousedown handler.
575      * @method initTarget
576      * @param id the id of the linked element
577      * @param {String} sGroup the group of related items
578      * @param {object} config configuration attributes
579      */
580     initTarget: function(id, sGroup, config) {
581
582         // configuration attributes
583         this.config = config || {};
584
585         // create a local reference to the drag and drop manager
586         this.DDM = Roo.dd.DDM;
587         // initialize the groups array
588         this.groups = {};
589
590         // assume that we have an element reference instead of an id if the
591         // parameter is not a string
592         if (typeof id !== "string") {
593             id = Roo.id(id);
594         }
595
596         // set the id
597         this.id = id;
598
599         // add to an interaction group
600         this.addToGroup((sGroup) ? sGroup : "default");
601
602         // We don't want to register this as the handle with the manager
603         // so we just set the id rather than calling the setter.
604         this.handleElId = id;
605
606         // the linked element is the element that gets dragged by default
607         this.setDragElId(id);
608
609         // by default, clicked anchors will not start drag operations.
610         this.invalidHandleTypes = { A: "A" };
611         this.invalidHandleIds = {};
612         this.invalidHandleClasses = [];
613
614         this.applyConfig();
615
616         this.handleOnAvailable();
617     },
618
619     /**
620      * Applies the configuration parameters that were passed into the constructor.
621      * This is supposed to happen at each level through the inheritance chain.  So
622      * a DDProxy implentation will execute apply config on DDProxy, DD, and
623      * DragDrop in order to get all of the parameters that are available in
624      * each object.
625      * @method applyConfig
626      */
627     applyConfig: function() {
628
629         // configurable properties:
630         //    padding, isTarget, maintainOffset, primaryButtonOnly
631         this.padding           = this.config.padding || [0, 0, 0, 0];
632         this.isTarget          = (this.config.isTarget !== false);
633         this.maintainOffset    = (this.config.maintainOffset);
634         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
635
636     },
637
638     /**
639      * Executed when the linked element is available
640      * @method handleOnAvailable
641      * @private
642      */
643     handleOnAvailable: function() {
644         this.available = true;
645         this.resetConstraints();
646         this.onAvailable();
647     },
648
649      /**
650      * Configures the padding for the target zone in px.  Effectively expands
651      * (or reduces) the virtual object size for targeting calculations.
652      * Supports css-style shorthand; if only one parameter is passed, all sides
653      * will have that padding, and if only two are passed, the top and bottom
654      * will have the first param, the left and right the second.
655      * @method setPadding
656      * @param {int} iTop    Top pad
657      * @param {int} iRight  Right pad
658      * @param {int} iBot    Bot pad
659      * @param {int} iLeft   Left pad
660      */
661     setPadding: function(iTop, iRight, iBot, iLeft) {
662         // this.padding = [iLeft, iRight, iTop, iBot];
663         if (!iRight && 0 !== iRight) {
664             this.padding = [iTop, iTop, iTop, iTop];
665         } else if (!iBot && 0 !== iBot) {
666             this.padding = [iTop, iRight, iTop, iRight];
667         } else {
668             this.padding = [iTop, iRight, iBot, iLeft];
669         }
670     },
671
672     /**
673      * Stores the initial placement of the linked element.
674      * @method setInitialPosition
675      * @param {int} diffX   the X offset, default 0
676      * @param {int} diffY   the Y offset, default 0
677      */
678     setInitPosition: function(diffX, diffY) {
679         var el = this.getEl();
680
681         if (!this.DDM.verifyEl(el)) {
682             return;
683         }
684
685         var dx = diffX || 0;
686         var dy = diffY || 0;
687
688         var p = Dom.getXY( el );
689
690         this.initPageX = p[0] - dx;
691         this.initPageY = p[1] - dy;
692
693         this.lastPageX = p[0];
694         this.lastPageY = p[1];
695
696
697         this.setStartPosition(p);
698     },
699
700     /**
701      * Sets the start position of the element.  This is set when the obj
702      * is initialized, the reset when a drag is started.
703      * @method setStartPosition
704      * @param pos current position (from previous lookup)
705      * @private
706      */
707     setStartPosition: function(pos) {
708         var p = pos || Dom.getXY( this.getEl() );
709         this.deltaSetXY = null;
710
711         this.startPageX = p[0];
712         this.startPageY = p[1];
713     },
714
715     /**
716      * Add this instance to a group of related drag/drop objects.  All
717      * instances belong to at least one group, and can belong to as many
718      * groups as needed.
719      * @method addToGroup
720      * @param sGroup {string} the name of the group
721      */
722     addToGroup: function(sGroup) {
723         this.groups[sGroup] = true;
724         this.DDM.regDragDrop(this, sGroup);
725     },
726
727     /**
728      * Remove's this instance from the supplied interaction group
729      * @method removeFromGroup
730      * @param {string}  sGroup  The group to drop
731      */
732     removeFromGroup: function(sGroup) {
733         if (this.groups[sGroup]) {
734             delete this.groups[sGroup];
735         }
736
737         this.DDM.removeDDFromGroup(this, sGroup);
738     },
739
740     /**
741      * Allows you to specify that an element other than the linked element
742      * will be moved with the cursor during a drag
743      * @method setDragElId
744      * @param id {string} the id of the element that will be used to initiate the drag
745      */
746     setDragElId: function(id) {
747         this.dragElId = id;
748     },
749
750     /**
751      * Allows you to specify a child of the linked element that should be
752      * used to initiate the drag operation.  An example of this would be if
753      * you have a content div with text and links.  Clicking anywhere in the
754      * content area would normally start the drag operation.  Use this method
755      * to specify that an element inside of the content div is the element
756      * that starts the drag operation.
757      * @method setHandleElId
758      * @param id {string} the id of the element that will be used to
759      * initiate the drag.
760      */
761     setHandleElId: function(id) {
762         if (typeof id !== "string") {
763             id = Roo.id(id);
764         }
765         this.handleElId = id;
766         this.DDM.regHandle(this.id, id);
767     },
768
769     /**
770      * Allows you to set an element outside of the linked element as a drag
771      * handle
772      * @method setOuterHandleElId
773      * @param id the id of the element that will be used to initiate the drag
774      */
775     setOuterHandleElId: function(id) {
776         if (typeof id !== "string") {
777             id = Roo.id(id);
778         }
779         Event.on(id, "mousedown",
780                 this.handleMouseDown, this);
781         this.setHandleElId(id);
782
783         this.hasOuterHandles = true;
784     },
785
786     /**
787      * Remove all drag and drop hooks for this element
788      * @method unreg
789      */
790     unreg: function() {
791         Event.un(this.id, "mousedown",
792                 this.handleMouseDown);
793         this._domRef = null;
794         this.DDM._remove(this);
795     },
796
797     destroy : function(){
798         this.unreg();
799     },
800
801     /**
802      * Returns true if this instance is locked, or the drag drop mgr is locked
803      * (meaning that all drag/drop is disabled on the page.)
804      * @method isLocked
805      * @return {boolean} true if this obj or all drag/drop is locked, else
806      * false
807      */
808     isLocked: function() {
809         return (this.DDM.isLocked() || this.locked);
810     },
811
812     /**
813      * Fired when this object is clicked
814      * @method handleMouseDown
815      * @param {Event} e
816      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
817      * @private
818      */
819     handleMouseDown: function(e, oDD){
820         if (this.primaryButtonOnly && e.button != 0) {
821             return;
822         }
823
824         if (this.isLocked()) {
825             return;
826         }
827
828         this.DDM.refreshCache(this.groups);
829
830         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
831         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
832         } else {
833             if (this.clickValidator(e)) {
834
835                 // set the initial element position
836                 this.setStartPosition();
837
838
839                 this.b4MouseDown(e);
840                 this.onMouseDown(e);
841
842                 this.DDM.handleMouseDown(e, this);
843
844                 this.DDM.stopEvent(e);
845             } else {
846
847
848             }
849         }
850     },
851
852     clickValidator: function(e) {
853         var target = e.getTarget();
854         return ( this.isValidHandleChild(target) &&
855                     (this.id == this.handleElId ||
856                         this.DDM.handleWasClicked(target, this.id)) );
857     },
858
859     /**
860      * Allows you to specify a tag name that should not start a drag operation
861      * when clicked.  This is designed to facilitate embedding links within a
862      * drag handle that do something other than start the drag.
863      * @method addInvalidHandleType
864      * @param {string} tagName the type of element to exclude
865      */
866     addInvalidHandleType: function(tagName) {
867         var type = tagName.toUpperCase();
868         this.invalidHandleTypes[type] = type;
869     },
870
871     /**
872      * Lets you to specify an element id for a child of a drag handle
873      * that should not initiate a drag
874      * @method addInvalidHandleId
875      * @param {string} id the element id of the element you wish to ignore
876      */
877     addInvalidHandleId: function(id) {
878         if (typeof id !== "string") {
879             id = Roo.id(id);
880         }
881         this.invalidHandleIds[id] = id;
882     },
883
884     /**
885      * Lets you specify a css class of elements that will not initiate a drag
886      * @method addInvalidHandleClass
887      * @param {string} cssClass the class of the elements you wish to ignore
888      */
889     addInvalidHandleClass: function(cssClass) {
890         this.invalidHandleClasses.push(cssClass);
891     },
892
893     /**
894      * Unsets an excluded tag name set by addInvalidHandleType
895      * @method removeInvalidHandleType
896      * @param {string} tagName the type of element to unexclude
897      */
898     removeInvalidHandleType: function(tagName) {
899         var type = tagName.toUpperCase();
900         // this.invalidHandleTypes[type] = null;
901         delete this.invalidHandleTypes[type];
902     },
903
904     /**
905      * Unsets an invalid handle id
906      * @method removeInvalidHandleId
907      * @param {string} id the id of the element to re-enable
908      */
909     removeInvalidHandleId: function(id) {
910         if (typeof id !== "string") {
911             id = Roo.id(id);
912         }
913         delete this.invalidHandleIds[id];
914     },
915
916     /**
917      * Unsets an invalid css class
918      * @method removeInvalidHandleClass
919      * @param {string} cssClass the class of the element(s) you wish to
920      * re-enable
921      */
922     removeInvalidHandleClass: function(cssClass) {
923         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
924             if (this.invalidHandleClasses[i] == cssClass) {
925                 delete this.invalidHandleClasses[i];
926             }
927         }
928     },
929
930     /**
931      * Checks the tag exclusion list to see if this click should be ignored
932      * @method isValidHandleChild
933      * @param {HTMLElement} node the HTMLElement to evaluate
934      * @return {boolean} true if this is a valid tag type, false if not
935      */
936     isValidHandleChild: function(node) {
937
938         var valid = true;
939         // var n = (node.nodeName == "#text") ? node.parentNode : node;
940         var nodeName;
941         try {
942             nodeName = node.nodeName.toUpperCase();
943         } catch(e) {
944             nodeName = node.nodeName;
945         }
946         valid = valid && !this.invalidHandleTypes[nodeName];
947         valid = valid && !this.invalidHandleIds[node.id];
948
949         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
950             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
951         }
952
953
954         return valid;
955
956     },
957
958     /**
959      * Create the array of horizontal tick marks if an interval was specified
960      * in setXConstraint().
961      * @method setXTicks
962      * @private
963      */
964     setXTicks: function(iStartX, iTickSize) {
965         this.xTicks = [];
966         this.xTickSize = iTickSize;
967
968         var tickMap = {};
969
970         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
971             if (!tickMap[i]) {
972                 this.xTicks[this.xTicks.length] = i;
973                 tickMap[i] = true;
974             }
975         }
976
977         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
978             if (!tickMap[i]) {
979                 this.xTicks[this.xTicks.length] = i;
980                 tickMap[i] = true;
981             }
982         }
983
984         this.xTicks.sort(this.DDM.numericSort) ;
985     },
986
987     /**
988      * Create the array of vertical tick marks if an interval was specified in
989      * setYConstraint().
990      * @method setYTicks
991      * @private
992      */
993     setYTicks: function(iStartY, iTickSize) {
994         this.yTicks = [];
995         this.yTickSize = iTickSize;
996
997         var tickMap = {};
998
999         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
1000             if (!tickMap[i]) {
1001                 this.yTicks[this.yTicks.length] = i;
1002                 tickMap[i] = true;
1003             }
1004         }
1005
1006         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
1007             if (!tickMap[i]) {
1008                 this.yTicks[this.yTicks.length] = i;
1009                 tickMap[i] = true;
1010             }
1011         }
1012
1013         this.yTicks.sort(this.DDM.numericSort) ;
1014     },
1015
1016     /**
1017      * By default, the element can be dragged any place on the screen.  Use
1018      * this method to limit the horizontal travel of the element.  Pass in
1019      * 0,0 for the parameters if you want to lock the drag to the y axis.
1020      * @method setXConstraint
1021      * @param {int} iLeft the number of pixels the element can move to the left
1022      * @param {int} iRight the number of pixels the element can move to the
1023      * right
1024      * @param {int} iTickSize optional parameter for specifying that the
1025      * element
1026      * should move iTickSize pixels at a time.
1027      */
1028     setXConstraint: function(iLeft, iRight, iTickSize) {
1029         this.leftConstraint = iLeft;
1030         this.rightConstraint = iRight;
1031
1032         this.minX = this.initPageX - iLeft;
1033         this.maxX = this.initPageX + iRight;
1034         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
1035
1036         this.constrainX = true;
1037     },
1038
1039     /**
1040      * Clears any constraints applied to this instance.  Also clears ticks
1041      * since they can't exist independent of a constraint at this time.
1042      * @method clearConstraints
1043      */
1044     clearConstraints: function() {
1045         this.constrainX = false;
1046         this.constrainY = false;
1047         this.clearTicks();
1048     },
1049
1050     /**
1051      * Clears any tick interval defined for this instance
1052      * @method clearTicks
1053      */
1054     clearTicks: function() {
1055         this.xTicks = null;
1056         this.yTicks = null;
1057         this.xTickSize = 0;
1058         this.yTickSize = 0;
1059     },
1060
1061     /**
1062      * By default, the element can be dragged any place on the screen.  Set
1063      * this to limit the vertical travel of the element.  Pass in 0,0 for the
1064      * parameters if you want to lock the drag to the x axis.
1065      * @method setYConstraint
1066      * @param {int} iUp the number of pixels the element can move up
1067      * @param {int} iDown the number of pixels the element can move down
1068      * @param {int} iTickSize optional parameter for specifying that the
1069      * element should move iTickSize pixels at a time.
1070      */
1071     setYConstraint: function(iUp, iDown, iTickSize) {
1072         this.topConstraint = iUp;
1073         this.bottomConstraint = iDown;
1074
1075         this.minY = this.initPageY - iUp;
1076         this.maxY = this.initPageY + iDown;
1077         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
1078
1079         this.constrainY = true;
1080
1081     },
1082
1083     /**
1084      * resetConstraints must be called if you manually reposition a dd element.
1085      * @method resetConstraints
1086      * @param {boolean} maintainOffset
1087      */
1088     resetConstraints: function() {
1089
1090
1091         // Maintain offsets if necessary
1092         if (this.initPageX || this.initPageX === 0) {
1093             // figure out how much this thing has moved
1094             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
1095             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
1096
1097             this.setInitPosition(dx, dy);
1098
1099         // This is the first time we have detected the element's position
1100         } else {
1101             this.setInitPosition();
1102         }
1103
1104         if (this.constrainX) {
1105             this.setXConstraint( this.leftConstraint,
1106                                  this.rightConstraint,
1107                                  this.xTickSize        );
1108         }
1109
1110         if (this.constrainY) {
1111             this.setYConstraint( this.topConstraint,
1112                                  this.bottomConstraint,
1113                                  this.yTickSize         );
1114         }
1115     },
1116
1117     /**
1118      * Normally the drag element is moved pixel by pixel, but we can specify
1119      * that it move a number of pixels at a time.  This method resolves the
1120      * location when we have it set up like this.
1121      * @method getTick
1122      * @param {int} val where we want to place the object
1123      * @param {int[]} tickArray sorted array of valid points
1124      * @return {int} the closest tick
1125      * @private
1126      */
1127     getTick: function(val, tickArray) {
1128
1129         if (!tickArray) {
1130             // If tick interval is not defined, it is effectively 1 pixel,
1131             // so we return the value passed to us.
1132             return val;
1133         } else if (tickArray[0] >= val) {
1134             // The value is lower than the first tick, so we return the first
1135             // tick.
1136             return tickArray[0];
1137         } else {
1138             for (var i=0, len=tickArray.length; i<len; ++i) {
1139                 var next = i + 1;
1140                 if (tickArray[next] && tickArray[next] >= val) {
1141                     var diff1 = val - tickArray[i];
1142                     var diff2 = tickArray[next] - val;
1143                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
1144                 }
1145             }
1146
1147             // The value is larger than the last tick, so we return the last
1148             // tick.
1149             return tickArray[tickArray.length - 1];
1150         }
1151     },
1152
1153     /**
1154      * toString method
1155      * @method toString
1156      * @return {string} string representation of the dd obj
1157      */
1158     toString: function() {
1159         return ("DragDrop " + this.id);
1160     }
1161
1162 });
1163
1164 })();
1165 /*
1166  * Based on:
1167  * Ext JS Library 1.1.1
1168  * Copyright(c) 2006-2007, Ext JS, LLC.
1169  *
1170  * Originally Released Under LGPL - original licence link has changed is not relivant.
1171  *
1172  * Fork - LGPL
1173  * <script type="text/javascript">
1174  */
1175
1176
1177 /**
1178  * The drag and drop utility provides a framework for building drag and drop
1179  * applications.  In addition to enabling drag and drop for specific elements,
1180  * the drag and drop elements are tracked by the manager class, and the
1181  * interactions between the various elements are tracked during the drag and
1182  * the implementing code is notified about these important moments.
1183  */
1184
1185 // Only load the library once.  Rewriting the manager class would orphan
1186 // existing drag and drop instances.
1187 if (!Roo.dd.DragDropMgr) {
1188
1189 /**
1190  * @class Roo.dd.DragDropMgr
1191  * DragDropMgr is a singleton that tracks the element interaction for
1192  * all DragDrop items in the window.  Generally, you will not call
1193  * this class directly, but it does have helper methods that could
1194  * be useful in your DragDrop implementations.
1195  * @singleton
1196  */
1197 Roo.dd.DragDropMgr = function() {
1198
1199     var Event = Roo.EventManager;
1200
1201     return {
1202
1203         /**
1204          * Two dimensional Array of registered DragDrop objects.  The first
1205          * dimension is the DragDrop item group, the second the DragDrop
1206          * object.
1207          * @property ids
1208          * @type {string: string}
1209          * @private
1210          * @static
1211          */
1212         ids: {},
1213
1214         /**
1215          * Array of element ids defined as drag handles.  Used to determine
1216          * if the element that generated the mousedown event is actually the
1217          * handle and not the html element itself.
1218          * @property handleIds
1219          * @type {string: string}
1220          * @private
1221          * @static
1222          */
1223         handleIds: {},
1224
1225         /**
1226          * the DragDrop object that is currently being dragged
1227          * @property dragCurrent
1228          * @type DragDrop
1229          * @private
1230          * @static
1231          **/
1232         dragCurrent: null,
1233
1234         /**
1235          * the DragDrop object(s) that are being hovered over
1236          * @property dragOvers
1237          * @type Array
1238          * @private
1239          * @static
1240          */
1241         dragOvers: {},
1242
1243         /**
1244          * the X distance between the cursor and the object being dragged
1245          * @property deltaX
1246          * @type int
1247          * @private
1248          * @static
1249          */
1250         deltaX: 0,
1251
1252         /**
1253          * the Y distance between the cursor and the object being dragged
1254          * @property deltaY
1255          * @type int
1256          * @private
1257          * @static
1258          */
1259         deltaY: 0,
1260
1261         /**
1262          * Flag to determine if we should prevent the default behavior of the
1263          * events we define. By default this is true, but this can be set to
1264          * false if you need the default behavior (not recommended)
1265          * @property preventDefault
1266          * @type boolean
1267          * @static
1268          */
1269         preventDefault: true,
1270
1271         /**
1272          * Flag to determine if we should stop the propagation of the events
1273          * we generate. This is true by default but you may want to set it to
1274          * false if the html element contains other features that require the
1275          * mouse click.
1276          * @property stopPropagation
1277          * @type boolean
1278          * @static
1279          */
1280         stopPropagation: true,
1281
1282         /**
1283          * Internal flag that is set to true when drag and drop has been
1284          * intialized
1285          * @property initialized
1286          * @private
1287          * @static
1288          */
1289         initalized: false,
1290
1291         /**
1292          * All drag and drop can be disabled.
1293          * @property locked
1294          * @private
1295          * @static
1296          */
1297         locked: false,
1298
1299         /**
1300          * Called the first time an element is registered.
1301          * @method init
1302          * @private
1303          * @static
1304          */
1305         init: function() {
1306             this.initialized = true;
1307         },
1308
1309         /**
1310          * In point mode, drag and drop interaction is defined by the
1311          * location of the cursor during the drag/drop
1312          * @property POINT
1313          * @type int
1314          * @static
1315          */
1316         POINT: 0,
1317
1318         /**
1319          * In intersect mode, drag and drop interactio nis defined by the
1320          * overlap of two or more drag and drop objects.
1321          * @property INTERSECT
1322          * @type int
1323          * @static
1324          */
1325         INTERSECT: 1,
1326
1327         /**
1328          * The current drag and drop mode.  Default: POINT
1329          * @property mode
1330          * @type int
1331          * @static
1332          */
1333         mode: 0,
1334
1335         /**
1336          * Runs method on all drag and drop objects
1337          * @method _execOnAll
1338          * @private
1339          * @static
1340          */
1341         _execOnAll: function(sMethod, args) {
1342             for (var i in this.ids) {
1343                 for (var j in this.ids[i]) {
1344                     var oDD = this.ids[i][j];
1345                     if (! this.isTypeOfDD(oDD)) {
1346                         continue;
1347                     }
1348                     oDD[sMethod].apply(oDD, args);
1349                 }
1350             }
1351         },
1352
1353         /**
1354          * Drag and drop initialization.  Sets up the global event handlers
1355          * @method _onLoad
1356          * @private
1357          * @static
1358          */
1359         _onLoad: function() {
1360
1361             this.init();
1362
1363
1364             Event.on(document, "mouseup",   this.handleMouseUp, this, true);
1365             Event.on(document, "mousemove", this.handleMouseMove, this, true);
1366             Event.on(window,   "unload",    this._onUnload, this, true);
1367             Event.on(window,   "resize",    this._onResize, this, true);
1368             // Event.on(window,   "mouseout",    this._test);
1369
1370         },
1371
1372         /**
1373          * Reset constraints on all drag and drop objs
1374          * @method _onResize
1375          * @private
1376          * @static
1377          */
1378         _onResize: function(e) {
1379             this._execOnAll("resetConstraints", []);
1380         },
1381
1382         /**
1383          * Lock all drag and drop functionality
1384          * @method lock
1385          * @static
1386          */
1387         lock: function() { this.locked = true; },
1388
1389         /**
1390          * Unlock all drag and drop functionality
1391          * @method unlock
1392          * @static
1393          */
1394         unlock: function() { this.locked = false; },
1395
1396         /**
1397          * Is drag and drop locked?
1398          * @method isLocked
1399          * @return {boolean} True if drag and drop is locked, false otherwise.
1400          * @static
1401          */
1402         isLocked: function() { return this.locked; },
1403
1404         /**
1405          * Location cache that is set for all drag drop objects when a drag is
1406          * initiated, cleared when the drag is finished.
1407          * @property locationCache
1408          * @private
1409          * @static
1410          */
1411         locationCache: {},
1412
1413         /**
1414          * Set useCache to false if you want to force object the lookup of each
1415          * drag and drop linked element constantly during a drag.
1416          * @property useCache
1417          * @type boolean
1418          * @static
1419          */
1420         useCache: true,
1421
1422         /**
1423          * The number of pixels that the mouse needs to move after the
1424          * mousedown before the drag is initiated.  Default=3;
1425          * @property clickPixelThresh
1426          * @type int
1427          * @static
1428          */
1429         clickPixelThresh: 3,
1430
1431         /**
1432          * The number of milliseconds after the mousedown event to initiate the
1433          * drag if we don't get a mouseup event. Default=1000
1434          * @property clickTimeThresh
1435          * @type int
1436          * @static
1437          */
1438         clickTimeThresh: 350,
1439
1440         /**
1441          * Flag that indicates that either the drag pixel threshold or the
1442          * mousdown time threshold has been met
1443          * @property dragThreshMet
1444          * @type boolean
1445          * @private
1446          * @static
1447          */
1448         dragThreshMet: false,
1449
1450         /**
1451          * Timeout used for the click time threshold
1452          * @property clickTimeout
1453          * @type Object
1454          * @private
1455          * @static
1456          */
1457         clickTimeout: null,
1458
1459         /**
1460          * The X position of the mousedown event stored for later use when a
1461          * drag threshold is met.
1462          * @property startX
1463          * @type int
1464          * @private
1465          * @static
1466          */
1467         startX: 0,
1468
1469         /**
1470          * The Y position of the mousedown event stored for later use when a
1471          * drag threshold is met.
1472          * @property startY
1473          * @type int
1474          * @private
1475          * @static
1476          */
1477         startY: 0,
1478
1479         /**
1480          * Each DragDrop instance must be registered with the DragDropMgr.
1481          * This is executed in DragDrop.init()
1482          * @method regDragDrop
1483          * @param {DragDrop} oDD the DragDrop object to register
1484          * @param {String} sGroup the name of the group this element belongs to
1485          * @static
1486          */
1487         regDragDrop: function(oDD, sGroup) {
1488             if (!this.initialized) { this.init(); }
1489
1490             if (!this.ids[sGroup]) {
1491                 this.ids[sGroup] = {};
1492             }
1493             this.ids[sGroup][oDD.id] = oDD;
1494         },
1495
1496         /**
1497          * Removes the supplied dd instance from the supplied group. Executed
1498          * by DragDrop.removeFromGroup, so don't call this function directly.
1499          * @method removeDDFromGroup
1500          * @private
1501          * @static
1502          */
1503         removeDDFromGroup: function(oDD, sGroup) {
1504             if (!this.ids[sGroup]) {
1505                 this.ids[sGroup] = {};
1506             }
1507
1508             var obj = this.ids[sGroup];
1509             if (obj && obj[oDD.id]) {
1510                 delete obj[oDD.id];
1511             }
1512         },
1513
1514         /**
1515          * Unregisters a drag and drop item.  This is executed in
1516          * DragDrop.unreg, use that method instead of calling this directly.
1517          * @method _remove
1518          * @private
1519          * @static
1520          */
1521         _remove: function(oDD) {
1522             for (var g in oDD.groups) {
1523                 if (g && this.ids[g][oDD.id]) {
1524                     delete this.ids[g][oDD.id];
1525                 }
1526             }
1527             delete this.handleIds[oDD.id];
1528         },
1529
1530         /**
1531          * Each DragDrop handle element must be registered.  This is done
1532          * automatically when executing DragDrop.setHandleElId()
1533          * @method regHandle
1534          * @param {String} sDDId the DragDrop id this element is a handle for
1535          * @param {String} sHandleId the id of the element that is the drag
1536          * handle
1537          * @static
1538          */
1539         regHandle: function(sDDId, sHandleId) {
1540             if (!this.handleIds[sDDId]) {
1541                 this.handleIds[sDDId] = {};
1542             }
1543             this.handleIds[sDDId][sHandleId] = sHandleId;
1544         },
1545
1546         /**
1547          * Utility function to determine if a given element has been
1548          * registered as a drag drop item.
1549          * @method isDragDrop
1550          * @param {String} id the element id to check
1551          * @return {boolean} true if this element is a DragDrop item,
1552          * false otherwise
1553          * @static
1554          */
1555         isDragDrop: function(id) {
1556             return ( this.getDDById(id) ) ? true : false;
1557         },
1558
1559         /**
1560          * Returns the drag and drop instances that are in all groups the
1561          * passed in instance belongs to.
1562          * @method getRelated
1563          * @param {DragDrop} p_oDD the obj to get related data for
1564          * @param {boolean} bTargetsOnly if true, only return targetable objs
1565          * @return {DragDrop[]} the related instances
1566          * @static
1567          */
1568         getRelated: function(p_oDD, bTargetsOnly) {
1569             var oDDs = [];
1570             for (var i in p_oDD.groups) {
1571                 for (j in this.ids[i]) {
1572                     var dd = this.ids[i][j];
1573                     if (! this.isTypeOfDD(dd)) {
1574                         continue;
1575                     }
1576                     if (!bTargetsOnly || dd.isTarget) {
1577                         oDDs[oDDs.length] = dd;
1578                     }
1579                 }
1580             }
1581
1582             return oDDs;
1583         },
1584
1585         /**
1586          * Returns true if the specified dd target is a legal target for
1587          * the specifice drag obj
1588          * @method isLegalTarget
1589          * @param {DragDrop} the drag obj
1590          * @param {DragDrop} the target
1591          * @return {boolean} true if the target is a legal target for the
1592          * dd obj
1593          * @static
1594          */
1595         isLegalTarget: function (oDD, oTargetDD) {
1596             var targets = this.getRelated(oDD, true);
1597             for (var i=0, len=targets.length;i<len;++i) {
1598                 if (targets[i].id == oTargetDD.id) {
1599                     return true;
1600                 }
1601             }
1602
1603             return false;
1604         },
1605
1606         /**
1607          * My goal is to be able to transparently determine if an object is
1608          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
1609          * returns "object", oDD.constructor.toString() always returns
1610          * "DragDrop" and not the name of the subclass.  So for now it just
1611          * evaluates a well-known variable in DragDrop.
1612          * @method isTypeOfDD
1613          * @param {Object} the object to evaluate
1614          * @return {boolean} true if typeof oDD = DragDrop
1615          * @static
1616          */
1617         isTypeOfDD: function (oDD) {
1618             return (oDD && oDD.__ygDragDrop);
1619         },
1620
1621         /**
1622          * Utility function to determine if a given element has been
1623          * registered as a drag drop handle for the given Drag Drop object.
1624          * @method isHandle
1625          * @param {String} id the element id to check
1626          * @return {boolean} true if this element is a DragDrop handle, false
1627          * otherwise
1628          * @static
1629          */
1630         isHandle: function(sDDId, sHandleId) {
1631             return ( this.handleIds[sDDId] &&
1632                             this.handleIds[sDDId][sHandleId] );
1633         },
1634
1635         /**
1636          * Returns the DragDrop instance for a given id
1637          * @method getDDById
1638          * @param {String} id the id of the DragDrop object
1639          * @return {DragDrop} the drag drop object, null if it is not found
1640          * @static
1641          */
1642         getDDById: function(id) {
1643             for (var i in this.ids) {
1644                 if (this.ids[i][id]) {
1645                     return this.ids[i][id];
1646                 }
1647             }
1648             return null;
1649         },
1650
1651         /**
1652          * Fired after a registered DragDrop object gets the mousedown event.
1653          * Sets up the events required to track the object being dragged
1654          * @method handleMouseDown
1655          * @param {Event} e the event
1656          * @param oDD the DragDrop object being dragged
1657          * @private
1658          * @static
1659          */
1660         handleMouseDown: function(e, oDD) {
1661             if(Roo.QuickTips){
1662                 Roo.QuickTips.disable();
1663             }
1664             this.currentTarget = e.getTarget();
1665
1666             this.dragCurrent = oDD;
1667
1668             var el = oDD.getEl();
1669
1670             // track start position
1671             this.startX = e.getPageX();
1672             this.startY = e.getPageY();
1673
1674             this.deltaX = this.startX - el.offsetLeft;
1675             this.deltaY = this.startY - el.offsetTop;
1676
1677             this.dragThreshMet = false;
1678
1679             this.clickTimeout = setTimeout(
1680                     function() {
1681                         var DDM = Roo.dd.DDM;
1682                         DDM.startDrag(DDM.startX, DDM.startY);
1683                     },
1684                     this.clickTimeThresh );
1685         },
1686
1687         /**
1688          * Fired when either the drag pixel threshol or the mousedown hold
1689          * time threshold has been met.
1690          * @method startDrag
1691          * @param x {int} the X position of the original mousedown
1692          * @param y {int} the Y position of the original mousedown
1693          * @static
1694          */
1695         startDrag: function(x, y) {
1696             clearTimeout(this.clickTimeout);
1697             if (this.dragCurrent) {
1698                 this.dragCurrent.b4StartDrag(x, y);
1699                 this.dragCurrent.startDrag(x, y);
1700             }
1701             this.dragThreshMet = true;
1702         },
1703
1704         /**
1705          * Internal function to handle the mouseup event.  Will be invoked
1706          * from the context of the document.
1707          * @method handleMouseUp
1708          * @param {Event} e the event
1709          * @private
1710          * @static
1711          */
1712         handleMouseUp: function(e) {
1713
1714             if(Roo.QuickTips){
1715                 Roo.QuickTips.enable();
1716             }
1717             if (! this.dragCurrent) {
1718                 return;
1719             }
1720
1721             clearTimeout(this.clickTimeout);
1722
1723             if (this.dragThreshMet) {
1724                 this.fireEvents(e, true);
1725             } else {
1726             }
1727
1728             this.stopDrag(e);
1729
1730             this.stopEvent(e);
1731         },
1732
1733         /**
1734          * Utility to stop event propagation and event default, if these
1735          * features are turned on.
1736          * @method stopEvent
1737          * @param {Event} e the event as returned by this.getEvent()
1738          * @static
1739          */
1740         stopEvent: function(e){
1741             if(this.stopPropagation) {
1742                 e.stopPropagation();
1743             }
1744
1745             if (this.preventDefault) {
1746                 e.preventDefault();
1747             }
1748         },
1749
1750         /**
1751          * Internal function to clean up event handlers after the drag
1752          * operation is complete
1753          * @method stopDrag
1754          * @param {Event} e the event
1755          * @private
1756          * @static
1757          */
1758         stopDrag: function(e) {
1759             // Fire the drag end event for the item that was dragged
1760             if (this.dragCurrent) {
1761                 if (this.dragThreshMet) {
1762                     this.dragCurrent.b4EndDrag(e);
1763                     this.dragCurrent.endDrag(e);
1764                 }
1765
1766                 this.dragCurrent.onMouseUp(e);
1767             }
1768
1769             this.dragCurrent = null;
1770             this.dragOvers = {};
1771         },
1772
1773         /**
1774          * Internal function to handle the mousemove event.  Will be invoked
1775          * from the context of the html element.
1776          *
1777          * @TODO figure out what we can do about mouse events lost when the
1778          * user drags objects beyond the window boundary.  Currently we can
1779          * detect this in internet explorer by verifying that the mouse is
1780          * down during the mousemove event.  Firefox doesn't give us the
1781          * button state on the mousemove event.
1782          * @method handleMouseMove
1783          * @param {Event} e the event
1784          * @private
1785          * @static
1786          */
1787         handleMouseMove: function(e) {
1788             if (! this.dragCurrent) {
1789                 return true;
1790             }
1791
1792             // var button = e.which || e.button;
1793
1794             // check for IE mouseup outside of page boundary
1795             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
1796                 this.stopEvent(e);
1797                 return this.handleMouseUp(e);
1798             }
1799
1800             if (!this.dragThreshMet) {
1801                 var diffX = Math.abs(this.startX - e.getPageX());
1802                 var diffY = Math.abs(this.startY - e.getPageY());
1803                 if (diffX > this.clickPixelThresh ||
1804                             diffY > this.clickPixelThresh) {
1805                     this.startDrag(this.startX, this.startY);
1806                 }
1807             }
1808
1809             if (this.dragThreshMet) {
1810                 this.dragCurrent.b4Drag(e);
1811                 this.dragCurrent.onDrag(e);
1812                 if(!this.dragCurrent.moveOnly){
1813                     this.fireEvents(e, false);
1814                 }
1815             }
1816
1817             this.stopEvent(e);
1818
1819             return true;
1820         },
1821
1822         /**
1823          * Iterates over all of the DragDrop elements to find ones we are
1824          * hovering over or dropping on
1825          * @method fireEvents
1826          * @param {Event} e the event
1827          * @param {boolean} isDrop is this a drop op or a mouseover op?
1828          * @private
1829          * @static
1830          */
1831         fireEvents: function(e, isDrop) {
1832             var dc = this.dragCurrent;
1833
1834             // If the user did the mouse up outside of the window, we could
1835             // get here even though we have ended the drag.
1836             if (!dc || dc.isLocked()) {
1837                 return;
1838             }
1839
1840             var pt = e.getPoint();
1841
1842             // cache the previous dragOver array
1843             var oldOvers = [];
1844
1845             var outEvts   = [];
1846             var overEvts  = [];
1847             var dropEvts  = [];
1848             var enterEvts = [];
1849
1850             // Check to see if the object(s) we were hovering over is no longer
1851             // being hovered over so we can fire the onDragOut event
1852             for (var i in this.dragOvers) {
1853
1854                 var ddo = this.dragOvers[i];
1855
1856                 if (! this.isTypeOfDD(ddo)) {
1857                     continue;
1858                 }
1859
1860                 if (! this.isOverTarget(pt, ddo, this.mode)) {
1861                     outEvts.push( ddo );
1862                 }
1863
1864                 oldOvers[i] = true;
1865                 delete this.dragOvers[i];
1866             }
1867
1868             for (var sGroup in dc.groups) {
1869
1870                 if ("string" != typeof sGroup) {
1871                     continue;
1872                 }
1873
1874                 for (i in this.ids[sGroup]) {
1875                     var oDD = this.ids[sGroup][i];
1876                     if (! this.isTypeOfDD(oDD)) {
1877                         continue;
1878                     }
1879
1880                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
1881                         if (this.isOverTarget(pt, oDD, this.mode)) {
1882                             // look for drop interactions
1883                             if (isDrop) {
1884                                 dropEvts.push( oDD );
1885                             // look for drag enter and drag over interactions
1886                             } else {
1887
1888                                 // initial drag over: dragEnter fires
1889                                 if (!oldOvers[oDD.id]) {
1890                                     enterEvts.push( oDD );
1891                                 // subsequent drag overs: dragOver fires
1892                                 } else {
1893                                     overEvts.push( oDD );
1894                                 }
1895
1896                                 this.dragOvers[oDD.id] = oDD;
1897                             }
1898                         }
1899                     }
1900                 }
1901             }
1902
1903             if (this.mode) {
1904                 if (outEvts.length) {
1905                     dc.b4DragOut(e, outEvts);
1906                     dc.onDragOut(e, outEvts);
1907                 }
1908
1909                 if (enterEvts.length) {
1910                     dc.onDragEnter(e, enterEvts);
1911                 }
1912
1913                 if (overEvts.length) {
1914                     dc.b4DragOver(e, overEvts);
1915                     dc.onDragOver(e, overEvts);
1916                 }
1917
1918                 if (dropEvts.length) {
1919                     dc.b4DragDrop(e, dropEvts);
1920                     dc.onDragDrop(e, dropEvts);
1921                 }
1922
1923             } else {
1924                 // fire dragout events
1925                 var len = 0;
1926                 for (i=0, len=outEvts.length; i<len; ++i) {
1927                     dc.b4DragOut(e, outEvts[i].id);
1928                     dc.onDragOut(e, outEvts[i].id);
1929                 }
1930
1931                 // fire enter events
1932                 for (i=0,len=enterEvts.length; i<len; ++i) {
1933                     // dc.b4DragEnter(e, oDD.id);
1934                     dc.onDragEnter(e, enterEvts[i].id);
1935                 }
1936
1937                 // fire over events
1938                 for (i=0,len=overEvts.length; i<len; ++i) {
1939                     dc.b4DragOver(e, overEvts[i].id);
1940                     dc.onDragOver(e, overEvts[i].id);
1941                 }
1942
1943                 // fire drop events
1944                 for (i=0, len=dropEvts.length; i<len; ++i) {
1945                     dc.b4DragDrop(e, dropEvts[i].id);
1946                     dc.onDragDrop(e, dropEvts[i].id);
1947                 }
1948
1949             }
1950
1951             // notify about a drop that did not find a target
1952             if (isDrop && !dropEvts.length) {
1953                 dc.onInvalidDrop(e);
1954             }
1955
1956         },
1957
1958         /**
1959          * Helper function for getting the best match from the list of drag
1960          * and drop objects returned by the drag and drop events when we are
1961          * in INTERSECT mode.  It returns either the first object that the
1962          * cursor is over, or the object that has the greatest overlap with
1963          * the dragged element.
1964          * @method getBestMatch
1965          * @param  {DragDrop[]} dds The array of drag and drop objects
1966          * targeted
1967          * @return {DragDrop}       The best single match
1968          * @static
1969          */
1970         getBestMatch: function(dds) {
1971             var winner = null;
1972             // Return null if the input is not what we expect
1973             //if (!dds || !dds.length || dds.length == 0) {
1974                // winner = null;
1975             // If there is only one item, it wins
1976             //} else if (dds.length == 1) {
1977
1978             var len = dds.length;
1979
1980             if (len == 1) {
1981                 winner = dds[0];
1982             } else {
1983                 // Loop through the targeted items
1984                 for (var i=0; i<len; ++i) {
1985                     var dd = dds[i];
1986                     // If the cursor is over the object, it wins.  If the
1987                     // cursor is over multiple matches, the first one we come
1988                     // to wins.
1989                     if (dd.cursorIsOver) {
1990                         winner = dd;
1991                         break;
1992                     // Otherwise the object with the most overlap wins
1993                     } else {
1994                         if (!winner ||
1995                             winner.overlap.getArea() < dd.overlap.getArea()) {
1996                             winner = dd;
1997                         }
1998                     }
1999                 }
2000             }
2001
2002             return winner;
2003         },
2004
2005         /**
2006          * Refreshes the cache of the top-left and bottom-right points of the
2007          * drag and drop objects in the specified group(s).  This is in the
2008          * format that is stored in the drag and drop instance, so typical
2009          * usage is:
2010          * <code>
2011          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
2012          * </code>
2013          * Alternatively:
2014          * <code>
2015          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
2016          * </code>
2017          * @TODO this really should be an indexed array.  Alternatively this
2018          * method could accept both.
2019          * @method refreshCache
2020          * @param {Object} groups an associative array of groups to refresh
2021          * @static
2022          */
2023         refreshCache: function(groups) {
2024             for (var sGroup in groups) {
2025                 if ("string" != typeof sGroup) {
2026                     continue;
2027                 }
2028                 for (var i in this.ids[sGroup]) {
2029                     var oDD = this.ids[sGroup][i];
2030
2031                     if (this.isTypeOfDD(oDD)) {
2032                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
2033                         var loc = this.getLocation(oDD);
2034                         if (loc) {
2035                             this.locationCache[oDD.id] = loc;
2036                         } else {
2037                             delete this.locationCache[oDD.id];
2038                             // this will unregister the drag and drop object if
2039                             // the element is not in a usable state
2040                             // oDD.unreg();
2041                         }
2042                     }
2043                 }
2044             }
2045         },
2046
2047         /**
2048          * This checks to make sure an element exists and is in the DOM.  The
2049          * main purpose is to handle cases where innerHTML is used to remove
2050          * drag and drop objects from the DOM.  IE provides an 'unspecified
2051          * error' when trying to access the offsetParent of such an element
2052          * @method verifyEl
2053          * @param {HTMLElement} el the element to check
2054          * @return {boolean} true if the element looks usable
2055          * @static
2056          */
2057         verifyEl: function(el) {
2058             if (el) {
2059                 var parent;
2060                 if(Roo.isIE){
2061                     try{
2062                         parent = el.offsetParent;
2063                     }catch(e){}
2064                 }else{
2065                     parent = el.offsetParent;
2066                 }
2067                 if (parent) {
2068                     return true;
2069                 }
2070             }
2071
2072             return false;
2073         },
2074
2075         /**
2076          * Returns a Region object containing the drag and drop element's position
2077          * and size, including the padding configured for it
2078          * @method getLocation
2079          * @param {DragDrop} oDD the drag and drop object to get the
2080          *                       location for
2081          * @return {Roo.lib.Region} a Region object representing the total area
2082          *                             the element occupies, including any padding
2083          *                             the instance is configured for.
2084          * @static
2085          */
2086         getLocation: function(oDD) {
2087             if (! this.isTypeOfDD(oDD)) {
2088                 return null;
2089             }
2090
2091             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
2092
2093             try {
2094                 pos= Roo.lib.Dom.getXY(el);
2095             } catch (e) { }
2096
2097             if (!pos) {
2098                 return null;
2099             }
2100
2101             x1 = pos[0];
2102             x2 = x1 + el.offsetWidth;
2103             y1 = pos[1];
2104             y2 = y1 + el.offsetHeight;
2105
2106             t = y1 - oDD.padding[0];
2107             r = x2 + oDD.padding[1];
2108             b = y2 + oDD.padding[2];
2109             l = x1 - oDD.padding[3];
2110
2111             return new Roo.lib.Region( t, r, b, l );
2112         },
2113
2114         /**
2115          * Checks the cursor location to see if it over the target
2116          * @method isOverTarget
2117          * @param {Roo.lib.Point} pt The point to evaluate
2118          * @param {DragDrop} oTarget the DragDrop object we are inspecting
2119          * @return {boolean} true if the mouse is over the target
2120          * @private
2121          * @static
2122          */
2123         isOverTarget: function(pt, oTarget, intersect) {
2124             // use cache if available
2125             var loc = this.locationCache[oTarget.id];
2126             if (!loc || !this.useCache) {
2127                 loc = this.getLocation(oTarget);
2128                 this.locationCache[oTarget.id] = loc;
2129
2130             }
2131
2132             if (!loc) {
2133                 return false;
2134             }
2135
2136             oTarget.cursorIsOver = loc.contains( pt );
2137
2138             // DragDrop is using this as a sanity check for the initial mousedown
2139             // in this case we are done.  In POINT mode, if the drag obj has no
2140             // contraints, we are also done. Otherwise we need to evaluate the
2141             // location of the target as related to the actual location of the
2142             // dragged element.
2143             var dc = this.dragCurrent;
2144             if (!dc || !dc.getTargetCoord ||
2145                     (!intersect && !dc.constrainX && !dc.constrainY)) {
2146                 return oTarget.cursorIsOver;
2147             }
2148
2149             oTarget.overlap = null;
2150
2151             // Get the current location of the drag element, this is the
2152             // location of the mouse event less the delta that represents
2153             // where the original mousedown happened on the element.  We
2154             // need to consider constraints and ticks as well.
2155             var pos = dc.getTargetCoord(pt.x, pt.y);
2156
2157             var el = dc.getDragEl();
2158             var curRegion = new Roo.lib.Region( pos.y,
2159                                                    pos.x + el.offsetWidth,
2160                                                    pos.y + el.offsetHeight,
2161                                                    pos.x );
2162
2163             var overlap = curRegion.intersect(loc);
2164
2165             if (overlap) {
2166                 oTarget.overlap = overlap;
2167                 return (intersect) ? true : oTarget.cursorIsOver;
2168             } else {
2169                 return false;
2170             }
2171         },
2172
2173         /**
2174          * unload event handler
2175          * @method _onUnload
2176          * @private
2177          * @static
2178          */
2179         _onUnload: function(e, me) {
2180             Roo.dd.DragDropMgr.unregAll();
2181         },
2182
2183         /**
2184          * Cleans up the drag and drop events and objects.
2185          * @method unregAll
2186          * @private
2187          * @static
2188          */
2189         unregAll: function() {
2190
2191             if (this.dragCurrent) {
2192                 this.stopDrag();
2193                 this.dragCurrent = null;
2194             }
2195
2196             this._execOnAll("unreg", []);
2197
2198             for (i in this.elementCache) {
2199                 delete this.elementCache[i];
2200             }
2201
2202             this.elementCache = {};
2203             this.ids = {};
2204         },
2205
2206         /**
2207          * A cache of DOM elements
2208          * @property elementCache
2209          * @private
2210          * @static
2211          */
2212         elementCache: {},
2213
2214         /**
2215          * Get the wrapper for the DOM element specified
2216          * @method getElWrapper
2217          * @param {String} id the id of the element to get
2218          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
2219          * @private
2220          * @deprecated This wrapper isn't that useful
2221          * @static
2222          */
2223         getElWrapper: function(id) {
2224             var oWrapper = this.elementCache[id];
2225             if (!oWrapper || !oWrapper.el) {
2226                 oWrapper = this.elementCache[id] =
2227                     new this.ElementWrapper(Roo.getDom(id));
2228             }
2229             return oWrapper;
2230         },
2231
2232         /**
2233          * Returns the actual DOM element
2234          * @method getElement
2235          * @param {String} id the id of the elment to get
2236          * @return {Object} The element
2237          * @deprecated use Roo.getDom instead
2238          * @static
2239          */
2240         getElement: function(id) {
2241             return Roo.getDom(id);
2242         },
2243
2244         /**
2245          * Returns the style property for the DOM element (i.e.,
2246          * document.getElById(id).style)
2247          * @method getCss
2248          * @param {String} id the id of the elment to get
2249          * @return {Object} The style property of the element
2250          * @deprecated use Roo.getDom instead
2251          * @static
2252          */
2253         getCss: function(id) {
2254             var el = Roo.getDom(id);
2255             return (el) ? el.style : null;
2256         },
2257
2258         /**
2259          * Inner class for cached elements
2260          * @class DragDropMgr.ElementWrapper
2261          * @for DragDropMgr
2262          * @private
2263          * @deprecated
2264          */
2265         ElementWrapper: function(el) {
2266                 /**
2267                  * The element
2268                  * @property el
2269                  */
2270                 this.el = el || null;
2271                 /**
2272                  * The element id
2273                  * @property id
2274                  */
2275                 this.id = this.el && el.id;
2276                 /**
2277                  * A reference to the style property
2278                  * @property css
2279                  */
2280                 this.css = this.el && el.style;
2281             },
2282
2283         /**
2284          * Returns the X position of an html element
2285          * @method getPosX
2286          * @param el the element for which to get the position
2287          * @return {int} the X coordinate
2288          * @for DragDropMgr
2289          * @deprecated use Roo.lib.Dom.getX instead
2290          * @static
2291          */
2292         getPosX: function(el) {
2293             return Roo.lib.Dom.getX(el);
2294         },
2295
2296         /**
2297          * Returns the Y position of an html element
2298          * @method getPosY
2299          * @param el the element for which to get the position
2300          * @return {int} the Y coordinate
2301          * @deprecated use Roo.lib.Dom.getY instead
2302          * @static
2303          */
2304         getPosY: function(el) {
2305             return Roo.lib.Dom.getY(el);
2306         },
2307
2308         /**
2309          * Swap two nodes.  In IE, we use the native method, for others we
2310          * emulate the IE behavior
2311          * @method swapNode
2312          * @param n1 the first node to swap
2313          * @param n2 the other node to swap
2314          * @static
2315          */
2316         swapNode: function(n1, n2) {
2317             if (n1.swapNode) {
2318                 n1.swapNode(n2);
2319             } else {
2320                 var p = n2.parentNode;
2321                 var s = n2.nextSibling;
2322
2323                 if (s == n1) {
2324                     p.insertBefore(n1, n2);
2325                 } else if (n2 == n1.nextSibling) {
2326                     p.insertBefore(n2, n1);
2327                 } else {
2328                     n1.parentNode.replaceChild(n2, n1);
2329                     p.insertBefore(n1, s);
2330                 }
2331             }
2332         },
2333
2334         /**
2335          * Returns the current scroll position
2336          * @method getScroll
2337          * @private
2338          * @static
2339          */
2340         getScroll: function () {
2341             var t, l, dde=document.documentElement, db=document.body;
2342             if (dde && (dde.scrollTop || dde.scrollLeft)) {
2343                 t = dde.scrollTop;
2344                 l = dde.scrollLeft;
2345             } else if (db) {
2346                 t = db.scrollTop;
2347                 l = db.scrollLeft;
2348             } else {
2349
2350             }
2351             return { top: t, left: l };
2352         },
2353
2354         /**
2355          * Returns the specified element style property
2356          * @method getStyle
2357          * @param {HTMLElement} el          the element
2358          * @param {string}      styleProp   the style property
2359          * @return {string} The value of the style property
2360          * @deprecated use Roo.lib.Dom.getStyle
2361          * @static
2362          */
2363         getStyle: function(el, styleProp) {
2364             return Roo.fly(el).getStyle(styleProp);
2365         },
2366
2367         /**
2368          * Gets the scrollTop
2369          * @method getScrollTop
2370          * @return {int} the document's scrollTop
2371          * @static
2372          */
2373         getScrollTop: function () { return this.getScroll().top; },
2374
2375         /**
2376          * Gets the scrollLeft
2377          * @method getScrollLeft
2378          * @return {int} the document's scrollTop
2379          * @static
2380          */
2381         getScrollLeft: function () { return this.getScroll().left; },
2382
2383         /**
2384          * Sets the x/y position of an element to the location of the
2385          * target element.
2386          * @method moveToEl
2387          * @param {HTMLElement} moveEl      The element to move
2388          * @param {HTMLElement} targetEl    The position reference element
2389          * @static
2390          */
2391         moveToEl: function (moveEl, targetEl) {
2392             var aCoord = Roo.lib.Dom.getXY(targetEl);
2393             Roo.lib.Dom.setXY(moveEl, aCoord);
2394         },
2395
2396         /**
2397          * Numeric array sort function
2398          * @method numericSort
2399          * @static
2400          */
2401         numericSort: function(a, b) { return (a - b); },
2402
2403         /**
2404          * Internal counter
2405          * @property _timeoutCount
2406          * @private
2407          * @static
2408          */
2409         _timeoutCount: 0,
2410
2411         /**
2412          * Trying to make the load order less important.  Without this we get
2413          * an error if this file is loaded before the Event Utility.
2414          * @method _addListeners
2415          * @private
2416          * @static
2417          */
2418         _addListeners: function() {
2419             var DDM = Roo.dd.DDM;
2420             if ( Roo.lib.Event && document ) {
2421                 DDM._onLoad();
2422             } else {
2423                 if (DDM._timeoutCount > 2000) {
2424                 } else {
2425                     setTimeout(DDM._addListeners, 10);
2426                     if (document && document.body) {
2427                         DDM._timeoutCount += 1;
2428                     }
2429                 }
2430             }
2431         },
2432
2433         /**
2434          * Recursively searches the immediate parent and all child nodes for
2435          * the handle element in order to determine wheter or not it was
2436          * clicked.
2437          * @method handleWasClicked
2438          * @param node the html element to inspect
2439          * @static
2440          */
2441         handleWasClicked: function(node, id) {
2442             if (this.isHandle(id, node.id)) {
2443                 return true;
2444             } else {
2445                 // check to see if this is a text node child of the one we want
2446                 var p = node.parentNode;
2447
2448                 while (p) {
2449                     if (this.isHandle(id, p.id)) {
2450                         return true;
2451                     } else {
2452                         p = p.parentNode;
2453                     }
2454                 }
2455             }
2456
2457             return false;
2458         }
2459
2460     };
2461
2462 }();
2463
2464 // shorter alias, save a few bytes
2465 Roo.dd.DDM = Roo.dd.DragDropMgr;
2466 Roo.dd.DDM._addListeners();
2467
2468 }/*
2469  * Based on:
2470  * Ext JS Library 1.1.1
2471  * Copyright(c) 2006-2007, Ext JS, LLC.
2472  *
2473  * Originally Released Under LGPL - original licence link has changed is not relivant.
2474  *
2475  * Fork - LGPL
2476  * <script type="text/javascript">
2477  */
2478
2479 /**
2480  * @class Roo.dd.DD
2481  * A DragDrop implementation where the linked element follows the
2482  * mouse cursor during a drag.
2483  * @extends Roo.dd.DragDrop
2484  * @constructor
2485  * @param {String} id the id of the linked element
2486  * @param {String} sGroup the group of related DragDrop items
2487  * @param {object} config an object containing configurable attributes
2488  *                Valid properties for DD:
2489  *                    scroll
2490  */
2491 Roo.dd.DD = function(id, sGroup, config) {
2492     if (id) {
2493         this.init(id, sGroup, config);
2494     }
2495 };
2496
2497 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
2498
2499     /**
2500      * When set to true, the utility automatically tries to scroll the browser
2501      * window wehn a drag and drop element is dragged near the viewport boundary.
2502      * Defaults to true.
2503      * @property scroll
2504      * @type boolean
2505      */
2506     scroll: true,
2507
2508     /**
2509      * Sets the pointer offset to the distance between the linked element's top
2510      * left corner and the location the element was clicked
2511      * @method autoOffset
2512      * @param {int} iPageX the X coordinate of the click
2513      * @param {int} iPageY the Y coordinate of the click
2514      */
2515     autoOffset: function(iPageX, iPageY) {
2516         var x = iPageX - this.startPageX;
2517         var y = iPageY - this.startPageY;
2518         this.setDelta(x, y);
2519     },
2520
2521     /**
2522      * Sets the pointer offset.  You can call this directly to force the
2523      * offset to be in a particular location (e.g., pass in 0,0 to set it
2524      * to the center of the object)
2525      * @method setDelta
2526      * @param {int} iDeltaX the distance from the left
2527      * @param {int} iDeltaY the distance from the top
2528      */
2529     setDelta: function(iDeltaX, iDeltaY) {
2530         this.deltaX = iDeltaX;
2531         this.deltaY = iDeltaY;
2532     },
2533
2534     /**
2535      * Sets the drag element to the location of the mousedown or click event,
2536      * maintaining the cursor location relative to the location on the element
2537      * that was clicked.  Override this if you want to place the element in a
2538      * location other than where the cursor is.
2539      * @method setDragElPos
2540      * @param {int} iPageX the X coordinate of the mousedown or drag event
2541      * @param {int} iPageY the Y coordinate of the mousedown or drag event
2542      */
2543     setDragElPos: function(iPageX, iPageY) {
2544         // the first time we do this, we are going to check to make sure
2545         // the element has css positioning
2546
2547         var el = this.getDragEl();
2548         this.alignElWithMouse(el, iPageX, iPageY);
2549     },
2550
2551     /**
2552      * Sets the element to the location of the mousedown or click event,
2553      * maintaining the cursor location relative to the location on the element
2554      * that was clicked.  Override this if you want to place the element in a
2555      * location other than where the cursor is.
2556      * @method alignElWithMouse
2557      * @param {HTMLElement} el the element to move
2558      * @param {int} iPageX the X coordinate of the mousedown or drag event
2559      * @param {int} iPageY the Y coordinate of the mousedown or drag event
2560      */
2561     alignElWithMouse: function(el, iPageX, iPageY) {
2562         var oCoord = this.getTargetCoord(iPageX, iPageY);
2563         var fly = el.dom ? el : Roo.fly(el);
2564         if (!this.deltaSetXY) {
2565             var aCoord = [oCoord.x, oCoord.y];
2566             fly.setXY(aCoord);
2567             var newLeft = fly.getLeft(true);
2568             var newTop  = fly.getTop(true);
2569             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
2570         } else {
2571             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
2572         }
2573
2574         this.cachePosition(oCoord.x, oCoord.y);
2575         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
2576         return oCoord;
2577     },
2578
2579     /**
2580      * Saves the most recent position so that we can reset the constraints and
2581      * tick marks on-demand.  We need to know this so that we can calculate the
2582      * number of pixels the element is offset from its original position.
2583      * @method cachePosition
2584      * @param iPageX the current x position (optional, this just makes it so we
2585      * don't have to look it up again)
2586      * @param iPageY the current y position (optional, this just makes it so we
2587      * don't have to look it up again)
2588      */
2589     cachePosition: function(iPageX, iPageY) {
2590         if (iPageX) {
2591             this.lastPageX = iPageX;
2592             this.lastPageY = iPageY;
2593         } else {
2594             var aCoord = Roo.lib.Dom.getXY(this.getEl());
2595             this.lastPageX = aCoord[0];
2596             this.lastPageY = aCoord[1];
2597         }
2598     },
2599
2600     /**
2601      * Auto-scroll the window if the dragged object has been moved beyond the
2602      * visible window boundary.
2603      * @method autoScroll
2604      * @param {int} x the drag element's x position
2605      * @param {int} y the drag element's y position
2606      * @param {int} h the height of the drag element
2607      * @param {int} w the width of the drag element
2608      * @private
2609      */
2610     autoScroll: function(x, y, h, w) {
2611
2612         if (this.scroll) {
2613             // The client height
2614             var clientH = Roo.lib.Dom.getViewWidth();
2615
2616             // The client width
2617             var clientW = Roo.lib.Dom.getViewHeight();
2618
2619             // The amt scrolled down
2620             var st = this.DDM.getScrollTop();
2621
2622             // The amt scrolled right
2623             var sl = this.DDM.getScrollLeft();
2624
2625             // Location of the bottom of the element
2626             var bot = h + y;
2627
2628             // Location of the right of the element
2629             var right = w + x;
2630
2631             // The distance from the cursor to the bottom of the visible area,
2632             // adjusted so that we don't scroll if the cursor is beyond the
2633             // element drag constraints
2634             var toBot = (clientH + st - y - this.deltaY);
2635
2636             // The distance from the cursor to the right of the visible area
2637             var toRight = (clientW + sl - x - this.deltaX);
2638
2639
2640             // How close to the edge the cursor must be before we scroll
2641             // var thresh = (document.all) ? 100 : 40;
2642             var thresh = 40;
2643
2644             // How many pixels to scroll per autoscroll op.  This helps to reduce
2645             // clunky scrolling. IE is more sensitive about this ... it needs this
2646             // value to be higher.
2647             var scrAmt = (document.all) ? 80 : 30;
2648
2649             // Scroll down if we are near the bottom of the visible page and the
2650             // obj extends below the crease
2651             if ( bot > clientH && toBot < thresh ) {
2652                 window.scrollTo(sl, st + scrAmt);
2653             }
2654
2655             // Scroll up if the window is scrolled down and the top of the object
2656             // goes above the top border
2657             if ( y < st && st > 0 && y - st < thresh ) {
2658                 window.scrollTo(sl, st - scrAmt);
2659             }
2660
2661             // Scroll right if the obj is beyond the right border and the cursor is
2662             // near the border.
2663             if ( right > clientW && toRight < thresh ) {
2664                 window.scrollTo(sl + scrAmt, st);
2665             }
2666
2667             // Scroll left if the window has been scrolled to the right and the obj
2668             // extends past the left border
2669             if ( x < sl && sl > 0 && x - sl < thresh ) {
2670                 window.scrollTo(sl - scrAmt, st);
2671             }
2672         }
2673     },
2674
2675     /**
2676      * Finds the location the element should be placed if we want to move
2677      * it to where the mouse location less the click offset would place us.
2678      * @method getTargetCoord
2679      * @param {int} iPageX the X coordinate of the click
2680      * @param {int} iPageY the Y coordinate of the click
2681      * @return an object that contains the coordinates (Object.x and Object.y)
2682      * @private
2683      */
2684     getTargetCoord: function(iPageX, iPageY) {
2685
2686
2687         var x = iPageX - this.deltaX;
2688         var y = iPageY - this.deltaY;
2689
2690         if (this.constrainX) {
2691             if (x < this.minX) { x = this.minX; }
2692             if (x > this.maxX) { x = this.maxX; }
2693         }
2694
2695         if (this.constrainY) {
2696             if (y < this.minY) { y = this.minY; }
2697             if (y > this.maxY) { y = this.maxY; }
2698         }
2699
2700         x = this.getTick(x, this.xTicks);
2701         y = this.getTick(y, this.yTicks);
2702
2703
2704         return {x:x, y:y};
2705     },
2706
2707     /*
2708      * Sets up config options specific to this class. Overrides
2709      * Roo.dd.DragDrop, but all versions of this method through the
2710      * inheritance chain are called
2711      */
2712     applyConfig: function() {
2713         Roo.dd.DD.superclass.applyConfig.call(this);
2714         this.scroll = (this.config.scroll !== false);
2715     },
2716
2717     /*
2718      * Event that fires prior to the onMouseDown event.  Overrides
2719      * Roo.dd.DragDrop.
2720      */
2721     b4MouseDown: function(e) {
2722         // this.resetConstraints();
2723         this.autoOffset(e.getPageX(),
2724                             e.getPageY());
2725     },
2726
2727     /*
2728      * Event that fires prior to the onDrag event.  Overrides
2729      * Roo.dd.DragDrop.
2730      */
2731     b4Drag: function(e) {
2732         this.setDragElPos(e.getPageX(),
2733                             e.getPageY());
2734     },
2735
2736     toString: function() {
2737         return ("DD " + this.id);
2738     }
2739
2740     //////////////////////////////////////////////////////////////////////////
2741     // Debugging ygDragDrop events that can be overridden
2742     //////////////////////////////////////////////////////////////////////////
2743     /*
2744     startDrag: function(x, y) {
2745     },
2746
2747     onDrag: function(e) {
2748     },
2749
2750     onDragEnter: function(e, id) {
2751     },
2752
2753     onDragOver: function(e, id) {
2754     },
2755
2756     onDragOut: function(e, id) {
2757     },
2758
2759     onDragDrop: function(e, id) {
2760     },
2761
2762     endDrag: function(e) {
2763     }
2764
2765     */
2766
2767 });/*
2768  * Based on:
2769  * Ext JS Library 1.1.1
2770  * Copyright(c) 2006-2007, Ext JS, LLC.
2771  *
2772  * Originally Released Under LGPL - original licence link has changed is not relivant.
2773  *
2774  * Fork - LGPL
2775  * <script type="text/javascript">
2776  */
2777
2778 /**
2779  * @class Roo.dd.DDProxy
2780  * A DragDrop implementation that inserts an empty, bordered div into
2781  * the document that follows the cursor during drag operations.  At the time of
2782  * the click, the frame div is resized to the dimensions of the linked html
2783  * element, and moved to the exact location of the linked element.
2784  *
2785  * References to the "frame" element refer to the single proxy element that
2786  * was created to be dragged in place of all DDProxy elements on the
2787  * page.
2788  *
2789  * @extends Roo.dd.DD
2790  * @constructor
2791  * @param {String} id the id of the linked html element
2792  * @param {String} sGroup the group of related DragDrop objects
2793  * @param {object} config an object containing configurable attributes
2794  *                Valid properties for DDProxy in addition to those in DragDrop:
2795  *                   resizeFrame, centerFrame, dragElId
2796  */
2797 Roo.dd.DDProxy = function(id, sGroup, config) {
2798     if (id) {
2799         this.init(id, sGroup, config);
2800         this.initFrame();
2801     }
2802 };
2803
2804 /**
2805  * The default drag frame div id
2806  * @property Roo.dd.DDProxy.dragElId
2807  * @type String
2808  * @static
2809  */
2810 Roo.dd.DDProxy.dragElId = "ygddfdiv";
2811
2812 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
2813
2814     /**
2815      * By default we resize the drag frame to be the same size as the element
2816      * we want to drag (this is to get the frame effect).  We can turn it off
2817      * if we want a different behavior.
2818      * @property resizeFrame
2819      * @type boolean
2820      */
2821     resizeFrame: true,
2822
2823     /**
2824      * By default the frame is positioned exactly where the drag element is, so
2825      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
2826      * you do not have constraints on the obj is to have the drag frame centered
2827      * around the cursor.  Set centerFrame to true for this effect.
2828      * @property centerFrame
2829      * @type boolean
2830      */
2831     centerFrame: false,
2832
2833     /**
2834      * Creates the proxy element if it does not yet exist
2835      * @method createFrame
2836      */
2837     createFrame: function() {
2838         var self = this;
2839         var body = document.body;
2840
2841         if (!body || !body.firstChild) {
2842             setTimeout( function() { self.createFrame(); }, 50 );
2843             return;
2844         }
2845
2846         var div = this.getDragEl();
2847
2848         if (!div) {
2849             div    = document.createElement("div");
2850             div.id = this.dragElId;
2851             var s  = div.style;
2852
2853             s.position   = "absolute";
2854             s.visibility = "hidden";
2855             s.cursor     = "move";
2856             s.border     = "2px solid #aaa";
2857             s.zIndex     = 999;
2858
2859             // appendChild can blow up IE if invoked prior to the window load event
2860             // while rendering a table.  It is possible there are other scenarios
2861             // that would cause this to happen as well.
2862             body.insertBefore(div, body.firstChild);
2863         }
2864     },
2865
2866     /**
2867      * Initialization for the drag frame element.  Must be called in the
2868      * constructor of all subclasses
2869      * @method initFrame
2870      */
2871     initFrame: function() {
2872         this.createFrame();
2873     },
2874
2875     applyConfig: function() {
2876         Roo.dd.DDProxy.superclass.applyConfig.call(this);
2877
2878         this.resizeFrame = (this.config.resizeFrame !== false);
2879         this.centerFrame = (this.config.centerFrame);
2880         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
2881     },
2882
2883     /**
2884      * Resizes the drag frame to the dimensions of the clicked object, positions
2885      * it over the object, and finally displays it
2886      * @method showFrame
2887      * @param {int} iPageX X click position
2888      * @param {int} iPageY Y click position
2889      * @private
2890      */
2891     showFrame: function(iPageX, iPageY) {
2892         var el = this.getEl();
2893         var dragEl = this.getDragEl();
2894         var s = dragEl.style;
2895
2896         this._resizeProxy();
2897
2898         if (this.centerFrame) {
2899             this.setDelta( Math.round(parseInt(s.width,  10)/2),
2900                            Math.round(parseInt(s.height, 10)/2) );
2901         }
2902
2903         this.setDragElPos(iPageX, iPageY);
2904
2905         Roo.fly(dragEl).show();
2906     },
2907
2908     /**
2909      * The proxy is automatically resized to the dimensions of the linked
2910      * element when a drag is initiated, unless resizeFrame is set to false
2911      * @method _resizeProxy
2912      * @private
2913      */
2914     _resizeProxy: function() {
2915         if (this.resizeFrame) {
2916             var el = this.getEl();
2917             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
2918         }
2919     },
2920
2921     // overrides Roo.dd.DragDrop
2922     b4MouseDown: function(e) {
2923         var x = e.getPageX();
2924         var y = e.getPageY();
2925         this.autoOffset(x, y);
2926         this.setDragElPos(x, y);
2927     },
2928
2929     // overrides Roo.dd.DragDrop
2930     b4StartDrag: function(x, y) {
2931         // show the drag frame
2932         this.showFrame(x, y);
2933     },
2934
2935     // overrides Roo.dd.DragDrop
2936     b4EndDrag: function(e) {
2937         Roo.fly(this.getDragEl()).hide();
2938     },
2939
2940     // overrides Roo.dd.DragDrop
2941     // By default we try to move the element to the last location of the frame.
2942     // This is so that the default behavior mirrors that of Roo.dd.DD.
2943     endDrag: function(e) {
2944
2945         var lel = this.getEl();
2946         var del = this.getDragEl();
2947
2948         // Show the drag frame briefly so we can get its position
2949         del.style.visibility = "";
2950
2951         this.beforeMove();
2952         // Hide the linked element before the move to get around a Safari
2953         // rendering bug.
2954         lel.style.visibility = "hidden";
2955         Roo.dd.DDM.moveToEl(lel, del);
2956         del.style.visibility = "hidden";
2957         lel.style.visibility = "";
2958
2959         this.afterDrag();
2960     },
2961
2962     beforeMove : function(){
2963
2964     },
2965
2966     afterDrag : function(){
2967
2968     },
2969
2970     toString: function() {
2971         return ("DDProxy " + this.id);
2972     }
2973
2974 });
2975 /*
2976  * Based on:
2977  * Ext JS Library 1.1.1
2978  * Copyright(c) 2006-2007, Ext JS, LLC.
2979  *
2980  * Originally Released Under LGPL - original licence link has changed is not relivant.
2981  *
2982  * Fork - LGPL
2983  * <script type="text/javascript">
2984  */
2985
2986  /**
2987  * @class Roo.dd.DDTarget
2988  * A DragDrop implementation that does not move, but can be a drop
2989  * target.  You would get the same result by simply omitting implementation
2990  * for the event callbacks, but this way we reduce the processing cost of the
2991  * event listener and the callbacks.
2992  * @extends Roo.dd.DragDrop
2993  * @constructor
2994  * @param {String} id the id of the element that is a drop target
2995  * @param {String} sGroup the group of related DragDrop objects
2996  * @param {object} config an object containing configurable attributes
2997  *                 Valid properties for DDTarget in addition to those in
2998  *                 DragDrop:
2999  *                    none
3000  */
3001 Roo.dd.DDTarget = function(id, sGroup, config) {
3002     if (id) {
3003         this.initTarget(id, sGroup, config);
3004     }
3005     if (config.listeners || config.events) { 
3006        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
3007             listeners : config.listeners || {}, 
3008             events : config.events || {} 
3009         });    
3010     }
3011 };
3012
3013 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
3014 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
3015     toString: function() {
3016         return ("DDTarget " + this.id);
3017     }
3018 });
3019 /*
3020  * Based on:
3021  * Ext JS Library 1.1.1
3022  * Copyright(c) 2006-2007, Ext JS, LLC.
3023  *
3024  * Originally Released Under LGPL - original licence link has changed is not relivant.
3025  *
3026  * Fork - LGPL
3027  * <script type="text/javascript">
3028  */
3029  
3030
3031 /**
3032  * @class Roo.dd.ScrollManager
3033  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
3034  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
3035  * @singleton
3036  */
3037 Roo.dd.ScrollManager = function(){
3038     var ddm = Roo.dd.DragDropMgr;
3039     var els = {};
3040     var dragEl = null;
3041     var proc = {};
3042     
3043     var onStop = function(e){
3044         dragEl = null;
3045         clearProc();
3046     };
3047     
3048     var triggerRefresh = function(){
3049         if(ddm.dragCurrent){
3050              ddm.refreshCache(ddm.dragCurrent.groups);
3051         }
3052     };
3053     
3054     var doScroll = function(){
3055         if(ddm.dragCurrent){
3056             var dds = Roo.dd.ScrollManager;
3057             if(!dds.animate){
3058                 if(proc.el.scroll(proc.dir, dds.increment)){
3059                     triggerRefresh();
3060                 }
3061             }else{
3062                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
3063             }
3064         }
3065     };
3066     
3067     var clearProc = function(){
3068         if(proc.id){
3069             clearInterval(proc.id);
3070         }
3071         proc.id = 0;
3072         proc.el = null;
3073         proc.dir = "";
3074     };
3075     
3076     var startProc = function(el, dir){
3077         clearProc();
3078         proc.el = el;
3079         proc.dir = dir;
3080         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
3081     };
3082     
3083     var onFire = function(e, isDrop){
3084         if(isDrop || !ddm.dragCurrent){ return; }
3085         var dds = Roo.dd.ScrollManager;
3086         if(!dragEl || dragEl != ddm.dragCurrent){
3087             dragEl = ddm.dragCurrent;
3088             // refresh regions on drag start
3089             dds.refreshCache();
3090         }
3091         
3092         var xy = Roo.lib.Event.getXY(e);
3093         var pt = new Roo.lib.Point(xy[0], xy[1]);
3094         for(var id in els){
3095             var el = els[id], r = el._region;
3096             if(r && r.contains(pt) && el.isScrollable()){
3097                 if(r.bottom - pt.y <= dds.thresh){
3098                     if(proc.el != el){
3099                         startProc(el, "down");
3100                     }
3101                     return;
3102                 }else if(r.right - pt.x <= dds.thresh){
3103                     if(proc.el != el){
3104                         startProc(el, "left");
3105                     }
3106                     return;
3107                 }else if(pt.y - r.top <= dds.thresh){
3108                     if(proc.el != el){
3109                         startProc(el, "up");
3110                     }
3111                     return;
3112                 }else if(pt.x - r.left <= dds.thresh){
3113                     if(proc.el != el){
3114                         startProc(el, "right");
3115                     }
3116                     return;
3117                 }
3118             }
3119         }
3120         clearProc();
3121     };
3122     
3123     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
3124     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
3125     
3126     return {
3127         /**
3128          * Registers new overflow element(s) to auto scroll
3129          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
3130          */
3131         register : function(el){
3132             if(el instanceof Array){
3133                 for(var i = 0, len = el.length; i < len; i++) {
3134                         this.register(el[i]);
3135                 }
3136             }else{
3137                 el = Roo.get(el);
3138                 els[el.id] = el;
3139             }
3140         },
3141         
3142         /**
3143          * Unregisters overflow element(s) so they are no longer scrolled
3144          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
3145          */
3146         unregister : function(el){
3147             if(el instanceof Array){
3148                 for(var i = 0, len = el.length; i < len; i++) {
3149                         this.unregister(el[i]);
3150                 }
3151             }else{
3152                 el = Roo.get(el);
3153                 delete els[el.id];
3154             }
3155         },
3156         
3157         /**
3158          * The number of pixels from the edge of a container the pointer needs to be to 
3159          * trigger scrolling (defaults to 25)
3160          * @type Number
3161          */
3162         thresh : 25,
3163         
3164         /**
3165          * The number of pixels to scroll in each scroll increment (defaults to 50)
3166          * @type Number
3167          */
3168         increment : 100,
3169         
3170         /**
3171          * The frequency of scrolls in milliseconds (defaults to 500)
3172          * @type Number
3173          */
3174         frequency : 500,
3175         
3176         /**
3177          * True to animate the scroll (defaults to true)
3178          * @type Boolean
3179          */
3180         animate: true,
3181         
3182         /**
3183          * The animation duration in seconds - 
3184          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
3185          * @type Number
3186          */
3187         animDuration: .4,
3188         
3189         /**
3190          * Manually trigger a cache refresh.
3191          */
3192         refreshCache : function(){
3193             for(var id in els){
3194                 if(typeof els[id] == 'object'){ // for people extending the object prototype
3195                     els[id]._region = els[id].getRegion();
3196                 }
3197             }
3198         }
3199     };
3200 }();/*
3201  * Based on:
3202  * Ext JS Library 1.1.1
3203  * Copyright(c) 2006-2007, Ext JS, LLC.
3204  *
3205  * Originally Released Under LGPL - original licence link has changed is not relivant.
3206  *
3207  * Fork - LGPL
3208  * <script type="text/javascript">
3209  */
3210  
3211
3212 /**
3213  * @class Roo.dd.Registry
3214  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
3215  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
3216  * @singleton
3217  */
3218 Roo.dd.Registry = function(){
3219     var elements = {}; 
3220     var handles = {}; 
3221     var autoIdSeed = 0;
3222
3223     var getId = function(el, autogen){
3224         if(typeof el == "string"){
3225             return el;
3226         }
3227         var id = el.id;
3228         if(!id && autogen !== false){
3229             id = "roodd-" + (++autoIdSeed);
3230             el.id = id;
3231         }
3232         return id;
3233     };
3234     
3235     return {
3236     /**
3237      * Register a drag drop element
3238      * @param {String|HTMLElement} element The id or DOM node to register
3239      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
3240      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
3241      * knows how to interpret, plus there are some specific properties known to the Registry that should be
3242      * populated in the data object (if applicable):
3243      * <pre>
3244 Value      Description<br />
3245 ---------  ------------------------------------------<br />
3246 handles    Array of DOM nodes that trigger dragging<br />
3247            for the element being registered<br />
3248 isHandle   True if the element passed in triggers<br />
3249            dragging itself, else false
3250 </pre>
3251      */
3252         register : function(el, data){
3253             data = data || {};
3254             if(typeof el == "string"){
3255                 el = document.getElementById(el);
3256             }
3257             data.ddel = el;
3258             elements[getId(el)] = data;
3259             if(data.isHandle !== false){
3260                 handles[data.ddel.id] = data;
3261             }
3262             if(data.handles){
3263                 var hs = data.handles;
3264                 for(var i = 0, len = hs.length; i < len; i++){
3265                         handles[getId(hs[i])] = data;
3266                 }
3267             }
3268         },
3269
3270     /**
3271      * Unregister a drag drop element
3272      * @param {String|HTMLElement}  element The id or DOM node to unregister
3273      */
3274         unregister : function(el){
3275             var id = getId(el, false);
3276             var data = elements[id];
3277             if(data){
3278                 delete elements[id];
3279                 if(data.handles){
3280                     var hs = data.handles;
3281                     for(var i = 0, len = hs.length; i < len; i++){
3282                         delete handles[getId(hs[i], false)];
3283                     }
3284                 }
3285             }
3286         },
3287
3288     /**
3289      * Returns the handle registered for a DOM Node by id
3290      * @param {String|HTMLElement} id The DOM node or id to look up
3291      * @return {Object} handle The custom handle data
3292      */
3293         getHandle : function(id){
3294             if(typeof id != "string"){ // must be element?
3295                 id = id.id;
3296             }
3297             return handles[id];
3298         },
3299
3300     /**
3301      * Returns the handle that is registered for the DOM node that is the target of the event
3302      * @param {Event} e The event
3303      * @return {Object} handle The custom handle data
3304      */
3305         getHandleFromEvent : function(e){
3306             var t = Roo.lib.Event.getTarget(e);
3307             return t ? handles[t.id] : null;
3308         },
3309
3310     /**
3311      * Returns a custom data object that is registered for a DOM node by id
3312      * @param {String|HTMLElement} id The DOM node or id to look up
3313      * @return {Object} data The custom data
3314      */
3315         getTarget : function(id){
3316             if(typeof id != "string"){ // must be element?
3317                 id = id.id;
3318             }
3319             return elements[id];
3320         },
3321
3322     /**
3323      * Returns a custom data object that is registered for the DOM node that is the target of the event
3324      * @param {Event} e The event
3325      * @return {Object} data The custom data
3326      */
3327         getTargetFromEvent : function(e){
3328             var t = Roo.lib.Event.getTarget(e);
3329             return t ? elements[t.id] || handles[t.id] : null;
3330         }
3331     };
3332 }();/*
3333  * Based on:
3334  * Ext JS Library 1.1.1
3335  * Copyright(c) 2006-2007, Ext JS, LLC.
3336  *
3337  * Originally Released Under LGPL - original licence link has changed is not relivant.
3338  *
3339  * Fork - LGPL
3340  * <script type="text/javascript">
3341  */
3342  
3343
3344 /**
3345  * @class Roo.dd.StatusProxy
3346  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
3347  * default drag proxy used by all Roo.dd components.
3348  * @constructor
3349  * @param {Object} config
3350  */
3351 Roo.dd.StatusProxy = function(config){
3352     Roo.apply(this, config);
3353     this.id = this.id || Roo.id();
3354     this.el = new Roo.Layer({
3355         dh: {
3356             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
3357                 {tag: "div", cls: "x-dd-drop-icon"},
3358                 {tag: "div", cls: "x-dd-drag-ghost"}
3359             ]
3360         }, 
3361         shadow: !config || config.shadow !== false
3362     });
3363     this.ghost = Roo.get(this.el.dom.childNodes[1]);
3364     this.dropStatus = this.dropNotAllowed;
3365 };
3366
3367 Roo.dd.StatusProxy.prototype = {
3368     /**
3369      * @cfg {String} dropAllowed
3370      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
3371      */
3372     dropAllowed : "x-dd-drop-ok",
3373     /**
3374      * @cfg {String} dropNotAllowed
3375      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
3376      */
3377     dropNotAllowed : "x-dd-drop-nodrop",
3378
3379     /**
3380      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
3381      * over the current target element.
3382      * @param {String} cssClass The css class for the new drop status indicator image
3383      */
3384     setStatus : function(cssClass){
3385         cssClass = cssClass || this.dropNotAllowed;
3386         if(this.dropStatus != cssClass){
3387             this.el.replaceClass(this.dropStatus, cssClass);
3388             this.dropStatus = cssClass;
3389         }
3390     },
3391
3392     /**
3393      * Resets the status indicator to the default dropNotAllowed value
3394      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
3395      */
3396     reset : function(clearGhost){
3397         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
3398         this.dropStatus = this.dropNotAllowed;
3399         if(clearGhost){
3400             this.ghost.update("");
3401         }
3402     },
3403
3404     /**
3405      * Updates the contents of the ghost element
3406      * @param {String} html The html that will replace the current innerHTML of the ghost element
3407      */
3408     update : function(html){
3409         if(typeof html == "string"){
3410             this.ghost.update(html);
3411         }else{
3412             this.ghost.update("");
3413             html.style.margin = "0";
3414             this.ghost.dom.appendChild(html);
3415         }
3416         // ensure float = none set?? cant remember why though.
3417         var el = this.ghost.dom.firstChild;
3418                 if(el){
3419                         Roo.fly(el).setStyle('float', 'none');
3420                 }
3421     },
3422     
3423     /**
3424      * Returns the underlying proxy {@link Roo.Layer}
3425      * @return {Roo.Layer} el
3426     */
3427     getEl : function(){
3428         return this.el;
3429     },
3430
3431     /**
3432      * Returns the ghost element
3433      * @return {Roo.Element} el
3434      */
3435     getGhost : function(){
3436         return this.ghost;
3437     },
3438
3439     /**
3440      * Hides the proxy
3441      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
3442      */
3443     hide : function(clear){
3444         this.el.hide();
3445         if(clear){
3446             this.reset(true);
3447         }
3448     },
3449
3450     /**
3451      * Stops the repair animation if it's currently running
3452      */
3453     stop : function(){
3454         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
3455             this.anim.stop();
3456         }
3457     },
3458
3459     /**
3460      * Displays this proxy
3461      */
3462     show : function(){
3463         this.el.show();
3464     },
3465
3466     /**
3467      * Force the Layer to sync its shadow and shim positions to the element
3468      */
3469     sync : function(){
3470         this.el.sync();
3471     },
3472
3473     /**
3474      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
3475      * invalid drop operation by the item being dragged.
3476      * @param {Array} xy The XY position of the element ([x, y])
3477      * @param {Function} callback The function to call after the repair is complete
3478      * @param {Object} scope The scope in which to execute the callback
3479      */
3480     repair : function(xy, callback, scope){
3481         this.callback = callback;
3482         this.scope = scope;
3483         if(xy && this.animRepair !== false){
3484             this.el.addClass("x-dd-drag-repair");
3485             this.el.hideUnders(true);
3486             this.anim = this.el.shift({
3487                 duration: this.repairDuration || .5,
3488                 easing: 'easeOut',
3489                 xy: xy,
3490                 stopFx: true,
3491                 callback: this.afterRepair,
3492                 scope: this
3493             });
3494         }else{
3495             this.afterRepair();
3496         }
3497     },
3498
3499     // private
3500     afterRepair : function(){
3501         this.hide(true);
3502         if(typeof this.callback == "function"){
3503             this.callback.call(this.scope || this);
3504         }
3505         this.callback = null;
3506         this.scope = null;
3507     }
3508 };/*
3509  * Based on:
3510  * Ext JS Library 1.1.1
3511  * Copyright(c) 2006-2007, Ext JS, LLC.
3512  *
3513  * Originally Released Under LGPL - original licence link has changed is not relivant.
3514  *
3515  * Fork - LGPL
3516  * <script type="text/javascript">
3517  */
3518
3519 /**
3520  * @class Roo.dd.DragSource
3521  * @extends Roo.dd.DDProxy
3522  * A simple class that provides the basic implementation needed to make any element draggable.
3523  * @constructor
3524  * @param {String/HTMLElement/Element} el The container element
3525  * @param {Object} config
3526  */
3527 Roo.dd.DragSource = function(el, config){
3528     this.el = Roo.get(el);
3529     this.dragData = {};
3530     
3531     Roo.apply(this, config);
3532     
3533     if(!this.proxy){
3534         this.proxy = new Roo.dd.StatusProxy();
3535     }
3536
3537     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
3538           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
3539     
3540     this.dragging = false;
3541 };
3542
3543 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
3544     /**
3545      * @cfg {String} dropAllowed
3546      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
3547      */
3548     dropAllowed : "x-dd-drop-ok",
3549     /**
3550      * @cfg {String} dropNotAllowed
3551      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
3552      */
3553     dropNotAllowed : "x-dd-drop-nodrop",
3554
3555     /**
3556      * Returns the data object associated with this drag source
3557      * @return {Object} data An object containing arbitrary data
3558      */
3559     getDragData : function(e){
3560         return this.dragData;
3561     },
3562
3563     // private
3564     onDragEnter : function(e, id){
3565         var target = Roo.dd.DragDropMgr.getDDById(id);
3566         this.cachedTarget = target;
3567         if(this.beforeDragEnter(target, e, id) !== false){
3568             if(target.isNotifyTarget){
3569                 var status = target.notifyEnter(this, e, this.dragData);
3570                 this.proxy.setStatus(status);
3571             }else{
3572                 this.proxy.setStatus(this.dropAllowed);
3573             }
3574             
3575             if(this.afterDragEnter){
3576                 /**
3577                  * An empty function by default, but provided so that you can perform a custom action
3578                  * when the dragged item enters the drop target by providing an implementation.
3579                  * @param {Roo.dd.DragDrop} target The drop target
3580                  * @param {Event} e The event object
3581                  * @param {String} id The id of the dragged element
3582                  * @method afterDragEnter
3583                  */
3584                 this.afterDragEnter(target, e, id);
3585             }
3586         }
3587     },
3588
3589     /**
3590      * An empty function by default, but provided so that you can perform a custom action
3591      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
3592      * @param {Roo.dd.DragDrop} target The drop target
3593      * @param {Event} e The event object
3594      * @param {String} id The id of the dragged element
3595      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3596      */
3597     beforeDragEnter : function(target, e, id){
3598         return true;
3599     },
3600
3601     // private
3602     alignElWithMouse: function() {
3603         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
3604         this.proxy.sync();
3605     },
3606
3607     // private
3608     onDragOver : function(e, id){
3609         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3610         if(this.beforeDragOver(target, e, id) !== false){
3611             if(target.isNotifyTarget){
3612                 var status = target.notifyOver(this, e, this.dragData);
3613                 this.proxy.setStatus(status);
3614             }
3615
3616             if(this.afterDragOver){
3617                 /**
3618                  * An empty function by default, but provided so that you can perform a custom action
3619                  * while the dragged item is over the drop target by providing an implementation.
3620                  * @param {Roo.dd.DragDrop} target The drop target
3621                  * @param {Event} e The event object
3622                  * @param {String} id The id of the dragged element
3623                  * @method afterDragOver
3624                  */
3625                 this.afterDragOver(target, e, id);
3626             }
3627         }
3628     },
3629
3630     /**
3631      * An empty function by default, but provided so that you can perform a custom action
3632      * while the dragged item is over the drop target and optionally cancel the onDragOver.
3633      * @param {Roo.dd.DragDrop} target The drop target
3634      * @param {Event} e The event object
3635      * @param {String} id The id of the dragged element
3636      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3637      */
3638     beforeDragOver : function(target, e, id){
3639         return true;
3640     },
3641
3642     // private
3643     onDragOut : function(e, id){
3644         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3645         if(this.beforeDragOut(target, e, id) !== false){
3646             if(target.isNotifyTarget){
3647                 target.notifyOut(this, e, this.dragData);
3648             }
3649             this.proxy.reset();
3650             if(this.afterDragOut){
3651                 /**
3652                  * An empty function by default, but provided so that you can perform a custom action
3653                  * after the dragged item is dragged out of the target without dropping.
3654                  * @param {Roo.dd.DragDrop} target The drop target
3655                  * @param {Event} e The event object
3656                  * @param {String} id The id of the dragged element
3657                  * @method afterDragOut
3658                  */
3659                 this.afterDragOut(target, e, id);
3660             }
3661         }
3662         this.cachedTarget = null;
3663     },
3664
3665     /**
3666      * An empty function by default, but provided so that you can perform a custom action before the dragged
3667      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
3668      * @param {Roo.dd.DragDrop} target The drop target
3669      * @param {Event} e The event object
3670      * @param {String} id The id of the dragged element
3671      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3672      */
3673     beforeDragOut : function(target, e, id){
3674         return true;
3675     },
3676     
3677     // private
3678     onDragDrop : function(e, id){
3679         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3680         if(this.beforeDragDrop(target, e, id) !== false){
3681             if(target.isNotifyTarget){
3682                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
3683                     this.onValidDrop(target, e, id);
3684                 }else{
3685                     this.onInvalidDrop(target, e, id);
3686                 }
3687             }else{
3688                 this.onValidDrop(target, e, id);
3689             }
3690             
3691             if(this.afterDragDrop){
3692                 /**
3693                  * An empty function by default, but provided so that you can perform a custom action
3694                  * after a valid drag drop has occurred by providing an implementation.
3695                  * @param {Roo.dd.DragDrop} target The drop target
3696                  * @param {Event} e The event object
3697                  * @param {String} id The id of the dropped element
3698                  * @method afterDragDrop
3699                  */
3700                 this.afterDragDrop(target, e, id);
3701             }
3702         }
3703         delete this.cachedTarget;
3704     },
3705
3706     /**
3707      * An empty function by default, but provided so that you can perform a custom action before the dragged
3708      * item is dropped onto the target and optionally cancel the onDragDrop.
3709      * @param {Roo.dd.DragDrop} target The drop target
3710      * @param {Event} e The event object
3711      * @param {String} id The id of the dragged element
3712      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
3713      */
3714     beforeDragDrop : function(target, e, id){
3715         return true;
3716     },
3717
3718     // private
3719     onValidDrop : function(target, e, id){
3720         this.hideProxy();
3721         if(this.afterValidDrop){
3722             /**
3723              * An empty function by default, but provided so that you can perform a custom action
3724              * after a valid drop has occurred by providing an implementation.
3725              * @param {Object} target The target DD 
3726              * @param {Event} e The event object
3727              * @param {String} id The id of the dropped element
3728              * @method afterInvalidDrop
3729              */
3730             this.afterValidDrop(target, e, id);
3731         }
3732     },
3733
3734     // private
3735     getRepairXY : function(e, data){
3736         return this.el.getXY();  
3737     },
3738
3739     // private
3740     onInvalidDrop : function(target, e, id){
3741         this.beforeInvalidDrop(target, e, id);
3742         if(this.cachedTarget){
3743             if(this.cachedTarget.isNotifyTarget){
3744                 this.cachedTarget.notifyOut(this, e, this.dragData);
3745             }
3746             this.cacheTarget = null;
3747         }
3748         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
3749
3750         if(this.afterInvalidDrop){
3751             /**
3752              * An empty function by default, but provided so that you can perform a custom action
3753              * after an invalid drop has occurred by providing an implementation.
3754              * @param {Event} e The event object
3755              * @param {String} id The id of the dropped element
3756              * @method afterInvalidDrop
3757              */
3758             this.afterInvalidDrop(e, id);
3759         }
3760     },
3761
3762     // private
3763     afterRepair : function(){
3764         if(Roo.enableFx){
3765             this.el.highlight(this.hlColor || "c3daf9");
3766         }
3767         this.dragging = false;
3768     },
3769
3770     /**
3771      * An empty function by default, but provided so that you can perform a custom action after an invalid
3772      * drop has occurred.
3773      * @param {Roo.dd.DragDrop} target The drop target
3774      * @param {Event} e The event object
3775      * @param {String} id The id of the dragged element
3776      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
3777      */
3778     beforeInvalidDrop : function(target, e, id){
3779         return true;
3780     },
3781
3782     // private
3783     handleMouseDown : function(e){
3784         if(this.dragging) {
3785             return;
3786         }
3787         var data = this.getDragData(e);
3788         if(data && this.onBeforeDrag(data, e) !== false){
3789             this.dragData = data;
3790             this.proxy.stop();
3791             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
3792         } 
3793     },
3794
3795     /**
3796      * An empty function by default, but provided so that you can perform a custom action before the initial
3797      * drag event begins and optionally cancel it.
3798      * @param {Object} data An object containing arbitrary data to be shared with drop targets
3799      * @param {Event} e The event object
3800      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3801      */
3802     onBeforeDrag : function(data, e){
3803         return true;
3804     },
3805
3806     /**
3807      * An empty function by default, but provided so that you can perform a custom action once the initial
3808      * drag event has begun.  The drag cannot be canceled from this function.
3809      * @param {Number} x The x position of the click on the dragged object
3810      * @param {Number} y The y position of the click on the dragged object
3811      */
3812     onStartDrag : Roo.emptyFn,
3813
3814     // private - YUI override
3815     startDrag : function(x, y){
3816         this.proxy.reset();
3817         this.dragging = true;
3818         this.proxy.update("");
3819         this.onInitDrag(x, y);
3820         this.proxy.show();
3821     },
3822
3823     // private
3824     onInitDrag : function(x, y){
3825         var clone = this.el.dom.cloneNode(true);
3826         clone.id = Roo.id(); // prevent duplicate ids
3827         this.proxy.update(clone);
3828         this.onStartDrag(x, y);
3829         return true;
3830     },
3831
3832     /**
3833      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
3834      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
3835      */
3836     getProxy : function(){
3837         return this.proxy;  
3838     },
3839
3840     /**
3841      * Hides the drag source's {@link Roo.dd.StatusProxy}
3842      */
3843     hideProxy : function(){
3844         this.proxy.hide();  
3845         this.proxy.reset(true);
3846         this.dragging = false;
3847     },
3848
3849     // private
3850     triggerCacheRefresh : function(){
3851         Roo.dd.DDM.refreshCache(this.groups);
3852     },
3853
3854     // private - override to prevent hiding
3855     b4EndDrag: function(e) {
3856     },
3857
3858     // private - override to prevent moving
3859     endDrag : function(e){
3860         this.onEndDrag(this.dragData, e);
3861     },
3862
3863     // private
3864     onEndDrag : function(data, e){
3865     },
3866     
3867     // private - pin to cursor
3868     autoOffset : function(x, y) {
3869         this.setDelta(-12, -20);
3870     }    
3871 });/*
3872  * Based on:
3873  * Ext JS Library 1.1.1
3874  * Copyright(c) 2006-2007, Ext JS, LLC.
3875  *
3876  * Originally Released Under LGPL - original licence link has changed is not relivant.
3877  *
3878  * Fork - LGPL
3879  * <script type="text/javascript">
3880  */
3881
3882
3883 /**
3884  * @class Roo.dd.DropTarget
3885  * @extends Roo.dd.DDTarget
3886  * A simple class that provides the basic implementation needed to make any element a drop target that can have
3887  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
3888  * @constructor
3889  * @param {String/HTMLElement/Element} el The container element
3890  * @param {Object} config
3891  */
3892 Roo.dd.DropTarget = function(el, config){
3893     this.el = Roo.get(el);
3894     
3895     var listeners = false; ;
3896     if (config && config.listeners) {
3897         listeners= config.listeners;
3898         delete config.listeners;
3899     }
3900     Roo.apply(this, config);
3901     
3902     if(this.containerScroll){
3903         Roo.dd.ScrollManager.register(this.el);
3904     }
3905     this.addEvents( {
3906          /**
3907          * @scope Roo.dd.DropTarget
3908          */
3909          
3910          /**
3911          * @event enter
3912          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
3913          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
3914          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
3915          * 
3916          * IMPORTANT : it should set this.overClass and this.dropAllowed
3917          * 
3918          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3919          * @param {Event} e The event
3920          * @param {Object} data An object containing arbitrary data supplied by the drag source
3921          */
3922         "enter" : true,
3923         
3924          /**
3925          * @event over
3926          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
3927          * This method will be called on every mouse movement while the drag source is over the drop target.
3928          * This default implementation simply returns the dropAllowed config value.
3929          * 
3930          * IMPORTANT : it should set this.dropAllowed
3931          * 
3932          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3933          * @param {Event} e The event
3934          * @param {Object} data An object containing arbitrary data supplied by the drag source
3935          
3936          */
3937         "over" : true,
3938         /**
3939          * @event out
3940          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
3941          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
3942          * overClass (if any) from the drop element.
3943          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3944          * @param {Event} e The event
3945          * @param {Object} data An object containing arbitrary data supplied by the drag source
3946          */
3947          "out" : true,
3948          
3949         /**
3950          * @event drop
3951          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
3952          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
3953          * implementation that does something to process the drop event and returns true so that the drag source's
3954          * repair action does not run.
3955          * 
3956          * IMPORTANT : it should set this.success
3957          * 
3958          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3959          * @param {Event} e The event
3960          * @param {Object} data An object containing arbitrary data supplied by the drag source
3961         */
3962          "drop" : true
3963     });
3964             
3965      
3966     Roo.dd.DropTarget.superclass.constructor.call(  this, 
3967         this.el.dom, 
3968         this.ddGroup || this.group,
3969         {
3970             isTarget: true,
3971             listeners : listeners || {} 
3972            
3973         
3974         }
3975     );
3976
3977 };
3978
3979 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
3980     /**
3981      * @cfg {String} overClass
3982      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
3983      */
3984      /**
3985      * @cfg {String} ddGroup
3986      * The drag drop group to handle drop events for
3987      */
3988      
3989     /**
3990      * @cfg {String} dropAllowed
3991      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
3992      */
3993     dropAllowed : "x-dd-drop-ok",
3994     /**
3995      * @cfg {String} dropNotAllowed
3996      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
3997      */
3998     dropNotAllowed : "x-dd-drop-nodrop",
3999     /**
4000      * @cfg {boolean} success
4001      * set this after drop listener.. 
4002      */
4003     success : false,
4004     /**
4005      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
4006      * if the drop point is valid for over/enter..
4007      */
4008     valid : false,
4009     // private
4010     isTarget : true,
4011
4012     // private
4013     isNotifyTarget : true,
4014     
4015     /**
4016      * @hide
4017      */
4018     notifyEnter : function(dd, e, data)
4019     {
4020         this.valid = true;
4021         this.fireEvent('enter', dd, e, data);
4022         if(this.overClass){
4023             this.el.addClass(this.overClass);
4024         }
4025         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
4026             this.valid ? this.dropAllowed : this.dropNotAllowed
4027         );
4028     },
4029
4030     /**
4031      * @hide
4032      */
4033     notifyOver : function(dd, e, data)
4034     {
4035         this.valid = true;
4036         this.fireEvent('over', dd, e, data);
4037         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
4038             this.valid ? this.dropAllowed : this.dropNotAllowed
4039         );
4040     },
4041
4042     /**
4043      * @hide
4044      */
4045     notifyOut : function(dd, e, data)
4046     {
4047         this.fireEvent('out', dd, e, data);
4048         if(this.overClass){
4049             this.el.removeClass(this.overClass);
4050         }
4051     },
4052
4053     /**
4054      * @hide
4055      */
4056     notifyDrop : function(dd, e, data)
4057     {
4058         this.success = false;
4059         this.fireEvent('drop', dd, e, data);
4060         return this.success;
4061     }
4062 });/*
4063  * Based on:
4064  * Ext JS Library 1.1.1
4065  * Copyright(c) 2006-2007, Ext JS, LLC.
4066  *
4067  * Originally Released Under LGPL - original licence link has changed is not relivant.
4068  *
4069  * Fork - LGPL
4070  * <script type="text/javascript">
4071  */
4072
4073
4074 /**
4075  * @class Roo.dd.DragZone
4076  * @extends Roo.dd.DragSource
4077  * This class provides a container DD instance that proxies for multiple child node sources.<br />
4078  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
4079  * @constructor
4080  * @param {String/HTMLElement/Element} el The container element
4081  * @param {Object} config
4082  */
4083 Roo.dd.DragZone = function(el, config){
4084     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
4085     if(this.containerScroll){
4086         Roo.dd.ScrollManager.register(this.el);
4087     }
4088 };
4089
4090 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
4091     /**
4092      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
4093      * for auto scrolling during drag operations.
4094      */
4095     /**
4096      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
4097      * method after a failed drop (defaults to "c3daf9" - light blue)
4098      */
4099
4100     /**
4101      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
4102      * for a valid target to drag based on the mouse down. Override this method
4103      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
4104      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
4105      * @param {EventObject} e The mouse down event
4106      * @return {Object} The dragData
4107      */
4108     getDragData : function(e){
4109         return Roo.dd.Registry.getHandleFromEvent(e);
4110     },
4111     
4112     /**
4113      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
4114      * this.dragData.ddel
4115      * @param {Number} x The x position of the click on the dragged object
4116      * @param {Number} y The y position of the click on the dragged object
4117      * @return {Boolean} true to continue the drag, false to cancel
4118      */
4119     onInitDrag : function(x, y){
4120         this.proxy.update(this.dragData.ddel.cloneNode(true));
4121         this.onStartDrag(x, y);
4122         return true;
4123     },
4124     
4125     /**
4126      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
4127      */
4128     afterRepair : function(){
4129         if(Roo.enableFx){
4130             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
4131         }
4132         this.dragging = false;
4133     },
4134
4135     /**
4136      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
4137      * the XY of this.dragData.ddel
4138      * @param {EventObject} e The mouse up event
4139      * @return {Array} The xy location (e.g. [100, 200])
4140      */
4141     getRepairXY : function(e){
4142         return Roo.Element.fly(this.dragData.ddel).getXY();  
4143     }
4144 });/*
4145  * Based on:
4146  * Ext JS Library 1.1.1
4147  * Copyright(c) 2006-2007, Ext JS, LLC.
4148  *
4149  * Originally Released Under LGPL - original licence link has changed is not relivant.
4150  *
4151  * Fork - LGPL
4152  * <script type="text/javascript">
4153  */
4154 /**
4155  * @class Roo.dd.DropZone
4156  * @extends Roo.dd.DropTarget
4157  * This class provides a container DD instance that proxies for multiple child node targets.<br />
4158  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
4159  * @constructor
4160  * @param {String/HTMLElement/Element} el The container element
4161  * @param {Object} config
4162  */
4163 Roo.dd.DropZone = function(el, config){
4164     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
4165 };
4166
4167 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
4168     /**
4169      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
4170      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
4171      * provide your own custom lookup.
4172      * @param {Event} e The event
4173      * @return {Object} data The custom data
4174      */
4175     getTargetFromEvent : function(e){
4176         return Roo.dd.Registry.getTargetFromEvent(e);
4177     },
4178
4179     /**
4180      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
4181      * that it has registered.  This method has no default implementation and should be overridden to provide
4182      * node-specific processing if necessary.
4183      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
4184      * {@link #getTargetFromEvent} for this node)
4185      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4186      * @param {Event} e The event
4187      * @param {Object} data An object containing arbitrary data supplied by the drag source
4188      */
4189     onNodeEnter : function(n, dd, e, data){
4190         
4191     },
4192
4193     /**
4194      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
4195      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
4196      * overridden to provide the proper feedback.
4197      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4198      * {@link #getTargetFromEvent} for this node)
4199      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4200      * @param {Event} e The event
4201      * @param {Object} data An object containing arbitrary data supplied by the drag source
4202      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4203      * underlying {@link Roo.dd.StatusProxy} can be updated
4204      */
4205     onNodeOver : function(n, dd, e, data){
4206         return this.dropAllowed;
4207     },
4208
4209     /**
4210      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
4211      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
4212      * node-specific processing if necessary.
4213      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4214      * {@link #getTargetFromEvent} for this node)
4215      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4216      * @param {Event} e The event
4217      * @param {Object} data An object containing arbitrary data supplied by the drag source
4218      */
4219     onNodeOut : function(n, dd, e, data){
4220         
4221     },
4222
4223     /**
4224      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
4225      * the drop node.  The default implementation returns false, so it should be overridden to provide the
4226      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
4227      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4228      * {@link #getTargetFromEvent} for this node)
4229      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4230      * @param {Event} e The event
4231      * @param {Object} data An object containing arbitrary data supplied by the drag source
4232      * @return {Boolean} True if the drop was valid, else false
4233      */
4234     onNodeDrop : function(n, dd, e, data){
4235         return false;
4236     },
4237
4238     /**
4239      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
4240      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
4241      * it should be overridden to provide the proper feedback if necessary.
4242      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4243      * @param {Event} e The event
4244      * @param {Object} data An object containing arbitrary data supplied by the drag source
4245      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4246      * underlying {@link Roo.dd.StatusProxy} can be updated
4247      */
4248     onContainerOver : function(dd, e, data){
4249         return this.dropNotAllowed;
4250     },
4251
4252     /**
4253      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
4254      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
4255      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
4256      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
4257      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4258      * @param {Event} e The event
4259      * @param {Object} data An object containing arbitrary data supplied by the drag source
4260      * @return {Boolean} True if the drop was valid, else false
4261      */
4262     onContainerDrop : function(dd, e, data){
4263         return false;
4264     },
4265
4266     /**
4267      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
4268      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
4269      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
4270      * you should override this method and provide a custom implementation.
4271      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4272      * @param {Event} e The event
4273      * @param {Object} data An object containing arbitrary data supplied by the drag source
4274      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4275      * underlying {@link Roo.dd.StatusProxy} can be updated
4276      */
4277     notifyEnter : function(dd, e, data){
4278         return this.dropNotAllowed;
4279     },
4280
4281     /**
4282      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
4283      * This method will be called on every mouse movement while the drag source is over the drop zone.
4284      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
4285      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
4286      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
4287      * registered node, it will call {@link #onContainerOver}.
4288      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4289      * @param {Event} e The event
4290      * @param {Object} data An object containing arbitrary data supplied by the drag source
4291      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4292      * underlying {@link Roo.dd.StatusProxy} can be updated
4293      */
4294     notifyOver : function(dd, e, data){
4295         var n = this.getTargetFromEvent(e);
4296         if(!n){ // not over valid drop target
4297             if(this.lastOverNode){
4298                 this.onNodeOut(this.lastOverNode, dd, e, data);
4299                 this.lastOverNode = null;
4300             }
4301             return this.onContainerOver(dd, e, data);
4302         }
4303         if(this.lastOverNode != n){
4304             if(this.lastOverNode){
4305                 this.onNodeOut(this.lastOverNode, dd, e, data);
4306             }
4307             this.onNodeEnter(n, dd, e, data);
4308             this.lastOverNode = n;
4309         }
4310         return this.onNodeOver(n, dd, e, data);
4311     },
4312
4313     /**
4314      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
4315      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
4316      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
4317      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
4318      * @param {Event} e The event
4319      * @param {Object} data An object containing arbitrary data supplied by the drag zone
4320      */
4321     notifyOut : function(dd, e, data){
4322         if(this.lastOverNode){
4323             this.onNodeOut(this.lastOverNode, dd, e, data);
4324             this.lastOverNode = null;
4325         }
4326     },
4327
4328     /**
4329      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
4330      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
4331      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
4332      * otherwise it will call {@link #onContainerDrop}.
4333      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4334      * @param {Event} e The event
4335      * @param {Object} data An object containing arbitrary data supplied by the drag source
4336      * @return {Boolean} True if the drop was valid, else false
4337      */
4338     notifyDrop : function(dd, e, data){
4339         if(this.lastOverNode){
4340             this.onNodeOut(this.lastOverNode, dd, e, data);
4341             this.lastOverNode = null;
4342         }
4343         var n = this.getTargetFromEvent(e);
4344         return n ?
4345             this.onNodeDrop(n, dd, e, data) :
4346             this.onContainerDrop(dd, e, data);
4347     },
4348
4349     // private
4350     triggerCacheRefresh : function(){
4351         Roo.dd.DDM.refreshCache(this.groups);
4352     }  
4353 });/*
4354  * Based on:
4355  * Ext JS Library 1.1.1
4356  * Copyright(c) 2006-2007, Ext JS, LLC.
4357  *
4358  * Originally Released Under LGPL - original licence link has changed is not relivant.
4359  *
4360  * Fork - LGPL
4361  * <script type="text/javascript">
4362  */
4363
4364
4365 /**
4366  * @class Roo.data.SortTypes
4367  * @singleton
4368  * Defines the default sorting (casting?) comparison functions used when sorting data.
4369  */
4370 Roo.data.SortTypes = {
4371     /**
4372      * Default sort that does nothing
4373      * @param {Mixed} s The value being converted
4374      * @return {Mixed} The comparison value
4375      */
4376     none : function(s){
4377         return s;
4378     },
4379     
4380     /**
4381      * The regular expression used to strip tags
4382      * @type {RegExp}
4383      * @property
4384      */
4385     stripTagsRE : /<\/?[^>]+>/gi,
4386     
4387     /**
4388      * Strips all HTML tags to sort on text only
4389      * @param {Mixed} s The value being converted
4390      * @return {String} The comparison value
4391      */
4392     asText : function(s){
4393         return String(s).replace(this.stripTagsRE, "");
4394     },
4395     
4396     /**
4397      * Strips all HTML tags to sort on text only - Case insensitive
4398      * @param {Mixed} s The value being converted
4399      * @return {String} The comparison value
4400      */
4401     asUCText : function(s){
4402         return String(s).toUpperCase().replace(this.stripTagsRE, "");
4403     },
4404     
4405     /**
4406      * Case insensitive string
4407      * @param {Mixed} s The value being converted
4408      * @return {String} The comparison value
4409      */
4410     asUCString : function(s) {
4411         return String(s).toUpperCase();
4412     },
4413     
4414     /**
4415      * Date sorting
4416      * @param {Mixed} s The value being converted
4417      * @return {Number} The comparison value
4418      */
4419     asDate : function(s) {
4420         if(!s){
4421             return 0;
4422         }
4423         if(s instanceof Date){
4424             return s.getTime();
4425         }
4426         return Date.parse(String(s));
4427     },
4428     
4429     /**
4430      * Float sorting
4431      * @param {Mixed} s The value being converted
4432      * @return {Float} The comparison value
4433      */
4434     asFloat : function(s) {
4435         var val = parseFloat(String(s).replace(/,/g, ""));
4436         if(isNaN(val)) val = 0;
4437         return val;
4438     },
4439     
4440     /**
4441      * Integer sorting
4442      * @param {Mixed} s The value being converted
4443      * @return {Number} The comparison value
4444      */
4445     asInt : function(s) {
4446         var val = parseInt(String(s).replace(/,/g, ""));
4447         if(isNaN(val)) val = 0;
4448         return val;
4449     }
4450 };/*
4451  * Based on:
4452  * Ext JS Library 1.1.1
4453  * Copyright(c) 2006-2007, Ext JS, LLC.
4454  *
4455  * Originally Released Under LGPL - original licence link has changed is not relivant.
4456  *
4457  * Fork - LGPL
4458  * <script type="text/javascript">
4459  */
4460
4461 /**
4462 * @class Roo.data.Record
4463  * Instances of this class encapsulate both record <em>definition</em> information, and record
4464  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
4465  * to access Records cached in an {@link Roo.data.Store} object.<br>
4466  * <p>
4467  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
4468  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
4469  * objects.<br>
4470  * <p>
4471  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
4472  * @constructor
4473  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
4474  * {@link #create}. The parameters are the same.
4475  * @param {Array} data An associative Array of data values keyed by the field name.
4476  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
4477  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
4478  * not specified an integer id is generated.
4479  */
4480 Roo.data.Record = function(data, id){
4481     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
4482     this.data = data;
4483 };
4484
4485 /**
4486  * Generate a constructor for a specific record layout.
4487  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
4488  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
4489  * Each field definition object may contain the following properties: <ul>
4490  * <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,
4491  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
4492  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
4493  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
4494  * is being used, then this is a string containing the javascript expression to reference the data relative to 
4495  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
4496  * to the data item relative to the record element. If the mapping expression is the same as the field name,
4497  * this may be omitted.</p></li>
4498  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
4499  * <ul><li>auto (Default, implies no conversion)</li>
4500  * <li>string</li>
4501  * <li>int</li>
4502  * <li>float</li>
4503  * <li>boolean</li>
4504  * <li>date</li></ul></p></li>
4505  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
4506  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
4507  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
4508  * by the Reader into an object that will be stored in the Record. It is passed the
4509  * following parameters:<ul>
4510  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
4511  * </ul></p></li>
4512  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
4513  * </ul>
4514  * <br>usage:<br><pre><code>
4515 var TopicRecord = Roo.data.Record.create(
4516     {name: 'title', mapping: 'topic_title'},
4517     {name: 'author', mapping: 'username'},
4518     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
4519     {name: 'lastPost', mapping: 'post_time', type: 'date'},
4520     {name: 'lastPoster', mapping: 'user2'},
4521     {name: 'excerpt', mapping: 'post_text'}
4522 );
4523
4524 var myNewRecord = new TopicRecord({
4525     title: 'Do my job please',
4526     author: 'noobie',
4527     totalPosts: 1,
4528     lastPost: new Date(),
4529     lastPoster: 'Animal',
4530     excerpt: 'No way dude!'
4531 });
4532 myStore.add(myNewRecord);
4533 </code></pre>
4534  * @method create
4535  * @static
4536  */
4537 Roo.data.Record.create = function(o){
4538     var f = function(){
4539         f.superclass.constructor.apply(this, arguments);
4540     };
4541     Roo.extend(f, Roo.data.Record);
4542     var p = f.prototype;
4543     p.fields = new Roo.util.MixedCollection(false, function(field){
4544         return field.name;
4545     });
4546     for(var i = 0, len = o.length; i < len; i++){
4547         p.fields.add(new Roo.data.Field(o[i]));
4548     }
4549     f.getField = function(name){
4550         return p.fields.get(name);  
4551     };
4552     return f;
4553 };
4554
4555 Roo.data.Record.AUTO_ID = 1000;
4556 Roo.data.Record.EDIT = 'edit';
4557 Roo.data.Record.REJECT = 'reject';
4558 Roo.data.Record.COMMIT = 'commit';
4559
4560 Roo.data.Record.prototype = {
4561     /**
4562      * Readonly flag - true if this record has been modified.
4563      * @type Boolean
4564      */
4565     dirty : false,
4566     editing : false,
4567     error: null,
4568     modified: null,
4569
4570     // private
4571     join : function(store){
4572         this.store = store;
4573     },
4574
4575     /**
4576      * Set the named field to the specified value.
4577      * @param {String} name The name of the field to set.
4578      * @param {Object} value The value to set the field to.
4579      */
4580     set : function(name, value){
4581         if(this.data[name] == value){
4582             return;
4583         }
4584         this.dirty = true;
4585         if(!this.modified){
4586             this.modified = {};
4587         }
4588         if(typeof this.modified[name] == 'undefined'){
4589             this.modified[name] = this.data[name];
4590         }
4591         this.data[name] = value;
4592         if(!this.editing && this.store){
4593             this.store.afterEdit(this);
4594         }       
4595     },
4596
4597     /**
4598      * Get the value of the named field.
4599      * @param {String} name The name of the field to get the value of.
4600      * @return {Object} The value of the field.
4601      */
4602     get : function(name){
4603         return this.data[name]; 
4604     },
4605
4606     // private
4607     beginEdit : function(){
4608         this.editing = true;
4609         this.modified = {}; 
4610     },
4611
4612     // private
4613     cancelEdit : function(){
4614         this.editing = false;
4615         delete this.modified;
4616     },
4617
4618     // private
4619     endEdit : function(){
4620         this.editing = false;
4621         if(this.dirty && this.store){
4622             this.store.afterEdit(this);
4623         }
4624     },
4625
4626     /**
4627      * Usually called by the {@link Roo.data.Store} which owns the Record.
4628      * Rejects all changes made to the Record since either creation, or the last commit operation.
4629      * Modified fields are reverted to their original values.
4630      * <p>
4631      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
4632      * of reject operations.
4633      */
4634     reject : function(){
4635         var m = this.modified;
4636         for(var n in m){
4637             if(typeof m[n] != "function"){
4638                 this.data[n] = m[n];
4639             }
4640         }
4641         this.dirty = false;
4642         delete this.modified;
4643         this.editing = false;
4644         if(this.store){
4645             this.store.afterReject(this);
4646         }
4647     },
4648
4649     /**
4650      * Usually called by the {@link Roo.data.Store} which owns the Record.
4651      * Commits all changes made to the Record since either creation, or the last commit operation.
4652      * <p>
4653      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
4654      * of commit operations.
4655      */
4656     commit : function(){
4657         this.dirty = false;
4658         delete this.modified;
4659         this.editing = false;
4660         if(this.store){
4661             this.store.afterCommit(this);
4662         }
4663     },
4664
4665     // private
4666     hasError : function(){
4667         return this.error != null;
4668     },
4669
4670     // private
4671     clearError : function(){
4672         this.error = null;
4673     },
4674
4675     /**
4676      * Creates a copy of this record.
4677      * @param {String} id (optional) A new record id if you don't want to use this record's id
4678      * @return {Record}
4679      */
4680     copy : function(newId) {
4681         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
4682     }
4683 };/*
4684  * Based on:
4685  * Ext JS Library 1.1.1
4686  * Copyright(c) 2006-2007, Ext JS, LLC.
4687  *
4688  * Originally Released Under LGPL - original licence link has changed is not relivant.
4689  *
4690  * Fork - LGPL
4691  * <script type="text/javascript">
4692  */
4693
4694
4695
4696 /**
4697  * @class Roo.data.Store
4698  * @extends Roo.util.Observable
4699  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
4700  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
4701  * <p>
4702  * 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
4703  * has no knowledge of the format of the data returned by the Proxy.<br>
4704  * <p>
4705  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
4706  * instances from the data object. These records are cached and made available through accessor functions.
4707  * @constructor
4708  * Creates a new Store.
4709  * @param {Object} config A config object containing the objects needed for the Store to access data,
4710  * and read the data into Records.
4711  */
4712 Roo.data.Store = function(config){
4713     this.data = new Roo.util.MixedCollection(false);
4714     this.data.getKey = function(o){
4715         return o.id;
4716     };
4717     this.baseParams = {};
4718     // private
4719     this.paramNames = {
4720         "start" : "start",
4721         "limit" : "limit",
4722         "sort" : "sort",
4723         "dir" : "dir",
4724         "multisort" : "_multisort"
4725     };
4726
4727     if(config && config.data){
4728         this.inlineData = config.data;
4729         delete config.data;
4730     }
4731
4732     Roo.apply(this, config);
4733     
4734     if(this.reader){ // reader passed
4735         this.reader = Roo.factory(this.reader, Roo.data);
4736         this.reader.xmodule = this.xmodule || false;
4737         if(!this.recordType){
4738             this.recordType = this.reader.recordType;
4739         }
4740         if(this.reader.onMetaChange){
4741             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
4742         }
4743     }
4744
4745     if(this.recordType){
4746         this.fields = this.recordType.prototype.fields;
4747     }
4748     this.modified = [];
4749
4750     this.addEvents({
4751         /**
4752          * @event datachanged
4753          * Fires when the data cache has changed, and a widget which is using this Store
4754          * as a Record cache should refresh its view.
4755          * @param {Store} this
4756          */
4757         datachanged : true,
4758         /**
4759          * @event metachange
4760          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
4761          * @param {Store} this
4762          * @param {Object} meta The JSON metadata
4763          */
4764         metachange : true,
4765         /**
4766          * @event add
4767          * Fires when Records have been added to the Store
4768          * @param {Store} this
4769          * @param {Roo.data.Record[]} records The array of Records added
4770          * @param {Number} index The index at which the record(s) were added
4771          */
4772         add : true,
4773         /**
4774          * @event remove
4775          * Fires when a Record has been removed from the Store
4776          * @param {Store} this
4777          * @param {Roo.data.Record} record The Record that was removed
4778          * @param {Number} index The index at which the record was removed
4779          */
4780         remove : true,
4781         /**
4782          * @event update
4783          * Fires when a Record has been updated
4784          * @param {Store} this
4785          * @param {Roo.data.Record} record The Record that was updated
4786          * @param {String} operation The update operation being performed.  Value may be one of:
4787          * <pre><code>
4788  Roo.data.Record.EDIT
4789  Roo.data.Record.REJECT
4790  Roo.data.Record.COMMIT
4791          * </code></pre>
4792          */
4793         update : true,
4794         /**
4795          * @event clear
4796          * Fires when the data cache has been cleared.
4797          * @param {Store} this
4798          */
4799         clear : true,
4800         /**
4801          * @event beforeload
4802          * Fires before a request is made for a new data object.  If the beforeload handler returns false
4803          * the load action will be canceled.
4804          * @param {Store} this
4805          * @param {Object} options The loading options that were specified (see {@link #load} for details)
4806          */
4807         beforeload : true,
4808         /**
4809          * @event load
4810          * Fires after a new set of Records has been loaded.
4811          * @param {Store} this
4812          * @param {Roo.data.Record[]} records The Records that were loaded
4813          * @param {Object} options The loading options that were specified (see {@link #load} for details)
4814          */
4815         load : true,
4816         /**
4817          * @event loadexception
4818          * Fires if an exception occurs in the Proxy during loading.
4819          * Called with the signature of the Proxy's "loadexception" event.
4820          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
4821          * 
4822          * @param {Proxy} 
4823          * @param {Object} return from JsonData.reader() - success, totalRecords, records
4824          * @param {Object} load options 
4825          * @param {Object} jsonData from your request (normally this contains the Exception)
4826          */
4827         loadexception : true
4828     });
4829     
4830     if(this.proxy){
4831         this.proxy = Roo.factory(this.proxy, Roo.data);
4832         this.proxy.xmodule = this.xmodule || false;
4833         this.relayEvents(this.proxy,  ["loadexception"]);
4834     }
4835     this.sortToggle = {};
4836     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
4837
4838     Roo.data.Store.superclass.constructor.call(this);
4839
4840     if(this.inlineData){
4841         this.loadData(this.inlineData);
4842         delete this.inlineData;
4843     }
4844 };
4845 Roo.extend(Roo.data.Store, Roo.util.Observable, {
4846      /**
4847     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
4848     * without a remote query - used by combo/forms at present.
4849     */
4850     
4851     /**
4852     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
4853     */
4854     /**
4855     * @cfg {Array} data Inline data to be loaded when the store is initialized.
4856     */
4857     /**
4858     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
4859     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
4860     */
4861     /**
4862     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
4863     * on any HTTP request
4864     */
4865     /**
4866     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
4867     */
4868     /**
4869     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
4870     */
4871     multiSort: false,
4872     /**
4873     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
4874     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
4875     */
4876     remoteSort : false,
4877
4878     /**
4879     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
4880      * loaded or when a record is removed. (defaults to false).
4881     */
4882     pruneModifiedRecords : false,
4883
4884     // private
4885     lastOptions : null,
4886
4887     /**
4888      * Add Records to the Store and fires the add event.
4889      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
4890      */
4891     add : function(records){
4892         records = [].concat(records);
4893         for(var i = 0, len = records.length; i < len; i++){
4894             records[i].join(this);
4895         }
4896         var index = this.data.length;
4897         this.data.addAll(records);
4898         this.fireEvent("add", this, records, index);
4899     },
4900
4901     /**
4902      * Remove a Record from the Store and fires the remove event.
4903      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
4904      */
4905     remove : function(record){
4906         var index = this.data.indexOf(record);
4907         this.data.removeAt(index);
4908         if(this.pruneModifiedRecords){
4909             this.modified.remove(record);
4910         }
4911         this.fireEvent("remove", this, record, index);
4912     },
4913
4914     /**
4915      * Remove all Records from the Store and fires the clear event.
4916      */
4917     removeAll : function(){
4918         this.data.clear();
4919         if(this.pruneModifiedRecords){
4920             this.modified = [];
4921         }
4922         this.fireEvent("clear", this);
4923     },
4924
4925     /**
4926      * Inserts Records to the Store at the given index and fires the add event.
4927      * @param {Number} index The start index at which to insert the passed Records.
4928      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
4929      */
4930     insert : function(index, records){
4931         records = [].concat(records);
4932         for(var i = 0, len = records.length; i < len; i++){
4933             this.data.insert(index, records[i]);
4934             records[i].join(this);
4935         }
4936         this.fireEvent("add", this, records, index);
4937     },
4938
4939     /**
4940      * Get the index within the cache of the passed Record.
4941      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
4942      * @return {Number} The index of the passed Record. Returns -1 if not found.
4943      */
4944     indexOf : function(record){
4945         return this.data.indexOf(record);
4946     },
4947
4948     /**
4949      * Get the index within the cache of the Record with the passed id.
4950      * @param {String} id The id of the Record to find.
4951      * @return {Number} The index of the Record. Returns -1 if not found.
4952      */
4953     indexOfId : function(id){
4954         return this.data.indexOfKey(id);
4955     },
4956
4957     /**
4958      * Get the Record with the specified id.
4959      * @param {String} id The id of the Record to find.
4960      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
4961      */
4962     getById : function(id){
4963         return this.data.key(id);
4964     },
4965
4966     /**
4967      * Get the Record at the specified index.
4968      * @param {Number} index The index of the Record to find.
4969      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
4970      */
4971     getAt : function(index){
4972         return this.data.itemAt(index);
4973     },
4974
4975     /**
4976      * Returns a range of Records between specified indices.
4977      * @param {Number} startIndex (optional) The starting index (defaults to 0)
4978      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
4979      * @return {Roo.data.Record[]} An array of Records
4980      */
4981     getRange : function(start, end){
4982         return this.data.getRange(start, end);
4983     },
4984
4985     // private
4986     storeOptions : function(o){
4987         o = Roo.apply({}, o);
4988         delete o.callback;
4989         delete o.scope;
4990         this.lastOptions = o;
4991     },
4992
4993     /**
4994      * Loads the Record cache from the configured Proxy using the configured Reader.
4995      * <p>
4996      * If using remote paging, then the first load call must specify the <em>start</em>
4997      * and <em>limit</em> properties in the options.params property to establish the initial
4998      * position within the dataset, and the number of Records to cache on each read from the Proxy.
4999      * <p>
5000      * <strong>It is important to note that for remote data sources, loading is asynchronous,
5001      * and this call will return before the new data has been loaded. Perform any post-processing
5002      * in a callback function, or in a "load" event handler.</strong>
5003      * <p>
5004      * @param {Object} options An object containing properties which control loading options:<ul>
5005      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
5006      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
5007      * passed the following arguments:<ul>
5008      * <li>r : Roo.data.Record[]</li>
5009      * <li>options: Options object from the load call</li>
5010      * <li>success: Boolean success indicator</li></ul></li>
5011      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
5012      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
5013      * </ul>
5014      */
5015     load : function(options){
5016         options = options || {};
5017         if(this.fireEvent("beforeload", this, options) !== false){
5018             this.storeOptions(options);
5019             var p = Roo.apply(options.params || {}, this.baseParams);
5020             // if meta was not loaded from remote source.. try requesting it.
5021             if (!this.reader.metaFromRemote) {
5022                 p._requestMeta = 1;
5023             }
5024             if(this.sortInfo && this.remoteSort){
5025                 var pn = this.paramNames;
5026                 p[pn["sort"]] = this.sortInfo.field;
5027                 p[pn["dir"]] = this.sortInfo.direction;
5028             }
5029             if (this.multiSort) {
5030                 var pn = this.paramNames;
5031                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
5032             }
5033             
5034             this.proxy.load(p, this.reader, this.loadRecords, this, options);
5035         }
5036     },
5037
5038     /**
5039      * Reloads the Record cache from the configured Proxy using the configured Reader and
5040      * the options from the last load operation performed.
5041      * @param {Object} options (optional) An object containing properties which may override the options
5042      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
5043      * the most recently used options are reused).
5044      */
5045     reload : function(options){
5046         this.load(Roo.applyIf(options||{}, this.lastOptions));
5047     },
5048
5049     // private
5050     // Called as a callback by the Reader during a load operation.
5051     loadRecords : function(o, options, success){
5052         if(!o || success === false){
5053             if(success !== false){
5054                 this.fireEvent("load", this, [], options);
5055             }
5056             if(options.callback){
5057                 options.callback.call(options.scope || this, [], options, false);
5058             }
5059             return;
5060         }
5061         // if data returned failure - throw an exception.
5062         if (o.success === false) {
5063             // show a message if no listener is registered.
5064             if (!this.hasListener('loadexception') && typeof(this.reader.jsonData.errorMsg) != 'undefined') {
5065                     Roo.MessageBox.alert("Error loading",this.reader.jsonData.errorMsg);
5066             }
5067             // loadmask wil be hooked into this..
5068             this.fireEvent("loadexception", this, o, options, this.reader.jsonData);
5069             return;
5070         }
5071         var r = o.records, t = o.totalRecords || r.length;
5072         if(!options || options.add !== true){
5073             if(this.pruneModifiedRecords){
5074                 this.modified = [];
5075             }
5076             for(var i = 0, len = r.length; i < len; i++){
5077                 r[i].join(this);
5078             }
5079             if(this.snapshot){
5080                 this.data = this.snapshot;
5081                 delete this.snapshot;
5082             }
5083             this.data.clear();
5084             this.data.addAll(r);
5085             this.totalLength = t;
5086             this.applySort();
5087             this.fireEvent("datachanged", this);
5088         }else{
5089             this.totalLength = Math.max(t, this.data.length+r.length);
5090             this.add(r);
5091         }
5092         this.fireEvent("load", this, r, options);
5093         if(options.callback){
5094             options.callback.call(options.scope || this, r, options, true);
5095         }
5096     },
5097
5098
5099     /**
5100      * Loads data from a passed data block. A Reader which understands the format of the data
5101      * must have been configured in the constructor.
5102      * @param {Object} data The data block from which to read the Records.  The format of the data expected
5103      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
5104      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
5105      */
5106     loadData : function(o, append){
5107         var r = this.reader.readRecords(o);
5108         this.loadRecords(r, {add: append}, true);
5109     },
5110
5111     /**
5112      * Gets the number of cached records.
5113      * <p>
5114      * <em>If using paging, this may not be the total size of the dataset. If the data object
5115      * used by the Reader contains the dataset size, then the getTotalCount() function returns
5116      * the data set size</em>
5117      */
5118     getCount : function(){
5119         return this.data.length || 0;
5120     },
5121
5122     /**
5123      * Gets the total number of records in the dataset as returned by the server.
5124      * <p>
5125      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
5126      * the dataset size</em>
5127      */
5128     getTotalCount : function(){
5129         return this.totalLength || 0;
5130     },
5131
5132     /**
5133      * Returns the sort state of the Store as an object with two properties:
5134      * <pre><code>
5135  field {String} The name of the field by which the Records are sorted
5136  direction {String} The sort order, "ASC" or "DESC"
5137      * </code></pre>
5138      */
5139     getSortState : function(){
5140         return this.sortInfo;
5141     },
5142
5143     // private
5144     applySort : function(){
5145         if(this.sortInfo && !this.remoteSort){
5146             var s = this.sortInfo, f = s.field;
5147             var st = this.fields.get(f).sortType;
5148             var fn = function(r1, r2){
5149                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
5150                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
5151             };
5152             this.data.sort(s.direction, fn);
5153             if(this.snapshot && this.snapshot != this.data){
5154                 this.snapshot.sort(s.direction, fn);
5155             }
5156         }
5157     },
5158
5159     /**
5160      * Sets the default sort column and order to be used by the next load operation.
5161      * @param {String} fieldName The name of the field to sort by.
5162      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
5163      */
5164     setDefaultSort : function(field, dir){
5165         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
5166     },
5167
5168     /**
5169      * Sort the Records.
5170      * If remote sorting is used, the sort is performed on the server, and the cache is
5171      * reloaded. If local sorting is used, the cache is sorted internally.
5172      * @param {String} fieldName The name of the field to sort by.
5173      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
5174      */
5175     sort : function(fieldName, dir){
5176         var f = this.fields.get(fieldName);
5177         if(!dir){
5178             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
5179             
5180             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
5181                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
5182             }else{
5183                 dir = f.sortDir;
5184             }
5185         }
5186         this.sortToggle[f.name] = dir;
5187         this.sortInfo = {field: f.name, direction: dir};
5188         if(!this.remoteSort){
5189             this.applySort();
5190             this.fireEvent("datachanged", this);
5191         }else{
5192             this.load(this.lastOptions);
5193         }
5194     },
5195
5196     /**
5197      * Calls the specified function for each of the Records in the cache.
5198      * @param {Function} fn The function to call. The Record is passed as the first parameter.
5199      * Returning <em>false</em> aborts and exits the iteration.
5200      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
5201      */
5202     each : function(fn, scope){
5203         this.data.each(fn, scope);
5204     },
5205
5206     /**
5207      * Gets all records modified since the last commit.  Modified records are persisted across load operations
5208      * (e.g., during paging).
5209      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
5210      */
5211     getModifiedRecords : function(){
5212         return this.modified;
5213     },
5214
5215     // private
5216     createFilterFn : function(property, value, anyMatch){
5217         if(!value.exec){ // not a regex
5218             value = String(value);
5219             if(value.length == 0){
5220                 return false;
5221             }
5222             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
5223         }
5224         return function(r){
5225             return value.test(r.data[property]);
5226         };
5227     },
5228
5229     /**
5230      * Sums the value of <i>property</i> for each record between start and end and returns the result.
5231      * @param {String} property A field on your records
5232      * @param {Number} start The record index to start at (defaults to 0)
5233      * @param {Number} end The last record index to include (defaults to length - 1)
5234      * @return {Number} The sum
5235      */
5236     sum : function(property, start, end){
5237         var rs = this.data.items, v = 0;
5238         start = start || 0;
5239         end = (end || end === 0) ? end : rs.length-1;
5240
5241         for(var i = start; i <= end; i++){
5242             v += (rs[i].data[property] || 0);
5243         }
5244         return v;
5245     },
5246
5247     /**
5248      * Filter the records by a specified property.
5249      * @param {String} field A field on your records
5250      * @param {String/RegExp} value Either a string that the field
5251      * should start with or a RegExp to test against the field
5252      * @param {Boolean} anyMatch True to match any part not just the beginning
5253      */
5254     filter : function(property, value, anyMatch){
5255         var fn = this.createFilterFn(property, value, anyMatch);
5256         return fn ? this.filterBy(fn) : this.clearFilter();
5257     },
5258
5259     /**
5260      * Filter by a function. The specified function will be called with each
5261      * record in this data source. If the function returns true the record is included,
5262      * otherwise it is filtered.
5263      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
5264      * @param {Object} scope (optional) The scope of the function (defaults to this)
5265      */
5266     filterBy : function(fn, scope){
5267         this.snapshot = this.snapshot || this.data;
5268         this.data = this.queryBy(fn, scope||this);
5269         this.fireEvent("datachanged", this);
5270     },
5271
5272     /**
5273      * Query the records by a specified property.
5274      * @param {String} field A field on your records
5275      * @param {String/RegExp} value Either a string that the field
5276      * should start with or a RegExp to test against the field
5277      * @param {Boolean} anyMatch True to match any part not just the beginning
5278      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
5279      */
5280     query : function(property, value, anyMatch){
5281         var fn = this.createFilterFn(property, value, anyMatch);
5282         return fn ? this.queryBy(fn) : this.data.clone();
5283     },
5284
5285     /**
5286      * Query by a function. The specified function will be called with each
5287      * record in this data source. If the function returns true the record is included
5288      * in the results.
5289      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
5290      * @param {Object} scope (optional) The scope of the function (defaults to this)
5291       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
5292      **/
5293     queryBy : function(fn, scope){
5294         var data = this.snapshot || this.data;
5295         return data.filterBy(fn, scope||this);
5296     },
5297
5298     /**
5299      * Collects unique values for a particular dataIndex from this store.
5300      * @param {String} dataIndex The property to collect
5301      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
5302      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
5303      * @return {Array} An array of the unique values
5304      **/
5305     collect : function(dataIndex, allowNull, bypassFilter){
5306         var d = (bypassFilter === true && this.snapshot) ?
5307                 this.snapshot.items : this.data.items;
5308         var v, sv, r = [], l = {};
5309         for(var i = 0, len = d.length; i < len; i++){
5310             v = d[i].data[dataIndex];
5311             sv = String(v);
5312             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
5313                 l[sv] = true;
5314                 r[r.length] = v;
5315             }
5316         }
5317         return r;
5318     },
5319
5320     /**
5321      * Revert to a view of the Record cache with no filtering applied.
5322      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
5323      */
5324     clearFilter : function(suppressEvent){
5325         if(this.snapshot && this.snapshot != this.data){
5326             this.data = this.snapshot;
5327             delete this.snapshot;
5328             if(suppressEvent !== true){
5329                 this.fireEvent("datachanged", this);
5330             }
5331         }
5332     },
5333
5334     // private
5335     afterEdit : function(record){
5336         if(this.modified.indexOf(record) == -1){
5337             this.modified.push(record);
5338         }
5339         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
5340     },
5341     
5342     // private
5343     afterReject : function(record){
5344         this.modified.remove(record);
5345         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
5346     },
5347
5348     // private
5349     afterCommit : function(record){
5350         this.modified.remove(record);
5351         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
5352     },
5353
5354     /**
5355      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
5356      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
5357      */
5358     commitChanges : function(){
5359         var m = this.modified.slice(0);
5360         this.modified = [];
5361         for(var i = 0, len = m.length; i < len; i++){
5362             m[i].commit();
5363         }
5364     },
5365
5366     /**
5367      * Cancel outstanding changes on all changed records.
5368      */
5369     rejectChanges : function(){
5370         var m = this.modified.slice(0);
5371         this.modified = [];
5372         for(var i = 0, len = m.length; i < len; i++){
5373             m[i].reject();
5374         }
5375     },
5376
5377     onMetaChange : function(meta, rtype, o){
5378         this.recordType = rtype;
5379         this.fields = rtype.prototype.fields;
5380         delete this.snapshot;
5381         this.sortInfo = meta.sortInfo || this.sortInfo;
5382         this.modified = [];
5383         this.fireEvent('metachange', this, this.reader.meta);
5384     }
5385 });/*
5386  * Based on:
5387  * Ext JS Library 1.1.1
5388  * Copyright(c) 2006-2007, Ext JS, LLC.
5389  *
5390  * Originally Released Under LGPL - original licence link has changed is not relivant.
5391  *
5392  * Fork - LGPL
5393  * <script type="text/javascript">
5394  */
5395
5396 /**
5397  * @class Roo.data.SimpleStore
5398  * @extends Roo.data.Store
5399  * Small helper class to make creating Stores from Array data easier.
5400  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
5401  * @cfg {Array} fields An array of field definition objects, or field name strings.
5402  * @cfg {Array} data The multi-dimensional array of data
5403  * @constructor
5404  * @param {Object} config
5405  */
5406 Roo.data.SimpleStore = function(config){
5407     Roo.data.SimpleStore.superclass.constructor.call(this, {
5408         isLocal : true,
5409         reader: new Roo.data.ArrayReader({
5410                 id: config.id
5411             },
5412             Roo.data.Record.create(config.fields)
5413         ),
5414         proxy : new Roo.data.MemoryProxy(config.data)
5415     });
5416     this.load();
5417 };
5418 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
5419  * Based on:
5420  * Ext JS Library 1.1.1
5421  * Copyright(c) 2006-2007, Ext JS, LLC.
5422  *
5423  * Originally Released Under LGPL - original licence link has changed is not relivant.
5424  *
5425  * Fork - LGPL
5426  * <script type="text/javascript">
5427  */
5428
5429 /**
5430 /**
5431  * @extends Roo.data.Store
5432  * @class Roo.data.JsonStore
5433  * Small helper class to make creating Stores for JSON data easier. <br/>
5434 <pre><code>
5435 var store = new Roo.data.JsonStore({
5436     url: 'get-images.php',
5437     root: 'images',
5438     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
5439 });
5440 </code></pre>
5441  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
5442  * JsonReader and HttpProxy (unless inline data is provided).</b>
5443  * @cfg {Array} fields An array of field definition objects, or field name strings.
5444  * @constructor
5445  * @param {Object} config
5446  */
5447 Roo.data.JsonStore = function(c){
5448     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
5449         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
5450         reader: new Roo.data.JsonReader(c, c.fields)
5451     }));
5452 };
5453 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
5454  * Based on:
5455  * Ext JS Library 1.1.1
5456  * Copyright(c) 2006-2007, Ext JS, LLC.
5457  *
5458  * Originally Released Under LGPL - original licence link has changed is not relivant.
5459  *
5460  * Fork - LGPL
5461  * <script type="text/javascript">
5462  */
5463
5464  
5465 Roo.data.Field = function(config){
5466     if(typeof config == "string"){
5467         config = {name: config};
5468     }
5469     Roo.apply(this, config);
5470     
5471     if(!this.type){
5472         this.type = "auto";
5473     }
5474     
5475     var st = Roo.data.SortTypes;
5476     // named sortTypes are supported, here we look them up
5477     if(typeof this.sortType == "string"){
5478         this.sortType = st[this.sortType];
5479     }
5480     
5481     // set default sortType for strings and dates
5482     if(!this.sortType){
5483         switch(this.type){
5484             case "string":
5485                 this.sortType = st.asUCString;
5486                 break;
5487             case "date":
5488                 this.sortType = st.asDate;
5489                 break;
5490             default:
5491                 this.sortType = st.none;
5492         }
5493     }
5494
5495     // define once
5496     var stripRe = /[\$,%]/g;
5497
5498     // prebuilt conversion function for this field, instead of
5499     // switching every time we're reading a value
5500     if(!this.convert){
5501         var cv, dateFormat = this.dateFormat;
5502         switch(this.type){
5503             case "":
5504             case "auto":
5505             case undefined:
5506                 cv = function(v){ return v; };
5507                 break;
5508             case "string":
5509                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
5510                 break;
5511             case "int":
5512                 cv = function(v){
5513                     return v !== undefined && v !== null && v !== '' ?
5514                            parseInt(String(v).replace(stripRe, ""), 10) : '';
5515                     };
5516                 break;
5517             case "float":
5518                 cv = function(v){
5519                     return v !== undefined && v !== null && v !== '' ?
5520                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
5521                     };
5522                 break;
5523             case "bool":
5524             case "boolean":
5525                 cv = function(v){ return v === true || v === "true" || v == 1; };
5526                 break;
5527             case "date":
5528                 cv = function(v){
5529                     if(!v){
5530                         return '';
5531                     }
5532                     if(v instanceof Date){
5533                         return v;
5534                     }
5535                     if(dateFormat){
5536                         if(dateFormat == "timestamp"){
5537                             return new Date(v*1000);
5538                         }
5539                         return Date.parseDate(v, dateFormat);
5540                     }
5541                     var parsed = Date.parse(v);
5542                     return parsed ? new Date(parsed) : null;
5543                 };
5544              break;
5545             
5546         }
5547         this.convert = cv;
5548     }
5549 };
5550
5551 Roo.data.Field.prototype = {
5552     dateFormat: null,
5553     defaultValue: "",
5554     mapping: null,
5555     sortType : null,
5556     sortDir : "ASC"
5557 };/*
5558  * Based on:
5559  * Ext JS Library 1.1.1
5560  * Copyright(c) 2006-2007, Ext JS, LLC.
5561  *
5562  * Originally Released Under LGPL - original licence link has changed is not relivant.
5563  *
5564  * Fork - LGPL
5565  * <script type="text/javascript">
5566  */
5567  
5568 // Base class for reading structured data from a data source.  This class is intended to be
5569 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
5570
5571 /**
5572  * @class Roo.data.DataReader
5573  * Base class for reading structured data from a data source.  This class is intended to be
5574  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
5575  */
5576
5577 Roo.data.DataReader = function(meta, recordType){
5578     
5579     this.meta = meta;
5580     
5581     this.recordType = recordType instanceof Array ? 
5582         Roo.data.Record.create(recordType) : recordType;
5583 };
5584
5585 Roo.data.DataReader.prototype = {
5586      /**
5587      * Create an empty record
5588      * @param {Object} data (optional) - overlay some values
5589      * @return {Roo.data.Record} record created.
5590      */
5591     newRow :  function(d) {
5592         var da =  {};
5593         this.recordType.prototype.fields.each(function(c) {
5594             switch( c.type) {
5595                 case 'int' : da[c.name] = 0; break;
5596                 case 'date' : da[c.name] = new Date(); break;
5597                 case 'float' : da[c.name] = 0.0; break;
5598                 case 'boolean' : da[c.name] = false; break;
5599                 default : da[c.name] = ""; break;
5600             }
5601             
5602         });
5603         return new this.recordType(Roo.apply(da, d));
5604     }
5605     
5606 };/*
5607  * Based on:
5608  * Ext JS Library 1.1.1
5609  * Copyright(c) 2006-2007, Ext JS, LLC.
5610  *
5611  * Originally Released Under LGPL - original licence link has changed is not relivant.
5612  *
5613  * Fork - LGPL
5614  * <script type="text/javascript">
5615  */
5616
5617 /**
5618  * @class Roo.data.DataProxy
5619  * @extends Roo.data.Observable
5620  * This class is an abstract base class for implementations which provide retrieval of
5621  * unformatted data objects.<br>
5622  * <p>
5623  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
5624  * (of the appropriate type which knows how to parse the data object) to provide a block of
5625  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
5626  * <p>
5627  * Custom implementations must implement the load method as described in
5628  * {@link Roo.data.HttpProxy#load}.
5629  */
5630 Roo.data.DataProxy = function(){
5631     this.addEvents({
5632         /**
5633          * @event beforeload
5634          * Fires before a network request is made to retrieve a data object.
5635          * @param {Object} This DataProxy object.
5636          * @param {Object} params The params parameter to the load function.
5637          */
5638         beforeload : true,
5639         /**
5640          * @event load
5641          * Fires before the load method's callback is called.
5642          * @param {Object} This DataProxy object.
5643          * @param {Object} o The data object.
5644          * @param {Object} arg The callback argument object passed to the load function.
5645          */
5646         load : true,
5647         /**
5648          * @event loadexception
5649          * Fires if an Exception occurs during data retrieval.
5650          * @param {Object} This DataProxy object.
5651          * @param {Object} o The data object.
5652          * @param {Object} arg The callback argument object passed to the load function.
5653          * @param {Object} e The Exception.
5654          */
5655         loadexception : true
5656     });
5657     Roo.data.DataProxy.superclass.constructor.call(this);
5658 };
5659
5660 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
5661
5662     /**
5663      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
5664      */
5665 /*
5666  * Based on:
5667  * Ext JS Library 1.1.1
5668  * Copyright(c) 2006-2007, Ext JS, LLC.
5669  *
5670  * Originally Released Under LGPL - original licence link has changed is not relivant.
5671  *
5672  * Fork - LGPL
5673  * <script type="text/javascript">
5674  */
5675 /**
5676  * @class Roo.data.MemoryProxy
5677  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
5678  * to the Reader when its load method is called.
5679  * @constructor
5680  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
5681  */
5682 Roo.data.MemoryProxy = function(data){
5683     if (data.data) {
5684         data = data.data;
5685     }
5686     Roo.data.MemoryProxy.superclass.constructor.call(this);
5687     this.data = data;
5688 };
5689
5690 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
5691     /**
5692      * Load data from the requested source (in this case an in-memory
5693      * data object passed to the constructor), read the data object into
5694      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
5695      * process that block using the passed callback.
5696      * @param {Object} params This parameter is not used by the MemoryProxy class.
5697      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5698      * object into a block of Roo.data.Records.
5699      * @param {Function} callback The function into which to pass the block of Roo.data.records.
5700      * The function must be passed <ul>
5701      * <li>The Record block object</li>
5702      * <li>The "arg" argument from the load function</li>
5703      * <li>A boolean success indicator</li>
5704      * </ul>
5705      * @param {Object} scope The scope in which to call the callback
5706      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5707      */
5708     load : function(params, reader, callback, scope, arg){
5709         params = params || {};
5710         var result;
5711         try {
5712             result = reader.readRecords(this.data);
5713         }catch(e){
5714             this.fireEvent("loadexception", this, arg, null, e);
5715             callback.call(scope, null, arg, false);
5716             return;
5717         }
5718         callback.call(scope, result, arg, true);
5719     },
5720     
5721     // private
5722     update : function(params, records){
5723         
5724     }
5725 });/*
5726  * Based on:
5727  * Ext JS Library 1.1.1
5728  * Copyright(c) 2006-2007, Ext JS, LLC.
5729  *
5730  * Originally Released Under LGPL - original licence link has changed is not relivant.
5731  *
5732  * Fork - LGPL
5733  * <script type="text/javascript">
5734  */
5735 /**
5736  * @class Roo.data.HttpProxy
5737  * @extends Roo.data.DataProxy
5738  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
5739  * configured to reference a certain URL.<br><br>
5740  * <p>
5741  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
5742  * from which the running page was served.<br><br>
5743  * <p>
5744  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
5745  * <p>
5746  * Be aware that to enable the browser to parse an XML document, the server must set
5747  * the Content-Type header in the HTTP response to "text/xml".
5748  * @constructor
5749  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
5750  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
5751  * will be used to make the request.
5752  */
5753 Roo.data.HttpProxy = function(conn){
5754     Roo.data.HttpProxy.superclass.constructor.call(this);
5755     // is conn a conn config or a real conn?
5756     this.conn = conn;
5757     this.useAjax = !conn || !conn.events;
5758   
5759 };
5760
5761 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
5762     // thse are take from connection...
5763     
5764     /**
5765      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
5766      */
5767     /**
5768      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
5769      * extra parameters to each request made by this object. (defaults to undefined)
5770      */
5771     /**
5772      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
5773      *  to each request made by this object. (defaults to undefined)
5774      */
5775     /**
5776      * @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)
5777      */
5778     /**
5779      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
5780      */
5781      /**
5782      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
5783      * @type Boolean
5784      */
5785   
5786
5787     /**
5788      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
5789      * @type Boolean
5790      */
5791     /**
5792      * Return the {@link Roo.data.Connection} object being used by this Proxy.
5793      * @return {Connection} The Connection object. This object may be used to subscribe to events on
5794      * a finer-grained basis than the DataProxy events.
5795      */
5796     getConnection : function(){
5797         return this.useAjax ? Roo.Ajax : this.conn;
5798     },
5799
5800     /**
5801      * Load data from the configured {@link Roo.data.Connection}, read the data object into
5802      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
5803      * process that block using the passed callback.
5804      * @param {Object} params An object containing properties which are to be used as HTTP parameters
5805      * for the request to the remote server.
5806      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5807      * object into a block of Roo.data.Records.
5808      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
5809      * The function must be passed <ul>
5810      * <li>The Record block object</li>
5811      * <li>The "arg" argument from the load function</li>
5812      * <li>A boolean success indicator</li>
5813      * </ul>
5814      * @param {Object} scope The scope in which to call the callback
5815      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5816      */
5817     load : function(params, reader, callback, scope, arg){
5818         if(this.fireEvent("beforeload", this, params) !== false){
5819             var  o = {
5820                 params : params || {},
5821                 request: {
5822                     callback : callback,
5823                     scope : scope,
5824                     arg : arg
5825                 },
5826                 reader: reader,
5827                 callback : this.loadResponse,
5828                 scope: this
5829             };
5830             if(this.useAjax){
5831                 Roo.applyIf(o, this.conn);
5832                 if(this.activeRequest){
5833                     Roo.Ajax.abort(this.activeRequest);
5834                 }
5835                 this.activeRequest = Roo.Ajax.request(o);
5836             }else{
5837                 this.conn.request(o);
5838             }
5839         }else{
5840             callback.call(scope||this, null, arg, false);
5841         }
5842     },
5843
5844     // private
5845     loadResponse : function(o, success, response){
5846         delete this.activeRequest;
5847         if(!success){
5848             this.fireEvent("loadexception", this, o, response);
5849             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5850             return;
5851         }
5852         var result;
5853         try {
5854             result = o.reader.read(response);
5855         }catch(e){
5856             this.fireEvent("loadexception", this, o, response, e);
5857             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5858             return;
5859         }
5860         
5861         this.fireEvent("load", this, o, o.request.arg);
5862         o.request.callback.call(o.request.scope, result, o.request.arg, true);
5863     },
5864
5865     // private
5866     update : function(dataSet){
5867
5868     },
5869
5870     // private
5871     updateResponse : function(dataSet){
5872
5873     }
5874 });/*
5875  * Based on:
5876  * Ext JS Library 1.1.1
5877  * Copyright(c) 2006-2007, Ext JS, LLC.
5878  *
5879  * Originally Released Under LGPL - original licence link has changed is not relivant.
5880  *
5881  * Fork - LGPL
5882  * <script type="text/javascript">
5883  */
5884
5885 /**
5886  * @class Roo.data.ScriptTagProxy
5887  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
5888  * other than the originating domain of the running page.<br><br>
5889  * <p>
5890  * <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
5891  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
5892  * <p>
5893  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
5894  * source code that is used as the source inside a &lt;script> tag.<br><br>
5895  * <p>
5896  * In order for the browser to process the returned data, the server must wrap the data object
5897  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
5898  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
5899  * depending on whether the callback name was passed:
5900  * <p>
5901  * <pre><code>
5902 boolean scriptTag = false;
5903 String cb = request.getParameter("callback");
5904 if (cb != null) {
5905     scriptTag = true;
5906     response.setContentType("text/javascript");
5907 } else {
5908     response.setContentType("application/x-json");
5909 }
5910 Writer out = response.getWriter();
5911 if (scriptTag) {
5912     out.write(cb + "(");
5913 }
5914 out.print(dataBlock.toJsonString());
5915 if (scriptTag) {
5916     out.write(");");
5917 }
5918 </pre></code>
5919  *
5920  * @constructor
5921  * @param {Object} config A configuration object.
5922  */
5923 Roo.data.ScriptTagProxy = function(config){
5924     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
5925     Roo.apply(this, config);
5926     this.head = document.getElementsByTagName("head")[0];
5927 };
5928
5929 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
5930
5931 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
5932     /**
5933      * @cfg {String} url The URL from which to request the data object.
5934      */
5935     /**
5936      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
5937      */
5938     timeout : 30000,
5939     /**
5940      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
5941      * the server the name of the callback function set up by the load call to process the returned data object.
5942      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
5943      * javascript output which calls this named function passing the data object as its only parameter.
5944      */
5945     callbackParam : "callback",
5946     /**
5947      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
5948      * name to the request.
5949      */
5950     nocache : true,
5951
5952     /**
5953      * Load data from the configured URL, read the data object into
5954      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
5955      * process that block using the passed callback.
5956      * @param {Object} params An object containing properties which are to be used as HTTP parameters
5957      * for the request to the remote server.
5958      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5959      * object into a block of Roo.data.Records.
5960      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
5961      * The function must be passed <ul>
5962      * <li>The Record block object</li>
5963      * <li>The "arg" argument from the load function</li>
5964      * <li>A boolean success indicator</li>
5965      * </ul>
5966      * @param {Object} scope The scope in which to call the callback
5967      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5968      */
5969     load : function(params, reader, callback, scope, arg){
5970         if(this.fireEvent("beforeload", this, params) !== false){
5971
5972             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
5973
5974             var url = this.url;
5975             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
5976             if(this.nocache){
5977                 url += "&_dc=" + (new Date().getTime());
5978             }
5979             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
5980             var trans = {
5981                 id : transId,
5982                 cb : "stcCallback"+transId,
5983                 scriptId : "stcScript"+transId,
5984                 params : params,
5985                 arg : arg,
5986                 url : url,
5987                 callback : callback,
5988                 scope : scope,
5989                 reader : reader
5990             };
5991             var conn = this;
5992
5993             window[trans.cb] = function(o){
5994                 conn.handleResponse(o, trans);
5995             };
5996
5997             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
5998
5999             if(this.autoAbort !== false){
6000                 this.abort();
6001             }
6002
6003             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
6004
6005             var script = document.createElement("script");
6006             script.setAttribute("src", url);
6007             script.setAttribute("type", "text/javascript");
6008             script.setAttribute("id", trans.scriptId);
6009             this.head.appendChild(script);
6010
6011             this.trans = trans;
6012         }else{
6013             callback.call(scope||this, null, arg, false);
6014         }
6015     },
6016
6017     // private
6018     isLoading : function(){
6019         return this.trans ? true : false;
6020     },
6021
6022     /**
6023      * Abort the current server request.
6024      */
6025     abort : function(){
6026         if(this.isLoading()){
6027             this.destroyTrans(this.trans);
6028         }
6029     },
6030
6031     // private
6032     destroyTrans : function(trans, isLoaded){
6033         this.head.removeChild(document.getElementById(trans.scriptId));
6034         clearTimeout(trans.timeoutId);
6035         if(isLoaded){
6036             window[trans.cb] = undefined;
6037             try{
6038                 delete window[trans.cb];
6039             }catch(e){}
6040         }else{
6041             // if hasn't been loaded, wait for load to remove it to prevent script error
6042             window[trans.cb] = function(){
6043                 window[trans.cb] = undefined;
6044                 try{
6045                     delete window[trans.cb];
6046                 }catch(e){}
6047             };
6048         }
6049     },
6050
6051     // private
6052     handleResponse : function(o, trans){
6053         this.trans = false;
6054         this.destroyTrans(trans, true);
6055         var result;
6056         try {
6057             result = trans.reader.readRecords(o);
6058         }catch(e){
6059             this.fireEvent("loadexception", this, o, trans.arg, e);
6060             trans.callback.call(trans.scope||window, null, trans.arg, false);
6061             return;
6062         }
6063         this.fireEvent("load", this, o, trans.arg);
6064         trans.callback.call(trans.scope||window, result, trans.arg, true);
6065     },
6066
6067     // private
6068     handleFailure : function(trans){
6069         this.trans = false;
6070         this.destroyTrans(trans, false);
6071         this.fireEvent("loadexception", this, null, trans.arg);
6072         trans.callback.call(trans.scope||window, null, trans.arg, false);
6073     }
6074 });/*
6075  * Based on:
6076  * Ext JS Library 1.1.1
6077  * Copyright(c) 2006-2007, Ext JS, LLC.
6078  *
6079  * Originally Released Under LGPL - original licence link has changed is not relivant.
6080  *
6081  * Fork - LGPL
6082  * <script type="text/javascript">
6083  */
6084
6085 /**
6086  * @class Roo.data.JsonReader
6087  * @extends Roo.data.DataReader
6088  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
6089  * based on mappings in a provided Roo.data.Record constructor.
6090  * 
6091  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
6092  * in the reply previously. 
6093  * 
6094  * <p>
6095  * Example code:
6096  * <pre><code>
6097 var RecordDef = Roo.data.Record.create([
6098     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6099     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6100 ]);
6101 var myReader = new Roo.data.JsonReader({
6102     totalProperty: "results",    // The property which contains the total dataset size (optional)
6103     root: "rows",                // The property which contains an Array of row objects
6104     id: "id"                     // The property within each row object that provides an ID for the record (optional)
6105 }, RecordDef);
6106 </code></pre>
6107  * <p>
6108  * This would consume a JSON file like this:
6109  * <pre><code>
6110 { 'results': 2, 'rows': [
6111     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
6112     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
6113 }
6114 </code></pre>
6115  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
6116  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6117  * paged from the remote server.
6118  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
6119  * @cfg {String} root name of the property which contains the Array of row objects.
6120  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
6121  * @constructor
6122  * Create a new JsonReader
6123  * @param {Object} meta Metadata configuration options
6124  * @param {Object} recordType Either an Array of field definition objects,
6125  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
6126  */
6127 Roo.data.JsonReader = function(meta, recordType){
6128     
6129     meta = meta || {};
6130     // set some defaults:
6131     Roo.applyIf(meta, {
6132         totalProperty: 'total',
6133         successProperty : 'success',
6134         root : 'data',
6135         id : 'id'
6136     });
6137     
6138     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6139 };
6140 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
6141     
6142     /**
6143      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
6144      * Used by Store query builder to append _requestMeta to params.
6145      * 
6146      */
6147     metaFromRemote : false,
6148     /**
6149      * This method is only used by a DataProxy which has retrieved data from a remote server.
6150      * @param {Object} response The XHR object which contains the JSON data in its responseText.
6151      * @return {Object} data A data block which is used by an Roo.data.Store object as
6152      * a cache of Roo.data.Records.
6153      */
6154     read : function(response){
6155         var json = response.responseText;
6156        
6157         var o = /* eval:var:o */ eval("("+json+")");
6158         if(!o) {
6159             throw {message: "JsonReader.read: Json object not found"};
6160         }
6161         
6162         if(o.metaData){
6163             
6164             delete this.ef;
6165             this.metaFromRemote = true;
6166             this.meta = o.metaData;
6167             this.recordType = Roo.data.Record.create(o.metaData.fields);
6168             this.onMetaChange(this.meta, this.recordType, o);
6169         }
6170         return this.readRecords(o);
6171     },
6172
6173     // private function a store will implement
6174     onMetaChange : function(meta, recordType, o){
6175
6176     },
6177
6178     /**
6179          * @ignore
6180          */
6181     simpleAccess: function(obj, subsc) {
6182         return obj[subsc];
6183     },
6184
6185         /**
6186          * @ignore
6187          */
6188     getJsonAccessor: function(){
6189         var re = /[\[\.]/;
6190         return function(expr) {
6191             try {
6192                 return(re.test(expr))
6193                     ? new Function("obj", "return obj." + expr)
6194                     : function(obj){
6195                         return obj[expr];
6196                     };
6197             } catch(e){}
6198             return Roo.emptyFn;
6199         };
6200     }(),
6201
6202     /**
6203      * Create a data block containing Roo.data.Records from an XML document.
6204      * @param {Object} o An object which contains an Array of row objects in the property specified
6205      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
6206      * which contains the total size of the dataset.
6207      * @return {Object} data A data block which is used by an Roo.data.Store object as
6208      * a cache of Roo.data.Records.
6209      */
6210     readRecords : function(o){
6211         /**
6212          * After any data loads, the raw JSON data is available for further custom processing.
6213          * @type Object
6214          */
6215         this.jsonData = o;
6216         var s = this.meta, Record = this.recordType,
6217             f = Record.prototype.fields, fi = f.items, fl = f.length;
6218
6219 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
6220         if (!this.ef) {
6221             if(s.totalProperty) {
6222                     this.getTotal = this.getJsonAccessor(s.totalProperty);
6223                 }
6224                 if(s.successProperty) {
6225                     this.getSuccess = this.getJsonAccessor(s.successProperty);
6226                 }
6227                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
6228                 if (s.id) {
6229                         var g = this.getJsonAccessor(s.id);
6230                         this.getId = function(rec) {
6231                                 var r = g(rec);
6232                                 return (r === undefined || r === "") ? null : r;
6233                         };
6234                 } else {
6235                         this.getId = function(){return null;};
6236                 }
6237             this.ef = [];
6238             for(var jj = 0; jj < fl; jj++){
6239                 f = fi[jj];
6240                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
6241                 this.ef[jj] = this.getJsonAccessor(map);
6242             }
6243         }
6244
6245         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
6246         if(s.totalProperty){
6247             var vt = parseInt(this.getTotal(o), 10);
6248             if(!isNaN(vt)){
6249                 totalRecords = vt;
6250             }
6251         }
6252         if(s.successProperty){
6253             var vs = this.getSuccess(o);
6254             if(vs === false || vs === 'false'){
6255                 success = false;
6256             }
6257         }
6258         var records = [];
6259             for(var i = 0; i < c; i++){
6260                     var n = root[i];
6261                 var values = {};
6262                 var id = this.getId(n);
6263                 for(var j = 0; j < fl; j++){
6264                     f = fi[j];
6265                 var v = this.ef[j](n);
6266                 if (!f.convert) {
6267                     Roo.log('missing convert for ' + f.name);
6268                     Roo.log(f);
6269                     continue;
6270                 }
6271                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
6272                 }
6273                 var record = new Record(values, id);
6274                 record.json = n;
6275                 records[i] = record;
6276             }
6277             return {
6278                 success : success,
6279                 records : records,
6280                 totalRecords : totalRecords
6281             };
6282     }
6283 });/*
6284  * Based on:
6285  * Ext JS Library 1.1.1
6286  * Copyright(c) 2006-2007, Ext JS, LLC.
6287  *
6288  * Originally Released Under LGPL - original licence link has changed is not relivant.
6289  *
6290  * Fork - LGPL
6291  * <script type="text/javascript">
6292  */
6293
6294 /**
6295  * @class Roo.data.XmlReader
6296  * @extends Roo.data.DataReader
6297  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
6298  * based on mappings in a provided Roo.data.Record constructor.<br><br>
6299  * <p>
6300  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
6301  * header in the HTTP response must be set to "text/xml".</em>
6302  * <p>
6303  * Example code:
6304  * <pre><code>
6305 var RecordDef = Roo.data.Record.create([
6306    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6307    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6308 ]);
6309 var myReader = new Roo.data.XmlReader({
6310    totalRecords: "results", // The element which contains the total dataset size (optional)
6311    record: "row",           // The repeated element which contains row information
6312    id: "id"                 // The element within the row that provides an ID for the record (optional)
6313 }, RecordDef);
6314 </code></pre>
6315  * <p>
6316  * This would consume an XML file like this:
6317  * <pre><code>
6318 &lt;?xml?>
6319 &lt;dataset>
6320  &lt;results>2&lt;/results>
6321  &lt;row>
6322    &lt;id>1&lt;/id>
6323    &lt;name>Bill&lt;/name>
6324    &lt;occupation>Gardener&lt;/occupation>
6325  &lt;/row>
6326  &lt;row>
6327    &lt;id>2&lt;/id>
6328    &lt;name>Ben&lt;/name>
6329    &lt;occupation>Horticulturalist&lt;/occupation>
6330  &lt;/row>
6331 &lt;/dataset>
6332 </code></pre>
6333  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
6334  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6335  * paged from the remote server.
6336  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
6337  * @cfg {String} success The DomQuery path to the success attribute used by forms.
6338  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
6339  * a record identifier value.
6340  * @constructor
6341  * Create a new XmlReader
6342  * @param {Object} meta Metadata configuration options
6343  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
6344  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
6345  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
6346  */
6347 Roo.data.XmlReader = function(meta, recordType){
6348     meta = meta || {};
6349     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6350 };
6351 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
6352     /**
6353      * This method is only used by a DataProxy which has retrieved data from a remote server.
6354          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
6355          * to contain a method called 'responseXML' that returns an XML document object.
6356      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6357      * a cache of Roo.data.Records.
6358      */
6359     read : function(response){
6360         var doc = response.responseXML;
6361         if(!doc) {
6362             throw {message: "XmlReader.read: XML Document not available"};
6363         }
6364         return this.readRecords(doc);
6365     },
6366
6367     /**
6368      * Create a data block containing Roo.data.Records from an XML document.
6369          * @param {Object} doc A parsed XML document.
6370      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6371      * a cache of Roo.data.Records.
6372      */
6373     readRecords : function(doc){
6374         /**
6375          * After any data loads/reads, the raw XML Document is available for further custom processing.
6376          * @type XMLDocument
6377          */
6378         this.xmlData = doc;
6379         var root = doc.documentElement || doc;
6380         var q = Roo.DomQuery;
6381         var recordType = this.recordType, fields = recordType.prototype.fields;
6382         var sid = this.meta.id;
6383         var totalRecords = 0, success = true;
6384         if(this.meta.totalRecords){
6385             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
6386         }
6387         
6388         if(this.meta.success){
6389             var sv = q.selectValue(this.meta.success, root, true);
6390             success = sv !== false && sv !== 'false';
6391         }
6392         var records = [];
6393         var ns = q.select(this.meta.record, root);
6394         for(var i = 0, len = ns.length; i < len; i++) {
6395                 var n = ns[i];
6396                 var values = {};
6397                 var id = sid ? q.selectValue(sid, n) : undefined;
6398                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6399                     var f = fields.items[j];
6400                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
6401                     v = f.convert(v);
6402                     values[f.name] = v;
6403                 }
6404                 var record = new recordType(values, id);
6405                 record.node = n;
6406                 records[records.length] = record;
6407             }
6408
6409             return {
6410                 success : success,
6411                 records : records,
6412                 totalRecords : totalRecords || records.length
6413             };
6414     }
6415 });/*
6416  * Based on:
6417  * Ext JS Library 1.1.1
6418  * Copyright(c) 2006-2007, Ext JS, LLC.
6419  *
6420  * Originally Released Under LGPL - original licence link has changed is not relivant.
6421  *
6422  * Fork - LGPL
6423  * <script type="text/javascript">
6424  */
6425
6426 /**
6427  * @class Roo.data.ArrayReader
6428  * @extends Roo.data.DataReader
6429  * Data reader class to create an Array of Roo.data.Record objects from an Array.
6430  * Each element of that Array represents a row of data fields. The
6431  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
6432  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
6433  * <p>
6434  * Example code:.
6435  * <pre><code>
6436 var RecordDef = Roo.data.Record.create([
6437     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
6438     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
6439 ]);
6440 var myReader = new Roo.data.ArrayReader({
6441     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
6442 }, RecordDef);
6443 </code></pre>
6444  * <p>
6445  * This would consume an Array like this:
6446  * <pre><code>
6447 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
6448   </code></pre>
6449  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
6450  * @constructor
6451  * Create a new JsonReader
6452  * @param {Object} meta Metadata configuration options.
6453  * @param {Object} recordType Either an Array of field definition objects
6454  * as specified to {@link Roo.data.Record#create},
6455  * or an {@link Roo.data.Record} object
6456  * created using {@link Roo.data.Record#create}.
6457  */
6458 Roo.data.ArrayReader = function(meta, recordType){
6459     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
6460 };
6461
6462 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
6463     /**
6464      * Create a data block containing Roo.data.Records from an XML document.
6465      * @param {Object} o An Array of row objects which represents the dataset.
6466      * @return {Object} data A data block which is used by an Roo.data.Store object as
6467      * a cache of Roo.data.Records.
6468      */
6469     readRecords : function(o){
6470         var sid = this.meta ? this.meta.id : null;
6471         var recordType = this.recordType, fields = recordType.prototype.fields;
6472         var records = [];
6473         var root = o;
6474             for(var i = 0; i < root.length; i++){
6475                     var n = root[i];
6476                 var values = {};
6477                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
6478                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6479                 var f = fields.items[j];
6480                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
6481                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
6482                 v = f.convert(v);
6483                 values[f.name] = v;
6484             }
6485                 var record = new recordType(values, id);
6486                 record.json = n;
6487                 records[records.length] = record;
6488             }
6489             return {
6490                 records : records,
6491                 totalRecords : records.length
6492             };
6493     }
6494 });/*
6495  * Based on:
6496  * Ext JS Library 1.1.1
6497  * Copyright(c) 2006-2007, Ext JS, LLC.
6498  *
6499  * Originally Released Under LGPL - original licence link has changed is not relivant.
6500  *
6501  * Fork - LGPL
6502  * <script type="text/javascript">
6503  */
6504
6505
6506 /**
6507  * @class Roo.data.Tree
6508  * @extends Roo.util.Observable
6509  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
6510  * in the tree have most standard DOM functionality.
6511  * @constructor
6512  * @param {Node} root (optional) The root node
6513  */
6514 Roo.data.Tree = function(root){
6515    this.nodeHash = {};
6516    /**
6517     * The root node for this tree
6518     * @type Node
6519     */
6520    this.root = null;
6521    if(root){
6522        this.setRootNode(root);
6523    }
6524    this.addEvents({
6525        /**
6526         * @event append
6527         * Fires when a new child node is appended to a node in this tree.
6528         * @param {Tree} tree The owner tree
6529         * @param {Node} parent The parent node
6530         * @param {Node} node The newly appended node
6531         * @param {Number} index The index of the newly appended node
6532         */
6533        "append" : true,
6534        /**
6535         * @event remove
6536         * Fires when a child node is removed from a node in this tree.
6537         * @param {Tree} tree The owner tree
6538         * @param {Node} parent The parent node
6539         * @param {Node} node The child node removed
6540         */
6541        "remove" : true,
6542        /**
6543         * @event move
6544         * Fires when a node is moved to a new location in the tree
6545         * @param {Tree} tree The owner tree
6546         * @param {Node} node The node moved
6547         * @param {Node} oldParent The old parent of this node
6548         * @param {Node} newParent The new parent of this node
6549         * @param {Number} index The index it was moved to
6550         */
6551        "move" : true,
6552        /**
6553         * @event insert
6554         * Fires when a new child node is inserted in a node in this tree.
6555         * @param {Tree} tree The owner tree
6556         * @param {Node} parent The parent node
6557         * @param {Node} node The child node inserted
6558         * @param {Node} refNode The child node the node was inserted before
6559         */
6560        "insert" : true,
6561        /**
6562         * @event beforeappend
6563         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
6564         * @param {Tree} tree The owner tree
6565         * @param {Node} parent The parent node
6566         * @param {Node} node The child node to be appended
6567         */
6568        "beforeappend" : true,
6569        /**
6570         * @event beforeremove
6571         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
6572         * @param {Tree} tree The owner tree
6573         * @param {Node} parent The parent node
6574         * @param {Node} node The child node to be removed
6575         */
6576        "beforeremove" : true,
6577        /**
6578         * @event beforemove
6579         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
6580         * @param {Tree} tree The owner tree
6581         * @param {Node} node The node being moved
6582         * @param {Node} oldParent The parent of the node
6583         * @param {Node} newParent The new parent the node is moving to
6584         * @param {Number} index The index it is being moved to
6585         */
6586        "beforemove" : true,
6587        /**
6588         * @event beforeinsert
6589         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
6590         * @param {Tree} tree The owner tree
6591         * @param {Node} parent The parent node
6592         * @param {Node} node The child node to be inserted
6593         * @param {Node} refNode The child node the node is being inserted before
6594         */
6595        "beforeinsert" : true
6596    });
6597
6598     Roo.data.Tree.superclass.constructor.call(this);
6599 };
6600
6601 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
6602     pathSeparator: "/",
6603
6604     proxyNodeEvent : function(){
6605         return this.fireEvent.apply(this, arguments);
6606     },
6607
6608     /**
6609      * Returns the root node for this tree.
6610      * @return {Node}
6611      */
6612     getRootNode : function(){
6613         return this.root;
6614     },
6615
6616     /**
6617      * Sets the root node for this tree.
6618      * @param {Node} node
6619      * @return {Node}
6620      */
6621     setRootNode : function(node){
6622         this.root = node;
6623         node.ownerTree = this;
6624         node.isRoot = true;
6625         this.registerNode(node);
6626         return node;
6627     },
6628
6629     /**
6630      * Gets a node in this tree by its id.
6631      * @param {String} id
6632      * @return {Node}
6633      */
6634     getNodeById : function(id){
6635         return this.nodeHash[id];
6636     },
6637
6638     registerNode : function(node){
6639         this.nodeHash[node.id] = node;
6640     },
6641
6642     unregisterNode : function(node){
6643         delete this.nodeHash[node.id];
6644     },
6645
6646     toString : function(){
6647         return "[Tree"+(this.id?" "+this.id:"")+"]";
6648     }
6649 });
6650
6651 /**
6652  * @class Roo.data.Node
6653  * @extends Roo.util.Observable
6654  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
6655  * @cfg {String} id The id for this node. If one is not specified, one is generated.
6656  * @constructor
6657  * @param {Object} attributes The attributes/config for the node
6658  */
6659 Roo.data.Node = function(attributes){
6660     /**
6661      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
6662      * @type {Object}
6663      */
6664     this.attributes = attributes || {};
6665     this.leaf = this.attributes.leaf;
6666     /**
6667      * The node id. @type String
6668      */
6669     this.id = this.attributes.id;
6670     if(!this.id){
6671         this.id = Roo.id(null, "ynode-");
6672         this.attributes.id = this.id;
6673     }
6674     /**
6675      * All child nodes of this node. @type Array
6676      */
6677     this.childNodes = [];
6678     if(!this.childNodes.indexOf){ // indexOf is a must
6679         this.childNodes.indexOf = function(o){
6680             for(var i = 0, len = this.length; i < len; i++){
6681                 if(this[i] == o) {
6682                     return i;
6683                 }
6684             }
6685             return -1;
6686         };
6687     }
6688     /**
6689      * The parent node for this node. @type Node
6690      */
6691     this.parentNode = null;
6692     /**
6693      * The first direct child node of this node, or null if this node has no child nodes. @type Node
6694      */
6695     this.firstChild = null;
6696     /**
6697      * The last direct child node of this node, or null if this node has no child nodes. @type Node
6698      */
6699     this.lastChild = null;
6700     /**
6701      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
6702      */
6703     this.previousSibling = null;
6704     /**
6705      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
6706      */
6707     this.nextSibling = null;
6708
6709     this.addEvents({
6710        /**
6711         * @event append
6712         * Fires when a new child node is appended
6713         * @param {Tree} tree The owner tree
6714         * @param {Node} this This node
6715         * @param {Node} node The newly appended node
6716         * @param {Number} index The index of the newly appended node
6717         */
6718        "append" : true,
6719        /**
6720         * @event remove
6721         * Fires when a child node is removed
6722         * @param {Tree} tree The owner tree
6723         * @param {Node} this This node
6724         * @param {Node} node The removed node
6725         */
6726        "remove" : true,
6727        /**
6728         * @event move
6729         * Fires when this node is moved to a new location in the tree
6730         * @param {Tree} tree The owner tree
6731         * @param {Node} this This node
6732         * @param {Node} oldParent The old parent of this node
6733         * @param {Node} newParent The new parent of this node
6734         * @param {Number} index The index it was moved to
6735         */
6736        "move" : true,
6737        /**
6738         * @event insert
6739         * Fires when a new child node is inserted.
6740         * @param {Tree} tree The owner tree
6741         * @param {Node} this This node
6742         * @param {Node} node The child node inserted
6743         * @param {Node} refNode The child node the node was inserted before
6744         */
6745        "insert" : true,
6746        /**
6747         * @event beforeappend
6748         * Fires before a new child is appended, return false to cancel the append.
6749         * @param {Tree} tree The owner tree
6750         * @param {Node} this This node
6751         * @param {Node} node The child node to be appended
6752         */
6753        "beforeappend" : true,
6754        /**
6755         * @event beforeremove
6756         * Fires before a child is removed, return false to cancel the remove.
6757         * @param {Tree} tree The owner tree
6758         * @param {Node} this This node
6759         * @param {Node} node The child node to be removed
6760         */
6761        "beforeremove" : true,
6762        /**
6763         * @event beforemove
6764         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
6765         * @param {Tree} tree The owner tree
6766         * @param {Node} this This node
6767         * @param {Node} oldParent The parent of this node
6768         * @param {Node} newParent The new parent this node is moving to
6769         * @param {Number} index The index it is being moved to
6770         */
6771        "beforemove" : true,
6772        /**
6773         * @event beforeinsert
6774         * Fires before a new child is inserted, return false to cancel the insert.
6775         * @param {Tree} tree The owner tree
6776         * @param {Node} this This node
6777         * @param {Node} node The child node to be inserted
6778         * @param {Node} refNode The child node the node is being inserted before
6779         */
6780        "beforeinsert" : true
6781    });
6782     this.listeners = this.attributes.listeners;
6783     Roo.data.Node.superclass.constructor.call(this);
6784 };
6785
6786 Roo.extend(Roo.data.Node, Roo.util.Observable, {
6787     fireEvent : function(evtName){
6788         // first do standard event for this node
6789         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
6790             return false;
6791         }
6792         // then bubble it up to the tree if the event wasn't cancelled
6793         var ot = this.getOwnerTree();
6794         if(ot){
6795             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
6796                 return false;
6797             }
6798         }
6799         return true;
6800     },
6801
6802     /**
6803      * Returns true if this node is a leaf
6804      * @return {Boolean}
6805      */
6806     isLeaf : function(){
6807         return this.leaf === true;
6808     },
6809
6810     // private
6811     setFirstChild : function(node){
6812         this.firstChild = node;
6813     },
6814
6815     //private
6816     setLastChild : function(node){
6817         this.lastChild = node;
6818     },
6819
6820
6821     /**
6822      * Returns true if this node is the last child of its parent
6823      * @return {Boolean}
6824      */
6825     isLast : function(){
6826        return (!this.parentNode ? true : this.parentNode.lastChild == this);
6827     },
6828
6829     /**
6830      * Returns true if this node is the first child of its parent
6831      * @return {Boolean}
6832      */
6833     isFirst : function(){
6834        return (!this.parentNode ? true : this.parentNode.firstChild == this);
6835     },
6836
6837     hasChildNodes : function(){
6838         return !this.isLeaf() && this.childNodes.length > 0;
6839     },
6840
6841     /**
6842      * Insert node(s) as the last child node of this node.
6843      * @param {Node/Array} node The node or Array of nodes to append
6844      * @return {Node} The appended node if single append, or null if an array was passed
6845      */
6846     appendChild : function(node){
6847         var multi = false;
6848         if(node instanceof Array){
6849             multi = node;
6850         }else if(arguments.length > 1){
6851             multi = arguments;
6852         }
6853         // if passed an array or multiple args do them one by one
6854         if(multi){
6855             for(var i = 0, len = multi.length; i < len; i++) {
6856                 this.appendChild(multi[i]);
6857             }
6858         }else{
6859             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
6860                 return false;
6861             }
6862             var index = this.childNodes.length;
6863             var oldParent = node.parentNode;
6864             // it's a move, make sure we move it cleanly
6865             if(oldParent){
6866                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
6867                     return false;
6868                 }
6869                 oldParent.removeChild(node);
6870             }
6871             index = this.childNodes.length;
6872             if(index == 0){
6873                 this.setFirstChild(node);
6874             }
6875             this.childNodes.push(node);
6876             node.parentNode = this;
6877             var ps = this.childNodes[index-1];
6878             if(ps){
6879                 node.previousSibling = ps;
6880                 ps.nextSibling = node;
6881             }else{
6882                 node.previousSibling = null;
6883             }
6884             node.nextSibling = null;
6885             this.setLastChild(node);
6886             node.setOwnerTree(this.getOwnerTree());
6887             this.fireEvent("append", this.ownerTree, this, node, index);
6888             if(oldParent){
6889                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
6890             }
6891             return node;
6892         }
6893     },
6894
6895     /**
6896      * Removes a child node from this node.
6897      * @param {Node} node The node to remove
6898      * @return {Node} The removed node
6899      */
6900     removeChild : function(node){
6901         var index = this.childNodes.indexOf(node);
6902         if(index == -1){
6903             return false;
6904         }
6905         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
6906             return false;
6907         }
6908
6909         // remove it from childNodes collection
6910         this.childNodes.splice(index, 1);
6911
6912         // update siblings
6913         if(node.previousSibling){
6914             node.previousSibling.nextSibling = node.nextSibling;
6915         }
6916         if(node.nextSibling){
6917             node.nextSibling.previousSibling = node.previousSibling;
6918         }
6919
6920         // update child refs
6921         if(this.firstChild == node){
6922             this.setFirstChild(node.nextSibling);
6923         }
6924         if(this.lastChild == node){
6925             this.setLastChild(node.previousSibling);
6926         }
6927
6928         node.setOwnerTree(null);
6929         // clear any references from the node
6930         node.parentNode = null;
6931         node.previousSibling = null;
6932         node.nextSibling = null;
6933         this.fireEvent("remove", this.ownerTree, this, node);
6934         return node;
6935     },
6936
6937     /**
6938      * Inserts the first node before the second node in this nodes childNodes collection.
6939      * @param {Node} node The node to insert
6940      * @param {Node} refNode The node to insert before (if null the node is appended)
6941      * @return {Node} The inserted node
6942      */
6943     insertBefore : function(node, refNode){
6944         if(!refNode){ // like standard Dom, refNode can be null for append
6945             return this.appendChild(node);
6946         }
6947         // nothing to do
6948         if(node == refNode){
6949             return false;
6950         }
6951
6952         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
6953             return false;
6954         }
6955         var index = this.childNodes.indexOf(refNode);
6956         var oldParent = node.parentNode;
6957         var refIndex = index;
6958
6959         // when moving internally, indexes will change after remove
6960         if(oldParent == this && this.childNodes.indexOf(node) < index){
6961             refIndex--;
6962         }
6963
6964         // it's a move, make sure we move it cleanly
6965         if(oldParent){
6966             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
6967                 return false;
6968             }
6969             oldParent.removeChild(node);
6970         }
6971         if(refIndex == 0){
6972             this.setFirstChild(node);
6973         }
6974         this.childNodes.splice(refIndex, 0, node);
6975         node.parentNode = this;
6976         var ps = this.childNodes[refIndex-1];
6977         if(ps){
6978             node.previousSibling = ps;
6979             ps.nextSibling = node;
6980         }else{
6981             node.previousSibling = null;
6982         }
6983         node.nextSibling = refNode;
6984         refNode.previousSibling = node;
6985         node.setOwnerTree(this.getOwnerTree());
6986         this.fireEvent("insert", this.ownerTree, this, node, refNode);
6987         if(oldParent){
6988             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
6989         }
6990         return node;
6991     },
6992
6993     /**
6994      * Returns the child node at the specified index.
6995      * @param {Number} index
6996      * @return {Node}
6997      */
6998     item : function(index){
6999         return this.childNodes[index];
7000     },
7001
7002     /**
7003      * Replaces one child node in this node with another.
7004      * @param {Node} newChild The replacement node
7005      * @param {Node} oldChild The node to replace
7006      * @return {Node} The replaced node
7007      */
7008     replaceChild : function(newChild, oldChild){
7009         this.insertBefore(newChild, oldChild);
7010         this.removeChild(oldChild);
7011         return oldChild;
7012     },
7013
7014     /**
7015      * Returns the index of a child node
7016      * @param {Node} node
7017      * @return {Number} The index of the node or -1 if it was not found
7018      */
7019     indexOf : function(child){
7020         return this.childNodes.indexOf(child);
7021     },
7022
7023     /**
7024      * Returns the tree this node is in.
7025      * @return {Tree}
7026      */
7027     getOwnerTree : function(){
7028         // if it doesn't have one, look for one
7029         if(!this.ownerTree){
7030             var p = this;
7031             while(p){
7032                 if(p.ownerTree){
7033                     this.ownerTree = p.ownerTree;
7034                     break;
7035                 }
7036                 p = p.parentNode;
7037             }
7038         }
7039         return this.ownerTree;
7040     },
7041
7042     /**
7043      * Returns depth of this node (the root node has a depth of 0)
7044      * @return {Number}
7045      */
7046     getDepth : function(){
7047         var depth = 0;
7048         var p = this;
7049         while(p.parentNode){
7050             ++depth;
7051             p = p.parentNode;
7052         }
7053         return depth;
7054     },
7055
7056     // private
7057     setOwnerTree : function(tree){
7058         // if it's move, we need to update everyone
7059         if(tree != this.ownerTree){
7060             if(this.ownerTree){
7061                 this.ownerTree.unregisterNode(this);
7062             }
7063             this.ownerTree = tree;
7064             var cs = this.childNodes;
7065             for(var i = 0, len = cs.length; i < len; i++) {
7066                 cs[i].setOwnerTree(tree);
7067             }
7068             if(tree){
7069                 tree.registerNode(this);
7070             }
7071         }
7072     },
7073
7074     /**
7075      * Returns the path for this node. The path can be used to expand or select this node programmatically.
7076      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
7077      * @return {String} The path
7078      */
7079     getPath : function(attr){
7080         attr = attr || "id";
7081         var p = this.parentNode;
7082         var b = [this.attributes[attr]];
7083         while(p){
7084             b.unshift(p.attributes[attr]);
7085             p = p.parentNode;
7086         }
7087         var sep = this.getOwnerTree().pathSeparator;
7088         return sep + b.join(sep);
7089     },
7090
7091     /**
7092      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7093      * function call will be the scope provided or the current node. The arguments to the function
7094      * will be the args provided or the current node. If the function returns false at any point,
7095      * the bubble is stopped.
7096      * @param {Function} fn The function to call
7097      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7098      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7099      */
7100     bubble : function(fn, scope, args){
7101         var p = this;
7102         while(p){
7103             if(fn.call(scope || p, args || p) === false){
7104                 break;
7105             }
7106             p = p.parentNode;
7107         }
7108     },
7109
7110     /**
7111      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7112      * function call will be the scope provided or the current node. The arguments to the function
7113      * will be the args provided or the current node. If the function returns false at any point,
7114      * the cascade is stopped on that branch.
7115      * @param {Function} fn The function to call
7116      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7117      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7118      */
7119     cascade : function(fn, scope, args){
7120         if(fn.call(scope || this, args || this) !== false){
7121             var cs = this.childNodes;
7122             for(var i = 0, len = cs.length; i < len; i++) {
7123                 cs[i].cascade(fn, scope, args);
7124             }
7125         }
7126     },
7127
7128     /**
7129      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
7130      * function call will be the scope provided or the current node. The arguments to the function
7131      * will be the args provided or the current node. If the function returns false at any point,
7132      * the iteration stops.
7133      * @param {Function} fn The function to call
7134      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7135      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7136      */
7137     eachChild : function(fn, scope, args){
7138         var cs = this.childNodes;
7139         for(var i = 0, len = cs.length; i < len; i++) {
7140                 if(fn.call(scope || this, args || cs[i]) === false){
7141                     break;
7142                 }
7143         }
7144     },
7145
7146     /**
7147      * Finds the first child that has the attribute with the specified value.
7148      * @param {String} attribute The attribute name
7149      * @param {Mixed} value The value to search for
7150      * @return {Node} The found child or null if none was found
7151      */
7152     findChild : function(attribute, value){
7153         var cs = this.childNodes;
7154         for(var i = 0, len = cs.length; i < len; i++) {
7155                 if(cs[i].attributes[attribute] == value){
7156                     return cs[i];
7157                 }
7158         }
7159         return null;
7160     },
7161
7162     /**
7163      * Finds the first child by a custom function. The child matches if the function passed
7164      * returns true.
7165      * @param {Function} fn
7166      * @param {Object} scope (optional)
7167      * @return {Node} The found child or null if none was found
7168      */
7169     findChildBy : function(fn, scope){
7170         var cs = this.childNodes;
7171         for(var i = 0, len = cs.length; i < len; i++) {
7172                 if(fn.call(scope||cs[i], cs[i]) === true){
7173                     return cs[i];
7174                 }
7175         }
7176         return null;
7177     },
7178
7179     /**
7180      * Sorts this nodes children using the supplied sort function
7181      * @param {Function} fn
7182      * @param {Object} scope (optional)
7183      */
7184     sort : function(fn, scope){
7185         var cs = this.childNodes;
7186         var len = cs.length;
7187         if(len > 0){
7188             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
7189             cs.sort(sortFn);
7190             for(var i = 0; i < len; i++){
7191                 var n = cs[i];
7192                 n.previousSibling = cs[i-1];
7193                 n.nextSibling = cs[i+1];
7194                 if(i == 0){
7195                     this.setFirstChild(n);
7196                 }
7197                 if(i == len-1){
7198                     this.setLastChild(n);
7199                 }
7200             }
7201         }
7202     },
7203
7204     /**
7205      * Returns true if this node is an ancestor (at any point) of the passed node.
7206      * @param {Node} node
7207      * @return {Boolean}
7208      */
7209     contains : function(node){
7210         return node.isAncestor(this);
7211     },
7212
7213     /**
7214      * Returns true if the passed node is an ancestor (at any point) of this node.
7215      * @param {Node} node
7216      * @return {Boolean}
7217      */
7218     isAncestor : function(node){
7219         var p = this.parentNode;
7220         while(p){
7221             if(p == node){
7222                 return true;
7223             }
7224             p = p.parentNode;
7225         }
7226         return false;
7227     },
7228
7229     toString : function(){
7230         return "[Node"+(this.id?" "+this.id:"")+"]";
7231     }
7232 });/*
7233  * Based on:
7234  * Ext JS Library 1.1.1
7235  * Copyright(c) 2006-2007, Ext JS, LLC.
7236  *
7237  * Originally Released Under LGPL - original licence link has changed is not relivant.
7238  *
7239  * Fork - LGPL
7240  * <script type="text/javascript">
7241  */
7242  
7243
7244 /**
7245  * @class Roo.ComponentMgr
7246  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
7247  * @singleton
7248  */
7249 Roo.ComponentMgr = function(){
7250     var all = new Roo.util.MixedCollection();
7251
7252     return {
7253         /**
7254          * Registers a component.
7255          * @param {Roo.Component} c The component
7256          */
7257         register : function(c){
7258             all.add(c);
7259         },
7260
7261         /**
7262          * Unregisters a component.
7263          * @param {Roo.Component} c The component
7264          */
7265         unregister : function(c){
7266             all.remove(c);
7267         },
7268
7269         /**
7270          * Returns a component by id
7271          * @param {String} id The component id
7272          */
7273         get : function(id){
7274             return all.get(id);
7275         },
7276
7277         /**
7278          * Registers a function that will be called when a specified component is added to ComponentMgr
7279          * @param {String} id The component id
7280          * @param {Funtction} fn The callback function
7281          * @param {Object} scope The scope of the callback
7282          */
7283         onAvailable : function(id, fn, scope){
7284             all.on("add", function(index, o){
7285                 if(o.id == id){
7286                     fn.call(scope || o, o);
7287                     all.un("add", fn, scope);
7288                 }
7289             });
7290         }
7291     };
7292 }();/*
7293  * Based on:
7294  * Ext JS Library 1.1.1
7295  * Copyright(c) 2006-2007, Ext JS, LLC.
7296  *
7297  * Originally Released Under LGPL - original licence link has changed is not relivant.
7298  *
7299  * Fork - LGPL
7300  * <script type="text/javascript">
7301  */
7302  
7303 /**
7304  * @class Roo.Component
7305  * @extends Roo.util.Observable
7306  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
7307  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
7308  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
7309  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
7310  * All visual components (widgets) that require rendering into a layout should subclass Component.
7311  * @constructor
7312  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
7313  * 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
7314  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
7315  */
7316 Roo.Component = function(config){
7317     config = config || {};
7318     if(config.tagName || config.dom || typeof config == "string"){ // element object
7319         config = {el: config, id: config.id || config};
7320     }
7321     this.initialConfig = config;
7322
7323     Roo.apply(this, config);
7324     this.addEvents({
7325         /**
7326          * @event disable
7327          * Fires after the component is disabled.
7328              * @param {Roo.Component} this
7329              */
7330         disable : true,
7331         /**
7332          * @event enable
7333          * Fires after the component is enabled.
7334              * @param {Roo.Component} this
7335              */
7336         enable : true,
7337         /**
7338          * @event beforeshow
7339          * Fires before the component is shown.  Return false to stop the show.
7340              * @param {Roo.Component} this
7341              */
7342         beforeshow : true,
7343         /**
7344          * @event show
7345          * Fires after the component is shown.
7346              * @param {Roo.Component} this
7347              */
7348         show : true,
7349         /**
7350          * @event beforehide
7351          * Fires before the component is hidden. Return false to stop the hide.
7352              * @param {Roo.Component} this
7353              */
7354         beforehide : true,
7355         /**
7356          * @event hide
7357          * Fires after the component is hidden.
7358              * @param {Roo.Component} this
7359              */
7360         hide : true,
7361         /**
7362          * @event beforerender
7363          * Fires before the component is rendered. Return false to stop the render.
7364              * @param {Roo.Component} this
7365              */
7366         beforerender : true,
7367         /**
7368          * @event render
7369          * Fires after the component is rendered.
7370              * @param {Roo.Component} this
7371              */
7372         render : true,
7373         /**
7374          * @event beforedestroy
7375          * Fires before the component is destroyed. Return false to stop the destroy.
7376              * @param {Roo.Component} this
7377              */
7378         beforedestroy : true,
7379         /**
7380          * @event destroy
7381          * Fires after the component is destroyed.
7382              * @param {Roo.Component} this
7383              */
7384         destroy : true
7385     });
7386     if(!this.id){
7387         this.id = "ext-comp-" + (++Roo.Component.AUTO_ID);
7388     }
7389     Roo.ComponentMgr.register(this);
7390     Roo.Component.superclass.constructor.call(this);
7391     this.initComponent();
7392     if(this.renderTo){ // not supported by all components yet. use at your own risk!
7393         this.render(this.renderTo);
7394         delete this.renderTo;
7395     }
7396 };
7397
7398 /** @private */
7399 Roo.Component.AUTO_ID = 1000;
7400
7401 Roo.extend(Roo.Component, Roo.util.Observable, {
7402     /**
7403      * @scope Roo.Component.prototype
7404      * @type {Boolean}
7405      * true if this component is hidden. Read-only.
7406      */
7407     hidden : false,
7408     /**
7409      * @type {Boolean}
7410      * true if this component is disabled. Read-only.
7411      */
7412     disabled : false,
7413     /**
7414      * @type {Boolean}
7415      * true if this component has been rendered. Read-only.
7416      */
7417     rendered : false,
7418     
7419     /** @cfg {String} disableClass
7420      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
7421      */
7422     disabledClass : "x-item-disabled",
7423         /** @cfg {Boolean} allowDomMove
7424          * Whether the component can move the Dom node when rendering (defaults to true).
7425          */
7426     allowDomMove : true,
7427     /** @cfg {String} hideMode
7428      * How this component should hidden. Supported values are
7429      * "visibility" (css visibility), "offsets" (negative offset position) and
7430      * "display" (css display) - defaults to "display".
7431      */
7432     hideMode: 'display',
7433
7434     /** @private */
7435     ctype : "Roo.Component",
7436
7437     /**
7438      * @cfg {String} actionMode 
7439      * which property holds the element that used for  hide() / show() / disable() / enable()
7440      * default is 'el' 
7441      */
7442     actionMode : "el",
7443
7444     /** @private */
7445     getActionEl : function(){
7446         return this[this.actionMode];
7447     },
7448
7449     initComponent : Roo.emptyFn,
7450     /**
7451      * If this is a lazy rendering component, render it to its container element.
7452      * @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.
7453      */
7454     render : function(container, position){
7455         if(!this.rendered && this.fireEvent("beforerender", this) !== false){
7456             if(!container && this.el){
7457                 this.el = Roo.get(this.el);
7458                 container = this.el.dom.parentNode;
7459                 this.allowDomMove = false;
7460             }
7461             this.container = Roo.get(container);
7462             this.rendered = true;
7463             if(position !== undefined){
7464                 if(typeof position == 'number'){
7465                     position = this.container.dom.childNodes[position];
7466                 }else{
7467                     position = Roo.getDom(position);
7468                 }
7469             }
7470             this.onRender(this.container, position || null);
7471             if(this.cls){
7472                 this.el.addClass(this.cls);
7473                 delete this.cls;
7474             }
7475             if(this.style){
7476                 this.el.applyStyles(this.style);
7477                 delete this.style;
7478             }
7479             this.fireEvent("render", this);
7480             this.afterRender(this.container);
7481             if(this.hidden){
7482                 this.hide();
7483             }
7484             if(this.disabled){
7485                 this.disable();
7486             }
7487         }
7488         return this;
7489     },
7490
7491     /** @private */
7492     // default function is not really useful
7493     onRender : function(ct, position){
7494         if(this.el){
7495             this.el = Roo.get(this.el);
7496             if(this.allowDomMove !== false){
7497                 ct.dom.insertBefore(this.el.dom, position);
7498             }
7499         }
7500     },
7501
7502     /** @private */
7503     getAutoCreate : function(){
7504         var cfg = typeof this.autoCreate == "object" ?
7505                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
7506         if(this.id && !cfg.id){
7507             cfg.id = this.id;
7508         }
7509         return cfg;
7510     },
7511
7512     /** @private */
7513     afterRender : Roo.emptyFn,
7514
7515     /**
7516      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
7517      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
7518      */
7519     destroy : function(){
7520         if(this.fireEvent("beforedestroy", this) !== false){
7521             this.purgeListeners();
7522             this.beforeDestroy();
7523             if(this.rendered){
7524                 this.el.removeAllListeners();
7525                 this.el.remove();
7526                 if(this.actionMode == "container"){
7527                     this.container.remove();
7528                 }
7529             }
7530             this.onDestroy();
7531             Roo.ComponentMgr.unregister(this);
7532             this.fireEvent("destroy", this);
7533         }
7534     },
7535
7536         /** @private */
7537     beforeDestroy : function(){
7538
7539     },
7540
7541         /** @private */
7542         onDestroy : function(){
7543
7544     },
7545
7546     /**
7547      * Returns the underlying {@link Roo.Element}.
7548      * @return {Roo.Element} The element
7549      */
7550     getEl : function(){
7551         return this.el;
7552     },
7553
7554     /**
7555      * Returns the id of this component.
7556      * @return {String}
7557      */
7558     getId : function(){
7559         return this.id;
7560     },
7561
7562     /**
7563      * Try to focus this component.
7564      * @param {Boolean} selectText True to also select the text in this component (if applicable)
7565      * @return {Roo.Component} this
7566      */
7567     focus : function(selectText){
7568         if(this.rendered){
7569             this.el.focus();
7570             if(selectText === true){
7571                 this.el.dom.select();
7572             }
7573         }
7574         return this;
7575     },
7576
7577     /** @private */
7578     blur : function(){
7579         if(this.rendered){
7580             this.el.blur();
7581         }
7582         return this;
7583     },
7584
7585     /**
7586      * Disable this component.
7587      * @return {Roo.Component} this
7588      */
7589     disable : function(){
7590         if(this.rendered){
7591             this.onDisable();
7592         }
7593         this.disabled = true;
7594         this.fireEvent("disable", this);
7595         return this;
7596     },
7597
7598         // private
7599     onDisable : function(){
7600         this.getActionEl().addClass(this.disabledClass);
7601         this.el.dom.disabled = true;
7602     },
7603
7604     /**
7605      * Enable this component.
7606      * @return {Roo.Component} this
7607      */
7608     enable : function(){
7609         if(this.rendered){
7610             this.onEnable();
7611         }
7612         this.disabled = false;
7613         this.fireEvent("enable", this);
7614         return this;
7615     },
7616
7617         // private
7618     onEnable : function(){
7619         this.getActionEl().removeClass(this.disabledClass);
7620         this.el.dom.disabled = false;
7621     },
7622
7623     /**
7624      * Convenience function for setting disabled/enabled by boolean.
7625      * @param {Boolean} disabled
7626      */
7627     setDisabled : function(disabled){
7628         this[disabled ? "disable" : "enable"]();
7629     },
7630
7631     /**
7632      * Show this component.
7633      * @return {Roo.Component} this
7634      */
7635     show: function(){
7636         if(this.fireEvent("beforeshow", this) !== false){
7637             this.hidden = false;
7638             if(this.rendered){
7639                 this.onShow();
7640             }
7641             this.fireEvent("show", this);
7642         }
7643         return this;
7644     },
7645
7646     // private
7647     onShow : function(){
7648         var ae = this.getActionEl();
7649         if(this.hideMode == 'visibility'){
7650             ae.dom.style.visibility = "visible";
7651         }else if(this.hideMode == 'offsets'){
7652             ae.removeClass('x-hidden');
7653         }else{
7654             ae.dom.style.display = "";
7655         }
7656     },
7657
7658     /**
7659      * Hide this component.
7660      * @return {Roo.Component} this
7661      */
7662     hide: function(){
7663         if(this.fireEvent("beforehide", this) !== false){
7664             this.hidden = true;
7665             if(this.rendered){
7666                 this.onHide();
7667             }
7668             this.fireEvent("hide", this);
7669         }
7670         return this;
7671     },
7672
7673     // private
7674     onHide : function(){
7675         var ae = this.getActionEl();
7676         if(this.hideMode == 'visibility'){
7677             ae.dom.style.visibility = "hidden";
7678         }else if(this.hideMode == 'offsets'){
7679             ae.addClass('x-hidden');
7680         }else{
7681             ae.dom.style.display = "none";
7682         }
7683     },
7684
7685     /**
7686      * Convenience function to hide or show this component by boolean.
7687      * @param {Boolean} visible True to show, false to hide
7688      * @return {Roo.Component} this
7689      */
7690     setVisible: function(visible){
7691         if(visible) {
7692             this.show();
7693         }else{
7694             this.hide();
7695         }
7696         return this;
7697     },
7698
7699     /**
7700      * Returns true if this component is visible.
7701      */
7702     isVisible : function(){
7703         return this.getActionEl().isVisible();
7704     },
7705
7706     cloneConfig : function(overrides){
7707         overrides = overrides || {};
7708         var id = overrides.id || Roo.id();
7709         var cfg = Roo.applyIf(overrides, this.initialConfig);
7710         cfg.id = id; // prevent dup id
7711         return new this.constructor(cfg);
7712     }
7713 });/*
7714  * Based on:
7715  * Ext JS Library 1.1.1
7716  * Copyright(c) 2006-2007, Ext JS, LLC.
7717  *
7718  * Originally Released Under LGPL - original licence link has changed is not relivant.
7719  *
7720  * Fork - LGPL
7721  * <script type="text/javascript">
7722  */
7723  (function(){ 
7724 /**
7725  * @class Roo.Layer
7726  * @extends Roo.Element
7727  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
7728  * automatic maintaining of shadow/shim positions.
7729  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
7730  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
7731  * you can pass a string with a CSS class name. False turns off the shadow.
7732  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
7733  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
7734  * @cfg {String} cls CSS class to add to the element
7735  * @cfg {Number} zindex Starting z-index (defaults to 11000)
7736  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
7737  * @constructor
7738  * @param {Object} config An object with config options.
7739  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
7740  */
7741
7742 Roo.Layer = function(config, existingEl){
7743     config = config || {};
7744     var dh = Roo.DomHelper;
7745     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
7746     if(existingEl){
7747         this.dom = Roo.getDom(existingEl);
7748     }
7749     if(!this.dom){
7750         var o = config.dh || {tag: "div", cls: "x-layer"};
7751         this.dom = dh.append(pel, o);
7752     }
7753     if(config.cls){
7754         this.addClass(config.cls);
7755     }
7756     this.constrain = config.constrain !== false;
7757     this.visibilityMode = Roo.Element.VISIBILITY;
7758     if(config.id){
7759         this.id = this.dom.id = config.id;
7760     }else{
7761         this.id = Roo.id(this.dom);
7762     }
7763     this.zindex = config.zindex || this.getZIndex();
7764     this.position("absolute", this.zindex);
7765     if(config.shadow){
7766         this.shadowOffset = config.shadowOffset || 4;
7767         this.shadow = new Roo.Shadow({
7768             offset : this.shadowOffset,
7769             mode : config.shadow
7770         });
7771     }else{
7772         this.shadowOffset = 0;
7773     }
7774     this.useShim = config.shim !== false && Roo.useShims;
7775     this.useDisplay = config.useDisplay;
7776     this.hide();
7777 };
7778
7779 var supr = Roo.Element.prototype;
7780
7781 // shims are shared among layer to keep from having 100 iframes
7782 var shims = [];
7783
7784 Roo.extend(Roo.Layer, Roo.Element, {
7785
7786     getZIndex : function(){
7787         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
7788     },
7789
7790     getShim : function(){
7791         if(!this.useShim){
7792             return null;
7793         }
7794         if(this.shim){
7795             return this.shim;
7796         }
7797         var shim = shims.shift();
7798         if(!shim){
7799             shim = this.createShim();
7800             shim.enableDisplayMode('block');
7801             shim.dom.style.display = 'none';
7802             shim.dom.style.visibility = 'visible';
7803         }
7804         var pn = this.dom.parentNode;
7805         if(shim.dom.parentNode != pn){
7806             pn.insertBefore(shim.dom, this.dom);
7807         }
7808         shim.setStyle('z-index', this.getZIndex()-2);
7809         this.shim = shim;
7810         return shim;
7811     },
7812
7813     hideShim : function(){
7814         if(this.shim){
7815             this.shim.setDisplayed(false);
7816             shims.push(this.shim);
7817             delete this.shim;
7818         }
7819     },
7820
7821     disableShadow : function(){
7822         if(this.shadow){
7823             this.shadowDisabled = true;
7824             this.shadow.hide();
7825             this.lastShadowOffset = this.shadowOffset;
7826             this.shadowOffset = 0;
7827         }
7828     },
7829
7830     enableShadow : function(show){
7831         if(this.shadow){
7832             this.shadowDisabled = false;
7833             this.shadowOffset = this.lastShadowOffset;
7834             delete this.lastShadowOffset;
7835             if(show){
7836                 this.sync(true);
7837             }
7838         }
7839     },
7840
7841     // private
7842     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
7843     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
7844     sync : function(doShow){
7845         var sw = this.shadow;
7846         if(!this.updating && this.isVisible() && (sw || this.useShim)){
7847             var sh = this.getShim();
7848
7849             var w = this.getWidth(),
7850                 h = this.getHeight();
7851
7852             var l = this.getLeft(true),
7853                 t = this.getTop(true);
7854
7855             if(sw && !this.shadowDisabled){
7856                 if(doShow && !sw.isVisible()){
7857                     sw.show(this);
7858                 }else{
7859                     sw.realign(l, t, w, h);
7860                 }
7861                 if(sh){
7862                     if(doShow){
7863                        sh.show();
7864                     }
7865                     // fit the shim behind the shadow, so it is shimmed too
7866                     var a = sw.adjusts, s = sh.dom.style;
7867                     s.left = (Math.min(l, l+a.l))+"px";
7868                     s.top = (Math.min(t, t+a.t))+"px";
7869                     s.width = (w+a.w)+"px";
7870                     s.height = (h+a.h)+"px";
7871                 }
7872             }else if(sh){
7873                 if(doShow){
7874                    sh.show();
7875                 }
7876                 sh.setSize(w, h);
7877                 sh.setLeftTop(l, t);
7878             }
7879             
7880         }
7881     },
7882
7883     // private
7884     destroy : function(){
7885         this.hideShim();
7886         if(this.shadow){
7887             this.shadow.hide();
7888         }
7889         this.removeAllListeners();
7890         var pn = this.dom.parentNode;
7891         if(pn){
7892             pn.removeChild(this.dom);
7893         }
7894         Roo.Element.uncache(this.id);
7895     },
7896
7897     remove : function(){
7898         this.destroy();
7899     },
7900
7901     // private
7902     beginUpdate : function(){
7903         this.updating = true;
7904     },
7905
7906     // private
7907     endUpdate : function(){
7908         this.updating = false;
7909         this.sync(true);
7910     },
7911
7912     // private
7913     hideUnders : function(negOffset){
7914         if(this.shadow){
7915             this.shadow.hide();
7916         }
7917         this.hideShim();
7918     },
7919
7920     // private
7921     constrainXY : function(){
7922         if(this.constrain){
7923             var vw = Roo.lib.Dom.getViewWidth(),
7924                 vh = Roo.lib.Dom.getViewHeight();
7925             var s = Roo.get(document).getScroll();
7926
7927             var xy = this.getXY();
7928             var x = xy[0], y = xy[1];   
7929             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
7930             // only move it if it needs it
7931             var moved = false;
7932             // first validate right/bottom
7933             if((x + w) > vw+s.left){
7934                 x = vw - w - this.shadowOffset;
7935                 moved = true;
7936             }
7937             if((y + h) > vh+s.top){
7938                 y = vh - h - this.shadowOffset;
7939                 moved = true;
7940             }
7941             // then make sure top/left isn't negative
7942             if(x < s.left){
7943                 x = s.left;
7944                 moved = true;
7945             }
7946             if(y < s.top){
7947                 y = s.top;
7948                 moved = true;
7949             }
7950             if(moved){
7951                 if(this.avoidY){
7952                     var ay = this.avoidY;
7953                     if(y <= ay && (y+h) >= ay){
7954                         y = ay-h-5;   
7955                     }
7956                 }
7957                 xy = [x, y];
7958                 this.storeXY(xy);
7959                 supr.setXY.call(this, xy);
7960                 this.sync();
7961             }
7962         }
7963     },
7964
7965     isVisible : function(){
7966         return this.visible;    
7967     },
7968
7969     // private
7970     showAction : function(){
7971         this.visible = true; // track visibility to prevent getStyle calls
7972         if(this.useDisplay === true){
7973             this.setDisplayed("");
7974         }else if(this.lastXY){
7975             supr.setXY.call(this, this.lastXY);
7976         }else if(this.lastLT){
7977             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
7978         }
7979     },
7980
7981     // private
7982     hideAction : function(){
7983         this.visible = false;
7984         if(this.useDisplay === true){
7985             this.setDisplayed(false);
7986         }else{
7987             this.setLeftTop(-10000,-10000);
7988         }
7989     },
7990
7991     // overridden Element method
7992     setVisible : function(v, a, d, c, e){
7993         if(v){
7994             this.showAction();
7995         }
7996         if(a && v){
7997             var cb = function(){
7998                 this.sync(true);
7999                 if(c){
8000                     c();
8001                 }
8002             }.createDelegate(this);
8003             supr.setVisible.call(this, true, true, d, cb, e);
8004         }else{
8005             if(!v){
8006                 this.hideUnders(true);
8007             }
8008             var cb = c;
8009             if(a){
8010                 cb = function(){
8011                     this.hideAction();
8012                     if(c){
8013                         c();
8014                     }
8015                 }.createDelegate(this);
8016             }
8017             supr.setVisible.call(this, v, a, d, cb, e);
8018             if(v){
8019                 this.sync(true);
8020             }else if(!a){
8021                 this.hideAction();
8022             }
8023         }
8024     },
8025
8026     storeXY : function(xy){
8027         delete this.lastLT;
8028         this.lastXY = xy;
8029     },
8030
8031     storeLeftTop : function(left, top){
8032         delete this.lastXY;
8033         this.lastLT = [left, top];
8034     },
8035
8036     // private
8037     beforeFx : function(){
8038         this.beforeAction();
8039         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
8040     },
8041
8042     // private
8043     afterFx : function(){
8044         Roo.Layer.superclass.afterFx.apply(this, arguments);
8045         this.sync(this.isVisible());
8046     },
8047
8048     // private
8049     beforeAction : function(){
8050         if(!this.updating && this.shadow){
8051             this.shadow.hide();
8052         }
8053     },
8054
8055     // overridden Element method
8056     setLeft : function(left){
8057         this.storeLeftTop(left, this.getTop(true));
8058         supr.setLeft.apply(this, arguments);
8059         this.sync();
8060     },
8061
8062     setTop : function(top){
8063         this.storeLeftTop(this.getLeft(true), top);
8064         supr.setTop.apply(this, arguments);
8065         this.sync();
8066     },
8067
8068     setLeftTop : function(left, top){
8069         this.storeLeftTop(left, top);
8070         supr.setLeftTop.apply(this, arguments);
8071         this.sync();
8072     },
8073
8074     setXY : function(xy, a, d, c, e){
8075         this.fixDisplay();
8076         this.beforeAction();
8077         this.storeXY(xy);
8078         var cb = this.createCB(c);
8079         supr.setXY.call(this, xy, a, d, cb, e);
8080         if(!a){
8081             cb();
8082         }
8083     },
8084
8085     // private
8086     createCB : function(c){
8087         var el = this;
8088         return function(){
8089             el.constrainXY();
8090             el.sync(true);
8091             if(c){
8092                 c();
8093             }
8094         };
8095     },
8096
8097     // overridden Element method
8098     setX : function(x, a, d, c, e){
8099         this.setXY([x, this.getY()], a, d, c, e);
8100     },
8101
8102     // overridden Element method
8103     setY : function(y, a, d, c, e){
8104         this.setXY([this.getX(), y], a, d, c, e);
8105     },
8106
8107     // overridden Element method
8108     setSize : function(w, h, a, d, c, e){
8109         this.beforeAction();
8110         var cb = this.createCB(c);
8111         supr.setSize.call(this, w, h, a, d, cb, e);
8112         if(!a){
8113             cb();
8114         }
8115     },
8116
8117     // overridden Element method
8118     setWidth : function(w, a, d, c, e){
8119         this.beforeAction();
8120         var cb = this.createCB(c);
8121         supr.setWidth.call(this, w, a, d, cb, e);
8122         if(!a){
8123             cb();
8124         }
8125     },
8126
8127     // overridden Element method
8128     setHeight : function(h, a, d, c, e){
8129         this.beforeAction();
8130         var cb = this.createCB(c);
8131         supr.setHeight.call(this, h, a, d, cb, e);
8132         if(!a){
8133             cb();
8134         }
8135     },
8136
8137     // overridden Element method
8138     setBounds : function(x, y, w, h, a, d, c, e){
8139         this.beforeAction();
8140         var cb = this.createCB(c);
8141         if(!a){
8142             this.storeXY([x, y]);
8143             supr.setXY.call(this, [x, y]);
8144             supr.setSize.call(this, w, h, a, d, cb, e);
8145             cb();
8146         }else{
8147             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
8148         }
8149         return this;
8150     },
8151     
8152     /**
8153      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
8154      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
8155      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
8156      * @param {Number} zindex The new z-index to set
8157      * @return {this} The Layer
8158      */
8159     setZIndex : function(zindex){
8160         this.zindex = zindex;
8161         this.setStyle("z-index", zindex + 2);
8162         if(this.shadow){
8163             this.shadow.setZIndex(zindex + 1);
8164         }
8165         if(this.shim){
8166             this.shim.setStyle("z-index", zindex);
8167         }
8168     }
8169 });
8170 })();/*
8171  * Based on:
8172  * Ext JS Library 1.1.1
8173  * Copyright(c) 2006-2007, Ext JS, LLC.
8174  *
8175  * Originally Released Under LGPL - original licence link has changed is not relivant.
8176  *
8177  * Fork - LGPL
8178  * <script type="text/javascript">
8179  */
8180
8181
8182 /**
8183  * @class Roo.Shadow
8184  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
8185  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
8186  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
8187  * @constructor
8188  * Create a new Shadow
8189  * @param {Object} config The config object
8190  */
8191 Roo.Shadow = function(config){
8192     Roo.apply(this, config);
8193     if(typeof this.mode != "string"){
8194         this.mode = this.defaultMode;
8195     }
8196     var o = this.offset, a = {h: 0};
8197     var rad = Math.floor(this.offset/2);
8198     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
8199         case "drop":
8200             a.w = 0;
8201             a.l = a.t = o;
8202             a.t -= 1;
8203             if(Roo.isIE){
8204                 a.l -= this.offset + rad;
8205                 a.t -= this.offset + rad;
8206                 a.w -= rad;
8207                 a.h -= rad;
8208                 a.t += 1;
8209             }
8210         break;
8211         case "sides":
8212             a.w = (o*2);
8213             a.l = -o;
8214             a.t = o-1;
8215             if(Roo.isIE){
8216                 a.l -= (this.offset - rad);
8217                 a.t -= this.offset + rad;
8218                 a.l += 1;
8219                 a.w -= (this.offset - rad)*2;
8220                 a.w -= rad + 1;
8221                 a.h -= 1;
8222             }
8223         break;
8224         case "frame":
8225             a.w = a.h = (o*2);
8226             a.l = a.t = -o;
8227             a.t += 1;
8228             a.h -= 2;
8229             if(Roo.isIE){
8230                 a.l -= (this.offset - rad);
8231                 a.t -= (this.offset - rad);
8232                 a.l += 1;
8233                 a.w -= (this.offset + rad + 1);
8234                 a.h -= (this.offset + rad);
8235                 a.h += 1;
8236             }
8237         break;
8238     };
8239
8240     this.adjusts = a;
8241 };
8242
8243 Roo.Shadow.prototype = {
8244     /**
8245      * @cfg {String} mode
8246      * The shadow display mode.  Supports the following options:<br />
8247      * sides: Shadow displays on both sides and bottom only<br />
8248      * frame: Shadow displays equally on all four sides<br />
8249      * drop: Traditional bottom-right drop shadow (default)
8250      */
8251     /**
8252      * @cfg {String} offset
8253      * The number of pixels to offset the shadow from the element (defaults to 4)
8254      */
8255     offset: 4,
8256
8257     // private
8258     defaultMode: "drop",
8259
8260     /**
8261      * Displays the shadow under the target element
8262      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
8263      */
8264     show : function(target){
8265         target = Roo.get(target);
8266         if(!this.el){
8267             this.el = Roo.Shadow.Pool.pull();
8268             if(this.el.dom.nextSibling != target.dom){
8269                 this.el.insertBefore(target);
8270             }
8271         }
8272         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
8273         if(Roo.isIE){
8274             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
8275         }
8276         this.realign(
8277             target.getLeft(true),
8278             target.getTop(true),
8279             target.getWidth(),
8280             target.getHeight()
8281         );
8282         this.el.dom.style.display = "block";
8283     },
8284
8285     /**
8286      * Returns true if the shadow is visible, else false
8287      */
8288     isVisible : function(){
8289         return this.el ? true : false;  
8290     },
8291
8292     /**
8293      * Direct alignment when values are already available. Show must be called at least once before
8294      * calling this method to ensure it is initialized.
8295      * @param {Number} left The target element left position
8296      * @param {Number} top The target element top position
8297      * @param {Number} width The target element width
8298      * @param {Number} height The target element height
8299      */
8300     realign : function(l, t, w, h){
8301         if(!this.el){
8302             return;
8303         }
8304         var a = this.adjusts, d = this.el.dom, s = d.style;
8305         var iea = 0;
8306         s.left = (l+a.l)+"px";
8307         s.top = (t+a.t)+"px";
8308         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
8309  
8310         if(s.width != sws || s.height != shs){
8311             s.width = sws;
8312             s.height = shs;
8313             if(!Roo.isIE){
8314                 var cn = d.childNodes;
8315                 var sww = Math.max(0, (sw-12))+"px";
8316                 cn[0].childNodes[1].style.width = sww;
8317                 cn[1].childNodes[1].style.width = sww;
8318                 cn[2].childNodes[1].style.width = sww;
8319                 cn[1].style.height = Math.max(0, (sh-12))+"px";
8320             }
8321         }
8322     },
8323
8324     /**
8325      * Hides this shadow
8326      */
8327     hide : function(){
8328         if(this.el){
8329             this.el.dom.style.display = "none";
8330             Roo.Shadow.Pool.push(this.el);
8331             delete this.el;
8332         }
8333     },
8334
8335     /**
8336      * Adjust the z-index of this shadow
8337      * @param {Number} zindex The new z-index
8338      */
8339     setZIndex : function(z){
8340         this.zIndex = z;
8341         if(this.el){
8342             this.el.setStyle("z-index", z);
8343         }
8344     }
8345 };
8346
8347 // Private utility class that manages the internal Shadow cache
8348 Roo.Shadow.Pool = function(){
8349     var p = [];
8350     var markup = Roo.isIE ?
8351                  '<div class="x-ie-shadow"></div>' :
8352                  '<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>';
8353     return {
8354         pull : function(){
8355             var sh = p.shift();
8356             if(!sh){
8357                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
8358                 sh.autoBoxAdjust = false;
8359             }
8360             return sh;
8361         },
8362
8363         push : function(sh){
8364             p.push(sh);
8365         }
8366     };
8367 }();/*
8368  * Based on:
8369  * Ext JS Library 1.1.1
8370  * Copyright(c) 2006-2007, Ext JS, LLC.
8371  *
8372  * Originally Released Under LGPL - original licence link has changed is not relivant.
8373  *
8374  * Fork - LGPL
8375  * <script type="text/javascript">
8376  */
8377
8378 /**
8379  * @class Roo.BoxComponent
8380  * @extends Roo.Component
8381  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
8382  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
8383  * container classes should subclass BoxComponent so that they will work consistently when nested within other Ext
8384  * layout containers.
8385  * @constructor
8386  * @param {Roo.Element/String/Object} config The configuration options.
8387  */
8388 Roo.BoxComponent = function(config){
8389     Roo.Component.call(this, config);
8390     this.addEvents({
8391         /**
8392          * @event resize
8393          * Fires after the component is resized.
8394              * @param {Roo.Component} this
8395              * @param {Number} adjWidth The box-adjusted width that was set
8396              * @param {Number} adjHeight The box-adjusted height that was set
8397              * @param {Number} rawWidth The width that was originally specified
8398              * @param {Number} rawHeight The height that was originally specified
8399              */
8400         resize : true,
8401         /**
8402          * @event move
8403          * Fires after the component is moved.
8404              * @param {Roo.Component} this
8405              * @param {Number} x The new x position
8406              * @param {Number} y The new y position
8407              */
8408         move : true
8409     });
8410 };
8411
8412 Roo.extend(Roo.BoxComponent, Roo.Component, {
8413     // private, set in afterRender to signify that the component has been rendered
8414     boxReady : false,
8415     // private, used to defer height settings to subclasses
8416     deferHeight: false,
8417     /** @cfg {Number} width
8418      * width (optional) size of component
8419      */
8420      /** @cfg {Number} height
8421      * height (optional) size of component
8422      */
8423      
8424     /**
8425      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
8426      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
8427      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
8428      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
8429      * @return {Roo.BoxComponent} this
8430      */
8431     setSize : function(w, h){
8432         // support for standard size objects
8433         if(typeof w == 'object'){
8434             h = w.height;
8435             w = w.width;
8436         }
8437         // not rendered
8438         if(!this.boxReady){
8439             this.width = w;
8440             this.height = h;
8441             return this;
8442         }
8443
8444         // prevent recalcs when not needed
8445         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
8446             return this;
8447         }
8448         this.lastSize = {width: w, height: h};
8449
8450         var adj = this.adjustSize(w, h);
8451         var aw = adj.width, ah = adj.height;
8452         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
8453             var rz = this.getResizeEl();
8454             if(!this.deferHeight && aw !== undefined && ah !== undefined){
8455                 rz.setSize(aw, ah);
8456             }else if(!this.deferHeight && ah !== undefined){
8457                 rz.setHeight(ah);
8458             }else if(aw !== undefined){
8459                 rz.setWidth(aw);
8460             }
8461             this.onResize(aw, ah, w, h);
8462             this.fireEvent('resize', this, aw, ah, w, h);
8463         }
8464         return this;
8465     },
8466
8467     /**
8468      * Gets the current size of the component's underlying element.
8469      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
8470      */
8471     getSize : function(){
8472         return this.el.getSize();
8473     },
8474
8475     /**
8476      * Gets the current XY position of the component's underlying element.
8477      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
8478      * @return {Array} The XY position of the element (e.g., [100, 200])
8479      */
8480     getPosition : function(local){
8481         if(local === true){
8482             return [this.el.getLeft(true), this.el.getTop(true)];
8483         }
8484         return this.xy || this.el.getXY();
8485     },
8486
8487     /**
8488      * Gets the current box measurements of the component's underlying element.
8489      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
8490      * @returns {Object} box An object in the format {x, y, width, height}
8491      */
8492     getBox : function(local){
8493         var s = this.el.getSize();
8494         if(local){
8495             s.x = this.el.getLeft(true);
8496             s.y = this.el.getTop(true);
8497         }else{
8498             var xy = this.xy || this.el.getXY();
8499             s.x = xy[0];
8500             s.y = xy[1];
8501         }
8502         return s;
8503     },
8504
8505     /**
8506      * Sets the current box measurements of the component's underlying element.
8507      * @param {Object} box An object in the format {x, y, width, height}
8508      * @returns {Roo.BoxComponent} this
8509      */
8510     updateBox : function(box){
8511         this.setSize(box.width, box.height);
8512         this.setPagePosition(box.x, box.y);
8513         return this;
8514     },
8515
8516     // protected
8517     getResizeEl : function(){
8518         return this.resizeEl || this.el;
8519     },
8520
8521     // protected
8522     getPositionEl : function(){
8523         return this.positionEl || this.el;
8524     },
8525
8526     /**
8527      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
8528      * This method fires the move event.
8529      * @param {Number} left The new left
8530      * @param {Number} top The new top
8531      * @returns {Roo.BoxComponent} this
8532      */
8533     setPosition : function(x, y){
8534         this.x = x;
8535         this.y = y;
8536         if(!this.boxReady){
8537             return this;
8538         }
8539         var adj = this.adjustPosition(x, y);
8540         var ax = adj.x, ay = adj.y;
8541
8542         var el = this.getPositionEl();
8543         if(ax !== undefined || ay !== undefined){
8544             if(ax !== undefined && ay !== undefined){
8545                 el.setLeftTop(ax, ay);
8546             }else if(ax !== undefined){
8547                 el.setLeft(ax);
8548             }else if(ay !== undefined){
8549                 el.setTop(ay);
8550             }
8551             this.onPosition(ax, ay);
8552             this.fireEvent('move', this, ax, ay);
8553         }
8554         return this;
8555     },
8556
8557     /**
8558      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
8559      * This method fires the move event.
8560      * @param {Number} x The new x position
8561      * @param {Number} y The new y position
8562      * @returns {Roo.BoxComponent} this
8563      */
8564     setPagePosition : function(x, y){
8565         this.pageX = x;
8566         this.pageY = y;
8567         if(!this.boxReady){
8568             return;
8569         }
8570         if(x === undefined || y === undefined){ // cannot translate undefined points
8571             return;
8572         }
8573         var p = this.el.translatePoints(x, y);
8574         this.setPosition(p.left, p.top);
8575         return this;
8576     },
8577
8578     // private
8579     onRender : function(ct, position){
8580         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
8581         if(this.resizeEl){
8582             this.resizeEl = Roo.get(this.resizeEl);
8583         }
8584         if(this.positionEl){
8585             this.positionEl = Roo.get(this.positionEl);
8586         }
8587     },
8588
8589     // private
8590     afterRender : function(){
8591         Roo.BoxComponent.superclass.afterRender.call(this);
8592         this.boxReady = true;
8593         this.setSize(this.width, this.height);
8594         if(this.x || this.y){
8595             this.setPosition(this.x, this.y);
8596         }
8597         if(this.pageX || this.pageY){
8598             this.setPagePosition(this.pageX, this.pageY);
8599         }
8600     },
8601
8602     /**
8603      * Force the component's size to recalculate based on the underlying element's current height and width.
8604      * @returns {Roo.BoxComponent} this
8605      */
8606     syncSize : function(){
8607         delete this.lastSize;
8608         this.setSize(this.el.getWidth(), this.el.getHeight());
8609         return this;
8610     },
8611
8612     /**
8613      * Called after the component is resized, this method is empty by default but can be implemented by any
8614      * subclass that needs to perform custom logic after a resize occurs.
8615      * @param {Number} adjWidth The box-adjusted width that was set
8616      * @param {Number} adjHeight The box-adjusted height that was set
8617      * @param {Number} rawWidth The width that was originally specified
8618      * @param {Number} rawHeight The height that was originally specified
8619      */
8620     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
8621
8622     },
8623
8624     /**
8625      * Called after the component is moved, this method is empty by default but can be implemented by any
8626      * subclass that needs to perform custom logic after a move occurs.
8627      * @param {Number} x The new x position
8628      * @param {Number} y The new y position
8629      */
8630     onPosition : function(x, y){
8631
8632     },
8633
8634     // private
8635     adjustSize : function(w, h){
8636         if(this.autoWidth){
8637             w = 'auto';
8638         }
8639         if(this.autoHeight){
8640             h = 'auto';
8641         }
8642         return {width : w, height: h};
8643     },
8644
8645     // private
8646     adjustPosition : function(x, y){
8647         return {x : x, y: y};
8648     }
8649 });/*
8650  * Based on:
8651  * Ext JS Library 1.1.1
8652  * Copyright(c) 2006-2007, Ext JS, LLC.
8653  *
8654  * Originally Released Under LGPL - original licence link has changed is not relivant.
8655  *
8656  * Fork - LGPL
8657  * <script type="text/javascript">
8658  */
8659
8660
8661 /**
8662  * @class Roo.SplitBar
8663  * @extends Roo.util.Observable
8664  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
8665  * <br><br>
8666  * Usage:
8667  * <pre><code>
8668 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
8669                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
8670 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
8671 split.minSize = 100;
8672 split.maxSize = 600;
8673 split.animate = true;
8674 split.on('moved', splitterMoved);
8675 </code></pre>
8676  * @constructor
8677  * Create a new SplitBar
8678  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
8679  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
8680  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
8681  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
8682                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
8683                         position of the SplitBar).
8684  */
8685 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
8686     
8687     /** @private */
8688     this.el = Roo.get(dragElement, true);
8689     this.el.dom.unselectable = "on";
8690     /** @private */
8691     this.resizingEl = Roo.get(resizingElement, true);
8692
8693     /**
8694      * @private
8695      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
8696      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
8697      * @type Number
8698      */
8699     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
8700     
8701     /**
8702      * The minimum size of the resizing element. (Defaults to 0)
8703      * @type Number
8704      */
8705     this.minSize = 0;
8706     
8707     /**
8708      * The maximum size of the resizing element. (Defaults to 2000)
8709      * @type Number
8710      */
8711     this.maxSize = 2000;
8712     
8713     /**
8714      * Whether to animate the transition to the new size
8715      * @type Boolean
8716      */
8717     this.animate = false;
8718     
8719     /**
8720      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
8721      * @type Boolean
8722      */
8723     this.useShim = false;
8724     
8725     /** @private */
8726     this.shim = null;
8727     
8728     if(!existingProxy){
8729         /** @private */
8730         this.proxy = Roo.SplitBar.createProxy(this.orientation);
8731     }else{
8732         this.proxy = Roo.get(existingProxy).dom;
8733     }
8734     /** @private */
8735     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
8736     
8737     /** @private */
8738     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
8739     
8740     /** @private */
8741     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
8742     
8743     /** @private */
8744     this.dragSpecs = {};
8745     
8746     /**
8747      * @private The adapter to use to positon and resize elements
8748      */
8749     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
8750     this.adapter.init(this);
8751     
8752     if(this.orientation == Roo.SplitBar.HORIZONTAL){
8753         /** @private */
8754         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
8755         this.el.addClass("x-splitbar-h");
8756     }else{
8757         /** @private */
8758         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
8759         this.el.addClass("x-splitbar-v");
8760     }
8761     
8762     this.addEvents({
8763         /**
8764          * @event resize
8765          * Fires when the splitter is moved (alias for {@link #event-moved})
8766          * @param {Roo.SplitBar} this
8767          * @param {Number} newSize the new width or height
8768          */
8769         "resize" : true,
8770         /**
8771          * @event moved
8772          * Fires when the splitter is moved
8773          * @param {Roo.SplitBar} this
8774          * @param {Number} newSize the new width or height
8775          */
8776         "moved" : true,
8777         /**
8778          * @event beforeresize
8779          * Fires before the splitter is dragged
8780          * @param {Roo.SplitBar} this
8781          */
8782         "beforeresize" : true,
8783
8784         "beforeapply" : true
8785     });
8786
8787     Roo.util.Observable.call(this);
8788 };
8789
8790 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
8791     onStartProxyDrag : function(x, y){
8792         this.fireEvent("beforeresize", this);
8793         if(!this.overlay){
8794             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
8795             o.unselectable();
8796             o.enableDisplayMode("block");
8797             // all splitbars share the same overlay
8798             Roo.SplitBar.prototype.overlay = o;
8799         }
8800         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8801         this.overlay.show();
8802         Roo.get(this.proxy).setDisplayed("block");
8803         var size = this.adapter.getElementSize(this);
8804         this.activeMinSize = this.getMinimumSize();;
8805         this.activeMaxSize = this.getMaximumSize();;
8806         var c1 = size - this.activeMinSize;
8807         var c2 = Math.max(this.activeMaxSize - size, 0);
8808         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8809             this.dd.resetConstraints();
8810             this.dd.setXConstraint(
8811                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
8812                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
8813             );
8814             this.dd.setYConstraint(0, 0);
8815         }else{
8816             this.dd.resetConstraints();
8817             this.dd.setXConstraint(0, 0);
8818             this.dd.setYConstraint(
8819                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
8820                 this.placement == Roo.SplitBar.TOP ? c2 : c1
8821             );
8822          }
8823         this.dragSpecs.startSize = size;
8824         this.dragSpecs.startPoint = [x, y];
8825         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
8826     },
8827     
8828     /** 
8829      * @private Called after the drag operation by the DDProxy
8830      */
8831     onEndProxyDrag : function(e){
8832         Roo.get(this.proxy).setDisplayed(false);
8833         var endPoint = Roo.lib.Event.getXY(e);
8834         if(this.overlay){
8835             this.overlay.hide();
8836         }
8837         var newSize;
8838         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8839             newSize = this.dragSpecs.startSize + 
8840                 (this.placement == Roo.SplitBar.LEFT ?
8841                     endPoint[0] - this.dragSpecs.startPoint[0] :
8842                     this.dragSpecs.startPoint[0] - endPoint[0]
8843                 );
8844         }else{
8845             newSize = this.dragSpecs.startSize + 
8846                 (this.placement == Roo.SplitBar.TOP ?
8847                     endPoint[1] - this.dragSpecs.startPoint[1] :
8848                     this.dragSpecs.startPoint[1] - endPoint[1]
8849                 );
8850         }
8851         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
8852         if(newSize != this.dragSpecs.startSize){
8853             if(this.fireEvent('beforeapply', this, newSize) !== false){
8854                 this.adapter.setElementSize(this, newSize);
8855                 this.fireEvent("moved", this, newSize);
8856                 this.fireEvent("resize", this, newSize);
8857             }
8858         }
8859     },
8860     
8861     /**
8862      * Get the adapter this SplitBar uses
8863      * @return The adapter object
8864      */
8865     getAdapter : function(){
8866         return this.adapter;
8867     },
8868     
8869     /**
8870      * Set the adapter this SplitBar uses
8871      * @param {Object} adapter A SplitBar adapter object
8872      */
8873     setAdapter : function(adapter){
8874         this.adapter = adapter;
8875         this.adapter.init(this);
8876     },
8877     
8878     /**
8879      * Gets the minimum size for the resizing element
8880      * @return {Number} The minimum size
8881      */
8882     getMinimumSize : function(){
8883         return this.minSize;
8884     },
8885     
8886     /**
8887      * Sets the minimum size for the resizing element
8888      * @param {Number} minSize The minimum size
8889      */
8890     setMinimumSize : function(minSize){
8891         this.minSize = minSize;
8892     },
8893     
8894     /**
8895      * Gets the maximum size for the resizing element
8896      * @return {Number} The maximum size
8897      */
8898     getMaximumSize : function(){
8899         return this.maxSize;
8900     },
8901     
8902     /**
8903      * Sets the maximum size for the resizing element
8904      * @param {Number} maxSize The maximum size
8905      */
8906     setMaximumSize : function(maxSize){
8907         this.maxSize = maxSize;
8908     },
8909     
8910     /**
8911      * Sets the initialize size for the resizing element
8912      * @param {Number} size The initial size
8913      */
8914     setCurrentSize : function(size){
8915         var oldAnimate = this.animate;
8916         this.animate = false;
8917         this.adapter.setElementSize(this, size);
8918         this.animate = oldAnimate;
8919     },
8920     
8921     /**
8922      * Destroy this splitbar. 
8923      * @param {Boolean} removeEl True to remove the element
8924      */
8925     destroy : function(removeEl){
8926         if(this.shim){
8927             this.shim.remove();
8928         }
8929         this.dd.unreg();
8930         this.proxy.parentNode.removeChild(this.proxy);
8931         if(removeEl){
8932             this.el.remove();
8933         }
8934     }
8935 });
8936
8937 /**
8938  * @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.
8939  */
8940 Roo.SplitBar.createProxy = function(dir){
8941     var proxy = new Roo.Element(document.createElement("div"));
8942     proxy.unselectable();
8943     var cls = 'x-splitbar-proxy';
8944     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
8945     document.body.appendChild(proxy.dom);
8946     return proxy.dom;
8947 };
8948
8949 /** 
8950  * @class Roo.SplitBar.BasicLayoutAdapter
8951  * Default Adapter. It assumes the splitter and resizing element are not positioned
8952  * elements and only gets/sets the width of the element. Generally used for table based layouts.
8953  */
8954 Roo.SplitBar.BasicLayoutAdapter = function(){
8955 };
8956
8957 Roo.SplitBar.BasicLayoutAdapter.prototype = {
8958     // do nothing for now
8959     init : function(s){
8960     
8961     },
8962     /**
8963      * Called before drag operations to get the current size of the resizing element. 
8964      * @param {Roo.SplitBar} s The SplitBar using this adapter
8965      */
8966      getElementSize : function(s){
8967         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8968             return s.resizingEl.getWidth();
8969         }else{
8970             return s.resizingEl.getHeight();
8971         }
8972     },
8973     
8974     /**
8975      * Called after drag operations to set the size of the resizing element.
8976      * @param {Roo.SplitBar} s The SplitBar using this adapter
8977      * @param {Number} newSize The new size to set
8978      * @param {Function} onComplete A function to be invoked when resizing is complete
8979      */
8980     setElementSize : function(s, newSize, onComplete){
8981         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8982             if(!s.animate){
8983                 s.resizingEl.setWidth(newSize);
8984                 if(onComplete){
8985                     onComplete(s, newSize);
8986                 }
8987             }else{
8988                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
8989             }
8990         }else{
8991             
8992             if(!s.animate){
8993                 s.resizingEl.setHeight(newSize);
8994                 if(onComplete){
8995                     onComplete(s, newSize);
8996                 }
8997             }else{
8998                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
8999             }
9000         }
9001     }
9002 };
9003
9004 /** 
9005  *@class Roo.SplitBar.AbsoluteLayoutAdapter
9006  * @extends Roo.SplitBar.BasicLayoutAdapter
9007  * Adapter that  moves the splitter element to align with the resized sizing element. 
9008  * Used with an absolute positioned SplitBar.
9009  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
9010  * document.body, make sure you assign an id to the body element.
9011  */
9012 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
9013     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
9014     this.container = Roo.get(container);
9015 };
9016
9017 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
9018     init : function(s){
9019         this.basic.init(s);
9020     },
9021     
9022     getElementSize : function(s){
9023         return this.basic.getElementSize(s);
9024     },
9025     
9026     setElementSize : function(s, newSize, onComplete){
9027         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
9028     },
9029     
9030     moveSplitter : function(s){
9031         var yes = Roo.SplitBar;
9032         switch(s.placement){
9033             case yes.LEFT:
9034                 s.el.setX(s.resizingEl.getRight());
9035                 break;
9036             case yes.RIGHT:
9037                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
9038                 break;
9039             case yes.TOP:
9040                 s.el.setY(s.resizingEl.getBottom());
9041                 break;
9042             case yes.BOTTOM:
9043                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
9044                 break;
9045         }
9046     }
9047 };
9048
9049 /**
9050  * Orientation constant - Create a vertical SplitBar
9051  * @static
9052  * @type Number
9053  */
9054 Roo.SplitBar.VERTICAL = 1;
9055
9056 /**
9057  * Orientation constant - Create a horizontal SplitBar
9058  * @static
9059  * @type Number
9060  */
9061 Roo.SplitBar.HORIZONTAL = 2;
9062
9063 /**
9064  * Placement constant - The resizing element is to the left of the splitter element
9065  * @static
9066  * @type Number
9067  */
9068 Roo.SplitBar.LEFT = 1;
9069
9070 /**
9071  * Placement constant - The resizing element is to the right of the splitter element
9072  * @static
9073  * @type Number
9074  */
9075 Roo.SplitBar.RIGHT = 2;
9076
9077 /**
9078  * Placement constant - The resizing element is positioned above the splitter element
9079  * @static
9080  * @type Number
9081  */
9082 Roo.SplitBar.TOP = 3;
9083
9084 /**
9085  * Placement constant - The resizing element is positioned under splitter element
9086  * @static
9087  * @type Number
9088  */
9089 Roo.SplitBar.BOTTOM = 4;
9090 /*
9091  * Based on:
9092  * Ext JS Library 1.1.1
9093  * Copyright(c) 2006-2007, Ext JS, LLC.
9094  *
9095  * Originally Released Under LGPL - original licence link has changed is not relivant.
9096  *
9097  * Fork - LGPL
9098  * <script type="text/javascript">
9099  */
9100
9101 /**
9102  * @class Roo.View
9103  * @extends Roo.util.Observable
9104  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
9105  * This class also supports single and multi selection modes. <br>
9106  * Create a data model bound view:
9107  <pre><code>
9108  var store = new Roo.data.Store(...);
9109
9110  var view = new Roo.View({
9111     el : "my-element",
9112     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
9113  
9114     singleSelect: true,
9115     selectedClass: "ydataview-selected",
9116     store: store
9117  });
9118
9119  // listen for node click?
9120  view.on("click", function(vw, index, node, e){
9121  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
9122  });
9123
9124  // load XML data
9125  dataModel.load("foobar.xml");
9126  </code></pre>
9127  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
9128  * <br><br>
9129  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
9130  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
9131  * 
9132  * Note: old style constructor is still suported (container, template, config)
9133  * 
9134  * @constructor
9135  * Create a new View
9136  * @param {Object} config The config object
9137  * 
9138  */
9139 Roo.View = function(config, depreciated_tpl, depreciated_config){
9140     
9141     if (typeof(depreciated_tpl) == 'undefined') {
9142         // new way.. - universal constructor.
9143         Roo.apply(this, config);
9144         this.el  = Roo.get(this.el);
9145     } else {
9146         // old format..
9147         this.el  = Roo.get(config);
9148         this.tpl = depreciated_tpl;
9149         Roo.apply(this, depreciated_config);
9150     }
9151      
9152     
9153     if(typeof(this.tpl) == "string"){
9154         this.tpl = new Roo.Template(this.tpl);
9155     } else {
9156         // support xtype ctors..
9157         this.tpl = new Roo.factory(this.tpl, Roo);
9158     }
9159     
9160     
9161     this.tpl.compile();
9162    
9163
9164      
9165     /** @private */
9166     this.addEvents({
9167         /**
9168          * @event beforeclick
9169          * Fires before a click is processed. Returns false to cancel the default action.
9170          * @param {Roo.View} this
9171          * @param {Number} index The index of the target node
9172          * @param {HTMLElement} node The target node
9173          * @param {Roo.EventObject} e The raw event object
9174          */
9175             "beforeclick" : true,
9176         /**
9177          * @event click
9178          * Fires when a template node is clicked.
9179          * @param {Roo.View} this
9180          * @param {Number} index The index of the target node
9181          * @param {HTMLElement} node The target node
9182          * @param {Roo.EventObject} e The raw event object
9183          */
9184             "click" : true,
9185         /**
9186          * @event dblclick
9187          * Fires when a template node is double clicked.
9188          * @param {Roo.View} this
9189          * @param {Number} index The index of the target node
9190          * @param {HTMLElement} node The target node
9191          * @param {Roo.EventObject} e The raw event object
9192          */
9193             "dblclick" : true,
9194         /**
9195          * @event contextmenu
9196          * Fires when a template node is right clicked.
9197          * @param {Roo.View} this
9198          * @param {Number} index The index of the target node
9199          * @param {HTMLElement} node The target node
9200          * @param {Roo.EventObject} e The raw event object
9201          */
9202             "contextmenu" : true,
9203         /**
9204          * @event selectionchange
9205          * Fires when the selected nodes change.
9206          * @param {Roo.View} this
9207          * @param {Array} selections Array of the selected nodes
9208          */
9209             "selectionchange" : true,
9210     
9211         /**
9212          * @event beforeselect
9213          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
9214          * @param {Roo.View} this
9215          * @param {HTMLElement} node The node to be selected
9216          * @param {Array} selections Array of currently selected nodes
9217          */
9218             "beforeselect" : true,
9219         /**
9220          * @event preparedata
9221          * Fires on every row to render, to allow you to change the data.
9222          * @param {Roo.View} this
9223          * @param {Object} data to be rendered (change this)
9224          */
9225           "preparedata" : true
9226         });
9227
9228     this.el.on({
9229         "click": this.onClick,
9230         "dblclick": this.onDblClick,
9231         "contextmenu": this.onContextMenu,
9232         scope:this
9233     });
9234
9235     this.selections = [];
9236     this.nodes = [];
9237     this.cmp = new Roo.CompositeElementLite([]);
9238     if(this.store){
9239         this.store = Roo.factory(this.store, Roo.data);
9240         this.setStore(this.store, true);
9241     }
9242     Roo.View.superclass.constructor.call(this);
9243 };
9244
9245 Roo.extend(Roo.View, Roo.util.Observable, {
9246     
9247      /**
9248      * @cfg {Roo.data.Store} store Data store to load data from.
9249      */
9250     store : false,
9251     
9252     /**
9253      * @cfg {String|Roo.Element} el The container element.
9254      */
9255     el : '',
9256     
9257     /**
9258      * @cfg {String|Roo.Template} tpl The template used by this View 
9259      */
9260     tpl : false,
9261     /**
9262      * @cfg {String} dataName the named area of the template to use as the data area
9263      *                          Works with domtemplates roo-name="name"
9264      */
9265     dataName: false,
9266     /**
9267      * @cfg {String} selectedClass The css class to add to selected nodes
9268      */
9269     selectedClass : "x-view-selected",
9270      /**
9271      * @cfg {String} emptyText The empty text to show when nothing is loaded.
9272      */
9273     emptyText : "",
9274     /**
9275      * @cfg {Boolean} multiSelect Allow multiple selection
9276      */
9277     multiSelect : false,
9278     /**
9279      * @cfg {Boolean} singleSelect Allow single selection
9280      */
9281     singleSelect:  false,
9282     
9283     /**
9284      * @cfg {Boolean} toggleSelect - selecting 
9285      */
9286     toggleSelect : false,
9287     
9288     /**
9289      * Returns the element this view is bound to.
9290      * @return {Roo.Element}
9291      */
9292     getEl : function(){
9293         return this.el;
9294     },
9295
9296     /**
9297      * Refreshes the view.
9298      */
9299     refresh : function(){
9300         var t = this.tpl;
9301         
9302         // if we are using something like 'domtemplate', then
9303         // the what gets used is:
9304         // t.applySubtemplate(NAME, data, wrapping data..)
9305         // the outer template then get' applied with
9306         //     the store 'extra data'
9307         // and the body get's added to the
9308         //      roo-name="data" node?
9309         //      <span class='roo-tpl-{name}'></span> ?????
9310         
9311         
9312         
9313         this.clearSelections();
9314         this.el.update("");
9315         var html = [];
9316         var records = this.store.getRange();
9317         if(records.length < 1) {
9318             
9319             // is this valid??  = should it render a template??
9320             
9321             this.el.update(this.emptyText);
9322             return;
9323         }
9324         var el = this.el;
9325         if (this.dataName) {
9326             this.el.update(t.apply(this.store.meta)); //????
9327             el = this.el.child('.roo-tpl-' + this.dataName);
9328         }
9329         
9330         for(var i = 0, len = records.length; i < len; i++){
9331             var data = this.prepareData(records[i].data, i, records[i]);
9332             this.fireEvent("preparedata", this, data, i, records[i]);
9333             html[html.length] = Roo.util.Format.trim(
9334                 this.dataName ?
9335                     t.applySubtemplate(this.dataName, data, this.store.meta) :
9336                     t.apply(data)
9337             );
9338         }
9339         
9340         
9341         
9342         el.update(html.join(""));
9343         this.nodes = el.dom.childNodes;
9344         this.updateIndexes(0);
9345     },
9346
9347     /**
9348      * Function to override to reformat the data that is sent to
9349      * the template for each node.
9350      * DEPRICATED - use the preparedata event handler.
9351      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
9352      * a JSON object for an UpdateManager bound view).
9353      */
9354     prepareData : function(data, index, record)
9355     {
9356         this.fireEvent("preparedata", this, data, index, record);
9357         return data;
9358     },
9359
9360     onUpdate : function(ds, record){
9361         this.clearSelections();
9362         var index = this.store.indexOf(record);
9363         var n = this.nodes[index];
9364         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
9365         n.parentNode.removeChild(n);
9366         this.updateIndexes(index, index);
9367     },
9368
9369     
9370     
9371 // --------- FIXME     
9372     onAdd : function(ds, records, index)
9373     {
9374         this.clearSelections();
9375         if(this.nodes.length == 0){
9376             this.refresh();
9377             return;
9378         }
9379         var n = this.nodes[index];
9380         for(var i = 0, len = records.length; i < len; i++){
9381             var d = this.prepareData(records[i].data, i, records[i]);
9382             if(n){
9383                 this.tpl.insertBefore(n, d);
9384             }else{
9385                 
9386                 this.tpl.append(this.el, d);
9387             }
9388         }
9389         this.updateIndexes(index);
9390     },
9391
9392     onRemove : function(ds, record, index){
9393         this.clearSelections();
9394         var el = this.dataName  ?
9395             this.el.child('.roo-tpl-' + this.dataName) :
9396             this.el; 
9397         el.dom.removeChild(this.nodes[index]);
9398         this.updateIndexes(index);
9399     },
9400
9401     /**
9402      * Refresh an individual node.
9403      * @param {Number} index
9404      */
9405     refreshNode : function(index){
9406         this.onUpdate(this.store, this.store.getAt(index));
9407     },
9408
9409     updateIndexes : function(startIndex, endIndex){
9410         var ns = this.nodes;
9411         startIndex = startIndex || 0;
9412         endIndex = endIndex || ns.length - 1;
9413         for(var i = startIndex; i <= endIndex; i++){
9414             ns[i].nodeIndex = i;
9415         }
9416     },
9417
9418     /**
9419      * Changes the data store this view uses and refresh the view.
9420      * @param {Store} store
9421      */
9422     setStore : function(store, initial){
9423         if(!initial && this.store){
9424             this.store.un("datachanged", this.refresh);
9425             this.store.un("add", this.onAdd);
9426             this.store.un("remove", this.onRemove);
9427             this.store.un("update", this.onUpdate);
9428             this.store.un("clear", this.refresh);
9429         }
9430         if(store){
9431           
9432             store.on("datachanged", this.refresh, this);
9433             store.on("add", this.onAdd, this);
9434             store.on("remove", this.onRemove, this);
9435             store.on("update", this.onUpdate, this);
9436             store.on("clear", this.refresh, this);
9437         }
9438         
9439         if(store){
9440             this.refresh();
9441         }
9442     },
9443
9444     /**
9445      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
9446      * @param {HTMLElement} node
9447      * @return {HTMLElement} The template node
9448      */
9449     findItemFromChild : function(node){
9450         var el = this.dataName  ?
9451             this.el.child('.roo-tpl-' + this.dataName,true) :
9452             this.el.dom; 
9453         
9454         if(!node || node.parentNode == el){
9455                     return node;
9456             }
9457             var p = node.parentNode;
9458             while(p && p != el){
9459             if(p.parentNode == el){
9460                 return p;
9461             }
9462             p = p.parentNode;
9463         }
9464             return null;
9465     },
9466
9467     /** @ignore */
9468     onClick : function(e){
9469         var item = this.findItemFromChild(e.getTarget());
9470         if(item){
9471             var index = this.indexOf(item);
9472             if(this.onItemClick(item, index, e) !== false){
9473                 this.fireEvent("click", this, index, item, e);
9474             }
9475         }else{
9476             this.clearSelections();
9477         }
9478     },
9479
9480     /** @ignore */
9481     onContextMenu : function(e){
9482         var item = this.findItemFromChild(e.getTarget());
9483         if(item){
9484             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
9485         }
9486     },
9487
9488     /** @ignore */
9489     onDblClick : function(e){
9490         var item = this.findItemFromChild(e.getTarget());
9491         if(item){
9492             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
9493         }
9494     },
9495
9496     onItemClick : function(item, index, e)
9497     {
9498         if(this.fireEvent("beforeclick", this, index, item, e) === false){
9499             return false;
9500         }
9501         if (this.toggleSelect) {
9502             var m = this.isSelected(item) ? 'unselect' : 'select';
9503             Roo.log(m);
9504             var _t = this;
9505             _t[m](item, true, false);
9506             return true;
9507         }
9508         if(this.multiSelect || this.singleSelect){
9509             if(this.multiSelect && e.shiftKey && this.lastSelection){
9510                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
9511             }else{
9512                 this.select(item, this.multiSelect && e.ctrlKey);
9513                 this.lastSelection = item;
9514             }
9515             e.preventDefault();
9516         }
9517         return true;
9518     },
9519
9520     /**
9521      * Get the number of selected nodes.
9522      * @return {Number}
9523      */
9524     getSelectionCount : function(){
9525         return this.selections.length;
9526     },
9527
9528     /**
9529      * Get the currently selected nodes.
9530      * @return {Array} An array of HTMLElements
9531      */
9532     getSelectedNodes : function(){
9533         return this.selections;
9534     },
9535
9536     /**
9537      * Get the indexes of the selected nodes.
9538      * @return {Array}
9539      */
9540     getSelectedIndexes : function(){
9541         var indexes = [], s = this.selections;
9542         for(var i = 0, len = s.length; i < len; i++){
9543             indexes.push(s[i].nodeIndex);
9544         }
9545         return indexes;
9546     },
9547
9548     /**
9549      * Clear all selections
9550      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
9551      */
9552     clearSelections : function(suppressEvent){
9553         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
9554             this.cmp.elements = this.selections;
9555             this.cmp.removeClass(this.selectedClass);
9556             this.selections = [];
9557             if(!suppressEvent){
9558                 this.fireEvent("selectionchange", this, this.selections);
9559             }
9560         }
9561     },
9562
9563     /**
9564      * Returns true if the passed node is selected
9565      * @param {HTMLElement/Number} node The node or node index
9566      * @return {Boolean}
9567      */
9568     isSelected : function(node){
9569         var s = this.selections;
9570         if(s.length < 1){
9571             return false;
9572         }
9573         node = this.getNode(node);
9574         return s.indexOf(node) !== -1;
9575     },
9576
9577     /**
9578      * Selects nodes.
9579      * @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
9580      * @param {Boolean} keepExisting (optional) true to keep existing selections
9581      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
9582      */
9583     select : function(nodeInfo, keepExisting, suppressEvent){
9584         if(nodeInfo instanceof Array){
9585             if(!keepExisting){
9586                 this.clearSelections(true);
9587             }
9588             for(var i = 0, len = nodeInfo.length; i < len; i++){
9589                 this.select(nodeInfo[i], true, true);
9590             }
9591             return;
9592         } 
9593         var node = this.getNode(nodeInfo);
9594         if(!node || this.isSelected(node)){
9595             return; // already selected.
9596         }
9597         if(!keepExisting){
9598             this.clearSelections(true);
9599         }
9600         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
9601             Roo.fly(node).addClass(this.selectedClass);
9602             this.selections.push(node);
9603             if(!suppressEvent){
9604                 this.fireEvent("selectionchange", this, this.selections);
9605             }
9606         }
9607         
9608         
9609     },
9610       /**
9611      * Unselects nodes.
9612      * @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
9613      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
9614      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
9615      */
9616     unselect : function(nodeInfo, keepExisting, suppressEvent)
9617     {
9618         if(nodeInfo instanceof Array){
9619             Roo.each(this.selections, function(s) {
9620                 this.unselect(s, nodeInfo);
9621             }, this);
9622             return;
9623         }
9624         var node = this.getNode(nodeInfo);
9625         if(!node || !this.isSelected(node)){
9626             Roo.log("not selected");
9627             return; // not selected.
9628         }
9629         // fireevent???
9630         var ns = [];
9631         Roo.each(this.selections, function(s) {
9632             if (s == node ) {
9633                 Roo.fly(node).removeClass(this.selectedClass);
9634
9635                 return;
9636             }
9637             ns.push(s);
9638         },this);
9639         
9640         this.selections= ns;
9641         this.fireEvent("selectionchange", this, this.selections);
9642     },
9643
9644     /**
9645      * Gets a template node.
9646      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
9647      * @return {HTMLElement} The node or null if it wasn't found
9648      */
9649     getNode : function(nodeInfo){
9650         if(typeof nodeInfo == "string"){
9651             return document.getElementById(nodeInfo);
9652         }else if(typeof nodeInfo == "number"){
9653             return this.nodes[nodeInfo];
9654         }
9655         return nodeInfo;
9656     },
9657
9658     /**
9659      * Gets a range template nodes.
9660      * @param {Number} startIndex
9661      * @param {Number} endIndex
9662      * @return {Array} An array of nodes
9663      */
9664     getNodes : function(start, end){
9665         var ns = this.nodes;
9666         start = start || 0;
9667         end = typeof end == "undefined" ? ns.length - 1 : end;
9668         var nodes = [];
9669         if(start <= end){
9670             for(var i = start; i <= end; i++){
9671                 nodes.push(ns[i]);
9672             }
9673         } else{
9674             for(var i = start; i >= end; i--){
9675                 nodes.push(ns[i]);
9676             }
9677         }
9678         return nodes;
9679     },
9680
9681     /**
9682      * Finds the index of the passed node
9683      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
9684      * @return {Number} The index of the node or -1
9685      */
9686     indexOf : function(node){
9687         node = this.getNode(node);
9688         if(typeof node.nodeIndex == "number"){
9689             return node.nodeIndex;
9690         }
9691         var ns = this.nodes;
9692         for(var i = 0, len = ns.length; i < len; i++){
9693             if(ns[i] == node){
9694                 return i;
9695             }
9696         }
9697         return -1;
9698     }
9699 });
9700 /*
9701  * Based on:
9702  * Ext JS Library 1.1.1
9703  * Copyright(c) 2006-2007, Ext JS, LLC.
9704  *
9705  * Originally Released Under LGPL - original licence link has changed is not relivant.
9706  *
9707  * Fork - LGPL
9708  * <script type="text/javascript">
9709  */
9710
9711 /**
9712  * @class Roo.JsonView
9713  * @extends Roo.View
9714  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
9715 <pre><code>
9716 var view = new Roo.JsonView({
9717     container: "my-element",
9718     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
9719     multiSelect: true, 
9720     jsonRoot: "data" 
9721 });
9722
9723 // listen for node click?
9724 view.on("click", function(vw, index, node, e){
9725     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
9726 });
9727
9728 // direct load of JSON data
9729 view.load("foobar.php");
9730
9731 // Example from my blog list
9732 var tpl = new Roo.Template(
9733     '&lt;div class="entry"&gt;' +
9734     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
9735     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
9736     "&lt;/div&gt;&lt;hr /&gt;"
9737 );
9738
9739 var moreView = new Roo.JsonView({
9740     container :  "entry-list", 
9741     template : tpl,
9742     jsonRoot: "posts"
9743 });
9744 moreView.on("beforerender", this.sortEntries, this);
9745 moreView.load({
9746     url: "/blog/get-posts.php",
9747     params: "allposts=true",
9748     text: "Loading Blog Entries..."
9749 });
9750 </code></pre>
9751
9752 * Note: old code is supported with arguments : (container, template, config)
9753
9754
9755  * @constructor
9756  * Create a new JsonView
9757  * 
9758  * @param {Object} config The config object
9759  * 
9760  */
9761 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
9762     
9763     
9764     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
9765
9766     var um = this.el.getUpdateManager();
9767     um.setRenderer(this);
9768     um.on("update", this.onLoad, this);
9769     um.on("failure", this.onLoadException, this);
9770
9771     /**
9772      * @event beforerender
9773      * Fires before rendering of the downloaded JSON data.
9774      * @param {Roo.JsonView} this
9775      * @param {Object} data The JSON data loaded
9776      */
9777     /**
9778      * @event load
9779      * Fires when data is loaded.
9780      * @param {Roo.JsonView} this
9781      * @param {Object} data The JSON data loaded
9782      * @param {Object} response The raw Connect response object
9783      */
9784     /**
9785      * @event loadexception
9786      * Fires when loading fails.
9787      * @param {Roo.JsonView} this
9788      * @param {Object} response The raw Connect response object
9789      */
9790     this.addEvents({
9791         'beforerender' : true,
9792         'load' : true,
9793         'loadexception' : true
9794     });
9795 };
9796 Roo.extend(Roo.JsonView, Roo.View, {
9797     /**
9798      * @type {String} The root property in the loaded JSON object that contains the data
9799      */
9800     jsonRoot : "",
9801
9802     /**
9803      * Refreshes the view.
9804      */
9805     refresh : function(){
9806         this.clearSelections();
9807         this.el.update("");
9808         var html = [];
9809         var o = this.jsonData;
9810         if(o && o.length > 0){
9811             for(var i = 0, len = o.length; i < len; i++){
9812                 var data = this.prepareData(o[i], i, o);
9813                 html[html.length] = this.tpl.apply(data);
9814             }
9815         }else{
9816             html.push(this.emptyText);
9817         }
9818         this.el.update(html.join(""));
9819         this.nodes = this.el.dom.childNodes;
9820         this.updateIndexes(0);
9821     },
9822
9823     /**
9824      * 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.
9825      * @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:
9826      <pre><code>
9827      view.load({
9828          url: "your-url.php",
9829          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
9830          callback: yourFunction,
9831          scope: yourObject, //(optional scope)
9832          discardUrl: false,
9833          nocache: false,
9834          text: "Loading...",
9835          timeout: 30,
9836          scripts: false
9837      });
9838      </code></pre>
9839      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
9840      * 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.
9841      * @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}
9842      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9843      * @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.
9844      */
9845     load : function(){
9846         var um = this.el.getUpdateManager();
9847         um.update.apply(um, arguments);
9848     },
9849
9850     render : function(el, response){
9851         this.clearSelections();
9852         this.el.update("");
9853         var o;
9854         try{
9855             o = Roo.util.JSON.decode(response.responseText);
9856             if(this.jsonRoot){
9857                 
9858                 o = o[this.jsonRoot];
9859             }
9860         } catch(e){
9861         }
9862         /**
9863          * The current JSON data or null
9864          */
9865         this.jsonData = o;
9866         this.beforeRender();
9867         this.refresh();
9868     },
9869
9870 /**
9871  * Get the number of records in the current JSON dataset
9872  * @return {Number}
9873  */
9874     getCount : function(){
9875         return this.jsonData ? this.jsonData.length : 0;
9876     },
9877
9878 /**
9879  * Returns the JSON object for the specified node(s)
9880  * @param {HTMLElement/Array} node The node or an array of nodes
9881  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
9882  * you get the JSON object for the node
9883  */
9884     getNodeData : function(node){
9885         if(node instanceof Array){
9886             var data = [];
9887             for(var i = 0, len = node.length; i < len; i++){
9888                 data.push(this.getNodeData(node[i]));
9889             }
9890             return data;
9891         }
9892         return this.jsonData[this.indexOf(node)] || null;
9893     },
9894
9895     beforeRender : function(){
9896         this.snapshot = this.jsonData;
9897         if(this.sortInfo){
9898             this.sort.apply(this, this.sortInfo);
9899         }
9900         this.fireEvent("beforerender", this, this.jsonData);
9901     },
9902
9903     onLoad : function(el, o){
9904         this.fireEvent("load", this, this.jsonData, o);
9905     },
9906
9907     onLoadException : function(el, o){
9908         this.fireEvent("loadexception", this, o);
9909     },
9910
9911 /**
9912  * Filter the data by a specific property.
9913  * @param {String} property A property on your JSON objects
9914  * @param {String/RegExp} value Either string that the property values
9915  * should start with, or a RegExp to test against the property
9916  */
9917     filter : function(property, value){
9918         if(this.jsonData){
9919             var data = [];
9920             var ss = this.snapshot;
9921             if(typeof value == "string"){
9922                 var vlen = value.length;
9923                 if(vlen == 0){
9924                     this.clearFilter();
9925                     return;
9926                 }
9927                 value = value.toLowerCase();
9928                 for(var i = 0, len = ss.length; i < len; i++){
9929                     var o = ss[i];
9930                     if(o[property].substr(0, vlen).toLowerCase() == value){
9931                         data.push(o);
9932                     }
9933                 }
9934             } else if(value.exec){ // regex?
9935                 for(var i = 0, len = ss.length; i < len; i++){
9936                     var o = ss[i];
9937                     if(value.test(o[property])){
9938                         data.push(o);
9939                     }
9940                 }
9941             } else{
9942                 return;
9943             }
9944             this.jsonData = data;
9945             this.refresh();
9946         }
9947     },
9948
9949 /**
9950  * Filter by a function. The passed function will be called with each
9951  * object in the current dataset. If the function returns true the value is kept,
9952  * otherwise it is filtered.
9953  * @param {Function} fn
9954  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
9955  */
9956     filterBy : function(fn, scope){
9957         if(this.jsonData){
9958             var data = [];
9959             var ss = this.snapshot;
9960             for(var i = 0, len = ss.length; i < len; i++){
9961                 var o = ss[i];
9962                 if(fn.call(scope || this, o)){
9963                     data.push(o);
9964                 }
9965             }
9966             this.jsonData = data;
9967             this.refresh();
9968         }
9969     },
9970
9971 /**
9972  * Clears the current filter.
9973  */
9974     clearFilter : function(){
9975         if(this.snapshot && this.jsonData != this.snapshot){
9976             this.jsonData = this.snapshot;
9977             this.refresh();
9978         }
9979     },
9980
9981
9982 /**
9983  * Sorts the data for this view and refreshes it.
9984  * @param {String} property A property on your JSON objects to sort on
9985  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
9986  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
9987  */
9988     sort : function(property, dir, sortType){
9989         this.sortInfo = Array.prototype.slice.call(arguments, 0);
9990         if(this.jsonData){
9991             var p = property;
9992             var dsc = dir && dir.toLowerCase() == "desc";
9993             var f = function(o1, o2){
9994                 var v1 = sortType ? sortType(o1[p]) : o1[p];
9995                 var v2 = sortType ? sortType(o2[p]) : o2[p];
9996                 ;
9997                 if(v1 < v2){
9998                     return dsc ? +1 : -1;
9999                 } else if(v1 > v2){
10000                     return dsc ? -1 : +1;
10001                 } else{
10002                     return 0;
10003                 }
10004             };
10005             this.jsonData.sort(f);
10006             this.refresh();
10007             if(this.jsonData != this.snapshot){
10008                 this.snapshot.sort(f);
10009             }
10010         }
10011     }
10012 });/*
10013  * Based on:
10014  * Ext JS Library 1.1.1
10015  * Copyright(c) 2006-2007, Ext JS, LLC.
10016  *
10017  * Originally Released Under LGPL - original licence link has changed is not relivant.
10018  *
10019  * Fork - LGPL
10020  * <script type="text/javascript">
10021  */
10022  
10023
10024 /**
10025  * @class Roo.ColorPalette
10026  * @extends Roo.Component
10027  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
10028  * Here's an example of typical usage:
10029  * <pre><code>
10030 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
10031 cp.render('my-div');
10032
10033 cp.on('select', function(palette, selColor){
10034     // do something with selColor
10035 });
10036 </code></pre>
10037  * @constructor
10038  * Create a new ColorPalette
10039  * @param {Object} config The config object
10040  */
10041 Roo.ColorPalette = function(config){
10042     Roo.ColorPalette.superclass.constructor.call(this, config);
10043     this.addEvents({
10044         /**
10045              * @event select
10046              * Fires when a color is selected
10047              * @param {ColorPalette} this
10048              * @param {String} color The 6-digit color hex code (without the # symbol)
10049              */
10050         select: true
10051     });
10052
10053     if(this.handler){
10054         this.on("select", this.handler, this.scope, true);
10055     }
10056 };
10057 Roo.extend(Roo.ColorPalette, Roo.Component, {
10058     /**
10059      * @cfg {String} itemCls
10060      * The CSS class to apply to the containing element (defaults to "x-color-palette")
10061      */
10062     itemCls : "x-color-palette",
10063     /**
10064      * @cfg {String} value
10065      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
10066      * the hex codes are case-sensitive.
10067      */
10068     value : null,
10069     clickEvent:'click',
10070     // private
10071     ctype: "Roo.ColorPalette",
10072
10073     /**
10074      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
10075      */
10076     allowReselect : false,
10077
10078     /**
10079      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
10080      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
10081      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
10082      * of colors with the width setting until the box is symmetrical.</p>
10083      * <p>You can override individual colors if needed:</p>
10084      * <pre><code>
10085 var cp = new Roo.ColorPalette();
10086 cp.colors[0] = "FF0000";  // change the first box to red
10087 </code></pre>
10088
10089 Or you can provide a custom array of your own for complete control:
10090 <pre><code>
10091 var cp = new Roo.ColorPalette();
10092 cp.colors = ["000000", "993300", "333300"];
10093 </code></pre>
10094      * @type Array
10095      */
10096     colors : [
10097         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
10098         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
10099         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
10100         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
10101         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
10102     ],
10103
10104     // private
10105     onRender : function(container, position){
10106         var t = new Roo.MasterTemplate(
10107             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
10108         );
10109         var c = this.colors;
10110         for(var i = 0, len = c.length; i < len; i++){
10111             t.add([c[i]]);
10112         }
10113         var el = document.createElement("div");
10114         el.className = this.itemCls;
10115         t.overwrite(el);
10116         container.dom.insertBefore(el, position);
10117         this.el = Roo.get(el);
10118         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
10119         if(this.clickEvent != 'click'){
10120             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
10121         }
10122     },
10123
10124     // private
10125     afterRender : function(){
10126         Roo.ColorPalette.superclass.afterRender.call(this);
10127         if(this.value){
10128             var s = this.value;
10129             this.value = null;
10130             this.select(s);
10131         }
10132     },
10133
10134     // private
10135     handleClick : function(e, t){
10136         e.preventDefault();
10137         if(!this.disabled){
10138             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
10139             this.select(c.toUpperCase());
10140         }
10141     },
10142
10143     /**
10144      * Selects the specified color in the palette (fires the select event)
10145      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
10146      */
10147     select : function(color){
10148         color = color.replace("#", "");
10149         if(color != this.value || this.allowReselect){
10150             var el = this.el;
10151             if(this.value){
10152                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
10153             }
10154             el.child("a.color-"+color).addClass("x-color-palette-sel");
10155             this.value = color;
10156             this.fireEvent("select", this, color);
10157         }
10158     }
10159 });/*
10160  * Based on:
10161  * Ext JS Library 1.1.1
10162  * Copyright(c) 2006-2007, Ext JS, LLC.
10163  *
10164  * Originally Released Under LGPL - original licence link has changed is not relivant.
10165  *
10166  * Fork - LGPL
10167  * <script type="text/javascript">
10168  */
10169  
10170 /**
10171  * @class Roo.DatePicker
10172  * @extends Roo.Component
10173  * Simple date picker class.
10174  * @constructor
10175  * Create a new DatePicker
10176  * @param {Object} config The config object
10177  */
10178 Roo.DatePicker = function(config){
10179     Roo.DatePicker.superclass.constructor.call(this, config);
10180
10181     this.value = config && config.value ?
10182                  config.value.clearTime() : new Date().clearTime();
10183
10184     this.addEvents({
10185         /**
10186              * @event select
10187              * Fires when a date is selected
10188              * @param {DatePicker} this
10189              * @param {Date} date The selected date
10190              */
10191         'select': true,
10192         /**
10193              * @event monthchange
10194              * Fires when the displayed month changes 
10195              * @param {DatePicker} this
10196              * @param {Date} date The selected month
10197              */
10198         'monthchange': true
10199     });
10200
10201     if(this.handler){
10202         this.on("select", this.handler,  this.scope || this);
10203     }
10204     // build the disabledDatesRE
10205     if(!this.disabledDatesRE && this.disabledDates){
10206         var dd = this.disabledDates;
10207         var re = "(?:";
10208         for(var i = 0; i < dd.length; i++){
10209             re += dd[i];
10210             if(i != dd.length-1) re += "|";
10211         }
10212         this.disabledDatesRE = new RegExp(re + ")");
10213     }
10214 };
10215
10216 Roo.extend(Roo.DatePicker, Roo.Component, {
10217     /**
10218      * @cfg {String} todayText
10219      * The text to display on the button that selects the current date (defaults to "Today")
10220      */
10221     todayText : "Today",
10222     /**
10223      * @cfg {String} okText
10224      * The text to display on the ok button
10225      */
10226     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
10227     /**
10228      * @cfg {String} cancelText
10229      * The text to display on the cancel button
10230      */
10231     cancelText : "Cancel",
10232     /**
10233      * @cfg {String} todayTip
10234      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
10235      */
10236     todayTip : "{0} (Spacebar)",
10237     /**
10238      * @cfg {Date} minDate
10239      * Minimum allowable date (JavaScript date object, defaults to null)
10240      */
10241     minDate : null,
10242     /**
10243      * @cfg {Date} maxDate
10244      * Maximum allowable date (JavaScript date object, defaults to null)
10245      */
10246     maxDate : null,
10247     /**
10248      * @cfg {String} minText
10249      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
10250      */
10251     minText : "This date is before the minimum date",
10252     /**
10253      * @cfg {String} maxText
10254      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
10255      */
10256     maxText : "This date is after the maximum date",
10257     /**
10258      * @cfg {String} format
10259      * The default date format string which can be overriden for localization support.  The format must be
10260      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
10261      */
10262     format : "m/d/y",
10263     /**
10264      * @cfg {Array} disabledDays
10265      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
10266      */
10267     disabledDays : null,
10268     /**
10269      * @cfg {String} disabledDaysText
10270      * The tooltip to display when the date falls on a disabled day (defaults to "")
10271      */
10272     disabledDaysText : "",
10273     /**
10274      * @cfg {RegExp} disabledDatesRE
10275      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
10276      */
10277     disabledDatesRE : null,
10278     /**
10279      * @cfg {String} disabledDatesText
10280      * The tooltip text to display when the date falls on a disabled date (defaults to "")
10281      */
10282     disabledDatesText : "",
10283     /**
10284      * @cfg {Boolean} constrainToViewport
10285      * True to constrain the date picker to the viewport (defaults to true)
10286      */
10287     constrainToViewport : true,
10288     /**
10289      * @cfg {Array} monthNames
10290      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
10291      */
10292     monthNames : Date.monthNames,
10293     /**
10294      * @cfg {Array} dayNames
10295      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
10296      */
10297     dayNames : Date.dayNames,
10298     /**
10299      * @cfg {String} nextText
10300      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
10301      */
10302     nextText: 'Next Month (Control+Right)',
10303     /**
10304      * @cfg {String} prevText
10305      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
10306      */
10307     prevText: 'Previous Month (Control+Left)',
10308     /**
10309      * @cfg {String} monthYearText
10310      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
10311      */
10312     monthYearText: 'Choose a month (Control+Up/Down to move years)',
10313     /**
10314      * @cfg {Number} startDay
10315      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
10316      */
10317     startDay : 0,
10318     /**
10319      * @cfg {Bool} showClear
10320      * Show a clear button (usefull for date form elements that can be blank.)
10321      */
10322     
10323     showClear: false,
10324     
10325     /**
10326      * Sets the value of the date field
10327      * @param {Date} value The date to set
10328      */
10329     setValue : function(value){
10330         var old = this.value;
10331         this.value = value.clearTime(true);
10332         if(this.el){
10333             this.update(this.value);
10334         }
10335     },
10336
10337     /**
10338      * Gets the current selected value of the date field
10339      * @return {Date} The selected date
10340      */
10341     getValue : function(){
10342         return this.value;
10343     },
10344
10345     // private
10346     focus : function(){
10347         if(this.el){
10348             this.update(this.activeDate);
10349         }
10350     },
10351
10352     // private
10353     onRender : function(container, position){
10354         var m = [
10355              '<table cellspacing="0">',
10356                 '<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>',
10357                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
10358         var dn = this.dayNames;
10359         for(var i = 0; i < 7; i++){
10360             var d = this.startDay+i;
10361             if(d > 6){
10362                 d = d-7;
10363             }
10364             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
10365         }
10366         m[m.length] = "</tr></thead><tbody><tr>";
10367         for(var i = 0; i < 42; i++) {
10368             if(i % 7 == 0 && i != 0){
10369                 m[m.length] = "</tr><tr>";
10370             }
10371             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
10372         }
10373         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
10374             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
10375
10376         var el = document.createElement("div");
10377         el.className = "x-date-picker";
10378         el.innerHTML = m.join("");
10379
10380         container.dom.insertBefore(el, position);
10381
10382         this.el = Roo.get(el);
10383         this.eventEl = Roo.get(el.firstChild);
10384
10385         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
10386             handler: this.showPrevMonth,
10387             scope: this,
10388             preventDefault:true,
10389             stopDefault:true
10390         });
10391
10392         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
10393             handler: this.showNextMonth,
10394             scope: this,
10395             preventDefault:true,
10396             stopDefault:true
10397         });
10398
10399         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
10400
10401         this.monthPicker = this.el.down('div.x-date-mp');
10402         this.monthPicker.enableDisplayMode('block');
10403         
10404         var kn = new Roo.KeyNav(this.eventEl, {
10405             "left" : function(e){
10406                 e.ctrlKey ?
10407                     this.showPrevMonth() :
10408                     this.update(this.activeDate.add("d", -1));
10409             },
10410
10411             "right" : function(e){
10412                 e.ctrlKey ?
10413                     this.showNextMonth() :
10414                     this.update(this.activeDate.add("d", 1));
10415             },
10416
10417             "up" : function(e){
10418                 e.ctrlKey ?
10419                     this.showNextYear() :
10420                     this.update(this.activeDate.add("d", -7));
10421             },
10422
10423             "down" : function(e){
10424                 e.ctrlKey ?
10425                     this.showPrevYear() :
10426                     this.update(this.activeDate.add("d", 7));
10427             },
10428
10429             "pageUp" : function(e){
10430                 this.showNextMonth();
10431             },
10432
10433             "pageDown" : function(e){
10434                 this.showPrevMonth();
10435             },
10436
10437             "enter" : function(e){
10438                 e.stopPropagation();
10439                 return true;
10440             },
10441
10442             scope : this
10443         });
10444
10445         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
10446
10447         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
10448
10449         this.el.unselectable();
10450         
10451         this.cells = this.el.select("table.x-date-inner tbody td");
10452         this.textNodes = this.el.query("table.x-date-inner tbody span");
10453
10454         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
10455             text: "&#160;",
10456             tooltip: this.monthYearText
10457         });
10458
10459         this.mbtn.on('click', this.showMonthPicker, this);
10460         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
10461
10462
10463         var today = (new Date()).dateFormat(this.format);
10464         
10465         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
10466         if (this.showClear) {
10467             baseTb.add( new Roo.Toolbar.Fill());
10468         }
10469         baseTb.add({
10470             text: String.format(this.todayText, today),
10471             tooltip: String.format(this.todayTip, today),
10472             handler: this.selectToday,
10473             scope: this
10474         });
10475         
10476         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
10477             
10478         //});
10479         if (this.showClear) {
10480             
10481             baseTb.add( new Roo.Toolbar.Fill());
10482             baseTb.add({
10483                 text: '&#160;',
10484                 cls: 'x-btn-icon x-btn-clear',
10485                 handler: function() {
10486                     //this.value = '';
10487                     this.fireEvent("select", this, '');
10488                 },
10489                 scope: this
10490             });
10491         }
10492         
10493         
10494         if(Roo.isIE){
10495             this.el.repaint();
10496         }
10497         this.update(this.value);
10498     },
10499
10500     createMonthPicker : function(){
10501         if(!this.monthPicker.dom.firstChild){
10502             var buf = ['<table border="0" cellspacing="0">'];
10503             for(var i = 0; i < 6; i++){
10504                 buf.push(
10505                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
10506                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
10507                     i == 0 ?
10508                     '<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>' :
10509                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
10510                 );
10511             }
10512             buf.push(
10513                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
10514                     this.okText,
10515                     '</button><button type="button" class="x-date-mp-cancel">',
10516                     this.cancelText,
10517                     '</button></td></tr>',
10518                 '</table>'
10519             );
10520             this.monthPicker.update(buf.join(''));
10521             this.monthPicker.on('click', this.onMonthClick, this);
10522             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
10523
10524             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
10525             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
10526
10527             this.mpMonths.each(function(m, a, i){
10528                 i += 1;
10529                 if((i%2) == 0){
10530                     m.dom.xmonth = 5 + Math.round(i * .5);
10531                 }else{
10532                     m.dom.xmonth = Math.round((i-1) * .5);
10533                 }
10534             });
10535         }
10536     },
10537
10538     showMonthPicker : function(){
10539         this.createMonthPicker();
10540         var size = this.el.getSize();
10541         this.monthPicker.setSize(size);
10542         this.monthPicker.child('table').setSize(size);
10543
10544         this.mpSelMonth = (this.activeDate || this.value).getMonth();
10545         this.updateMPMonth(this.mpSelMonth);
10546         this.mpSelYear = (this.activeDate || this.value).getFullYear();
10547         this.updateMPYear(this.mpSelYear);
10548
10549         this.monthPicker.slideIn('t', {duration:.2});
10550     },
10551
10552     updateMPYear : function(y){
10553         this.mpyear = y;
10554         var ys = this.mpYears.elements;
10555         for(var i = 1; i <= 10; i++){
10556             var td = ys[i-1], y2;
10557             if((i%2) == 0){
10558                 y2 = y + Math.round(i * .5);
10559                 td.firstChild.innerHTML = y2;
10560                 td.xyear = y2;
10561             }else{
10562                 y2 = y - (5-Math.round(i * .5));
10563                 td.firstChild.innerHTML = y2;
10564                 td.xyear = y2;
10565             }
10566             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
10567         }
10568     },
10569
10570     updateMPMonth : function(sm){
10571         this.mpMonths.each(function(m, a, i){
10572             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
10573         });
10574     },
10575
10576     selectMPMonth: function(m){
10577         
10578     },
10579
10580     onMonthClick : function(e, t){
10581         e.stopEvent();
10582         var el = new Roo.Element(t), pn;
10583         if(el.is('button.x-date-mp-cancel')){
10584             this.hideMonthPicker();
10585         }
10586         else if(el.is('button.x-date-mp-ok')){
10587             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
10588             this.hideMonthPicker();
10589         }
10590         else if(pn = el.up('td.x-date-mp-month', 2)){
10591             this.mpMonths.removeClass('x-date-mp-sel');
10592             pn.addClass('x-date-mp-sel');
10593             this.mpSelMonth = pn.dom.xmonth;
10594         }
10595         else if(pn = el.up('td.x-date-mp-year', 2)){
10596             this.mpYears.removeClass('x-date-mp-sel');
10597             pn.addClass('x-date-mp-sel');
10598             this.mpSelYear = pn.dom.xyear;
10599         }
10600         else if(el.is('a.x-date-mp-prev')){
10601             this.updateMPYear(this.mpyear-10);
10602         }
10603         else if(el.is('a.x-date-mp-next')){
10604             this.updateMPYear(this.mpyear+10);
10605         }
10606     },
10607
10608     onMonthDblClick : function(e, t){
10609         e.stopEvent();
10610         var el = new Roo.Element(t), pn;
10611         if(pn = el.up('td.x-date-mp-month', 2)){
10612             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
10613             this.hideMonthPicker();
10614         }
10615         else if(pn = el.up('td.x-date-mp-year', 2)){
10616             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
10617             this.hideMonthPicker();
10618         }
10619     },
10620
10621     hideMonthPicker : function(disableAnim){
10622         if(this.monthPicker){
10623             if(disableAnim === true){
10624                 this.monthPicker.hide();
10625             }else{
10626                 this.monthPicker.slideOut('t', {duration:.2});
10627             }
10628         }
10629     },
10630
10631     // private
10632     showPrevMonth : function(e){
10633         this.update(this.activeDate.add("mo", -1));
10634     },
10635
10636     // private
10637     showNextMonth : function(e){
10638         this.update(this.activeDate.add("mo", 1));
10639     },
10640
10641     // private
10642     showPrevYear : function(){
10643         this.update(this.activeDate.add("y", -1));
10644     },
10645
10646     // private
10647     showNextYear : function(){
10648         this.update(this.activeDate.add("y", 1));
10649     },
10650
10651     // private
10652     handleMouseWheel : function(e){
10653         var delta = e.getWheelDelta();
10654         if(delta > 0){
10655             this.showPrevMonth();
10656             e.stopEvent();
10657         } else if(delta < 0){
10658             this.showNextMonth();
10659             e.stopEvent();
10660         }
10661     },
10662
10663     // private
10664     handleDateClick : function(e, t){
10665         e.stopEvent();
10666         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
10667             this.setValue(new Date(t.dateValue));
10668             this.fireEvent("select", this, this.value);
10669         }
10670     },
10671
10672     // private
10673     selectToday : function(){
10674         this.setValue(new Date().clearTime());
10675         this.fireEvent("select", this, this.value);
10676     },
10677
10678     // private
10679     update : function(date)
10680     {
10681         var vd = this.activeDate;
10682         this.activeDate = date;
10683         if(vd && this.el){
10684             var t = date.getTime();
10685             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
10686                 this.cells.removeClass("x-date-selected");
10687                 this.cells.each(function(c){
10688                    if(c.dom.firstChild.dateValue == t){
10689                        c.addClass("x-date-selected");
10690                        setTimeout(function(){
10691                             try{c.dom.firstChild.focus();}catch(e){}
10692                        }, 50);
10693                        return false;
10694                    }
10695                 });
10696                 return;
10697             }
10698         }
10699         
10700         var days = date.getDaysInMonth();
10701         var firstOfMonth = date.getFirstDateOfMonth();
10702         var startingPos = firstOfMonth.getDay()-this.startDay;
10703
10704         if(startingPos <= this.startDay){
10705             startingPos += 7;
10706         }
10707
10708         var pm = date.add("mo", -1);
10709         var prevStart = pm.getDaysInMonth()-startingPos;
10710
10711         var cells = this.cells.elements;
10712         var textEls = this.textNodes;
10713         days += startingPos;
10714
10715         // convert everything to numbers so it's fast
10716         var day = 86400000;
10717         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
10718         var today = new Date().clearTime().getTime();
10719         var sel = date.clearTime().getTime();
10720         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
10721         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
10722         var ddMatch = this.disabledDatesRE;
10723         var ddText = this.disabledDatesText;
10724         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
10725         var ddaysText = this.disabledDaysText;
10726         var format = this.format;
10727
10728         var setCellClass = function(cal, cell){
10729             cell.title = "";
10730             var t = d.getTime();
10731             cell.firstChild.dateValue = t;
10732             if(t == today){
10733                 cell.className += " x-date-today";
10734                 cell.title = cal.todayText;
10735             }
10736             if(t == sel){
10737                 cell.className += " x-date-selected";
10738                 setTimeout(function(){
10739                     try{cell.firstChild.focus();}catch(e){}
10740                 }, 50);
10741             }
10742             // disabling
10743             if(t < min) {
10744                 cell.className = " x-date-disabled";
10745                 cell.title = cal.minText;
10746                 return;
10747             }
10748             if(t > max) {
10749                 cell.className = " x-date-disabled";
10750                 cell.title = cal.maxText;
10751                 return;
10752             }
10753             if(ddays){
10754                 if(ddays.indexOf(d.getDay()) != -1){
10755                     cell.title = ddaysText;
10756                     cell.className = " x-date-disabled";
10757                 }
10758             }
10759             if(ddMatch && format){
10760                 var fvalue = d.dateFormat(format);
10761                 if(ddMatch.test(fvalue)){
10762                     cell.title = ddText.replace("%0", fvalue);
10763                     cell.className = " x-date-disabled";
10764                 }
10765             }
10766         };
10767
10768         var i = 0;
10769         for(; i < startingPos; i++) {
10770             textEls[i].innerHTML = (++prevStart);
10771             d.setDate(d.getDate()+1);
10772             cells[i].className = "x-date-prevday";
10773             setCellClass(this, cells[i]);
10774         }
10775         for(; i < days; i++){
10776             intDay = i - startingPos + 1;
10777             textEls[i].innerHTML = (intDay);
10778             d.setDate(d.getDate()+1);
10779             cells[i].className = "x-date-active";
10780             setCellClass(this, cells[i]);
10781         }
10782         var extraDays = 0;
10783         for(; i < 42; i++) {
10784              textEls[i].innerHTML = (++extraDays);
10785              d.setDate(d.getDate()+1);
10786              cells[i].className = "x-date-nextday";
10787              setCellClass(this, cells[i]);
10788         }
10789
10790         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
10791         this.fireEvent('monthchange', this, date);
10792         
10793         if(!this.internalRender){
10794             var main = this.el.dom.firstChild;
10795             var w = main.offsetWidth;
10796             this.el.setWidth(w + this.el.getBorderWidth("lr"));
10797             Roo.fly(main).setWidth(w);
10798             this.internalRender = true;
10799             // opera does not respect the auto grow header center column
10800             // then, after it gets a width opera refuses to recalculate
10801             // without a second pass
10802             if(Roo.isOpera && !this.secondPass){
10803                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
10804                 this.secondPass = true;
10805                 this.update.defer(10, this, [date]);
10806             }
10807         }
10808         
10809         
10810     }
10811 });        /*
10812  * Based on:
10813  * Ext JS Library 1.1.1
10814  * Copyright(c) 2006-2007, Ext JS, LLC.
10815  *
10816  * Originally Released Under LGPL - original licence link has changed is not relivant.
10817  *
10818  * Fork - LGPL
10819  * <script type="text/javascript">
10820  */
10821 /**
10822  * @class Roo.TabPanel
10823  * @extends Roo.util.Observable
10824  * A lightweight tab container.
10825  * <br><br>
10826  * Usage:
10827  * <pre><code>
10828 // basic tabs 1, built from existing content
10829 var tabs = new Roo.TabPanel("tabs1");
10830 tabs.addTab("script", "View Script");
10831 tabs.addTab("markup", "View Markup");
10832 tabs.activate("script");
10833
10834 // more advanced tabs, built from javascript
10835 var jtabs = new Roo.TabPanel("jtabs");
10836 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
10837
10838 // set up the UpdateManager
10839 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
10840 var updater = tab2.getUpdateManager();
10841 updater.setDefaultUrl("ajax1.htm");
10842 tab2.on('activate', updater.refresh, updater, true);
10843
10844 // Use setUrl for Ajax loading
10845 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
10846 tab3.setUrl("ajax2.htm", null, true);
10847
10848 // Disabled tab
10849 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
10850 tab4.disable();
10851
10852 jtabs.activate("jtabs-1");
10853  * </code></pre>
10854  * @constructor
10855  * Create a new TabPanel.
10856  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
10857  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
10858  */
10859 Roo.TabPanel = function(container, config){
10860     /**
10861     * The container element for this TabPanel.
10862     * @type Roo.Element
10863     */
10864     this.el = Roo.get(container, true);
10865     if(config){
10866         if(typeof config == "boolean"){
10867             this.tabPosition = config ? "bottom" : "top";
10868         }else{
10869             Roo.apply(this, config);
10870         }
10871     }
10872     if(this.tabPosition == "bottom"){
10873         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10874         this.el.addClass("x-tabs-bottom");
10875     }
10876     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
10877     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
10878     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
10879     if(Roo.isIE){
10880         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
10881     }
10882     if(this.tabPosition != "bottom"){
10883         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
10884          * @type Roo.Element
10885          */
10886         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10887         this.el.addClass("x-tabs-top");
10888     }
10889     this.items = [];
10890
10891     this.bodyEl.setStyle("position", "relative");
10892
10893     this.active = null;
10894     this.activateDelegate = this.activate.createDelegate(this);
10895
10896     this.addEvents({
10897         /**
10898          * @event tabchange
10899          * Fires when the active tab changes
10900          * @param {Roo.TabPanel} this
10901          * @param {Roo.TabPanelItem} activePanel The new active tab
10902          */
10903         "tabchange": true,
10904         /**
10905          * @event beforetabchange
10906          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
10907          * @param {Roo.TabPanel} this
10908          * @param {Object} e Set cancel to true on this object to cancel the tab change
10909          * @param {Roo.TabPanelItem} tab The tab being changed to
10910          */
10911         "beforetabchange" : true
10912     });
10913
10914     Roo.EventManager.onWindowResize(this.onResize, this);
10915     this.cpad = this.el.getPadding("lr");
10916     this.hiddenCount = 0;
10917
10918
10919     // toolbar on the tabbar support...
10920     if (this.toolbar) {
10921         var tcfg = this.toolbar;
10922         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
10923         this.toolbar = new Roo.Toolbar(tcfg);
10924         if (Roo.isSafari) {
10925             var tbl = tcfg.container.child('table', true);
10926             tbl.setAttribute('width', '100%');
10927         }
10928         
10929     }
10930    
10931
10932
10933     Roo.TabPanel.superclass.constructor.call(this);
10934 };
10935
10936 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
10937     /*
10938      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
10939      */
10940     tabPosition : "top",
10941     /*
10942      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
10943      */
10944     currentTabWidth : 0,
10945     /*
10946      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
10947      */
10948     minTabWidth : 40,
10949     /*
10950      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
10951      */
10952     maxTabWidth : 250,
10953     /*
10954      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
10955      */
10956     preferredTabWidth : 175,
10957     /*
10958      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
10959      */
10960     resizeTabs : false,
10961     /*
10962      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
10963      */
10964     monitorResize : true,
10965     /*
10966      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
10967      */
10968     toolbar : false,
10969
10970     /**
10971      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
10972      * @param {String} id The id of the div to use <b>or create</b>
10973      * @param {String} text The text for the tab
10974      * @param {String} content (optional) Content to put in the TabPanelItem body
10975      * @param {Boolean} closable (optional) True to create a close icon on the tab
10976      * @return {Roo.TabPanelItem} The created TabPanelItem
10977      */
10978     addTab : function(id, text, content, closable){
10979         var item = new Roo.TabPanelItem(this, id, text, closable);
10980         this.addTabItem(item);
10981         if(content){
10982             item.setContent(content);
10983         }
10984         return item;
10985     },
10986
10987     /**
10988      * Returns the {@link Roo.TabPanelItem} with the specified id/index
10989      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
10990      * @return {Roo.TabPanelItem}
10991      */
10992     getTab : function(id){
10993         return this.items[id];
10994     },
10995
10996     /**
10997      * Hides the {@link Roo.TabPanelItem} with the specified id/index
10998      * @param {String/Number} id The id or index of the TabPanelItem to hide.
10999      */
11000     hideTab : function(id){
11001         var t = this.items[id];
11002         if(!t.isHidden()){
11003            t.setHidden(true);
11004            this.hiddenCount++;
11005            this.autoSizeTabs();
11006         }
11007     },
11008
11009     /**
11010      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
11011      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
11012      */
11013     unhideTab : function(id){
11014         var t = this.items[id];
11015         if(t.isHidden()){
11016            t.setHidden(false);
11017            this.hiddenCount--;
11018            this.autoSizeTabs();
11019         }
11020     },
11021
11022     /**
11023      * Adds an existing {@link Roo.TabPanelItem}.
11024      * @param {Roo.TabPanelItem} item The TabPanelItem to add
11025      */
11026     addTabItem : function(item){
11027         this.items[item.id] = item;
11028         this.items.push(item);
11029         if(this.resizeTabs){
11030            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
11031            this.autoSizeTabs();
11032         }else{
11033             item.autoSize();
11034         }
11035     },
11036
11037     /**
11038      * Removes a {@link Roo.TabPanelItem}.
11039      * @param {String/Number} id The id or index of the TabPanelItem to remove.
11040      */
11041     removeTab : function(id){
11042         var items = this.items;
11043         var tab = items[id];
11044         if(!tab) { return; }
11045         var index = items.indexOf(tab);
11046         if(this.active == tab && items.length > 1){
11047             var newTab = this.getNextAvailable(index);
11048             if(newTab) {
11049                 newTab.activate();
11050             }
11051         }
11052         this.stripEl.dom.removeChild(tab.pnode.dom);
11053         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
11054             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
11055         }
11056         items.splice(index, 1);
11057         delete this.items[tab.id];
11058         tab.fireEvent("close", tab);
11059         tab.purgeListeners();
11060         this.autoSizeTabs();
11061     },
11062
11063     getNextAvailable : function(start){
11064         var items = this.items;
11065         var index = start;
11066         // look for a next tab that will slide over to
11067         // replace the one being removed
11068         while(index < items.length){
11069             var item = items[++index];
11070             if(item && !item.isHidden()){
11071                 return item;
11072             }
11073         }
11074         // if one isn't found select the previous tab (on the left)
11075         index = start;
11076         while(index >= 0){
11077             var item = items[--index];
11078             if(item && !item.isHidden()){
11079                 return item;
11080             }
11081         }
11082         return null;
11083     },
11084
11085     /**
11086      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
11087      * @param {String/Number} id The id or index of the TabPanelItem to disable.
11088      */
11089     disableTab : function(id){
11090         var tab = this.items[id];
11091         if(tab && this.active != tab){
11092             tab.disable();
11093         }
11094     },
11095
11096     /**
11097      * Enables a {@link Roo.TabPanelItem} that is disabled.
11098      * @param {String/Number} id The id or index of the TabPanelItem to enable.
11099      */
11100     enableTab : function(id){
11101         var tab = this.items[id];
11102         tab.enable();
11103     },
11104
11105     /**
11106      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
11107      * @param {String/Number} id The id or index of the TabPanelItem to activate.
11108      * @return {Roo.TabPanelItem} The TabPanelItem.
11109      */
11110     activate : function(id){
11111         var tab = this.items[id];
11112         if(!tab){
11113             return null;
11114         }
11115         if(tab == this.active || tab.disabled){
11116             return tab;
11117         }
11118         var e = {};
11119         this.fireEvent("beforetabchange", this, e, tab);
11120         if(e.cancel !== true && !tab.disabled){
11121             if(this.active){
11122                 this.active.hide();
11123             }
11124             this.active = this.items[id];
11125             this.active.show();
11126             this.fireEvent("tabchange", this, this.active);
11127         }
11128         return tab;
11129     },
11130
11131     /**
11132      * Gets the active {@link Roo.TabPanelItem}.
11133      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
11134      */
11135     getActiveTab : function(){
11136         return this.active;
11137     },
11138
11139     /**
11140      * Updates the tab body element to fit the height of the container element
11141      * for overflow scrolling
11142      * @param {Number} targetHeight (optional) Override the starting height from the elements height
11143      */
11144     syncHeight : function(targetHeight){
11145         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
11146         var bm = this.bodyEl.getMargins();
11147         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
11148         this.bodyEl.setHeight(newHeight);
11149         return newHeight;
11150     },
11151
11152     onResize : function(){
11153         if(this.monitorResize){
11154             this.autoSizeTabs();
11155         }
11156     },
11157
11158     /**
11159      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
11160      */
11161     beginUpdate : function(){
11162         this.updating = true;
11163     },
11164
11165     /**
11166      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
11167      */
11168     endUpdate : function(){
11169         this.updating = false;
11170         this.autoSizeTabs();
11171     },
11172
11173     /**
11174      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
11175      */
11176     autoSizeTabs : function(){
11177         var count = this.items.length;
11178         var vcount = count - this.hiddenCount;
11179         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) return;
11180         var w = Math.max(this.el.getWidth() - this.cpad, 10);
11181         var availWidth = Math.floor(w / vcount);
11182         var b = this.stripBody;
11183         if(b.getWidth() > w){
11184             var tabs = this.items;
11185             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
11186             if(availWidth < this.minTabWidth){
11187                 /*if(!this.sleft){    // incomplete scrolling code
11188                     this.createScrollButtons();
11189                 }
11190                 this.showScroll();
11191                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
11192             }
11193         }else{
11194             if(this.currentTabWidth < this.preferredTabWidth){
11195                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
11196             }
11197         }
11198     },
11199
11200     /**
11201      * Returns the number of tabs in this TabPanel.
11202      * @return {Number}
11203      */
11204      getCount : function(){
11205          return this.items.length;
11206      },
11207
11208     /**
11209      * Resizes all the tabs to the passed width
11210      * @param {Number} The new width
11211      */
11212     setTabWidth : function(width){
11213         this.currentTabWidth = width;
11214         for(var i = 0, len = this.items.length; i < len; i++) {
11215                 if(!this.items[i].isHidden())this.items[i].setWidth(width);
11216         }
11217     },
11218
11219     /**
11220      * Destroys this TabPanel
11221      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
11222      */
11223     destroy : function(removeEl){
11224         Roo.EventManager.removeResizeListener(this.onResize, this);
11225         for(var i = 0, len = this.items.length; i < len; i++){
11226             this.items[i].purgeListeners();
11227         }
11228         if(removeEl === true){
11229             this.el.update("");
11230             this.el.remove();
11231         }
11232     }
11233 });
11234
11235 /**
11236  * @class Roo.TabPanelItem
11237  * @extends Roo.util.Observable
11238  * Represents an individual item (tab plus body) in a TabPanel.
11239  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
11240  * @param {String} id The id of this TabPanelItem
11241  * @param {String} text The text for the tab of this TabPanelItem
11242  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
11243  */
11244 Roo.TabPanelItem = function(tabPanel, id, text, closable){
11245     /**
11246      * The {@link Roo.TabPanel} this TabPanelItem belongs to
11247      * @type Roo.TabPanel
11248      */
11249     this.tabPanel = tabPanel;
11250     /**
11251      * The id for this TabPanelItem
11252      * @type String
11253      */
11254     this.id = id;
11255     /** @private */
11256     this.disabled = false;
11257     /** @private */
11258     this.text = text;
11259     /** @private */
11260     this.loaded = false;
11261     this.closable = closable;
11262
11263     /**
11264      * The body element for this TabPanelItem.
11265      * @type Roo.Element
11266      */
11267     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
11268     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
11269     this.bodyEl.setStyle("display", "block");
11270     this.bodyEl.setStyle("zoom", "1");
11271     this.hideAction();
11272
11273     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
11274     /** @private */
11275     this.el = Roo.get(els.el, true);
11276     this.inner = Roo.get(els.inner, true);
11277     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
11278     this.pnode = Roo.get(els.el.parentNode, true);
11279     this.el.on("mousedown", this.onTabMouseDown, this);
11280     this.el.on("click", this.onTabClick, this);
11281     /** @private */
11282     if(closable){
11283         var c = Roo.get(els.close, true);
11284         c.dom.title = this.closeText;
11285         c.addClassOnOver("close-over");
11286         c.on("click", this.closeClick, this);
11287      }
11288
11289     this.addEvents({
11290          /**
11291          * @event activate
11292          * Fires when this tab becomes the active tab.
11293          * @param {Roo.TabPanel} tabPanel The parent TabPanel
11294          * @param {Roo.TabPanelItem} this
11295          */
11296         "activate": true,
11297         /**
11298          * @event beforeclose
11299          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
11300          * @param {Roo.TabPanelItem} this
11301          * @param {Object} e Set cancel to true on this object to cancel the close.
11302          */
11303         "beforeclose": true,
11304         /**
11305          * @event close
11306          * Fires when this tab is closed.
11307          * @param {Roo.TabPanelItem} this
11308          */
11309          "close": true,
11310         /**
11311          * @event deactivate
11312          * Fires when this tab is no longer the active tab.
11313          * @param {Roo.TabPanel} tabPanel The parent TabPanel
11314          * @param {Roo.TabPanelItem} this
11315          */
11316          "deactivate" : true
11317     });
11318     this.hidden = false;
11319
11320     Roo.TabPanelItem.superclass.constructor.call(this);
11321 };
11322
11323 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
11324     purgeListeners : function(){
11325        Roo.util.Observable.prototype.purgeListeners.call(this);
11326        this.el.removeAllListeners();
11327     },
11328     /**
11329      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
11330      */
11331     show : function(){
11332         this.pnode.addClass("on");
11333         this.showAction();
11334         if(Roo.isOpera){
11335             this.tabPanel.stripWrap.repaint();
11336         }
11337         this.fireEvent("activate", this.tabPanel, this);
11338     },
11339
11340     /**
11341      * Returns true if this tab is the active tab.
11342      * @return {Boolean}
11343      */
11344     isActive : function(){
11345         return this.tabPanel.getActiveTab() == this;
11346     },
11347
11348     /**
11349      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
11350      */
11351     hide : function(){
11352         this.pnode.removeClass("on");
11353         this.hideAction();
11354         this.fireEvent("deactivate", this.tabPanel, this);
11355     },
11356
11357     hideAction : function(){
11358         this.bodyEl.hide();
11359         this.bodyEl.setStyle("position", "absolute");
11360         this.bodyEl.setLeft("-20000px");
11361         this.bodyEl.setTop("-20000px");
11362     },
11363
11364     showAction : function(){
11365         this.bodyEl.setStyle("position", "relative");
11366         this.bodyEl.setTop("");
11367         this.bodyEl.setLeft("");
11368         this.bodyEl.show();
11369     },
11370
11371     /**
11372      * Set the tooltip for the tab.
11373      * @param {String} tooltip The tab's tooltip
11374      */
11375     setTooltip : function(text){
11376         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
11377             this.textEl.dom.qtip = text;
11378             this.textEl.dom.removeAttribute('title');
11379         }else{
11380             this.textEl.dom.title = text;
11381         }
11382     },
11383
11384     onTabClick : function(e){
11385         e.preventDefault();
11386         this.tabPanel.activate(this.id);
11387     },
11388
11389     onTabMouseDown : function(e){
11390         e.preventDefault();
11391         this.tabPanel.activate(this.id);
11392     },
11393
11394     getWidth : function(){
11395         return this.inner.getWidth();
11396     },
11397
11398     setWidth : function(width){
11399         var iwidth = width - this.pnode.getPadding("lr");
11400         this.inner.setWidth(iwidth);
11401         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
11402         this.pnode.setWidth(width);
11403     },
11404
11405     /**
11406      * Show or hide the tab
11407      * @param {Boolean} hidden True to hide or false to show.
11408      */
11409     setHidden : function(hidden){
11410         this.hidden = hidden;
11411         this.pnode.setStyle("display", hidden ? "none" : "");
11412     },
11413
11414     /**
11415      * Returns true if this tab is "hidden"
11416      * @return {Boolean}
11417      */
11418     isHidden : function(){
11419         return this.hidden;
11420     },
11421
11422     /**
11423      * Returns the text for this tab
11424      * @return {String}
11425      */
11426     getText : function(){
11427         return this.text;
11428     },
11429
11430     autoSize : function(){
11431         //this.el.beginMeasure();
11432         this.textEl.setWidth(1);
11433         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr"));
11434         //this.el.endMeasure();
11435     },
11436
11437     /**
11438      * Sets the text for the tab (Note: this also sets the tooltip text)
11439      * @param {String} text The tab's text and tooltip
11440      */
11441     setText : function(text){
11442         this.text = text;
11443         this.textEl.update(text);
11444         this.setTooltip(text);
11445         if(!this.tabPanel.resizeTabs){
11446             this.autoSize();
11447         }
11448     },
11449     /**
11450      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
11451      */
11452     activate : function(){
11453         this.tabPanel.activate(this.id);
11454     },
11455
11456     /**
11457      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
11458      */
11459     disable : function(){
11460         if(this.tabPanel.active != this){
11461             this.disabled = true;
11462             this.pnode.addClass("disabled");
11463         }
11464     },
11465
11466     /**
11467      * Enables this TabPanelItem if it was previously disabled.
11468      */
11469     enable : function(){
11470         this.disabled = false;
11471         this.pnode.removeClass("disabled");
11472     },
11473
11474     /**
11475      * Sets the content for this TabPanelItem.
11476      * @param {String} content The content
11477      * @param {Boolean} loadScripts true to look for and load scripts
11478      */
11479     setContent : function(content, loadScripts){
11480         this.bodyEl.update(content, loadScripts);
11481     },
11482
11483     /**
11484      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
11485      * @return {Roo.UpdateManager} The UpdateManager
11486      */
11487     getUpdateManager : function(){
11488         return this.bodyEl.getUpdateManager();
11489     },
11490
11491     /**
11492      * Set a URL to be used to load the content for this TabPanelItem.
11493      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
11494      * @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)
11495      * @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)
11496      * @return {Roo.UpdateManager} The UpdateManager
11497      */
11498     setUrl : function(url, params, loadOnce){
11499         if(this.refreshDelegate){
11500             this.un('activate', this.refreshDelegate);
11501         }
11502         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
11503         this.on("activate", this.refreshDelegate);
11504         return this.bodyEl.getUpdateManager();
11505     },
11506
11507     /** @private */
11508     _handleRefresh : function(url, params, loadOnce){
11509         if(!loadOnce || !this.loaded){
11510             var updater = this.bodyEl.getUpdateManager();
11511             updater.update(url, params, this._setLoaded.createDelegate(this));
11512         }
11513     },
11514
11515     /**
11516      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
11517      *   Will fail silently if the setUrl method has not been called.
11518      *   This does not activate the panel, just updates its content.
11519      */
11520     refresh : function(){
11521         if(this.refreshDelegate){
11522            this.loaded = false;
11523            this.refreshDelegate();
11524         }
11525     },
11526
11527     /** @private */
11528     _setLoaded : function(){
11529         this.loaded = true;
11530     },
11531
11532     /** @private */
11533     closeClick : function(e){
11534         var o = {};
11535         e.stopEvent();
11536         this.fireEvent("beforeclose", this, o);
11537         if(o.cancel !== true){
11538             this.tabPanel.removeTab(this.id);
11539         }
11540     },
11541     /**
11542      * The text displayed in the tooltip for the close icon.
11543      * @type String
11544      */
11545     closeText : "Close this tab"
11546 });
11547
11548 /** @private */
11549 Roo.TabPanel.prototype.createStrip = function(container){
11550     var strip = document.createElement("div");
11551     strip.className = "x-tabs-wrap";
11552     container.appendChild(strip);
11553     return strip;
11554 };
11555 /** @private */
11556 Roo.TabPanel.prototype.createStripList = function(strip){
11557     // div wrapper for retard IE
11558     // returns the "tr" element.
11559     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
11560         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
11561         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
11562     return strip.firstChild.firstChild.firstChild.firstChild;
11563 };
11564 /** @private */
11565 Roo.TabPanel.prototype.createBody = function(container){
11566     var body = document.createElement("div");
11567     Roo.id(body, "tab-body");
11568     Roo.fly(body).addClass("x-tabs-body");
11569     container.appendChild(body);
11570     return body;
11571 };
11572 /** @private */
11573 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
11574     var body = Roo.getDom(id);
11575     if(!body){
11576         body = document.createElement("div");
11577         body.id = id;
11578     }
11579     Roo.fly(body).addClass("x-tabs-item-body");
11580     bodyEl.insertBefore(body, bodyEl.firstChild);
11581     return body;
11582 };
11583 /** @private */
11584 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
11585     var td = document.createElement("td");
11586     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
11587     //stripEl.appendChild(td);
11588     if(closable){
11589         td.className = "x-tabs-closable";
11590         if(!this.closeTpl){
11591             this.closeTpl = new Roo.Template(
11592                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
11593                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
11594                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
11595             );
11596         }
11597         var el = this.closeTpl.overwrite(td, {"text": text});
11598         var close = el.getElementsByTagName("div")[0];
11599         var inner = el.getElementsByTagName("em")[0];
11600         return {"el": el, "close": close, "inner": inner};
11601     } else {
11602         if(!this.tabTpl){
11603             this.tabTpl = new Roo.Template(
11604                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
11605                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
11606             );
11607         }
11608         var el = this.tabTpl.overwrite(td, {"text": text});
11609         var inner = el.getElementsByTagName("em")[0];
11610         return {"el": el, "inner": inner};
11611     }
11612 };/*
11613  * Based on:
11614  * Ext JS Library 1.1.1
11615  * Copyright(c) 2006-2007, Ext JS, LLC.
11616  *
11617  * Originally Released Under LGPL - original licence link has changed is not relivant.
11618  *
11619  * Fork - LGPL
11620  * <script type="text/javascript">
11621  */
11622
11623 /**
11624  * @class Roo.Button
11625  * @extends Roo.util.Observable
11626  * Simple Button class
11627  * @cfg {String} text The button text
11628  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
11629  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
11630  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
11631  * @cfg {Object} scope The scope of the handler
11632  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
11633  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
11634  * @cfg {Boolean} hidden True to start hidden (defaults to false)
11635  * @cfg {Boolean} disabled True to start disabled (defaults to false)
11636  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
11637  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
11638    applies if enableToggle = true)
11639  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
11640  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
11641   an {@link Roo.util.ClickRepeater} config object (defaults to false).
11642  * @constructor
11643  * Create a new button
11644  * @param {Object} config The config object
11645  */
11646 Roo.Button = function(renderTo, config)
11647 {
11648     if (!config) {
11649         config = renderTo;
11650         renderTo = config.renderTo || false;
11651     }
11652     
11653     Roo.apply(this, config);
11654     this.addEvents({
11655         /**
11656              * @event click
11657              * Fires when this button is clicked
11658              * @param {Button} this
11659              * @param {EventObject} e The click event
11660              */
11661             "click" : true,
11662         /**
11663              * @event toggle
11664              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
11665              * @param {Button} this
11666              * @param {Boolean} pressed
11667              */
11668             "toggle" : true,
11669         /**
11670              * @event mouseover
11671              * Fires when the mouse hovers over the button
11672              * @param {Button} this
11673              * @param {Event} e The event object
11674              */
11675         'mouseover' : true,
11676         /**
11677              * @event mouseout
11678              * Fires when the mouse exits the button
11679              * @param {Button} this
11680              * @param {Event} e The event object
11681              */
11682         'mouseout': true,
11683          /**
11684              * @event render
11685              * Fires when the button is rendered
11686              * @param {Button} this
11687              */
11688         'render': true
11689     });
11690     if(this.menu){
11691         this.menu = Roo.menu.MenuMgr.get(this.menu);
11692     }
11693     // register listeners first!!  - so render can be captured..
11694     Roo.util.Observable.call(this);
11695     if(renderTo){
11696         this.render(renderTo);
11697     }
11698     
11699   
11700 };
11701
11702 Roo.extend(Roo.Button, Roo.util.Observable, {
11703     /**
11704      * 
11705      */
11706     
11707     /**
11708      * Read-only. True if this button is hidden
11709      * @type Boolean
11710      */
11711     hidden : false,
11712     /**
11713      * Read-only. True if this button is disabled
11714      * @type Boolean
11715      */
11716     disabled : false,
11717     /**
11718      * Read-only. True if this button is pressed (only if enableToggle = true)
11719      * @type Boolean
11720      */
11721     pressed : false,
11722
11723     /**
11724      * @cfg {Number} tabIndex 
11725      * The DOM tabIndex for this button (defaults to undefined)
11726      */
11727     tabIndex : undefined,
11728
11729     /**
11730      * @cfg {Boolean} enableToggle
11731      * True to enable pressed/not pressed toggling (defaults to false)
11732      */
11733     enableToggle: false,
11734     /**
11735      * @cfg {Mixed} menu
11736      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
11737      */
11738     menu : undefined,
11739     /**
11740      * @cfg {String} menuAlign
11741      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
11742      */
11743     menuAlign : "tl-bl?",
11744
11745     /**
11746      * @cfg {String} iconCls
11747      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
11748      */
11749     iconCls : undefined,
11750     /**
11751      * @cfg {String} type
11752      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
11753      */
11754     type : 'button',
11755
11756     // private
11757     menuClassTarget: 'tr',
11758
11759     /**
11760      * @cfg {String} clickEvent
11761      * The type of event to map to the button's event handler (defaults to 'click')
11762      */
11763     clickEvent : 'click',
11764
11765     /**
11766      * @cfg {Boolean} handleMouseEvents
11767      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
11768      */
11769     handleMouseEvents : true,
11770
11771     /**
11772      * @cfg {String} tooltipType
11773      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
11774      */
11775     tooltipType : 'qtip',
11776
11777     /**
11778      * @cfg {String} cls
11779      * A CSS class to apply to the button's main element.
11780      */
11781     
11782     /**
11783      * @cfg {Roo.Template} template (Optional)
11784      * An {@link Roo.Template} with which to create the Button's main element. This Template must
11785      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
11786      * require code modifications if required elements (e.g. a button) aren't present.
11787      */
11788
11789     // private
11790     render : function(renderTo){
11791         var btn;
11792         if(this.hideParent){
11793             this.parentEl = Roo.get(renderTo);
11794         }
11795         if(!this.dhconfig){
11796             if(!this.template){
11797                 if(!Roo.Button.buttonTemplate){
11798                     // hideous table template
11799                     Roo.Button.buttonTemplate = new Roo.Template(
11800                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
11801                         '<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>',
11802                         "</tr></tbody></table>");
11803                 }
11804                 this.template = Roo.Button.buttonTemplate;
11805             }
11806             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
11807             var btnEl = btn.child("button:first");
11808             btnEl.on('focus', this.onFocus, this);
11809             btnEl.on('blur', this.onBlur, this);
11810             if(this.cls){
11811                 btn.addClass(this.cls);
11812             }
11813             if(this.icon){
11814                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
11815             }
11816             if(this.iconCls){
11817                 btnEl.addClass(this.iconCls);
11818                 if(!this.cls){
11819                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11820                 }
11821             }
11822             if(this.tabIndex !== undefined){
11823                 btnEl.dom.tabIndex = this.tabIndex;
11824             }
11825             if(this.tooltip){
11826                 if(typeof this.tooltip == 'object'){
11827                     Roo.QuickTips.tips(Roo.apply({
11828                           target: btnEl.id
11829                     }, this.tooltip));
11830                 } else {
11831                     btnEl.dom[this.tooltipType] = this.tooltip;
11832                 }
11833             }
11834         }else{
11835             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
11836         }
11837         this.el = btn;
11838         if(this.id){
11839             this.el.dom.id = this.el.id = this.id;
11840         }
11841         if(this.menu){
11842             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
11843             this.menu.on("show", this.onMenuShow, this);
11844             this.menu.on("hide", this.onMenuHide, this);
11845         }
11846         btn.addClass("x-btn");
11847         if(Roo.isIE && !Roo.isIE7){
11848             this.autoWidth.defer(1, this);
11849         }else{
11850             this.autoWidth();
11851         }
11852         if(this.handleMouseEvents){
11853             btn.on("mouseover", this.onMouseOver, this);
11854             btn.on("mouseout", this.onMouseOut, this);
11855             btn.on("mousedown", this.onMouseDown, this);
11856         }
11857         btn.on(this.clickEvent, this.onClick, this);
11858         //btn.on("mouseup", this.onMouseUp, this);
11859         if(this.hidden){
11860             this.hide();
11861         }
11862         if(this.disabled){
11863             this.disable();
11864         }
11865         Roo.ButtonToggleMgr.register(this);
11866         if(this.pressed){
11867             this.el.addClass("x-btn-pressed");
11868         }
11869         if(this.repeat){
11870             var repeater = new Roo.util.ClickRepeater(btn,
11871                 typeof this.repeat == "object" ? this.repeat : {}
11872             );
11873             repeater.on("click", this.onClick,  this);
11874         }
11875         
11876         this.fireEvent('render', this);
11877         
11878     },
11879     /**
11880      * Returns the button's underlying element
11881      * @return {Roo.Element} The element
11882      */
11883     getEl : function(){
11884         return this.el;  
11885     },
11886     
11887     /**
11888      * Destroys this Button and removes any listeners.
11889      */
11890     destroy : function(){
11891         Roo.ButtonToggleMgr.unregister(this);
11892         this.el.removeAllListeners();
11893         this.purgeListeners();
11894         this.el.remove();
11895     },
11896
11897     // private
11898     autoWidth : function(){
11899         if(this.el){
11900             this.el.setWidth("auto");
11901             if(Roo.isIE7 && Roo.isStrict){
11902                 var ib = this.el.child('button');
11903                 if(ib && ib.getWidth() > 20){
11904                     ib.clip();
11905                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11906                 }
11907             }
11908             if(this.minWidth){
11909                 if(this.hidden){
11910                     this.el.beginMeasure();
11911                 }
11912                 if(this.el.getWidth() < this.minWidth){
11913                     this.el.setWidth(this.minWidth);
11914                 }
11915                 if(this.hidden){
11916                     this.el.endMeasure();
11917                 }
11918             }
11919         }
11920     },
11921
11922     /**
11923      * Assigns this button's click handler
11924      * @param {Function} handler The function to call when the button is clicked
11925      * @param {Object} scope (optional) Scope for the function passed in
11926      */
11927     setHandler : function(handler, scope){
11928         this.handler = handler;
11929         this.scope = scope;  
11930     },
11931     
11932     /**
11933      * Sets this button's text
11934      * @param {String} text The button text
11935      */
11936     setText : function(text){
11937         this.text = text;
11938         if(this.el){
11939             this.el.child("td.x-btn-center button.x-btn-text").update(text);
11940         }
11941         this.autoWidth();
11942     },
11943     
11944     /**
11945      * Gets the text for this button
11946      * @return {String} The button text
11947      */
11948     getText : function(){
11949         return this.text;  
11950     },
11951     
11952     /**
11953      * Show this button
11954      */
11955     show: function(){
11956         this.hidden = false;
11957         if(this.el){
11958             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
11959         }
11960     },
11961     
11962     /**
11963      * Hide this button
11964      */
11965     hide: function(){
11966         this.hidden = true;
11967         if(this.el){
11968             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
11969         }
11970     },
11971     
11972     /**
11973      * Convenience function for boolean show/hide
11974      * @param {Boolean} visible True to show, false to hide
11975      */
11976     setVisible: function(visible){
11977         if(visible) {
11978             this.show();
11979         }else{
11980             this.hide();
11981         }
11982     },
11983     
11984     /**
11985      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
11986      * @param {Boolean} state (optional) Force a particular state
11987      */
11988     toggle : function(state){
11989         state = state === undefined ? !this.pressed : state;
11990         if(state != this.pressed){
11991             if(state){
11992                 this.el.addClass("x-btn-pressed");
11993                 this.pressed = true;
11994                 this.fireEvent("toggle", this, true);
11995             }else{
11996                 this.el.removeClass("x-btn-pressed");
11997                 this.pressed = false;
11998                 this.fireEvent("toggle", this, false);
11999             }
12000             if(this.toggleHandler){
12001                 this.toggleHandler.call(this.scope || this, this, state);
12002             }
12003         }
12004     },
12005     
12006     /**
12007      * Focus the button
12008      */
12009     focus : function(){
12010         this.el.child('button:first').focus();
12011     },
12012     
12013     /**
12014      * Disable this button
12015      */
12016     disable : function(){
12017         if(this.el){
12018             this.el.addClass("x-btn-disabled");
12019         }
12020         this.disabled = true;
12021     },
12022     
12023     /**
12024      * Enable this button
12025      */
12026     enable : function(){
12027         if(this.el){
12028             this.el.removeClass("x-btn-disabled");
12029         }
12030         this.disabled = false;
12031     },
12032
12033     /**
12034      * Convenience function for boolean enable/disable
12035      * @param {Boolean} enabled True to enable, false to disable
12036      */
12037     setDisabled : function(v){
12038         this[v !== true ? "enable" : "disable"]();
12039     },
12040
12041     // private
12042     onClick : function(e){
12043         if(e){
12044             e.preventDefault();
12045         }
12046         if(e.button != 0){
12047             return;
12048         }
12049         if(!this.disabled){
12050             if(this.enableToggle){
12051                 this.toggle();
12052             }
12053             if(this.menu && !this.menu.isVisible()){
12054                 this.menu.show(this.el, this.menuAlign);
12055             }
12056             this.fireEvent("click", this, e);
12057             if(this.handler){
12058                 this.el.removeClass("x-btn-over");
12059                 this.handler.call(this.scope || this, this, e);
12060             }
12061         }
12062     },
12063     // private
12064     onMouseOver : function(e){
12065         if(!this.disabled){
12066             this.el.addClass("x-btn-over");
12067             this.fireEvent('mouseover', this, e);
12068         }
12069     },
12070     // private
12071     onMouseOut : function(e){
12072         if(!e.within(this.el,  true)){
12073             this.el.removeClass("x-btn-over");
12074             this.fireEvent('mouseout', this, e);
12075         }
12076     },
12077     // private
12078     onFocus : function(e){
12079         if(!this.disabled){
12080             this.el.addClass("x-btn-focus");
12081         }
12082     },
12083     // private
12084     onBlur : function(e){
12085         this.el.removeClass("x-btn-focus");
12086     },
12087     // private
12088     onMouseDown : function(e){
12089         if(!this.disabled && e.button == 0){
12090             this.el.addClass("x-btn-click");
12091             Roo.get(document).on('mouseup', this.onMouseUp, this);
12092         }
12093     },
12094     // private
12095     onMouseUp : function(e){
12096         if(e.button == 0){
12097             this.el.removeClass("x-btn-click");
12098             Roo.get(document).un('mouseup', this.onMouseUp, this);
12099         }
12100     },
12101     // private
12102     onMenuShow : function(e){
12103         this.el.addClass("x-btn-menu-active");
12104     },
12105     // private
12106     onMenuHide : function(e){
12107         this.el.removeClass("x-btn-menu-active");
12108     }   
12109 });
12110
12111 // Private utility class used by Button
12112 Roo.ButtonToggleMgr = function(){
12113    var groups = {};
12114    
12115    function toggleGroup(btn, state){
12116        if(state){
12117            var g = groups[btn.toggleGroup];
12118            for(var i = 0, l = g.length; i < l; i++){
12119                if(g[i] != btn){
12120                    g[i].toggle(false);
12121                }
12122            }
12123        }
12124    }
12125    
12126    return {
12127        register : function(btn){
12128            if(!btn.toggleGroup){
12129                return;
12130            }
12131            var g = groups[btn.toggleGroup];
12132            if(!g){
12133                g = groups[btn.toggleGroup] = [];
12134            }
12135            g.push(btn);
12136            btn.on("toggle", toggleGroup);
12137        },
12138        
12139        unregister : function(btn){
12140            if(!btn.toggleGroup){
12141                return;
12142            }
12143            var g = groups[btn.toggleGroup];
12144            if(g){
12145                g.remove(btn);
12146                btn.un("toggle", toggleGroup);
12147            }
12148        }
12149    };
12150 }();/*
12151  * Based on:
12152  * Ext JS Library 1.1.1
12153  * Copyright(c) 2006-2007, Ext JS, LLC.
12154  *
12155  * Originally Released Under LGPL - original licence link has changed is not relivant.
12156  *
12157  * Fork - LGPL
12158  * <script type="text/javascript">
12159  */
12160  
12161 /**
12162  * @class Roo.SplitButton
12163  * @extends Roo.Button
12164  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
12165  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
12166  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
12167  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
12168  * @cfg {String} arrowTooltip The title attribute of the arrow
12169  * @constructor
12170  * Create a new menu button
12171  * @param {String/HTMLElement/Element} renderTo The element to append the button to
12172  * @param {Object} config The config object
12173  */
12174 Roo.SplitButton = function(renderTo, config){
12175     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
12176     /**
12177      * @event arrowclick
12178      * Fires when this button's arrow is clicked
12179      * @param {SplitButton} this
12180      * @param {EventObject} e The click event
12181      */
12182     this.addEvents({"arrowclick":true});
12183 };
12184
12185 Roo.extend(Roo.SplitButton, Roo.Button, {
12186     render : function(renderTo){
12187         // this is one sweet looking template!
12188         var tpl = new Roo.Template(
12189             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
12190             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
12191             '<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>',
12192             "</tbody></table></td><td>",
12193             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
12194             '<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>',
12195             "</tbody></table></td></tr></table>"
12196         );
12197         var btn = tpl.append(renderTo, [this.text, this.type], true);
12198         var btnEl = btn.child("button");
12199         if(this.cls){
12200             btn.addClass(this.cls);
12201         }
12202         if(this.icon){
12203             btnEl.setStyle('background-image', 'url(' +this.icon +')');
12204         }
12205         if(this.iconCls){
12206             btnEl.addClass(this.iconCls);
12207             if(!this.cls){
12208                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
12209             }
12210         }
12211         this.el = btn;
12212         if(this.handleMouseEvents){
12213             btn.on("mouseover", this.onMouseOver, this);
12214             btn.on("mouseout", this.onMouseOut, this);
12215             btn.on("mousedown", this.onMouseDown, this);
12216             btn.on("mouseup", this.onMouseUp, this);
12217         }
12218         btn.on(this.clickEvent, this.onClick, this);
12219         if(this.tooltip){
12220             if(typeof this.tooltip == 'object'){
12221                 Roo.QuickTips.tips(Roo.apply({
12222                       target: btnEl.id
12223                 }, this.tooltip));
12224             } else {
12225                 btnEl.dom[this.tooltipType] = this.tooltip;
12226             }
12227         }
12228         if(this.arrowTooltip){
12229             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
12230         }
12231         if(this.hidden){
12232             this.hide();
12233         }
12234         if(this.disabled){
12235             this.disable();
12236         }
12237         if(this.pressed){
12238             this.el.addClass("x-btn-pressed");
12239         }
12240         if(Roo.isIE && !Roo.isIE7){
12241             this.autoWidth.defer(1, this);
12242         }else{
12243             this.autoWidth();
12244         }
12245         if(this.menu){
12246             this.menu.on("show", this.onMenuShow, this);
12247             this.menu.on("hide", this.onMenuHide, this);
12248         }
12249         this.fireEvent('render', this);
12250     },
12251
12252     // private
12253     autoWidth : function(){
12254         if(this.el){
12255             var tbl = this.el.child("table:first");
12256             var tbl2 = this.el.child("table:last");
12257             this.el.setWidth("auto");
12258             tbl.setWidth("auto");
12259             if(Roo.isIE7 && Roo.isStrict){
12260                 var ib = this.el.child('button:first');
12261                 if(ib && ib.getWidth() > 20){
12262                     ib.clip();
12263                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
12264                 }
12265             }
12266             if(this.minWidth){
12267                 if(this.hidden){
12268                     this.el.beginMeasure();
12269                 }
12270                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
12271                     tbl.setWidth(this.minWidth-tbl2.getWidth());
12272                 }
12273                 if(this.hidden){
12274                     this.el.endMeasure();
12275                 }
12276             }
12277             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
12278         } 
12279     },
12280     /**
12281      * Sets this button's click handler
12282      * @param {Function} handler The function to call when the button is clicked
12283      * @param {Object} scope (optional) Scope for the function passed above
12284      */
12285     setHandler : function(handler, scope){
12286         this.handler = handler;
12287         this.scope = scope;  
12288     },
12289     
12290     /**
12291      * Sets this button's arrow click handler
12292      * @param {Function} handler The function to call when the arrow is clicked
12293      * @param {Object} scope (optional) Scope for the function passed above
12294      */
12295     setArrowHandler : function(handler, scope){
12296         this.arrowHandler = handler;
12297         this.scope = scope;  
12298     },
12299     
12300     /**
12301      * Focus the button
12302      */
12303     focus : function(){
12304         if(this.el){
12305             this.el.child("button:first").focus();
12306         }
12307     },
12308
12309     // private
12310     onClick : function(e){
12311         e.preventDefault();
12312         if(!this.disabled){
12313             if(e.getTarget(".x-btn-menu-arrow-wrap")){
12314                 if(this.menu && !this.menu.isVisible()){
12315                     this.menu.show(this.el, this.menuAlign);
12316                 }
12317                 this.fireEvent("arrowclick", this, e);
12318                 if(this.arrowHandler){
12319                     this.arrowHandler.call(this.scope || this, this, e);
12320                 }
12321             }else{
12322                 this.fireEvent("click", this, e);
12323                 if(this.handler){
12324                     this.handler.call(this.scope || this, this, e);
12325                 }
12326             }
12327         }
12328     },
12329     // private
12330     onMouseDown : function(e){
12331         if(!this.disabled){
12332             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
12333         }
12334     },
12335     // private
12336     onMouseUp : function(e){
12337         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
12338     }   
12339 });
12340
12341
12342 // backwards compat
12343 Roo.MenuButton = Roo.SplitButton;/*
12344  * Based on:
12345  * Ext JS Library 1.1.1
12346  * Copyright(c) 2006-2007, Ext JS, LLC.
12347  *
12348  * Originally Released Under LGPL - original licence link has changed is not relivant.
12349  *
12350  * Fork - LGPL
12351  * <script type="text/javascript">
12352  */
12353
12354 /**
12355  * @class Roo.Toolbar
12356  * Basic Toolbar class.
12357  * @constructor
12358  * Creates a new Toolbar
12359  * @param {Object} container The config object
12360  */ 
12361 Roo.Toolbar = function(container, buttons, config)
12362 {
12363     /// old consturctor format still supported..
12364     if(container instanceof Array){ // omit the container for later rendering
12365         buttons = container;
12366         config = buttons;
12367         container = null;
12368     }
12369     if (typeof(container) == 'object' && container.xtype) {
12370         config = container;
12371         container = config.container;
12372         buttons = config.buttons || []; // not really - use items!!
12373     }
12374     var xitems = [];
12375     if (config && config.items) {
12376         xitems = config.items;
12377         delete config.items;
12378     }
12379     Roo.apply(this, config);
12380     this.buttons = buttons;
12381     
12382     if(container){
12383         this.render(container);
12384     }
12385     this.xitems = xitems;
12386     Roo.each(xitems, function(b) {
12387         this.add(b);
12388     }, this);
12389     
12390 };
12391
12392 Roo.Toolbar.prototype = {
12393     /**
12394      * @cfg {Array} items
12395      * array of button configs or elements to add (will be converted to a MixedCollection)
12396      */
12397     
12398     /**
12399      * @cfg {String/HTMLElement/Element} container
12400      * The id or element that will contain the toolbar
12401      */
12402     // private
12403     render : function(ct){
12404         this.el = Roo.get(ct);
12405         if(this.cls){
12406             this.el.addClass(this.cls);
12407         }
12408         // using a table allows for vertical alignment
12409         // 100% width is needed by Safari...
12410         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
12411         this.tr = this.el.child("tr", true);
12412         var autoId = 0;
12413         this.items = new Roo.util.MixedCollection(false, function(o){
12414             return o.id || ("item" + (++autoId));
12415         });
12416         if(this.buttons){
12417             this.add.apply(this, this.buttons);
12418             delete this.buttons;
12419         }
12420     },
12421
12422     /**
12423      * Adds element(s) to the toolbar -- this function takes a variable number of 
12424      * arguments of mixed type and adds them to the toolbar.
12425      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
12426      * <ul>
12427      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
12428      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
12429      * <li>Field: Any form field (equivalent to {@link #addField})</li>
12430      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
12431      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
12432      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
12433      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
12434      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
12435      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
12436      * </ul>
12437      * @param {Mixed} arg2
12438      * @param {Mixed} etc.
12439      */
12440     add : function(){
12441         var a = arguments, l = a.length;
12442         for(var i = 0; i < l; i++){
12443             this._add(a[i]);
12444         }
12445     },
12446     // private..
12447     _add : function(el) {
12448         
12449         if (el.xtype) {
12450             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
12451         }
12452         
12453         if (el.applyTo){ // some kind of form field
12454             return this.addField(el);
12455         } 
12456         if (el.render){ // some kind of Toolbar.Item
12457             return this.addItem(el);
12458         }
12459         if (typeof el == "string"){ // string
12460             if(el == "separator" || el == "-"){
12461                 return this.addSeparator();
12462             }
12463             if (el == " "){
12464                 return this.addSpacer();
12465             }
12466             if(el == "->"){
12467                 return this.addFill();
12468             }
12469             return this.addText(el);
12470             
12471         }
12472         if(el.tagName){ // element
12473             return this.addElement(el);
12474         }
12475         if(typeof el == "object"){ // must be button config?
12476             return this.addButton(el);
12477         }
12478         // and now what?!?!
12479         return false;
12480         
12481     },
12482     
12483     /**
12484      * Add an Xtype element
12485      * @param {Object} xtype Xtype Object
12486      * @return {Object} created Object
12487      */
12488     addxtype : function(e){
12489         return this.add(e);  
12490     },
12491     
12492     /**
12493      * Returns the Element for this toolbar.
12494      * @return {Roo.Element}
12495      */
12496     getEl : function(){
12497         return this.el;  
12498     },
12499     
12500     /**
12501      * Adds a separator
12502      * @return {Roo.Toolbar.Item} The separator item
12503      */
12504     addSeparator : function(){
12505         return this.addItem(new Roo.Toolbar.Separator());
12506     },
12507
12508     /**
12509      * Adds a spacer element
12510      * @return {Roo.Toolbar.Spacer} The spacer item
12511      */
12512     addSpacer : function(){
12513         return this.addItem(new Roo.Toolbar.Spacer());
12514     },
12515
12516     /**
12517      * Adds a fill element that forces subsequent additions to the right side of the toolbar
12518      * @return {Roo.Toolbar.Fill} The fill item
12519      */
12520     addFill : function(){
12521         return this.addItem(new Roo.Toolbar.Fill());
12522     },
12523
12524     /**
12525      * Adds any standard HTML element to the toolbar
12526      * @param {String/HTMLElement/Element} el The element or id of the element to add
12527      * @return {Roo.Toolbar.Item} The element's item
12528      */
12529     addElement : function(el){
12530         return this.addItem(new Roo.Toolbar.Item(el));
12531     },
12532     /**
12533      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
12534      * @type Roo.util.MixedCollection  
12535      */
12536     items : false,
12537      
12538     /**
12539      * Adds any Toolbar.Item or subclass
12540      * @param {Roo.Toolbar.Item} item
12541      * @return {Roo.Toolbar.Item} The item
12542      */
12543     addItem : function(item){
12544         var td = this.nextBlock();
12545         item.render(td);
12546         this.items.add(item);
12547         return item;
12548     },
12549     
12550     /**
12551      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
12552      * @param {Object/Array} config A button config or array of configs
12553      * @return {Roo.Toolbar.Button/Array}
12554      */
12555     addButton : function(config){
12556         if(config instanceof Array){
12557             var buttons = [];
12558             for(var i = 0, len = config.length; i < len; i++) {
12559                 buttons.push(this.addButton(config[i]));
12560             }
12561             return buttons;
12562         }
12563         var b = config;
12564         if(!(config instanceof Roo.Toolbar.Button)){
12565             b = config.split ?
12566                 new Roo.Toolbar.SplitButton(config) :
12567                 new Roo.Toolbar.Button(config);
12568         }
12569         var td = this.nextBlock();
12570         b.render(td);
12571         this.items.add(b);
12572         return b;
12573     },
12574     
12575     /**
12576      * Adds text to the toolbar
12577      * @param {String} text The text to add
12578      * @return {Roo.Toolbar.Item} The element's item
12579      */
12580     addText : function(text){
12581         return this.addItem(new Roo.Toolbar.TextItem(text));
12582     },
12583     
12584     /**
12585      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
12586      * @param {Number} index The index where the item is to be inserted
12587      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
12588      * @return {Roo.Toolbar.Button/Item}
12589      */
12590     insertButton : function(index, item){
12591         if(item instanceof Array){
12592             var buttons = [];
12593             for(var i = 0, len = item.length; i < len; i++) {
12594                buttons.push(this.insertButton(index + i, item[i]));
12595             }
12596             return buttons;
12597         }
12598         if (!(item instanceof Roo.Toolbar.Button)){
12599            item = new Roo.Toolbar.Button(item);
12600         }
12601         var td = document.createElement("td");
12602         this.tr.insertBefore(td, this.tr.childNodes[index]);
12603         item.render(td);
12604         this.items.insert(index, item);
12605         return item;
12606     },
12607     
12608     /**
12609      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
12610      * @param {Object} config
12611      * @return {Roo.Toolbar.Item} The element's item
12612      */
12613     addDom : function(config, returnEl){
12614         var td = this.nextBlock();
12615         Roo.DomHelper.overwrite(td, config);
12616         var ti = new Roo.Toolbar.Item(td.firstChild);
12617         ti.render(td);
12618         this.items.add(ti);
12619         return ti;
12620     },
12621
12622     /**
12623      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
12624      * @type Roo.util.MixedCollection  
12625      */
12626     fields : false,
12627     
12628     /**
12629      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
12630      * Note: the field should not have been rendered yet. For a field that has already been
12631      * rendered, use {@link #addElement}.
12632      * @param {Roo.form.Field} field
12633      * @return {Roo.ToolbarItem}
12634      */
12635      
12636       
12637     addField : function(field) {
12638         if (!this.fields) {
12639             var autoId = 0;
12640             this.fields = new Roo.util.MixedCollection(false, function(o){
12641                 return o.id || ("item" + (++autoId));
12642             });
12643
12644         }
12645         
12646         var td = this.nextBlock();
12647         field.render(td);
12648         var ti = new Roo.Toolbar.Item(td.firstChild);
12649         ti.render(td);
12650         this.items.add(ti);
12651         this.fields.add(field);
12652         return ti;
12653     },
12654     /**
12655      * Hide the toolbar
12656      * @method hide
12657      */
12658      
12659       
12660     hide : function()
12661     {
12662         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
12663         this.el.child('div').hide();
12664     },
12665     /**
12666      * Show the toolbar
12667      * @method show
12668      */
12669     show : function()
12670     {
12671         this.el.child('div').show();
12672     },
12673       
12674     // private
12675     nextBlock : function(){
12676         var td = document.createElement("td");
12677         this.tr.appendChild(td);
12678         return td;
12679     },
12680
12681     // private
12682     destroy : function(){
12683         if(this.items){ // rendered?
12684             Roo.destroy.apply(Roo, this.items.items);
12685         }
12686         if(this.fields){ // rendered?
12687             Roo.destroy.apply(Roo, this.fields.items);
12688         }
12689         Roo.Element.uncache(this.el, this.tr);
12690     }
12691 };
12692
12693 /**
12694  * @class Roo.Toolbar.Item
12695  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
12696  * @constructor
12697  * Creates a new Item
12698  * @param {HTMLElement} el 
12699  */
12700 Roo.Toolbar.Item = function(el){
12701     this.el = Roo.getDom(el);
12702     this.id = Roo.id(this.el);
12703     this.hidden = false;
12704 };
12705
12706 Roo.Toolbar.Item.prototype = {
12707     
12708     /**
12709      * Get this item's HTML Element
12710      * @return {HTMLElement}
12711      */
12712     getEl : function(){
12713        return this.el;  
12714     },
12715
12716     // private
12717     render : function(td){
12718         this.td = td;
12719         td.appendChild(this.el);
12720     },
12721     
12722     /**
12723      * Removes and destroys this item.
12724      */
12725     destroy : function(){
12726         this.td.parentNode.removeChild(this.td);
12727     },
12728     
12729     /**
12730      * Shows this item.
12731      */
12732     show: function(){
12733         this.hidden = false;
12734         this.td.style.display = "";
12735     },
12736     
12737     /**
12738      * Hides this item.
12739      */
12740     hide: function(){
12741         this.hidden = true;
12742         this.td.style.display = "none";
12743     },
12744     
12745     /**
12746      * Convenience function for boolean show/hide.
12747      * @param {Boolean} visible true to show/false to hide
12748      */
12749     setVisible: function(visible){
12750         if(visible) {
12751             this.show();
12752         }else{
12753             this.hide();
12754         }
12755     },
12756     
12757     /**
12758      * Try to focus this item.
12759      */
12760     focus : function(){
12761         Roo.fly(this.el).focus();
12762     },
12763     
12764     /**
12765      * Disables this item.
12766      */
12767     disable : function(){
12768         Roo.fly(this.td).addClass("x-item-disabled");
12769         this.disabled = true;
12770         this.el.disabled = true;
12771     },
12772     
12773     /**
12774      * Enables this item.
12775      */
12776     enable : function(){
12777         Roo.fly(this.td).removeClass("x-item-disabled");
12778         this.disabled = false;
12779         this.el.disabled = false;
12780     }
12781 };
12782
12783
12784 /**
12785  * @class Roo.Toolbar.Separator
12786  * @extends Roo.Toolbar.Item
12787  * A simple toolbar separator class
12788  * @constructor
12789  * Creates a new Separator
12790  */
12791 Roo.Toolbar.Separator = function(){
12792     var s = document.createElement("span");
12793     s.className = "ytb-sep";
12794     Roo.Toolbar.Separator.superclass.constructor.call(this, s);
12795 };
12796 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
12797     enable:Roo.emptyFn,
12798     disable:Roo.emptyFn,
12799     focus:Roo.emptyFn
12800 });
12801
12802 /**
12803  * @class Roo.Toolbar.Spacer
12804  * @extends Roo.Toolbar.Item
12805  * A simple element that adds extra horizontal space to a toolbar.
12806  * @constructor
12807  * Creates a new Spacer
12808  */
12809 Roo.Toolbar.Spacer = function(){
12810     var s = document.createElement("div");
12811     s.className = "ytb-spacer";
12812     Roo.Toolbar.Spacer.superclass.constructor.call(this, s);
12813 };
12814 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
12815     enable:Roo.emptyFn,
12816     disable:Roo.emptyFn,
12817     focus:Roo.emptyFn
12818 });
12819
12820 /**
12821  * @class Roo.Toolbar.Fill
12822  * @extends Roo.Toolbar.Spacer
12823  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
12824  * @constructor
12825  * Creates a new Spacer
12826  */
12827 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
12828     // private
12829     render : function(td){
12830         td.style.width = '100%';
12831         Roo.Toolbar.Fill.superclass.render.call(this, td);
12832     }
12833 });
12834
12835 /**
12836  * @class Roo.Toolbar.TextItem
12837  * @extends Roo.Toolbar.Item
12838  * A simple class that renders text directly into a toolbar.
12839  * @constructor
12840  * Creates a new TextItem
12841  * @param {String} text
12842  */
12843 Roo.Toolbar.TextItem = function(text){
12844     if (typeof(text) == 'object') {
12845         text = text.text;
12846     }
12847     var s = document.createElement("span");
12848     s.className = "ytb-text";
12849     s.innerHTML = text;
12850     Roo.Toolbar.TextItem.superclass.constructor.call(this, s);
12851 };
12852 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
12853     enable:Roo.emptyFn,
12854     disable:Roo.emptyFn,
12855     focus:Roo.emptyFn
12856 });
12857
12858 /**
12859  * @class Roo.Toolbar.Button
12860  * @extends Roo.Button
12861  * A button that renders into a toolbar.
12862  * @constructor
12863  * Creates a new Button
12864  * @param {Object} config A standard {@link Roo.Button} config object
12865  */
12866 Roo.Toolbar.Button = function(config){
12867     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
12868 };
12869 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
12870     render : function(td){
12871         this.td = td;
12872         Roo.Toolbar.Button.superclass.render.call(this, td);
12873     },
12874     
12875     /**
12876      * Removes and destroys this button
12877      */
12878     destroy : function(){
12879         Roo.Toolbar.Button.superclass.destroy.call(this);
12880         this.td.parentNode.removeChild(this.td);
12881     },
12882     
12883     /**
12884      * Shows this button
12885      */
12886     show: function(){
12887         this.hidden = false;
12888         this.td.style.display = "";
12889     },
12890     
12891     /**
12892      * Hides this button
12893      */
12894     hide: function(){
12895         this.hidden = true;
12896         this.td.style.display = "none";
12897     },
12898
12899     /**
12900      * Disables this item
12901      */
12902     disable : function(){
12903         Roo.fly(this.td).addClass("x-item-disabled");
12904         this.disabled = true;
12905     },
12906
12907     /**
12908      * Enables this item
12909      */
12910     enable : function(){
12911         Roo.fly(this.td).removeClass("x-item-disabled");
12912         this.disabled = false;
12913     }
12914 });
12915 // backwards compat
12916 Roo.ToolbarButton = Roo.Toolbar.Button;
12917
12918 /**
12919  * @class Roo.Toolbar.SplitButton
12920  * @extends Roo.SplitButton
12921  * A menu button that renders into a toolbar.
12922  * @constructor
12923  * Creates a new SplitButton
12924  * @param {Object} config A standard {@link Roo.SplitButton} config object
12925  */
12926 Roo.Toolbar.SplitButton = function(config){
12927     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
12928 };
12929 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
12930     render : function(td){
12931         this.td = td;
12932         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
12933     },
12934     
12935     /**
12936      * Removes and destroys this button
12937      */
12938     destroy : function(){
12939         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
12940         this.td.parentNode.removeChild(this.td);
12941     },
12942     
12943     /**
12944      * Shows this button
12945      */
12946     show: function(){
12947         this.hidden = false;
12948         this.td.style.display = "";
12949     },
12950     
12951     /**
12952      * Hides this button
12953      */
12954     hide: function(){
12955         this.hidden = true;
12956         this.td.style.display = "none";
12957     }
12958 });
12959
12960 // backwards compat
12961 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
12962  * Based on:
12963  * Ext JS Library 1.1.1
12964  * Copyright(c) 2006-2007, Ext JS, LLC.
12965  *
12966  * Originally Released Under LGPL - original licence link has changed is not relivant.
12967  *
12968  * Fork - LGPL
12969  * <script type="text/javascript">
12970  */
12971  
12972 /**
12973  * @class Roo.PagingToolbar
12974  * @extends Roo.Toolbar
12975  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
12976  * @constructor
12977  * Create a new PagingToolbar
12978  * @param {Object} config The config object
12979  */
12980 Roo.PagingToolbar = function(el, ds, config)
12981 {
12982     // old args format still supported... - xtype is prefered..
12983     if (typeof(el) == 'object' && el.xtype) {
12984         // created from xtype...
12985         config = el;
12986         ds = el.dataSource;
12987         el = config.container;
12988     }
12989     var items = [];
12990     if (config.items) {
12991         items = config.items;
12992         config.items = [];
12993     }
12994     
12995     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
12996     this.ds = ds;
12997     this.cursor = 0;
12998     this.renderButtons(this.el);
12999     this.bind(ds);
13000     
13001     // supprot items array.
13002    
13003     Roo.each(items, function(e) {
13004         this.add(Roo.factory(e));
13005     },this);
13006     
13007 };
13008
13009 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
13010     /**
13011      * @cfg {Roo.data.Store} dataSource
13012      * The underlying data store providing the paged data
13013      */
13014     /**
13015      * @cfg {String/HTMLElement/Element} container
13016      * container The id or element that will contain the toolbar
13017      */
13018     /**
13019      * @cfg {Boolean} displayInfo
13020      * True to display the displayMsg (defaults to false)
13021      */
13022     /**
13023      * @cfg {Number} pageSize
13024      * The number of records to display per page (defaults to 20)
13025      */
13026     pageSize: 20,
13027     /**
13028      * @cfg {String} displayMsg
13029      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
13030      */
13031     displayMsg : 'Displaying {0} - {1} of {2}',
13032     /**
13033      * @cfg {String} emptyMsg
13034      * The message to display when no records are found (defaults to "No data to display")
13035      */
13036     emptyMsg : 'No data to display',
13037     /**
13038      * Customizable piece of the default paging text (defaults to "Page")
13039      * @type String
13040      */
13041     beforePageText : "Page",
13042     /**
13043      * Customizable piece of the default paging text (defaults to "of %0")
13044      * @type String
13045      */
13046     afterPageText : "of {0}",
13047     /**
13048      * Customizable piece of the default paging text (defaults to "First Page")
13049      * @type String
13050      */
13051     firstText : "First Page",
13052     /**
13053      * Customizable piece of the default paging text (defaults to "Previous Page")
13054      * @type String
13055      */
13056     prevText : "Previous Page",
13057     /**
13058      * Customizable piece of the default paging text (defaults to "Next Page")
13059      * @type String
13060      */
13061     nextText : "Next Page",
13062     /**
13063      * Customizable piece of the default paging text (defaults to "Last Page")
13064      * @type String
13065      */
13066     lastText : "Last Page",
13067     /**
13068      * Customizable piece of the default paging text (defaults to "Refresh")
13069      * @type String
13070      */
13071     refreshText : "Refresh",
13072
13073     // private
13074     renderButtons : function(el){
13075         Roo.PagingToolbar.superclass.render.call(this, el);
13076         this.first = this.addButton({
13077             tooltip: this.firstText,
13078             cls: "x-btn-icon x-grid-page-first",
13079             disabled: true,
13080             handler: this.onClick.createDelegate(this, ["first"])
13081         });
13082         this.prev = this.addButton({
13083             tooltip: this.prevText,
13084             cls: "x-btn-icon x-grid-page-prev",
13085             disabled: true,
13086             handler: this.onClick.createDelegate(this, ["prev"])
13087         });
13088         //this.addSeparator();
13089         this.add(this.beforePageText);
13090         this.field = Roo.get(this.addDom({
13091            tag: "input",
13092            type: "text",
13093            size: "3",
13094            value: "1",
13095            cls: "x-grid-page-number"
13096         }).el);
13097         this.field.on("keydown", this.onPagingKeydown, this);
13098         this.field.on("focus", function(){this.dom.select();});
13099         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
13100         this.field.setHeight(18);
13101         //this.addSeparator();
13102         this.next = this.addButton({
13103             tooltip: this.nextText,
13104             cls: "x-btn-icon x-grid-page-next",
13105             disabled: true,
13106             handler: this.onClick.createDelegate(this, ["next"])
13107         });
13108         this.last = this.addButton({
13109             tooltip: this.lastText,
13110             cls: "x-btn-icon x-grid-page-last",
13111             disabled: true,
13112             handler: this.onClick.createDelegate(this, ["last"])
13113         });
13114         //this.addSeparator();
13115         this.loading = this.addButton({
13116             tooltip: this.refreshText,
13117             cls: "x-btn-icon x-grid-loading",
13118             handler: this.onClick.createDelegate(this, ["refresh"])
13119         });
13120
13121         if(this.displayInfo){
13122             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
13123         }
13124     },
13125
13126     // private
13127     updateInfo : function(){
13128         if(this.displayEl){
13129             var count = this.ds.getCount();
13130             var msg = count == 0 ?
13131                 this.emptyMsg :
13132                 String.format(
13133                     this.displayMsg,
13134                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
13135                 );
13136             this.displayEl.update(msg);
13137         }
13138     },
13139
13140     // private
13141     onLoad : function(ds, r, o){
13142        this.cursor = o.params ? o.params.start : 0;
13143        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
13144
13145        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
13146        this.field.dom.value = ap;
13147        this.first.setDisabled(ap == 1);
13148        this.prev.setDisabled(ap == 1);
13149        this.next.setDisabled(ap == ps);
13150        this.last.setDisabled(ap == ps);
13151        this.loading.enable();
13152        this.updateInfo();
13153     },
13154
13155     // private
13156     getPageData : function(){
13157         var total = this.ds.getTotalCount();
13158         return {
13159             total : total,
13160             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
13161             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
13162         };
13163     },
13164
13165     // private
13166     onLoadError : function(){
13167         this.loading.enable();
13168     },
13169
13170     // private
13171     onPagingKeydown : function(e){
13172         var k = e.getKey();
13173         var d = this.getPageData();
13174         if(k == e.RETURN){
13175             var v = this.field.dom.value, pageNum;
13176             if(!v || isNaN(pageNum = parseInt(v, 10))){
13177                 this.field.dom.value = d.activePage;
13178                 return;
13179             }
13180             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
13181             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
13182             e.stopEvent();
13183         }
13184         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))
13185         {
13186           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
13187           this.field.dom.value = pageNum;
13188           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
13189           e.stopEvent();
13190         }
13191         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
13192         {
13193           var v = this.field.dom.value, pageNum; 
13194           var increment = (e.shiftKey) ? 10 : 1;
13195           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
13196             increment *= -1;
13197           if(!v || isNaN(pageNum = parseInt(v, 10))) {
13198             this.field.dom.value = d.activePage;
13199             return;
13200           }
13201           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
13202           {
13203             this.field.dom.value = parseInt(v, 10) + increment;
13204             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
13205             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
13206           }
13207           e.stopEvent();
13208         }
13209     },
13210
13211     // private
13212     beforeLoad : function(){
13213         if(this.loading){
13214             this.loading.disable();
13215         }
13216     },
13217
13218     // private
13219     onClick : function(which){
13220         var ds = this.ds;
13221         switch(which){
13222             case "first":
13223                 ds.load({params:{start: 0, limit: this.pageSize}});
13224             break;
13225             case "prev":
13226                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
13227             break;
13228             case "next":
13229                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
13230             break;
13231             case "last":
13232                 var total = ds.getTotalCount();
13233                 var extra = total % this.pageSize;
13234                 var lastStart = extra ? (total - extra) : total-this.pageSize;
13235                 ds.load({params:{start: lastStart, limit: this.pageSize}});
13236             break;
13237             case "refresh":
13238                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
13239             break;
13240         }
13241     },
13242
13243     /**
13244      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
13245      * @param {Roo.data.Store} store The data store to unbind
13246      */
13247     unbind : function(ds){
13248         ds.un("beforeload", this.beforeLoad, this);
13249         ds.un("load", this.onLoad, this);
13250         ds.un("loadexception", this.onLoadError, this);
13251         ds.un("remove", this.updateInfo, this);
13252         ds.un("add", this.updateInfo, this);
13253         this.ds = undefined;
13254     },
13255
13256     /**
13257      * Binds the paging toolbar to the specified {@link Roo.data.Store}
13258      * @param {Roo.data.Store} store The data store to bind
13259      */
13260     bind : function(ds){
13261         ds.on("beforeload", this.beforeLoad, this);
13262         ds.on("load", this.onLoad, this);
13263         ds.on("loadexception", this.onLoadError, this);
13264         ds.on("remove", this.updateInfo, this);
13265         ds.on("add", this.updateInfo, this);
13266         this.ds = ds;
13267     }
13268 });/*
13269  * Based on:
13270  * Ext JS Library 1.1.1
13271  * Copyright(c) 2006-2007, Ext JS, LLC.
13272  *
13273  * Originally Released Under LGPL - original licence link has changed is not relivant.
13274  *
13275  * Fork - LGPL
13276  * <script type="text/javascript">
13277  */
13278
13279 /**
13280  * @class Roo.Resizable
13281  * @extends Roo.util.Observable
13282  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
13283  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
13284  * 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
13285  * the element will be wrapped for you automatically.</p>
13286  * <p>Here is the list of valid resize handles:</p>
13287  * <pre>
13288 Value   Description
13289 ------  -------------------
13290  'n'     north
13291  's'     south
13292  'e'     east
13293  'w'     west
13294  'nw'    northwest
13295  'sw'    southwest
13296  'se'    southeast
13297  'ne'    northeast
13298  'hd'    horizontal drag
13299  'all'   all
13300 </pre>
13301  * <p>Here's an example showing the creation of a typical Resizable:</p>
13302  * <pre><code>
13303 var resizer = new Roo.Resizable("element-id", {
13304     handles: 'all',
13305     minWidth: 200,
13306     minHeight: 100,
13307     maxWidth: 500,
13308     maxHeight: 400,
13309     pinned: true
13310 });
13311 resizer.on("resize", myHandler);
13312 </code></pre>
13313  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
13314  * resizer.east.setDisplayed(false);</p>
13315  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
13316  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
13317  * resize operation's new size (defaults to [0, 0])
13318  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
13319  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
13320  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
13321  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
13322  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
13323  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
13324  * @cfg {Number} width The width of the element in pixels (defaults to null)
13325  * @cfg {Number} height The height of the element in pixels (defaults to null)
13326  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
13327  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
13328  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
13329  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
13330  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
13331  * in favor of the handles config option (defaults to false)
13332  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
13333  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
13334  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
13335  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
13336  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
13337  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
13338  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
13339  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
13340  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
13341  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
13342  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
13343  * @constructor
13344  * Create a new resizable component
13345  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
13346  * @param {Object} config configuration options
13347   */
13348 Roo.Resizable = function(el, config)
13349 {
13350     this.el = Roo.get(el);
13351
13352     if(config && config.wrap){
13353         config.resizeChild = this.el;
13354         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
13355         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
13356         this.el.setStyle("overflow", "hidden");
13357         this.el.setPositioning(config.resizeChild.getPositioning());
13358         config.resizeChild.clearPositioning();
13359         if(!config.width || !config.height){
13360             var csize = config.resizeChild.getSize();
13361             this.el.setSize(csize.width, csize.height);
13362         }
13363         if(config.pinned && !config.adjustments){
13364             config.adjustments = "auto";
13365         }
13366     }
13367
13368     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
13369     this.proxy.unselectable();
13370     this.proxy.enableDisplayMode('block');
13371
13372     Roo.apply(this, config);
13373
13374     if(this.pinned){
13375         this.disableTrackOver = true;
13376         this.el.addClass("x-resizable-pinned");
13377     }
13378     // if the element isn't positioned, make it relative
13379     var position = this.el.getStyle("position");
13380     if(position != "absolute" && position != "fixed"){
13381         this.el.setStyle("position", "relative");
13382     }
13383     if(!this.handles){ // no handles passed, must be legacy style
13384         this.handles = 's,e,se';
13385         if(this.multiDirectional){
13386             this.handles += ',n,w';
13387         }
13388     }
13389     if(this.handles == "all"){
13390         this.handles = "n s e w ne nw se sw";
13391     }
13392     var hs = this.handles.split(/\s*?[,;]\s*?| /);
13393     var ps = Roo.Resizable.positions;
13394     for(var i = 0, len = hs.length; i < len; i++){
13395         if(hs[i] && ps[hs[i]]){
13396             var pos = ps[hs[i]];
13397             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
13398         }
13399     }
13400     // legacy
13401     this.corner = this.southeast;
13402     
13403     // updateBox = the box can move..
13404     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
13405         this.updateBox = true;
13406     }
13407
13408     this.activeHandle = null;
13409
13410     if(this.resizeChild){
13411         if(typeof this.resizeChild == "boolean"){
13412             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
13413         }else{
13414             this.resizeChild = Roo.get(this.resizeChild, true);
13415         }
13416     }
13417     
13418     if(this.adjustments == "auto"){
13419         var rc = this.resizeChild;
13420         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
13421         if(rc && (hw || hn)){
13422             rc.position("relative");
13423             rc.setLeft(hw ? hw.el.getWidth() : 0);
13424             rc.setTop(hn ? hn.el.getHeight() : 0);
13425         }
13426         this.adjustments = [
13427             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
13428             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
13429         ];
13430     }
13431
13432     if(this.draggable){
13433         this.dd = this.dynamic ?
13434             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
13435         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
13436     }
13437
13438     // public events
13439     this.addEvents({
13440         /**
13441          * @event beforeresize
13442          * Fired before resize is allowed. Set enabled to false to cancel resize.
13443          * @param {Roo.Resizable} this
13444          * @param {Roo.EventObject} e The mousedown event
13445          */
13446         "beforeresize" : true,
13447         /**
13448          * @event resize
13449          * Fired after a resize.
13450          * @param {Roo.Resizable} this
13451          * @param {Number} width The new width
13452          * @param {Number} height The new height
13453          * @param {Roo.EventObject} e The mouseup event
13454          */
13455         "resize" : true
13456     });
13457
13458     if(this.width !== null && this.height !== null){
13459         this.resizeTo(this.width, this.height);
13460     }else{
13461         this.updateChildSize();
13462     }
13463     if(Roo.isIE){
13464         this.el.dom.style.zoom = 1;
13465     }
13466     Roo.Resizable.superclass.constructor.call(this);
13467 };
13468
13469 Roo.extend(Roo.Resizable, Roo.util.Observable, {
13470         resizeChild : false,
13471         adjustments : [0, 0],
13472         minWidth : 5,
13473         minHeight : 5,
13474         maxWidth : 10000,
13475         maxHeight : 10000,
13476         enabled : true,
13477         animate : false,
13478         duration : .35,
13479         dynamic : false,
13480         handles : false,
13481         multiDirectional : false,
13482         disableTrackOver : false,
13483         easing : 'easeOutStrong',
13484         widthIncrement : 0,
13485         heightIncrement : 0,
13486         pinned : false,
13487         width : null,
13488         height : null,
13489         preserveRatio : false,
13490         transparent: false,
13491         minX: 0,
13492         minY: 0,
13493         draggable: false,
13494
13495         /**
13496          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
13497          */
13498         constrainTo: undefined,
13499         /**
13500          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
13501          */
13502         resizeRegion: undefined,
13503
13504
13505     /**
13506      * Perform a manual resize
13507      * @param {Number} width
13508      * @param {Number} height
13509      */
13510     resizeTo : function(width, height){
13511         this.el.setSize(width, height);
13512         this.updateChildSize();
13513         this.fireEvent("resize", this, width, height, null);
13514     },
13515
13516     // private
13517     startSizing : function(e, handle){
13518         this.fireEvent("beforeresize", this, e);
13519         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
13520
13521             if(!this.overlay){
13522                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
13523                 this.overlay.unselectable();
13524                 this.overlay.enableDisplayMode("block");
13525                 this.overlay.on("mousemove", this.onMouseMove, this);
13526                 this.overlay.on("mouseup", this.onMouseUp, this);
13527             }
13528             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
13529
13530             this.resizing = true;
13531             this.startBox = this.el.getBox();
13532             this.startPoint = e.getXY();
13533             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
13534                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
13535
13536             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
13537             this.overlay.show();
13538
13539             if(this.constrainTo) {
13540                 var ct = Roo.get(this.constrainTo);
13541                 this.resizeRegion = ct.getRegion().adjust(
13542                     ct.getFrameWidth('t'),
13543                     ct.getFrameWidth('l'),
13544                     -ct.getFrameWidth('b'),
13545                     -ct.getFrameWidth('r')
13546                 );
13547             }
13548
13549             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
13550             this.proxy.show();
13551             this.proxy.setBox(this.startBox);
13552             if(!this.dynamic){
13553                 this.proxy.setStyle('visibility', 'visible');
13554             }
13555         }
13556     },
13557
13558     // private
13559     onMouseDown : function(handle, e){
13560         if(this.enabled){
13561             e.stopEvent();
13562             this.activeHandle = handle;
13563             this.startSizing(e, handle);
13564         }
13565     },
13566
13567     // private
13568     onMouseUp : function(e){
13569         var size = this.resizeElement();
13570         this.resizing = false;
13571         this.handleOut();
13572         this.overlay.hide();
13573         this.proxy.hide();
13574         this.fireEvent("resize", this, size.width, size.height, e);
13575     },
13576
13577     // private
13578     updateChildSize : function(){
13579         if(this.resizeChild){
13580             var el = this.el;
13581             var child = this.resizeChild;
13582             var adj = this.adjustments;
13583             if(el.dom.offsetWidth){
13584                 var b = el.getSize(true);
13585                 child.setSize(b.width+adj[0], b.height+adj[1]);
13586             }
13587             // Second call here for IE
13588             // The first call enables instant resizing and
13589             // the second call corrects scroll bars if they
13590             // exist
13591             if(Roo.isIE){
13592                 setTimeout(function(){
13593                     if(el.dom.offsetWidth){
13594                         var b = el.getSize(true);
13595                         child.setSize(b.width+adj[0], b.height+adj[1]);
13596                     }
13597                 }, 10);
13598             }
13599         }
13600     },
13601
13602     // private
13603     snap : function(value, inc, min){
13604         if(!inc || !value) return value;
13605         var newValue = value;
13606         var m = value % inc;
13607         if(m > 0){
13608             if(m > (inc/2)){
13609                 newValue = value + (inc-m);
13610             }else{
13611                 newValue = value - m;
13612             }
13613         }
13614         return Math.max(min, newValue);
13615     },
13616
13617     // private
13618     resizeElement : function(){
13619         var box = this.proxy.getBox();
13620         if(this.updateBox){
13621             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
13622         }else{
13623             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
13624         }
13625         this.updateChildSize();
13626         if(!this.dynamic){
13627             this.proxy.hide();
13628         }
13629         return box;
13630     },
13631
13632     // private
13633     constrain : function(v, diff, m, mx){
13634         if(v - diff < m){
13635             diff = v - m;
13636         }else if(v - diff > mx){
13637             diff = mx - v;
13638         }
13639         return diff;
13640     },
13641
13642     // private
13643     onMouseMove : function(e){
13644         if(this.enabled){
13645             try{// try catch so if something goes wrong the user doesn't get hung
13646
13647             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
13648                 return;
13649             }
13650
13651             //var curXY = this.startPoint;
13652             var curSize = this.curSize || this.startBox;
13653             var x = this.startBox.x, y = this.startBox.y;
13654             var ox = x, oy = y;
13655             var w = curSize.width, h = curSize.height;
13656             var ow = w, oh = h;
13657             var mw = this.minWidth, mh = this.minHeight;
13658             var mxw = this.maxWidth, mxh = this.maxHeight;
13659             var wi = this.widthIncrement;
13660             var hi = this.heightIncrement;
13661
13662             var eventXY = e.getXY();
13663             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
13664             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
13665
13666             var pos = this.activeHandle.position;
13667
13668             switch(pos){
13669                 case "east":
13670                     w += diffX;
13671                     w = Math.min(Math.max(mw, w), mxw);
13672                     break;
13673              
13674                 case "south":
13675                     h += diffY;
13676                     h = Math.min(Math.max(mh, h), mxh);
13677                     break;
13678                 case "southeast":
13679                     w += diffX;
13680                     h += diffY;
13681                     w = Math.min(Math.max(mw, w), mxw);
13682                     h = Math.min(Math.max(mh, h), mxh);
13683                     break;
13684                 case "north":
13685                     diffY = this.constrain(h, diffY, mh, mxh);
13686                     y += diffY;
13687                     h -= diffY;
13688                     break;
13689                 case "hdrag":
13690                     
13691                     if (wi) {
13692                         var adiffX = Math.abs(diffX);
13693                         var sub = (adiffX % wi); // how much 
13694                         if (sub > (wi/2)) { // far enough to snap
13695                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
13696                         } else {
13697                             // remove difference.. 
13698                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
13699                         }
13700                     }
13701                     x += diffX;
13702                     x = Math.max(this.minX, x);
13703                     break;
13704                 case "west":
13705                     diffX = this.constrain(w, diffX, mw, mxw);
13706                     x += diffX;
13707                     w -= diffX;
13708                     break;
13709                 case "northeast":
13710                     w += diffX;
13711                     w = Math.min(Math.max(mw, w), mxw);
13712                     diffY = this.constrain(h, diffY, mh, mxh);
13713                     y += diffY;
13714                     h -= diffY;
13715                     break;
13716                 case "northwest":
13717                     diffX = this.constrain(w, diffX, mw, mxw);
13718                     diffY = this.constrain(h, diffY, mh, mxh);
13719                     y += diffY;
13720                     h -= diffY;
13721                     x += diffX;
13722                     w -= diffX;
13723                     break;
13724                case "southwest":
13725                     diffX = this.constrain(w, diffX, mw, mxw);
13726                     h += diffY;
13727                     h = Math.min(Math.max(mh, h), mxh);
13728                     x += diffX;
13729                     w -= diffX;
13730                     break;
13731             }
13732
13733             var sw = this.snap(w, wi, mw);
13734             var sh = this.snap(h, hi, mh);
13735             if(sw != w || sh != h){
13736                 switch(pos){
13737                     case "northeast":
13738                         y -= sh - h;
13739                     break;
13740                     case "north":
13741                         y -= sh - h;
13742                         break;
13743                     case "southwest":
13744                         x -= sw - w;
13745                     break;
13746                     case "west":
13747                         x -= sw - w;
13748                         break;
13749                     case "northwest":
13750                         x -= sw - w;
13751                         y -= sh - h;
13752                     break;
13753                 }
13754                 w = sw;
13755                 h = sh;
13756             }
13757
13758             if(this.preserveRatio){
13759                 switch(pos){
13760                     case "southeast":
13761                     case "east":
13762                         h = oh * (w/ow);
13763                         h = Math.min(Math.max(mh, h), mxh);
13764                         w = ow * (h/oh);
13765                        break;
13766                     case "south":
13767                         w = ow * (h/oh);
13768                         w = Math.min(Math.max(mw, w), mxw);
13769                         h = oh * (w/ow);
13770                         break;
13771                     case "northeast":
13772                         w = ow * (h/oh);
13773                         w = Math.min(Math.max(mw, w), mxw);
13774                         h = oh * (w/ow);
13775                     break;
13776                     case "north":
13777                         var tw = w;
13778                         w = ow * (h/oh);
13779                         w = Math.min(Math.max(mw, w), mxw);
13780                         h = oh * (w/ow);
13781                         x += (tw - w) / 2;
13782                         break;
13783                     case "southwest":
13784                         h = oh * (w/ow);
13785                         h = Math.min(Math.max(mh, h), mxh);
13786                         var tw = w;
13787                         w = ow * (h/oh);
13788                         x += tw - w;
13789                         break;
13790                     case "west":
13791                         var th = h;
13792                         h = oh * (w/ow);
13793                         h = Math.min(Math.max(mh, h), mxh);
13794                         y += (th - h) / 2;
13795                         var tw = w;
13796                         w = ow * (h/oh);
13797                         x += tw - w;
13798                        break;
13799                     case "northwest":
13800                         var tw = w;
13801                         var th = h;
13802                         h = oh * (w/ow);
13803                         h = Math.min(Math.max(mh, h), mxh);
13804                         w = ow * (h/oh);
13805                         y += th - h;
13806                         x += tw - w;
13807                        break;
13808
13809                 }
13810             }
13811             if (pos == 'hdrag') {
13812                 w = ow;
13813             }
13814             this.proxy.setBounds(x, y, w, h);
13815             if(this.dynamic){
13816                 this.resizeElement();
13817             }
13818             }catch(e){}
13819         }
13820     },
13821
13822     // private
13823     handleOver : function(){
13824         if(this.enabled){
13825             this.el.addClass("x-resizable-over");
13826         }
13827     },
13828
13829     // private
13830     handleOut : function(){
13831         if(!this.resizing){
13832             this.el.removeClass("x-resizable-over");
13833         }
13834     },
13835
13836     /**
13837      * Returns the element this component is bound to.
13838      * @return {Roo.Element}
13839      */
13840     getEl : function(){
13841         return this.el;
13842     },
13843
13844     /**
13845      * Returns the resizeChild element (or null).
13846      * @return {Roo.Element}
13847      */
13848     getResizeChild : function(){
13849         return this.resizeChild;
13850     },
13851
13852     /**
13853      * Destroys this resizable. If the element was wrapped and
13854      * removeEl is not true then the element remains.
13855      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
13856      */
13857     destroy : function(removeEl){
13858         this.proxy.remove();
13859         if(this.overlay){
13860             this.overlay.removeAllListeners();
13861             this.overlay.remove();
13862         }
13863         var ps = Roo.Resizable.positions;
13864         for(var k in ps){
13865             if(typeof ps[k] != "function" && this[ps[k]]){
13866                 var h = this[ps[k]];
13867                 h.el.removeAllListeners();
13868                 h.el.remove();
13869             }
13870         }
13871         if(removeEl){
13872             this.el.update("");
13873             this.el.remove();
13874         }
13875     }
13876 });
13877
13878 // private
13879 // hash to map config positions to true positions
13880 Roo.Resizable.positions = {
13881     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
13882     hd: "hdrag"
13883 };
13884
13885 // private
13886 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
13887     if(!this.tpl){
13888         // only initialize the template if resizable is used
13889         var tpl = Roo.DomHelper.createTemplate(
13890             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
13891         );
13892         tpl.compile();
13893         Roo.Resizable.Handle.prototype.tpl = tpl;
13894     }
13895     this.position = pos;
13896     this.rz = rz;
13897     // show north drag fro topdra
13898     var handlepos = pos == 'hdrag' ? 'north' : pos;
13899     
13900     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
13901     if (pos == 'hdrag') {
13902         this.el.setStyle('cursor', 'pointer');
13903     }
13904     this.el.unselectable();
13905     if(transparent){
13906         this.el.setOpacity(0);
13907     }
13908     this.el.on("mousedown", this.onMouseDown, this);
13909     if(!disableTrackOver){
13910         this.el.on("mouseover", this.onMouseOver, this);
13911         this.el.on("mouseout", this.onMouseOut, this);
13912     }
13913 };
13914
13915 // private
13916 Roo.Resizable.Handle.prototype = {
13917     afterResize : function(rz){
13918         // do nothing
13919     },
13920     // private
13921     onMouseDown : function(e){
13922         this.rz.onMouseDown(this, e);
13923     },
13924     // private
13925     onMouseOver : function(e){
13926         this.rz.handleOver(this, e);
13927     },
13928     // private
13929     onMouseOut : function(e){
13930         this.rz.handleOut(this, e);
13931     }
13932 };/*
13933  * Based on:
13934  * Ext JS Library 1.1.1
13935  * Copyright(c) 2006-2007, Ext JS, LLC.
13936  *
13937  * Originally Released Under LGPL - original licence link has changed is not relivant.
13938  *
13939  * Fork - LGPL
13940  * <script type="text/javascript">
13941  */
13942
13943 /**
13944  * @class Roo.Editor
13945  * @extends Roo.Component
13946  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
13947  * @constructor
13948  * Create a new Editor
13949  * @param {Roo.form.Field} field The Field object (or descendant)
13950  * @param {Object} config The config object
13951  */
13952 Roo.Editor = function(field, config){
13953     Roo.Editor.superclass.constructor.call(this, config);
13954     this.field = field;
13955     this.addEvents({
13956         /**
13957              * @event beforestartedit
13958              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
13959              * false from the handler of this event.
13960              * @param {Editor} this
13961              * @param {Roo.Element} boundEl The underlying element bound to this editor
13962              * @param {Mixed} value The field value being set
13963              */
13964         "beforestartedit" : true,
13965         /**
13966              * @event startedit
13967              * Fires when this editor is displayed
13968              * @param {Roo.Element} boundEl The underlying element bound to this editor
13969              * @param {Mixed} value The starting field value
13970              */
13971         "startedit" : true,
13972         /**
13973              * @event beforecomplete
13974              * Fires after a change has been made to the field, but before the change is reflected in the underlying
13975              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
13976              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
13977              * event will not fire since no edit actually occurred.
13978              * @param {Editor} this
13979              * @param {Mixed} value The current field value
13980              * @param {Mixed} startValue The original field value
13981              */
13982         "beforecomplete" : true,
13983         /**
13984              * @event complete
13985              * Fires after editing is complete and any changed value has been written to the underlying field.
13986              * @param {Editor} this
13987              * @param {Mixed} value The current field value
13988              * @param {Mixed} startValue The original field value
13989              */
13990         "complete" : true,
13991         /**
13992          * @event specialkey
13993          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
13994          * {@link Roo.EventObject#getKey} to determine which key was pressed.
13995          * @param {Roo.form.Field} this
13996          * @param {Roo.EventObject} e The event object
13997          */
13998         "specialkey" : true
13999     });
14000 };
14001
14002 Roo.extend(Roo.Editor, Roo.Component, {
14003     /**
14004      * @cfg {Boolean/String} autosize
14005      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
14006      * or "height" to adopt the height only (defaults to false)
14007      */
14008     /**
14009      * @cfg {Boolean} revertInvalid
14010      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
14011      * validation fails (defaults to true)
14012      */
14013     /**
14014      * @cfg {Boolean} ignoreNoChange
14015      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
14016      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
14017      * will never be ignored.
14018      */
14019     /**
14020      * @cfg {Boolean} hideEl
14021      * False to keep the bound element visible while the editor is displayed (defaults to true)
14022      */
14023     /**
14024      * @cfg {Mixed} value
14025      * The data value of the underlying field (defaults to "")
14026      */
14027     value : "",
14028     /**
14029      * @cfg {String} alignment
14030      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
14031      */
14032     alignment: "c-c?",
14033     /**
14034      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
14035      * for bottom-right shadow (defaults to "frame")
14036      */
14037     shadow : "frame",
14038     /**
14039      * @cfg {Boolean} constrain True to constrain the editor to the viewport
14040      */
14041     constrain : false,
14042     /**
14043      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
14044      */
14045     completeOnEnter : false,
14046     /**
14047      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
14048      */
14049     cancelOnEsc : false,
14050     /**
14051      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
14052      */
14053     updateEl : false,
14054
14055     // private
14056     onRender : function(ct, position){
14057         this.el = new Roo.Layer({
14058             shadow: this.shadow,
14059             cls: "x-editor",
14060             parentEl : ct,
14061             shim : this.shim,
14062             shadowOffset:4,
14063             id: this.id,
14064             constrain: this.constrain
14065         });
14066         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
14067         if(this.field.msgTarget != 'title'){
14068             this.field.msgTarget = 'qtip';
14069         }
14070         this.field.render(this.el);
14071         if(Roo.isGecko){
14072             this.field.el.dom.setAttribute('autocomplete', 'off');
14073         }
14074         this.field.on("specialkey", this.onSpecialKey, this);
14075         if(this.swallowKeys){
14076             this.field.el.swallowEvent(['keydown','keypress']);
14077         }
14078         this.field.show();
14079         this.field.on("blur", this.onBlur, this);
14080         if(this.field.grow){
14081             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
14082         }
14083     },
14084
14085     onSpecialKey : function(field, e)
14086     {
14087         //Roo.log('editor onSpecialKey');
14088         if(this.completeOnEnter && e.getKey() == e.ENTER){
14089             e.stopEvent();
14090             this.completeEdit();
14091             return;
14092         }
14093         // do not fire special key otherwise it might hide close the editor...
14094         if(e.getKey() == e.ENTER){    
14095             return;
14096         }
14097         if(this.cancelOnEsc && e.getKey() == e.ESC){
14098             this.cancelEdit();
14099             return;
14100         } 
14101         this.fireEvent('specialkey', field, e);
14102     
14103     },
14104
14105     /**
14106      * Starts the editing process and shows the editor.
14107      * @param {String/HTMLElement/Element} el The element to edit
14108      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
14109       * to the innerHTML of el.
14110      */
14111     startEdit : function(el, value){
14112         if(this.editing){
14113             this.completeEdit();
14114         }
14115         this.boundEl = Roo.get(el);
14116         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
14117         if(!this.rendered){
14118             this.render(this.parentEl || document.body);
14119         }
14120         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
14121             return;
14122         }
14123         this.startValue = v;
14124         this.field.setValue(v);
14125         if(this.autoSize){
14126             var sz = this.boundEl.getSize();
14127             switch(this.autoSize){
14128                 case "width":
14129                 this.setSize(sz.width,  "");
14130                 break;
14131                 case "height":
14132                 this.setSize("",  sz.height);
14133                 break;
14134                 default:
14135                 this.setSize(sz.width,  sz.height);
14136             }
14137         }
14138         this.el.alignTo(this.boundEl, this.alignment);
14139         this.editing = true;
14140         if(Roo.QuickTips){
14141             Roo.QuickTips.disable();
14142         }
14143         this.show();
14144     },
14145
14146     /**
14147      * Sets the height and width of this editor.
14148      * @param {Number} width The new width
14149      * @param {Number} height The new height
14150      */
14151     setSize : function(w, h){
14152         this.field.setSize(w, h);
14153         if(this.el){
14154             this.el.sync();
14155         }
14156     },
14157
14158     /**
14159      * Realigns the editor to the bound field based on the current alignment config value.
14160      */
14161     realign : function(){
14162         this.el.alignTo(this.boundEl, this.alignment);
14163     },
14164
14165     /**
14166      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
14167      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
14168      */
14169     completeEdit : function(remainVisible){
14170         if(!this.editing){
14171             return;
14172         }
14173         var v = this.getValue();
14174         if(this.revertInvalid !== false && !this.field.isValid()){
14175             v = this.startValue;
14176             this.cancelEdit(true);
14177         }
14178         if(String(v) === String(this.startValue) && this.ignoreNoChange){
14179             this.editing = false;
14180             this.hide();
14181             return;
14182         }
14183         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
14184             this.editing = false;
14185             if(this.updateEl && this.boundEl){
14186                 this.boundEl.update(v);
14187             }
14188             if(remainVisible !== true){
14189                 this.hide();
14190             }
14191             this.fireEvent("complete", this, v, this.startValue);
14192         }
14193     },
14194
14195     // private
14196     onShow : function(){
14197         this.el.show();
14198         if(this.hideEl !== false){
14199             this.boundEl.hide();
14200         }
14201         this.field.show();
14202         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
14203             this.fixIEFocus = true;
14204             this.deferredFocus.defer(50, this);
14205         }else{
14206             this.field.focus();
14207         }
14208         this.fireEvent("startedit", this.boundEl, this.startValue);
14209     },
14210
14211     deferredFocus : function(){
14212         if(this.editing){
14213             this.field.focus();
14214         }
14215     },
14216
14217     /**
14218      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
14219      * reverted to the original starting value.
14220      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
14221      * cancel (defaults to false)
14222      */
14223     cancelEdit : function(remainVisible){
14224         if(this.editing){
14225             this.setValue(this.startValue);
14226             if(remainVisible !== true){
14227                 this.hide();
14228             }
14229         }
14230     },
14231
14232     // private
14233     onBlur : function(){
14234         if(this.allowBlur !== true && this.editing){
14235             this.completeEdit();
14236         }
14237     },
14238
14239     // private
14240     onHide : function(){
14241         if(this.editing){
14242             this.completeEdit();
14243             return;
14244         }
14245         this.field.blur();
14246         if(this.field.collapse){
14247             this.field.collapse();
14248         }
14249         this.el.hide();
14250         if(this.hideEl !== false){
14251             this.boundEl.show();
14252         }
14253         if(Roo.QuickTips){
14254             Roo.QuickTips.enable();
14255         }
14256     },
14257
14258     /**
14259      * Sets the data value of the editor
14260      * @param {Mixed} value Any valid value supported by the underlying field
14261      */
14262     setValue : function(v){
14263         this.field.setValue(v);
14264     },
14265
14266     /**
14267      * Gets the data value of the editor
14268      * @return {Mixed} The data value
14269      */
14270     getValue : function(){
14271         return this.field.getValue();
14272     }
14273 });/*
14274  * Based on:
14275  * Ext JS Library 1.1.1
14276  * Copyright(c) 2006-2007, Ext JS, LLC.
14277  *
14278  * Originally Released Under LGPL - original licence link has changed is not relivant.
14279  *
14280  * Fork - LGPL
14281  * <script type="text/javascript">
14282  */
14283  
14284 /**
14285  * @class Roo.BasicDialog
14286  * @extends Roo.util.Observable
14287  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
14288  * <pre><code>
14289 var dlg = new Roo.BasicDialog("my-dlg", {
14290     height: 200,
14291     width: 300,
14292     minHeight: 100,
14293     minWidth: 150,
14294     modal: true,
14295     proxyDrag: true,
14296     shadow: true
14297 });
14298 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
14299 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
14300 dlg.addButton('Cancel', dlg.hide, dlg);
14301 dlg.show();
14302 </code></pre>
14303   <b>A Dialog should always be a direct child of the body element.</b>
14304  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
14305  * @cfg {String} title Default text to display in the title bar (defaults to null)
14306  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
14307  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
14308  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
14309  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
14310  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
14311  * (defaults to null with no animation)
14312  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
14313  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
14314  * property for valid values (defaults to 'all')
14315  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
14316  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
14317  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
14318  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
14319  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
14320  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
14321  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
14322  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
14323  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
14324  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
14325  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
14326  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
14327  * draggable = true (defaults to false)
14328  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
14329  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
14330  * shadow (defaults to false)
14331  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
14332  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
14333  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
14334  * @cfg {Array} buttons Array of buttons
14335  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
14336  * @constructor
14337  * Create a new BasicDialog.
14338  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
14339  * @param {Object} config Configuration options
14340  */
14341 Roo.BasicDialog = function(el, config){
14342     this.el = Roo.get(el);
14343     var dh = Roo.DomHelper;
14344     if(!this.el && config && config.autoCreate){
14345         if(typeof config.autoCreate == "object"){
14346             if(!config.autoCreate.id){
14347                 config.autoCreate.id = el;
14348             }
14349             this.el = dh.append(document.body,
14350                         config.autoCreate, true);
14351         }else{
14352             this.el = dh.append(document.body,
14353                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
14354         }
14355     }
14356     el = this.el;
14357     el.setDisplayed(true);
14358     el.hide = this.hideAction;
14359     this.id = el.id;
14360     el.addClass("x-dlg");
14361
14362     Roo.apply(this, config);
14363
14364     this.proxy = el.createProxy("x-dlg-proxy");
14365     this.proxy.hide = this.hideAction;
14366     this.proxy.setOpacity(.5);
14367     this.proxy.hide();
14368
14369     if(config.width){
14370         el.setWidth(config.width);
14371     }
14372     if(config.height){
14373         el.setHeight(config.height);
14374     }
14375     this.size = el.getSize();
14376     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
14377         this.xy = [config.x,config.y];
14378     }else{
14379         this.xy = el.getCenterXY(true);
14380     }
14381     /** The header element @type Roo.Element */
14382     this.header = el.child("> .x-dlg-hd");
14383     /** The body element @type Roo.Element */
14384     this.body = el.child("> .x-dlg-bd");
14385     /** The footer element @type Roo.Element */
14386     this.footer = el.child("> .x-dlg-ft");
14387
14388     if(!this.header){
14389         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
14390     }
14391     if(!this.body){
14392         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
14393     }
14394
14395     this.header.unselectable();
14396     if(this.title){
14397         this.header.update(this.title);
14398     }
14399     // this element allows the dialog to be focused for keyboard event
14400     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
14401     this.focusEl.swallowEvent("click", true);
14402
14403     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
14404
14405     // wrap the body and footer for special rendering
14406     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
14407     if(this.footer){
14408         this.bwrap.dom.appendChild(this.footer.dom);
14409     }
14410
14411     this.bg = this.el.createChild({
14412         tag: "div", cls:"x-dlg-bg",
14413         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
14414     });
14415     this.centerBg = this.bg.child("div.x-dlg-bg-center");
14416
14417
14418     if(this.autoScroll !== false && !this.autoTabs){
14419         this.body.setStyle("overflow", "auto");
14420     }
14421
14422     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
14423
14424     if(this.closable !== false){
14425         this.el.addClass("x-dlg-closable");
14426         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
14427         this.close.on("click", this.closeClick, this);
14428         this.close.addClassOnOver("x-dlg-close-over");
14429     }
14430     if(this.collapsible !== false){
14431         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
14432         this.collapseBtn.on("click", this.collapseClick, this);
14433         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
14434         this.header.on("dblclick", this.collapseClick, this);
14435     }
14436     if(this.resizable !== false){
14437         this.el.addClass("x-dlg-resizable");
14438         this.resizer = new Roo.Resizable(el, {
14439             minWidth: this.minWidth || 80,
14440             minHeight:this.minHeight || 80,
14441             handles: this.resizeHandles || "all",
14442             pinned: true
14443         });
14444         this.resizer.on("beforeresize", this.beforeResize, this);
14445         this.resizer.on("resize", this.onResize, this);
14446     }
14447     if(this.draggable !== false){
14448         el.addClass("x-dlg-draggable");
14449         if (!this.proxyDrag) {
14450             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
14451         }
14452         else {
14453             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
14454         }
14455         dd.setHandleElId(this.header.id);
14456         dd.endDrag = this.endMove.createDelegate(this);
14457         dd.startDrag = this.startMove.createDelegate(this);
14458         dd.onDrag = this.onDrag.createDelegate(this);
14459         dd.scroll = false;
14460         this.dd = dd;
14461     }
14462     if(this.modal){
14463         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
14464         this.mask.enableDisplayMode("block");
14465         this.mask.hide();
14466         this.el.addClass("x-dlg-modal");
14467     }
14468     if(this.shadow){
14469         this.shadow = new Roo.Shadow({
14470             mode : typeof this.shadow == "string" ? this.shadow : "sides",
14471             offset : this.shadowOffset
14472         });
14473     }else{
14474         this.shadowOffset = 0;
14475     }
14476     if(Roo.useShims && this.shim !== false){
14477         this.shim = this.el.createShim();
14478         this.shim.hide = this.hideAction;
14479         this.shim.hide();
14480     }else{
14481         this.shim = false;
14482     }
14483     if(this.autoTabs){
14484         this.initTabs();
14485     }
14486     if (this.buttons) { 
14487         var bts= this.buttons;
14488         this.buttons = [];
14489         Roo.each(bts, function(b) {
14490             this.addButton(b);
14491         }, this);
14492     }
14493     
14494     
14495     this.addEvents({
14496         /**
14497          * @event keydown
14498          * Fires when a key is pressed
14499          * @param {Roo.BasicDialog} this
14500          * @param {Roo.EventObject} e
14501          */
14502         "keydown" : true,
14503         /**
14504          * @event move
14505          * Fires when this dialog is moved by the user.
14506          * @param {Roo.BasicDialog} this
14507          * @param {Number} x The new page X
14508          * @param {Number} y The new page Y
14509          */
14510         "move" : true,
14511         /**
14512          * @event resize
14513          * Fires when this dialog is resized by the user.
14514          * @param {Roo.BasicDialog} this
14515          * @param {Number} width The new width
14516          * @param {Number} height The new height
14517          */
14518         "resize" : true,
14519         /**
14520          * @event beforehide
14521          * Fires before this dialog is hidden.
14522          * @param {Roo.BasicDialog} this
14523          */
14524         "beforehide" : true,
14525         /**
14526          * @event hide
14527          * Fires when this dialog is hidden.
14528          * @param {Roo.BasicDialog} this
14529          */
14530         "hide" : true,
14531         /**
14532          * @event beforeshow
14533          * Fires before this dialog is shown.
14534          * @param {Roo.BasicDialog} this
14535          */
14536         "beforeshow" : true,
14537         /**
14538          * @event show
14539          * Fires when this dialog is shown.
14540          * @param {Roo.BasicDialog} this
14541          */
14542         "show" : true
14543     });
14544     el.on("keydown", this.onKeyDown, this);
14545     el.on("mousedown", this.toFront, this);
14546     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
14547     this.el.hide();
14548     Roo.DialogManager.register(this);
14549     Roo.BasicDialog.superclass.constructor.call(this);
14550 };
14551
14552 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
14553     shadowOffset: Roo.isIE ? 6 : 5,
14554     minHeight: 80,
14555     minWidth: 200,
14556     minButtonWidth: 75,
14557     defaultButton: null,
14558     buttonAlign: "right",
14559     tabTag: 'div',
14560     firstShow: true,
14561
14562     /**
14563      * Sets the dialog title text
14564      * @param {String} text The title text to display
14565      * @return {Roo.BasicDialog} this
14566      */
14567     setTitle : function(text){
14568         this.header.update(text);
14569         return this;
14570     },
14571
14572     // private
14573     closeClick : function(){
14574         this.hide();
14575     },
14576
14577     // private
14578     collapseClick : function(){
14579         this[this.collapsed ? "expand" : "collapse"]();
14580     },
14581
14582     /**
14583      * Collapses the dialog to its minimized state (only the title bar is visible).
14584      * Equivalent to the user clicking the collapse dialog button.
14585      */
14586     collapse : function(){
14587         if(!this.collapsed){
14588             this.collapsed = true;
14589             this.el.addClass("x-dlg-collapsed");
14590             this.restoreHeight = this.el.getHeight();
14591             this.resizeTo(this.el.getWidth(), this.header.getHeight());
14592         }
14593     },
14594
14595     /**
14596      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
14597      * clicking the expand dialog button.
14598      */
14599     expand : function(){
14600         if(this.collapsed){
14601             this.collapsed = false;
14602             this.el.removeClass("x-dlg-collapsed");
14603             this.resizeTo(this.el.getWidth(), this.restoreHeight);
14604         }
14605     },
14606
14607     /**
14608      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
14609      * @return {Roo.TabPanel} The tabs component
14610      */
14611     initTabs : function(){
14612         var tabs = this.getTabs();
14613         while(tabs.getTab(0)){
14614             tabs.removeTab(0);
14615         }
14616         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
14617             var dom = el.dom;
14618             tabs.addTab(Roo.id(dom), dom.title);
14619             dom.title = "";
14620         });
14621         tabs.activate(0);
14622         return tabs;
14623     },
14624
14625     // private
14626     beforeResize : function(){
14627         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
14628     },
14629
14630     // private
14631     onResize : function(){
14632         this.refreshSize();
14633         this.syncBodyHeight();
14634         this.adjustAssets();
14635         this.focus();
14636         this.fireEvent("resize", this, this.size.width, this.size.height);
14637     },
14638
14639     // private
14640     onKeyDown : function(e){
14641         if(this.isVisible()){
14642             this.fireEvent("keydown", this, e);
14643         }
14644     },
14645
14646     /**
14647      * Resizes the dialog.
14648      * @param {Number} width
14649      * @param {Number} height
14650      * @return {Roo.BasicDialog} this
14651      */
14652     resizeTo : function(width, height){
14653         this.el.setSize(width, height);
14654         this.size = {width: width, height: height};
14655         this.syncBodyHeight();
14656         if(this.fixedcenter){
14657             this.center();
14658         }
14659         if(this.isVisible()){
14660             this.constrainXY();
14661             this.adjustAssets();
14662         }
14663         this.fireEvent("resize", this, width, height);
14664         return this;
14665     },
14666
14667
14668     /**
14669      * Resizes the dialog to fit the specified content size.
14670      * @param {Number} width
14671      * @param {Number} height
14672      * @return {Roo.BasicDialog} this
14673      */
14674     setContentSize : function(w, h){
14675         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
14676         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
14677         //if(!this.el.isBorderBox()){
14678             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
14679             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
14680         //}
14681         if(this.tabs){
14682             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
14683             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
14684         }
14685         this.resizeTo(w, h);
14686         return this;
14687     },
14688
14689     /**
14690      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
14691      * executed in response to a particular key being pressed while the dialog is active.
14692      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
14693      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14694      * @param {Function} fn The function to call
14695      * @param {Object} scope (optional) The scope of the function
14696      * @return {Roo.BasicDialog} this
14697      */
14698     addKeyListener : function(key, fn, scope){
14699         var keyCode, shift, ctrl, alt;
14700         if(typeof key == "object" && !(key instanceof Array)){
14701             keyCode = key["key"];
14702             shift = key["shift"];
14703             ctrl = key["ctrl"];
14704             alt = key["alt"];
14705         }else{
14706             keyCode = key;
14707         }
14708         var handler = function(dlg, e){
14709             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14710                 var k = e.getKey();
14711                 if(keyCode instanceof Array){
14712                     for(var i = 0, len = keyCode.length; i < len; i++){
14713                         if(keyCode[i] == k){
14714                           fn.call(scope || window, dlg, k, e);
14715                           return;
14716                         }
14717                     }
14718                 }else{
14719                     if(k == keyCode){
14720                         fn.call(scope || window, dlg, k, e);
14721                     }
14722                 }
14723             }
14724         };
14725         this.on("keydown", handler);
14726         return this;
14727     },
14728
14729     /**
14730      * Returns the TabPanel component (creates it if it doesn't exist).
14731      * Note: If you wish to simply check for the existence of tabs without creating them,
14732      * check for a null 'tabs' property.
14733      * @return {Roo.TabPanel} The tabs component
14734      */
14735     getTabs : function(){
14736         if(!this.tabs){
14737             this.el.addClass("x-dlg-auto-tabs");
14738             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
14739             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
14740         }
14741         return this.tabs;
14742     },
14743
14744     /**
14745      * Adds a button to the footer section of the dialog.
14746      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
14747      * object or a valid Roo.DomHelper element config
14748      * @param {Function} handler The function called when the button is clicked
14749      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
14750      * @return {Roo.Button} The new button
14751      */
14752     addButton : function(config, handler, scope){
14753         var dh = Roo.DomHelper;
14754         if(!this.footer){
14755             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
14756         }
14757         if(!this.btnContainer){
14758             var tb = this.footer.createChild({
14759
14760                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
14761                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
14762             }, null, true);
14763             this.btnContainer = tb.firstChild.firstChild.firstChild;
14764         }
14765         var bconfig = {
14766             handler: handler,
14767             scope: scope,
14768             minWidth: this.minButtonWidth,
14769             hideParent:true
14770         };
14771         if(typeof config == "string"){
14772             bconfig.text = config;
14773         }else{
14774             if(config.tag){
14775                 bconfig.dhconfig = config;
14776             }else{
14777                 Roo.apply(bconfig, config);
14778             }
14779         }
14780         var fc = false;
14781         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
14782             bconfig.position = Math.max(0, bconfig.position);
14783             fc = this.btnContainer.childNodes[bconfig.position];
14784         }
14785          
14786         var btn = new Roo.Button(
14787             fc ? 
14788                 this.btnContainer.insertBefore(document.createElement("td"),fc)
14789                 : this.btnContainer.appendChild(document.createElement("td")),
14790             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
14791             bconfig
14792         );
14793         this.syncBodyHeight();
14794         if(!this.buttons){
14795             /**
14796              * Array of all the buttons that have been added to this dialog via addButton
14797              * @type Array
14798              */
14799             this.buttons = [];
14800         }
14801         this.buttons.push(btn);
14802         return btn;
14803     },
14804
14805     /**
14806      * Sets the default button to be focused when the dialog is displayed.
14807      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
14808      * @return {Roo.BasicDialog} this
14809      */
14810     setDefaultButton : function(btn){
14811         this.defaultButton = btn;
14812         return this;
14813     },
14814
14815     // private
14816     getHeaderFooterHeight : function(safe){
14817         var height = 0;
14818         if(this.header){
14819            height += this.header.getHeight();
14820         }
14821         if(this.footer){
14822            var fm = this.footer.getMargins();
14823             height += (this.footer.getHeight()+fm.top+fm.bottom);
14824         }
14825         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
14826         height += this.centerBg.getPadding("tb");
14827         return height;
14828     },
14829
14830     // private
14831     syncBodyHeight : function(){
14832         var bd = this.body, cb = this.centerBg, bw = this.bwrap;
14833         var height = this.size.height - this.getHeaderFooterHeight(false);
14834         bd.setHeight(height-bd.getMargins("tb"));
14835         var hh = this.header.getHeight();
14836         var h = this.size.height-hh;
14837         cb.setHeight(h);
14838         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
14839         bw.setHeight(h-cb.getPadding("tb"));
14840         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
14841         bd.setWidth(bw.getWidth(true));
14842         if(this.tabs){
14843             this.tabs.syncHeight();
14844             if(Roo.isIE){
14845                 this.tabs.el.repaint();
14846             }
14847         }
14848     },
14849
14850     /**
14851      * Restores the previous state of the dialog if Roo.state is configured.
14852      * @return {Roo.BasicDialog} this
14853      */
14854     restoreState : function(){
14855         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
14856         if(box && box.width){
14857             this.xy = [box.x, box.y];
14858             this.resizeTo(box.width, box.height);
14859         }
14860         return this;
14861     },
14862
14863     // private
14864     beforeShow : function(){
14865         this.expand();
14866         if(this.fixedcenter){
14867             this.xy = this.el.getCenterXY(true);
14868         }
14869         if(this.modal){
14870             Roo.get(document.body).addClass("x-body-masked");
14871             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14872             this.mask.show();
14873         }
14874         this.constrainXY();
14875     },
14876
14877     // private
14878     animShow : function(){
14879         var b = Roo.get(this.animateTarget).getBox();
14880         this.proxy.setSize(b.width, b.height);
14881         this.proxy.setLocation(b.x, b.y);
14882         this.proxy.show();
14883         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
14884                     true, .35, this.showEl.createDelegate(this));
14885     },
14886
14887     /**
14888      * Shows the dialog.
14889      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
14890      * @return {Roo.BasicDialog} this
14891      */
14892     show : function(animateTarget){
14893         if (this.fireEvent("beforeshow", this) === false){
14894             return;
14895         }
14896         if(this.syncHeightBeforeShow){
14897             this.syncBodyHeight();
14898         }else if(this.firstShow){
14899             this.firstShow = false;
14900             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
14901         }
14902         this.animateTarget = animateTarget || this.animateTarget;
14903         if(!this.el.isVisible()){
14904             this.beforeShow();
14905             if(this.animateTarget && Roo.get(this.animateTarget)){
14906                 this.animShow();
14907             }else{
14908                 this.showEl();
14909             }
14910         }
14911         return this;
14912     },
14913
14914     // private
14915     showEl : function(){
14916         this.proxy.hide();
14917         this.el.setXY(this.xy);
14918         this.el.show();
14919         this.adjustAssets(true);
14920         this.toFront();
14921         this.focus();
14922         // IE peekaboo bug - fix found by Dave Fenwick
14923         if(Roo.isIE){
14924             this.el.repaint();
14925         }
14926         this.fireEvent("show", this);
14927     },
14928
14929     /**
14930      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
14931      * dialog itself will receive focus.
14932      */
14933     focus : function(){
14934         if(this.defaultButton){
14935             this.defaultButton.focus();
14936         }else{
14937             this.focusEl.focus();
14938         }
14939     },
14940
14941     // private
14942     constrainXY : function(){
14943         if(this.constraintoviewport !== false){
14944             if(!this.viewSize){
14945                 if(this.container){
14946                     var s = this.container.getSize();
14947                     this.viewSize = [s.width, s.height];
14948                 }else{
14949                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
14950                 }
14951             }
14952             var s = Roo.get(this.container||document).getScroll();
14953
14954             var x = this.xy[0], y = this.xy[1];
14955             var w = this.size.width, h = this.size.height;
14956             var vw = this.viewSize[0], vh = this.viewSize[1];
14957             // only move it if it needs it
14958             var moved = false;
14959             // first validate right/bottom
14960             if(x + w > vw+s.left){
14961                 x = vw - w;
14962                 moved = true;
14963             }
14964             if(y + h > vh+s.top){
14965                 y = vh - h;
14966                 moved = true;
14967             }
14968             // then make sure top/left isn't negative
14969             if(x < s.left){
14970                 x = s.left;
14971                 moved = true;
14972             }
14973             if(y < s.top){
14974                 y = s.top;
14975                 moved = true;
14976             }
14977             if(moved){
14978                 // cache xy
14979                 this.xy = [x, y];
14980                 if(this.isVisible()){
14981                     this.el.setLocation(x, y);
14982                     this.adjustAssets();
14983                 }
14984             }
14985         }
14986     },
14987
14988     // private
14989     onDrag : function(){
14990         if(!this.proxyDrag){
14991             this.xy = this.el.getXY();
14992             this.adjustAssets();
14993         }
14994     },
14995
14996     // private
14997     adjustAssets : function(doShow){
14998         var x = this.xy[0], y = this.xy[1];
14999         var w = this.size.width, h = this.size.height;
15000         if(doShow === true){
15001             if(this.shadow){
15002                 this.shadow.show(this.el);
15003             }
15004             if(this.shim){
15005                 this.shim.show();
15006             }
15007         }
15008         if(this.shadow && this.shadow.isVisible()){
15009             this.shadow.show(this.el);
15010         }
15011         if(this.shim && this.shim.isVisible()){
15012             this.shim.setBounds(x, y, w, h);
15013         }
15014     },
15015
15016     // private
15017     adjustViewport : function(w, h){
15018         if(!w || !h){
15019             w = Roo.lib.Dom.getViewWidth();
15020             h = Roo.lib.Dom.getViewHeight();
15021         }
15022         // cache the size
15023         this.viewSize = [w, h];
15024         if(this.modal && this.mask.isVisible()){
15025             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
15026             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15027         }
15028         if(this.isVisible()){
15029             this.constrainXY();
15030         }
15031     },
15032
15033     /**
15034      * Destroys this dialog and all its supporting elements (including any tabs, shim,
15035      * shadow, proxy, mask, etc.)  Also removes all event listeners.
15036      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
15037      */
15038     destroy : function(removeEl){
15039         if(this.isVisible()){
15040             this.animateTarget = null;
15041             this.hide();
15042         }
15043         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
15044         if(this.tabs){
15045             this.tabs.destroy(removeEl);
15046         }
15047         Roo.destroy(
15048              this.shim,
15049              this.proxy,
15050              this.resizer,
15051              this.close,
15052              this.mask
15053         );
15054         if(this.dd){
15055             this.dd.unreg();
15056         }
15057         if(this.buttons){
15058            for(var i = 0, len = this.buttons.length; i < len; i++){
15059                this.buttons[i].destroy();
15060            }
15061         }
15062         this.el.removeAllListeners();
15063         if(removeEl === true){
15064             this.el.update("");
15065             this.el.remove();
15066         }
15067         Roo.DialogManager.unregister(this);
15068     },
15069
15070     // private
15071     startMove : function(){
15072         if(this.proxyDrag){
15073             this.proxy.show();
15074         }
15075         if(this.constraintoviewport !== false){
15076             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
15077         }
15078     },
15079
15080     // private
15081     endMove : function(){
15082         if(!this.proxyDrag){
15083             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
15084         }else{
15085             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
15086             this.proxy.hide();
15087         }
15088         this.refreshSize();
15089         this.adjustAssets();
15090         this.focus();
15091         this.fireEvent("move", this, this.xy[0], this.xy[1]);
15092     },
15093
15094     /**
15095      * Brings this dialog to the front of any other visible dialogs
15096      * @return {Roo.BasicDialog} this
15097      */
15098     toFront : function(){
15099         Roo.DialogManager.bringToFront(this);
15100         return this;
15101     },
15102
15103     /**
15104      * Sends this dialog to the back (under) of any other visible dialogs
15105      * @return {Roo.BasicDialog} this
15106      */
15107     toBack : function(){
15108         Roo.DialogManager.sendToBack(this);
15109         return this;
15110     },
15111
15112     /**
15113      * Centers this dialog in the viewport
15114      * @return {Roo.BasicDialog} this
15115      */
15116     center : function(){
15117         var xy = this.el.getCenterXY(true);
15118         this.moveTo(xy[0], xy[1]);
15119         return this;
15120     },
15121
15122     /**
15123      * Moves the dialog's top-left corner to the specified point
15124      * @param {Number} x
15125      * @param {Number} y
15126      * @return {Roo.BasicDialog} this
15127      */
15128     moveTo : function(x, y){
15129         this.xy = [x,y];
15130         if(this.isVisible()){
15131             this.el.setXY(this.xy);
15132             this.adjustAssets();
15133         }
15134         return this;
15135     },
15136
15137     /**
15138      * Aligns the dialog to the specified element
15139      * @param {String/HTMLElement/Roo.Element} element The element to align to.
15140      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
15141      * @param {Array} offsets (optional) Offset the positioning by [x, y]
15142      * @return {Roo.BasicDialog} this
15143      */
15144     alignTo : function(element, position, offsets){
15145         this.xy = this.el.getAlignToXY(element, position, offsets);
15146         if(this.isVisible()){
15147             this.el.setXY(this.xy);
15148             this.adjustAssets();
15149         }
15150         return this;
15151     },
15152
15153     /**
15154      * Anchors an element to another element and realigns it when the window is resized.
15155      * @param {String/HTMLElement/Roo.Element} element The element to align to.
15156      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
15157      * @param {Array} offsets (optional) Offset the positioning by [x, y]
15158      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
15159      * is a number, it is used as the buffer delay (defaults to 50ms).
15160      * @return {Roo.BasicDialog} this
15161      */
15162     anchorTo : function(el, alignment, offsets, monitorScroll){
15163         var action = function(){
15164             this.alignTo(el, alignment, offsets);
15165         };
15166         Roo.EventManager.onWindowResize(action, this);
15167         var tm = typeof monitorScroll;
15168         if(tm != 'undefined'){
15169             Roo.EventManager.on(window, 'scroll', action, this,
15170                 {buffer: tm == 'number' ? monitorScroll : 50});
15171         }
15172         action.call(this);
15173         return this;
15174     },
15175
15176     /**
15177      * Returns true if the dialog is visible
15178      * @return {Boolean}
15179      */
15180     isVisible : function(){
15181         return this.el.isVisible();
15182     },
15183
15184     // private
15185     animHide : function(callback){
15186         var b = Roo.get(this.animateTarget).getBox();
15187         this.proxy.show();
15188         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
15189         this.el.hide();
15190         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
15191                     this.hideEl.createDelegate(this, [callback]));
15192     },
15193
15194     /**
15195      * Hides the dialog.
15196      * @param {Function} callback (optional) Function to call when the dialog is hidden
15197      * @return {Roo.BasicDialog} this
15198      */
15199     hide : function(callback){
15200         if (this.fireEvent("beforehide", this) === false){
15201             return;
15202         }
15203         if(this.shadow){
15204             this.shadow.hide();
15205         }
15206         if(this.shim) {
15207           this.shim.hide();
15208         }
15209         // sometimes animateTarget seems to get set.. causing problems...
15210         // this just double checks..
15211         if(this.animateTarget && Roo.get(this.animateTarget)) {
15212            this.animHide(callback);
15213         }else{
15214             this.el.hide();
15215             this.hideEl(callback);
15216         }
15217         return this;
15218     },
15219
15220     // private
15221     hideEl : function(callback){
15222         this.proxy.hide();
15223         if(this.modal){
15224             this.mask.hide();
15225             Roo.get(document.body).removeClass("x-body-masked");
15226         }
15227         this.fireEvent("hide", this);
15228         if(typeof callback == "function"){
15229             callback();
15230         }
15231     },
15232
15233     // private
15234     hideAction : function(){
15235         this.setLeft("-10000px");
15236         this.setTop("-10000px");
15237         this.setStyle("visibility", "hidden");
15238     },
15239
15240     // private
15241     refreshSize : function(){
15242         this.size = this.el.getSize();
15243         this.xy = this.el.getXY();
15244         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
15245     },
15246
15247     // private
15248     // z-index is managed by the DialogManager and may be overwritten at any time
15249     setZIndex : function(index){
15250         if(this.modal){
15251             this.mask.setStyle("z-index", index);
15252         }
15253         if(this.shim){
15254             this.shim.setStyle("z-index", ++index);
15255         }
15256         if(this.shadow){
15257             this.shadow.setZIndex(++index);
15258         }
15259         this.el.setStyle("z-index", ++index);
15260         if(this.proxy){
15261             this.proxy.setStyle("z-index", ++index);
15262         }
15263         if(this.resizer){
15264             this.resizer.proxy.setStyle("z-index", ++index);
15265         }
15266
15267         this.lastZIndex = index;
15268     },
15269
15270     /**
15271      * Returns the element for this dialog
15272      * @return {Roo.Element} The underlying dialog Element
15273      */
15274     getEl : function(){
15275         return this.el;
15276     }
15277 });
15278
15279 /**
15280  * @class Roo.DialogManager
15281  * Provides global access to BasicDialogs that have been created and
15282  * support for z-indexing (layering) multiple open dialogs.
15283  */
15284 Roo.DialogManager = function(){
15285     var list = {};
15286     var accessList = [];
15287     var front = null;
15288
15289     // private
15290     var sortDialogs = function(d1, d2){
15291         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
15292     };
15293
15294     // private
15295     var orderDialogs = function(){
15296         accessList.sort(sortDialogs);
15297         var seed = Roo.DialogManager.zseed;
15298         for(var i = 0, len = accessList.length; i < len; i++){
15299             var dlg = accessList[i];
15300             if(dlg){
15301                 dlg.setZIndex(seed + (i*10));
15302             }
15303         }
15304     };
15305
15306     return {
15307         /**
15308          * The starting z-index for BasicDialogs (defaults to 9000)
15309          * @type Number The z-index value
15310          */
15311         zseed : 9000,
15312
15313         // private
15314         register : function(dlg){
15315             list[dlg.id] = dlg;
15316             accessList.push(dlg);
15317         },
15318
15319         // private
15320         unregister : function(dlg){
15321             delete list[dlg.id];
15322             var i=0;
15323             var len=0;
15324             if(!accessList.indexOf){
15325                 for(  i = 0, len = accessList.length; i < len; i++){
15326                     if(accessList[i] == dlg){
15327                         accessList.splice(i, 1);
15328                         return;
15329                     }
15330                 }
15331             }else{
15332                  i = accessList.indexOf(dlg);
15333                 if(i != -1){
15334                     accessList.splice(i, 1);
15335                 }
15336             }
15337         },
15338
15339         /**
15340          * Gets a registered dialog by id
15341          * @param {String/Object} id The id of the dialog or a dialog
15342          * @return {Roo.BasicDialog} this
15343          */
15344         get : function(id){
15345             return typeof id == "object" ? id : list[id];
15346         },
15347
15348         /**
15349          * Brings the specified dialog to the front
15350          * @param {String/Object} dlg The id of the dialog or a dialog
15351          * @return {Roo.BasicDialog} this
15352          */
15353         bringToFront : function(dlg){
15354             dlg = this.get(dlg);
15355             if(dlg != front){
15356                 front = dlg;
15357                 dlg._lastAccess = new Date().getTime();
15358                 orderDialogs();
15359             }
15360             return dlg;
15361         },
15362
15363         /**
15364          * Sends the specified dialog to the back
15365          * @param {String/Object} dlg The id of the dialog or a dialog
15366          * @return {Roo.BasicDialog} this
15367          */
15368         sendToBack : function(dlg){
15369             dlg = this.get(dlg);
15370             dlg._lastAccess = -(new Date().getTime());
15371             orderDialogs();
15372             return dlg;
15373         },
15374
15375         /**
15376          * Hides all dialogs
15377          */
15378         hideAll : function(){
15379             for(var id in list){
15380                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
15381                     list[id].hide();
15382                 }
15383             }
15384         }
15385     };
15386 }();
15387
15388 /**
15389  * @class Roo.LayoutDialog
15390  * @extends Roo.BasicDialog
15391  * Dialog which provides adjustments for working with a layout in a Dialog.
15392  * Add your necessary layout config options to the dialog's config.<br>
15393  * Example usage (including a nested layout):
15394  * <pre><code>
15395 if(!dialog){
15396     dialog = new Roo.LayoutDialog("download-dlg", {
15397         modal: true,
15398         width:600,
15399         height:450,
15400         shadow:true,
15401         minWidth:500,
15402         minHeight:350,
15403         autoTabs:true,
15404         proxyDrag:true,
15405         // layout config merges with the dialog config
15406         center:{
15407             tabPosition: "top",
15408             alwaysShowTabs: true
15409         }
15410     });
15411     dialog.addKeyListener(27, dialog.hide, dialog);
15412     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
15413     dialog.addButton("Build It!", this.getDownload, this);
15414
15415     // we can even add nested layouts
15416     var innerLayout = new Roo.BorderLayout("dl-inner", {
15417         east: {
15418             initialSize: 200,
15419             autoScroll:true,
15420             split:true
15421         },
15422         center: {
15423             autoScroll:true
15424         }
15425     });
15426     innerLayout.beginUpdate();
15427     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
15428     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
15429     innerLayout.endUpdate(true);
15430
15431     var layout = dialog.getLayout();
15432     layout.beginUpdate();
15433     layout.add("center", new Roo.ContentPanel("standard-panel",
15434                         {title: "Download the Source", fitToFrame:true}));
15435     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
15436                {title: "Build your own roo.js"}));
15437     layout.getRegion("center").showPanel(sp);
15438     layout.endUpdate();
15439 }
15440 </code></pre>
15441     * @constructor
15442     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
15443     * @param {Object} config configuration options
15444   */
15445 Roo.LayoutDialog = function(el, cfg){
15446     
15447     var config=  cfg;
15448     if (typeof(cfg) == 'undefined') {
15449         config = Roo.apply({}, el);
15450         // not sure why we use documentElement here.. - it should always be body.
15451         // IE7 borks horribly if we use documentElement.
15452         // webkit also does not like documentElement - it creates a body element...
15453         el = Roo.get( document.body || document.documentElement ).createChild();
15454         //config.autoCreate = true;
15455     }
15456     
15457     
15458     config.autoTabs = false;
15459     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
15460     this.body.setStyle({overflow:"hidden", position:"relative"});
15461     this.layout = new Roo.BorderLayout(this.body.dom, config);
15462     this.layout.monitorWindowResize = false;
15463     this.el.addClass("x-dlg-auto-layout");
15464     // fix case when center region overwrites center function
15465     this.center = Roo.BasicDialog.prototype.center;
15466     this.on("show", this.layout.layout, this.layout, true);
15467     if (config.items) {
15468         var xitems = config.items;
15469         delete config.items;
15470         Roo.each(xitems, this.addxtype, this);
15471     }
15472     
15473     
15474 };
15475 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
15476     /**
15477      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
15478      * @deprecated
15479      */
15480     endUpdate : function(){
15481         this.layout.endUpdate();
15482     },
15483
15484     /**
15485      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
15486      *  @deprecated
15487      */
15488     beginUpdate : function(){
15489         this.layout.beginUpdate();
15490     },
15491
15492     /**
15493      * Get the BorderLayout for this dialog
15494      * @return {Roo.BorderLayout}
15495      */
15496     getLayout : function(){
15497         return this.layout;
15498     },
15499
15500     showEl : function(){
15501         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
15502         if(Roo.isIE7){
15503             this.layout.layout();
15504         }
15505     },
15506
15507     // private
15508     // Use the syncHeightBeforeShow config option to control this automatically
15509     syncBodyHeight : function(){
15510         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
15511         if(this.layout){this.layout.layout();}
15512     },
15513     
15514       /**
15515      * Add an xtype element (actually adds to the layout.)
15516      * @return {Object} xdata xtype object data.
15517      */
15518     
15519     addxtype : function(c) {
15520         return this.layout.addxtype(c);
15521     }
15522 });/*
15523  * Based on:
15524  * Ext JS Library 1.1.1
15525  * Copyright(c) 2006-2007, Ext JS, LLC.
15526  *
15527  * Originally Released Under LGPL - original licence link has changed is not relivant.
15528  *
15529  * Fork - LGPL
15530  * <script type="text/javascript">
15531  */
15532  
15533 /**
15534  * @class Roo.MessageBox
15535  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
15536  * Example usage:
15537  *<pre><code>
15538 // Basic alert:
15539 Roo.Msg.alert('Status', 'Changes saved successfully.');
15540
15541 // Prompt for user data:
15542 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
15543     if (btn == 'ok'){
15544         // process text value...
15545     }
15546 });
15547
15548 // Show a dialog using config options:
15549 Roo.Msg.show({
15550    title:'Save Changes?',
15551    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
15552    buttons: Roo.Msg.YESNOCANCEL,
15553    fn: processResult,
15554    animEl: 'elId'
15555 });
15556 </code></pre>
15557  * @singleton
15558  */
15559 Roo.MessageBox = function(){
15560     var dlg, opt, mask, waitTimer;
15561     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
15562     var buttons, activeTextEl, bwidth;
15563
15564     // private
15565     var handleButton = function(button){
15566         dlg.hide();
15567         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
15568     };
15569
15570     // private
15571     var handleHide = function(){
15572         if(opt && opt.cls){
15573             dlg.el.removeClass(opt.cls);
15574         }
15575         if(waitTimer){
15576             Roo.TaskMgr.stop(waitTimer);
15577             waitTimer = null;
15578         }
15579     };
15580
15581     // private
15582     var updateButtons = function(b){
15583         var width = 0;
15584         if(!b){
15585             buttons["ok"].hide();
15586             buttons["cancel"].hide();
15587             buttons["yes"].hide();
15588             buttons["no"].hide();
15589             dlg.footer.dom.style.display = 'none';
15590             return width;
15591         }
15592         dlg.footer.dom.style.display = '';
15593         for(var k in buttons){
15594             if(typeof buttons[k] != "function"){
15595                 if(b[k]){
15596                     buttons[k].show();
15597                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
15598                     width += buttons[k].el.getWidth()+15;
15599                 }else{
15600                     buttons[k].hide();
15601                 }
15602             }
15603         }
15604         return width;
15605     };
15606
15607     // private
15608     var handleEsc = function(d, k, e){
15609         if(opt && opt.closable !== false){
15610             dlg.hide();
15611         }
15612         if(e){
15613             e.stopEvent();
15614         }
15615     };
15616
15617     return {
15618         /**
15619          * Returns a reference to the underlying {@link Roo.BasicDialog} element
15620          * @return {Roo.BasicDialog} The BasicDialog element
15621          */
15622         getDialog : function(){
15623            if(!dlg){
15624                 dlg = new Roo.BasicDialog("x-msg-box", {
15625                     autoCreate : true,
15626                     shadow: true,
15627                     draggable: true,
15628                     resizable:false,
15629                     constraintoviewport:false,
15630                     fixedcenter:true,
15631                     collapsible : false,
15632                     shim:true,
15633                     modal: true,
15634                     width:400, height:100,
15635                     buttonAlign:"center",
15636                     closeClick : function(){
15637                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
15638                             handleButton("no");
15639                         }else{
15640                             handleButton("cancel");
15641                         }
15642                     }
15643                 });
15644                 dlg.on("hide", handleHide);
15645                 mask = dlg.mask;
15646                 dlg.addKeyListener(27, handleEsc);
15647                 buttons = {};
15648                 var bt = this.buttonText;
15649                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
15650                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
15651                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
15652                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
15653                 bodyEl = dlg.body.createChild({
15654
15655                     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>'
15656                 });
15657                 msgEl = bodyEl.dom.firstChild;
15658                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
15659                 textboxEl.enableDisplayMode();
15660                 textboxEl.addKeyListener([10,13], function(){
15661                     if(dlg.isVisible() && opt && opt.buttons){
15662                         if(opt.buttons.ok){
15663                             handleButton("ok");
15664                         }else if(opt.buttons.yes){
15665                             handleButton("yes");
15666                         }
15667                     }
15668                 });
15669                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
15670                 textareaEl.enableDisplayMode();
15671                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
15672                 progressEl.enableDisplayMode();
15673                 var pf = progressEl.dom.firstChild;
15674                 if (pf) {
15675                     pp = Roo.get(pf.firstChild);
15676                     pp.setHeight(pf.offsetHeight);
15677                 }
15678                 
15679             }
15680             return dlg;
15681         },
15682
15683         /**
15684          * Updates the message box body text
15685          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
15686          * the XHTML-compliant non-breaking space character '&amp;#160;')
15687          * @return {Roo.MessageBox} This message box
15688          */
15689         updateText : function(text){
15690             if(!dlg.isVisible() && !opt.width){
15691                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
15692             }
15693             msgEl.innerHTML = text || '&#160;';
15694       
15695             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
15696             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
15697             var w = Math.max(
15698                     Math.min(opt.width || cw , this.maxWidth), 
15699                     Math.max(opt.minWidth || this.minWidth, bwidth)
15700             );
15701             if(opt.prompt){
15702                 activeTextEl.setWidth(w);
15703             }
15704             if(dlg.isVisible()){
15705                 dlg.fixedcenter = false;
15706             }
15707             // to big, make it scroll. = But as usual stupid IE does not support
15708             // !important..
15709             
15710             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
15711                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
15712                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
15713             } else {
15714                 bodyEl.dom.style.height = '';
15715                 bodyEl.dom.style.overflowY = '';
15716             }
15717             if (cw > w) {
15718                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
15719             } else {
15720                 bodyEl.dom.style.overflowX = '';
15721             }
15722             
15723             dlg.setContentSize(w, bodyEl.getHeight());
15724             if(dlg.isVisible()){
15725                 dlg.fixedcenter = true;
15726             }
15727             return this;
15728         },
15729
15730         /**
15731          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
15732          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
15733          * @param {Number} value Any number between 0 and 1 (e.g., .5)
15734          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
15735          * @return {Roo.MessageBox} This message box
15736          */
15737         updateProgress : function(value, text){
15738             if(text){
15739                 this.updateText(text);
15740             }
15741             if (pp) { // weird bug on my firefox - for some reason this is not defined
15742                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
15743             }
15744             return this;
15745         },        
15746
15747         /**
15748          * Returns true if the message box is currently displayed
15749          * @return {Boolean} True if the message box is visible, else false
15750          */
15751         isVisible : function(){
15752             return dlg && dlg.isVisible();  
15753         },
15754
15755         /**
15756          * Hides the message box if it is displayed
15757          */
15758         hide : function(){
15759             if(this.isVisible()){
15760                 dlg.hide();
15761             }  
15762         },
15763
15764         /**
15765          * Displays a new message box, or reinitializes an existing message box, based on the config options
15766          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
15767          * The following config object properties are supported:
15768          * <pre>
15769 Property    Type             Description
15770 ----------  ---------------  ------------------------------------------------------------------------------------
15771 animEl            String/Element   An id or Element from which the message box should animate as it opens and
15772                                    closes (defaults to undefined)
15773 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
15774                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
15775 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
15776                                    progress and wait dialogs will ignore this property and always hide the
15777                                    close button as they can only be closed programmatically.
15778 cls               String           A custom CSS class to apply to the message box element
15779 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
15780                                    displayed (defaults to 75)
15781 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
15782                                    function will be btn (the name of the button that was clicked, if applicable,
15783                                    e.g. "ok"), and text (the value of the active text field, if applicable).
15784                                    Progress and wait dialogs will ignore this option since they do not respond to
15785                                    user actions and can only be closed programmatically, so any required function
15786                                    should be called by the same code after it closes the dialog.
15787 icon              String           A CSS class that provides a background image to be used as an icon for
15788                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
15789 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
15790 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
15791 modal             Boolean          False to allow user interaction with the page while the message box is
15792                                    displayed (defaults to true)
15793 msg               String           A string that will replace the existing message box body text (defaults
15794                                    to the XHTML-compliant non-breaking space character '&#160;')
15795 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
15796 progress          Boolean          True to display a progress bar (defaults to false)
15797 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
15798 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
15799 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
15800 title             String           The title text
15801 value             String           The string value to set into the active textbox element if displayed
15802 wait              Boolean          True to display a progress bar (defaults to false)
15803 width             Number           The width of the dialog in pixels
15804 </pre>
15805          *
15806          * Example usage:
15807          * <pre><code>
15808 Roo.Msg.show({
15809    title: 'Address',
15810    msg: 'Please enter your address:',
15811    width: 300,
15812    buttons: Roo.MessageBox.OKCANCEL,
15813    multiline: true,
15814    fn: saveAddress,
15815    animEl: 'addAddressBtn'
15816 });
15817 </code></pre>
15818          * @param {Object} config Configuration options
15819          * @return {Roo.MessageBox} This message box
15820          */
15821         show : function(options)
15822         {
15823             
15824             // this causes nightmares if you show one dialog after another
15825             // especially on callbacks..
15826              
15827             if(this.isVisible()){
15828                 
15829                 this.hide();
15830                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
15831                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
15832                 Roo.log("New Dialog Message:" +  options.msg )
15833                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
15834                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
15835                 
15836             }
15837             var d = this.getDialog();
15838             opt = options;
15839             d.setTitle(opt.title || "&#160;");
15840             d.close.setDisplayed(opt.closable !== false);
15841             activeTextEl = textboxEl;
15842             opt.prompt = opt.prompt || (opt.multiline ? true : false);
15843             if(opt.prompt){
15844                 if(opt.multiline){
15845                     textboxEl.hide();
15846                     textareaEl.show();
15847                     textareaEl.setHeight(typeof opt.multiline == "number" ?
15848                         opt.multiline : this.defaultTextHeight);
15849                     activeTextEl = textareaEl;
15850                 }else{
15851                     textboxEl.show();
15852                     textareaEl.hide();
15853                 }
15854             }else{
15855                 textboxEl.hide();
15856                 textareaEl.hide();
15857             }
15858             progressEl.setDisplayed(opt.progress === true);
15859             this.updateProgress(0);
15860             activeTextEl.dom.value = opt.value || "";
15861             if(opt.prompt){
15862                 dlg.setDefaultButton(activeTextEl);
15863             }else{
15864                 var bs = opt.buttons;
15865                 var db = null;
15866                 if(bs && bs.ok){
15867                     db = buttons["ok"];
15868                 }else if(bs && bs.yes){
15869                     db = buttons["yes"];
15870                 }
15871                 dlg.setDefaultButton(db);
15872             }
15873             bwidth = updateButtons(opt.buttons);
15874             this.updateText(opt.msg);
15875             if(opt.cls){
15876                 d.el.addClass(opt.cls);
15877             }
15878             d.proxyDrag = opt.proxyDrag === true;
15879             d.modal = opt.modal !== false;
15880             d.mask = opt.modal !== false ? mask : false;
15881             if(!d.isVisible()){
15882                 // force it to the end of the z-index stack so it gets a cursor in FF
15883                 document.body.appendChild(dlg.el.dom);
15884                 d.animateTarget = null;
15885                 d.show(options.animEl);
15886             }
15887             return this;
15888         },
15889
15890         /**
15891          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
15892          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
15893          * and closing the message box when the process is complete.
15894          * @param {String} title The title bar text
15895          * @param {String} msg The message box body text
15896          * @return {Roo.MessageBox} This message box
15897          */
15898         progress : function(title, msg){
15899             this.show({
15900                 title : title,
15901                 msg : msg,
15902                 buttons: false,
15903                 progress:true,
15904                 closable:false,
15905                 minWidth: this.minProgressWidth,
15906                 modal : true
15907             });
15908             return this;
15909         },
15910
15911         /**
15912          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
15913          * If a callback function is passed it will be called after the user clicks the button, and the
15914          * id of the button that was clicked will be passed as the only parameter to the callback
15915          * (could also be the top-right close button).
15916          * @param {String} title The title bar text
15917          * @param {String} msg The message box body text
15918          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15919          * @param {Object} scope (optional) The scope of the callback function
15920          * @return {Roo.MessageBox} This message box
15921          */
15922         alert : function(title, msg, fn, scope){
15923             this.show({
15924                 title : title,
15925                 msg : msg,
15926                 buttons: this.OK,
15927                 fn: fn,
15928                 scope : scope,
15929                 modal : true
15930             });
15931             return this;
15932         },
15933
15934         /**
15935          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
15936          * interaction while waiting for a long-running process to complete that does not have defined intervals.
15937          * You are responsible for closing the message box when the process is complete.
15938          * @param {String} msg The message box body text
15939          * @param {String} title (optional) The title bar text
15940          * @return {Roo.MessageBox} This message box
15941          */
15942         wait : function(msg, title){
15943             this.show({
15944                 title : title,
15945                 msg : msg,
15946                 buttons: false,
15947                 closable:false,
15948                 progress:true,
15949                 modal:true,
15950                 width:300,
15951                 wait:true
15952             });
15953             waitTimer = Roo.TaskMgr.start({
15954                 run: function(i){
15955                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
15956                 },
15957                 interval: 1000
15958             });
15959             return this;
15960         },
15961
15962         /**
15963          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
15964          * If a callback function is passed it will be called after the user clicks either button, and the id of the
15965          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
15966          * @param {String} title The title bar text
15967          * @param {String} msg The message box body text
15968          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15969          * @param {Object} scope (optional) The scope of the callback function
15970          * @return {Roo.MessageBox} This message box
15971          */
15972         confirm : function(title, msg, fn, scope){
15973             this.show({
15974                 title : title,
15975                 msg : msg,
15976                 buttons: this.YESNO,
15977                 fn: fn,
15978                 scope : scope,
15979                 modal : true
15980             });
15981             return this;
15982         },
15983
15984         /**
15985          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
15986          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
15987          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
15988          * (could also be the top-right close button) and the text that was entered will be passed as the two
15989          * parameters to the callback.
15990          * @param {String} title The title bar text
15991          * @param {String} msg The message box body text
15992          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15993          * @param {Object} scope (optional) The scope of the callback function
15994          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
15995          * property, or the height in pixels to create the textbox (defaults to false / single-line)
15996          * @return {Roo.MessageBox} This message box
15997          */
15998         prompt : function(title, msg, fn, scope, multiline){
15999             this.show({
16000                 title : title,
16001                 msg : msg,
16002                 buttons: this.OKCANCEL,
16003                 fn: fn,
16004                 minWidth:250,
16005                 scope : scope,
16006                 prompt:true,
16007                 multiline: multiline,
16008                 modal : true
16009             });
16010             return this;
16011         },
16012
16013         /**
16014          * Button config that displays a single OK button
16015          * @type Object
16016          */
16017         OK : {ok:true},
16018         /**
16019          * Button config that displays Yes and No buttons
16020          * @type Object
16021          */
16022         YESNO : {yes:true, no:true},
16023         /**
16024          * Button config that displays OK and Cancel buttons
16025          * @type Object
16026          */
16027         OKCANCEL : {ok:true, cancel:true},
16028         /**
16029          * Button config that displays Yes, No and Cancel buttons
16030          * @type Object
16031          */
16032         YESNOCANCEL : {yes:true, no:true, cancel:true},
16033
16034         /**
16035          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
16036          * @type Number
16037          */
16038         defaultTextHeight : 75,
16039         /**
16040          * The maximum width in pixels of the message box (defaults to 600)
16041          * @type Number
16042          */
16043         maxWidth : 600,
16044         /**
16045          * The minimum width in pixels of the message box (defaults to 100)
16046          * @type Number
16047          */
16048         minWidth : 100,
16049         /**
16050          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
16051          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
16052          * @type Number
16053          */
16054         minProgressWidth : 250,
16055         /**
16056          * An object containing the default button text strings that can be overriden for localized language support.
16057          * Supported properties are: ok, cancel, yes and no.
16058          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
16059          * @type Object
16060          */
16061         buttonText : {
16062             ok : "OK",
16063             cancel : "Cancel",
16064             yes : "Yes",
16065             no : "No"
16066         }
16067     };
16068 }();
16069
16070 /**
16071  * Shorthand for {@link Roo.MessageBox}
16072  */
16073 Roo.Msg = Roo.MessageBox;/*
16074  * Based on:
16075  * Ext JS Library 1.1.1
16076  * Copyright(c) 2006-2007, Ext JS, LLC.
16077  *
16078  * Originally Released Under LGPL - original licence link has changed is not relivant.
16079  *
16080  * Fork - LGPL
16081  * <script type="text/javascript">
16082  */
16083 /**
16084  * @class Roo.QuickTips
16085  * Provides attractive and customizable tooltips for any element.
16086  * @singleton
16087  */
16088 Roo.QuickTips = function(){
16089     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
16090     var ce, bd, xy, dd;
16091     var visible = false, disabled = true, inited = false;
16092     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
16093     
16094     var onOver = function(e){
16095         if(disabled){
16096             return;
16097         }
16098         var t = e.getTarget();
16099         if(!t || t.nodeType !== 1 || t == document || t == document.body){
16100             return;
16101         }
16102         if(ce && t == ce.el){
16103             clearTimeout(hideProc);
16104             return;
16105         }
16106         if(t && tagEls[t.id]){
16107             tagEls[t.id].el = t;
16108             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
16109             return;
16110         }
16111         var ttp, et = Roo.fly(t);
16112         var ns = cfg.namespace;
16113         if(tm.interceptTitles && t.title){
16114             ttp = t.title;
16115             t.qtip = ttp;
16116             t.removeAttribute("title");
16117             e.preventDefault();
16118         }else{
16119             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute);
16120         }
16121         if(ttp){
16122             showProc = show.defer(tm.showDelay, tm, [{
16123                 el: t, 
16124                 text: ttp, 
16125                 width: et.getAttributeNS(ns, cfg.width),
16126                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
16127                 title: et.getAttributeNS(ns, cfg.title),
16128                     cls: et.getAttributeNS(ns, cfg.cls)
16129             }]);
16130         }
16131     };
16132     
16133     var onOut = function(e){
16134         clearTimeout(showProc);
16135         var t = e.getTarget();
16136         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
16137             hideProc = setTimeout(hide, tm.hideDelay);
16138         }
16139     };
16140     
16141     var onMove = function(e){
16142         if(disabled){
16143             return;
16144         }
16145         xy = e.getXY();
16146         xy[1] += 18;
16147         if(tm.trackMouse && ce){
16148             el.setXY(xy);
16149         }
16150     };
16151     
16152     var onDown = function(e){
16153         clearTimeout(showProc);
16154         clearTimeout(hideProc);
16155         if(!e.within(el)){
16156             if(tm.hideOnClick){
16157                 hide();
16158                 tm.disable();
16159                 tm.enable.defer(100, tm);
16160             }
16161         }
16162     };
16163     
16164     var getPad = function(){
16165         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
16166     };
16167
16168     var show = function(o){
16169         if(disabled){
16170             return;
16171         }
16172         clearTimeout(dismissProc);
16173         ce = o;
16174         if(removeCls){ // in case manually hidden
16175             el.removeClass(removeCls);
16176             removeCls = null;
16177         }
16178         if(ce.cls){
16179             el.addClass(ce.cls);
16180             removeCls = ce.cls;
16181         }
16182         if(ce.title){
16183             tipTitle.update(ce.title);
16184             tipTitle.show();
16185         }else{
16186             tipTitle.update('');
16187             tipTitle.hide();
16188         }
16189         el.dom.style.width  = tm.maxWidth+'px';
16190         //tipBody.dom.style.width = '';
16191         tipBodyText.update(o.text);
16192         var p = getPad(), w = ce.width;
16193         if(!w){
16194             var td = tipBodyText.dom;
16195             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
16196             if(aw > tm.maxWidth){
16197                 w = tm.maxWidth;
16198             }else if(aw < tm.minWidth){
16199                 w = tm.minWidth;
16200             }else{
16201                 w = aw;
16202             }
16203         }
16204         //tipBody.setWidth(w);
16205         el.setWidth(parseInt(w, 10) + p);
16206         if(ce.autoHide === false){
16207             close.setDisplayed(true);
16208             if(dd){
16209                 dd.unlock();
16210             }
16211         }else{
16212             close.setDisplayed(false);
16213             if(dd){
16214                 dd.lock();
16215             }
16216         }
16217         if(xy){
16218             el.avoidY = xy[1]-18;
16219             el.setXY(xy);
16220         }
16221         if(tm.animate){
16222             el.setOpacity(.1);
16223             el.setStyle("visibility", "visible");
16224             el.fadeIn({callback: afterShow});
16225         }else{
16226             afterShow();
16227         }
16228     };
16229     
16230     var afterShow = function(){
16231         if(ce){
16232             el.show();
16233             esc.enable();
16234             if(tm.autoDismiss && ce.autoHide !== false){
16235                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
16236             }
16237         }
16238     };
16239     
16240     var hide = function(noanim){
16241         clearTimeout(dismissProc);
16242         clearTimeout(hideProc);
16243         ce = null;
16244         if(el.isVisible()){
16245             esc.disable();
16246             if(noanim !== true && tm.animate){
16247                 el.fadeOut({callback: afterHide});
16248             }else{
16249                 afterHide();
16250             } 
16251         }
16252     };
16253     
16254     var afterHide = function(){
16255         el.hide();
16256         if(removeCls){
16257             el.removeClass(removeCls);
16258             removeCls = null;
16259         }
16260     };
16261     
16262     return {
16263         /**
16264         * @cfg {Number} minWidth
16265         * The minimum width of the quick tip (defaults to 40)
16266         */
16267        minWidth : 40,
16268         /**
16269         * @cfg {Number} maxWidth
16270         * The maximum width of the quick tip (defaults to 300)
16271         */
16272        maxWidth : 300,
16273         /**
16274         * @cfg {Boolean} interceptTitles
16275         * True to automatically use the element's DOM title value if available (defaults to false)
16276         */
16277        interceptTitles : false,
16278         /**
16279         * @cfg {Boolean} trackMouse
16280         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
16281         */
16282        trackMouse : false,
16283         /**
16284         * @cfg {Boolean} hideOnClick
16285         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
16286         */
16287        hideOnClick : true,
16288         /**
16289         * @cfg {Number} showDelay
16290         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
16291         */
16292        showDelay : 500,
16293         /**
16294         * @cfg {Number} hideDelay
16295         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
16296         */
16297        hideDelay : 200,
16298         /**
16299         * @cfg {Boolean} autoHide
16300         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
16301         * Used in conjunction with hideDelay.
16302         */
16303        autoHide : true,
16304         /**
16305         * @cfg {Boolean}
16306         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
16307         * (defaults to true).  Used in conjunction with autoDismissDelay.
16308         */
16309        autoDismiss : true,
16310         /**
16311         * @cfg {Number}
16312         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
16313         */
16314        autoDismissDelay : 5000,
16315        /**
16316         * @cfg {Boolean} animate
16317         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
16318         */
16319        animate : false,
16320
16321        /**
16322         * @cfg {String} title
16323         * Title text to display (defaults to '').  This can be any valid HTML markup.
16324         */
16325         title: '',
16326        /**
16327         * @cfg {String} text
16328         * Body text to display (defaults to '').  This can be any valid HTML markup.
16329         */
16330         text : '',
16331        /**
16332         * @cfg {String} cls
16333         * A CSS class to apply to the base quick tip element (defaults to '').
16334         */
16335         cls : '',
16336        /**
16337         * @cfg {Number} width
16338         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
16339         * minWidth or maxWidth.
16340         */
16341         width : null,
16342
16343     /**
16344      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
16345      * or display QuickTips in a page.
16346      */
16347        init : function(){
16348           tm = Roo.QuickTips;
16349           cfg = tm.tagConfig;
16350           if(!inited){
16351               if(!Roo.isReady){ // allow calling of init() before onReady
16352                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
16353                   return;
16354               }
16355               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
16356               el.fxDefaults = {stopFx: true};
16357               // maximum custom styling
16358               //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>');
16359               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>');              
16360               tipTitle = el.child('h3');
16361               tipTitle.enableDisplayMode("block");
16362               tipBody = el.child('div.x-tip-bd');
16363               tipBodyText = el.child('div.x-tip-bd-inner');
16364               //bdLeft = el.child('div.x-tip-bd-left');
16365               //bdRight = el.child('div.x-tip-bd-right');
16366               close = el.child('div.x-tip-close');
16367               close.enableDisplayMode("block");
16368               close.on("click", hide);
16369               var d = Roo.get(document);
16370               d.on("mousedown", onDown);
16371               d.on("mouseover", onOver);
16372               d.on("mouseout", onOut);
16373               d.on("mousemove", onMove);
16374               esc = d.addKeyListener(27, hide);
16375               esc.disable();
16376               if(Roo.dd.DD){
16377                   dd = el.initDD("default", null, {
16378                       onDrag : function(){
16379                           el.sync();  
16380                       }
16381                   });
16382                   dd.setHandleElId(tipTitle.id);
16383                   dd.lock();
16384               }
16385               inited = true;
16386           }
16387           this.enable(); 
16388        },
16389
16390     /**
16391      * Configures a new quick tip instance and assigns it to a target element.  The following config options
16392      * are supported:
16393      * <pre>
16394 Property    Type                   Description
16395 ----------  ---------------------  ------------------------------------------------------------------------
16396 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
16397      * </ul>
16398      * @param {Object} config The config object
16399      */
16400        register : function(config){
16401            var cs = config instanceof Array ? config : arguments;
16402            for(var i = 0, len = cs.length; i < len; i++) {
16403                var c = cs[i];
16404                var target = c.target;
16405                if(target){
16406                    if(target instanceof Array){
16407                        for(var j = 0, jlen = target.length; j < jlen; j++){
16408                            tagEls[target[j]] = c;
16409                        }
16410                    }else{
16411                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
16412                    }
16413                }
16414            }
16415        },
16416
16417     /**
16418      * Removes this quick tip from its element and destroys it.
16419      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
16420      */
16421        unregister : function(el){
16422            delete tagEls[Roo.id(el)];
16423        },
16424
16425     /**
16426      * Enable this quick tip.
16427      */
16428        enable : function(){
16429            if(inited && disabled){
16430                locks.pop();
16431                if(locks.length < 1){
16432                    disabled = false;
16433                }
16434            }
16435        },
16436
16437     /**
16438      * Disable this quick tip.
16439      */
16440        disable : function(){
16441           disabled = true;
16442           clearTimeout(showProc);
16443           clearTimeout(hideProc);
16444           clearTimeout(dismissProc);
16445           if(ce){
16446               hide(true);
16447           }
16448           locks.push(1);
16449        },
16450
16451     /**
16452      * Returns true if the quick tip is enabled, else false.
16453      */
16454        isEnabled : function(){
16455             return !disabled;
16456        },
16457
16458         // private
16459        tagConfig : {
16460            namespace : "ext",
16461            attribute : "qtip",
16462            width : "width",
16463            target : "target",
16464            title : "qtitle",
16465            hide : "hide",
16466            cls : "qclass"
16467        }
16468    };
16469 }();
16470
16471 // backwards compat
16472 Roo.QuickTips.tips = Roo.QuickTips.register;/*
16473  * Based on:
16474  * Ext JS Library 1.1.1
16475  * Copyright(c) 2006-2007, Ext JS, LLC.
16476  *
16477  * Originally Released Under LGPL - original licence link has changed is not relivant.
16478  *
16479  * Fork - LGPL
16480  * <script type="text/javascript">
16481  */
16482  
16483
16484 /**
16485  * @class Roo.tree.TreePanel
16486  * @extends Roo.data.Tree
16487
16488  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
16489  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
16490  * @cfg {Boolean} enableDD true to enable drag and drop
16491  * @cfg {Boolean} enableDrag true to enable just drag
16492  * @cfg {Boolean} enableDrop true to enable just drop
16493  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
16494  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
16495  * @cfg {String} ddGroup The DD group this TreePanel belongs to
16496  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
16497  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
16498  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
16499  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
16500  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
16501  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
16502  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
16503  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
16504  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
16505  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
16506  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
16507  * @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>
16508  * @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>
16509  * 
16510  * @constructor
16511  * @param {String/HTMLElement/Element} el The container element
16512  * @param {Object} config
16513  */
16514 Roo.tree.TreePanel = function(el, config){
16515     var root = false;
16516     var loader = false;
16517     if (config.root) {
16518         root = config.root;
16519         delete config.root;
16520     }
16521     if (config.loader) {
16522         loader = config.loader;
16523         delete config.loader;
16524     }
16525     
16526     Roo.apply(this, config);
16527     Roo.tree.TreePanel.superclass.constructor.call(this);
16528     this.el = Roo.get(el);
16529     this.el.addClass('x-tree');
16530     //console.log(root);
16531     if (root) {
16532         this.setRootNode( Roo.factory(root, Roo.tree));
16533     }
16534     if (loader) {
16535         this.loader = Roo.factory(loader, Roo.tree);
16536     }
16537    /**
16538     * Read-only. The id of the container element becomes this TreePanel's id.
16539     */
16540     this.id = this.el.id;
16541     this.addEvents({
16542         /**
16543         * @event beforeload
16544         * Fires before a node is loaded, return false to cancel
16545         * @param {Node} node The node being loaded
16546         */
16547         "beforeload" : true,
16548         /**
16549         * @event load
16550         * Fires when a node is loaded
16551         * @param {Node} node The node that was loaded
16552         */
16553         "load" : true,
16554         /**
16555         * @event textchange
16556         * Fires when the text for a node is changed
16557         * @param {Node} node The node
16558         * @param {String} text The new text
16559         * @param {String} oldText The old text
16560         */
16561         "textchange" : true,
16562         /**
16563         * @event beforeexpand
16564         * Fires before a node is expanded, return false to cancel.
16565         * @param {Node} node The node
16566         * @param {Boolean} deep
16567         * @param {Boolean} anim
16568         */
16569         "beforeexpand" : true,
16570         /**
16571         * @event beforecollapse
16572         * Fires before a node is collapsed, return false to cancel.
16573         * @param {Node} node The node
16574         * @param {Boolean} deep
16575         * @param {Boolean} anim
16576         */
16577         "beforecollapse" : true,
16578         /**
16579         * @event expand
16580         * Fires when a node is expanded
16581         * @param {Node} node The node
16582         */
16583         "expand" : true,
16584         /**
16585         * @event disabledchange
16586         * Fires when the disabled status of a node changes
16587         * @param {Node} node The node
16588         * @param {Boolean} disabled
16589         */
16590         "disabledchange" : true,
16591         /**
16592         * @event collapse
16593         * Fires when a node is collapsed
16594         * @param {Node} node The node
16595         */
16596         "collapse" : true,
16597         /**
16598         * @event beforeclick
16599         * Fires before click processing on a node. Return false to cancel the default action.
16600         * @param {Node} node The node
16601         * @param {Roo.EventObject} e The event object
16602         */
16603         "beforeclick":true,
16604         /**
16605         * @event checkchange
16606         * Fires when a node with a checkbox's checked property changes
16607         * @param {Node} this This node
16608         * @param {Boolean} checked
16609         */
16610         "checkchange":true,
16611         /**
16612         * @event click
16613         * Fires when a node is clicked
16614         * @param {Node} node The node
16615         * @param {Roo.EventObject} e The event object
16616         */
16617         "click":true,
16618         /**
16619         * @event dblclick
16620         * Fires when a node is double clicked
16621         * @param {Node} node The node
16622         * @param {Roo.EventObject} e The event object
16623         */
16624         "dblclick":true,
16625         /**
16626         * @event contextmenu
16627         * Fires when a node is right clicked
16628         * @param {Node} node The node
16629         * @param {Roo.EventObject} e The event object
16630         */
16631         "contextmenu":true,
16632         /**
16633         * @event beforechildrenrendered
16634         * Fires right before the child nodes for a node are rendered
16635         * @param {Node} node The node
16636         */
16637         "beforechildrenrendered":true,
16638         /**
16639         * @event startdrag
16640         * Fires when a node starts being dragged
16641         * @param {Roo.tree.TreePanel} this
16642         * @param {Roo.tree.TreeNode} node
16643         * @param {event} e The raw browser event
16644         */ 
16645        "startdrag" : true,
16646        /**
16647         * @event enddrag
16648         * Fires when a drag operation is complete
16649         * @param {Roo.tree.TreePanel} this
16650         * @param {Roo.tree.TreeNode} node
16651         * @param {event} e The raw browser event
16652         */
16653        "enddrag" : true,
16654        /**
16655         * @event dragdrop
16656         * Fires when a dragged node is dropped on a valid DD target
16657         * @param {Roo.tree.TreePanel} this
16658         * @param {Roo.tree.TreeNode} node
16659         * @param {DD} dd The dd it was dropped on
16660         * @param {event} e The raw browser event
16661         */
16662        "dragdrop" : true,
16663        /**
16664         * @event beforenodedrop
16665         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
16666         * passed to handlers has the following properties:<br />
16667         * <ul style="padding:5px;padding-left:16px;">
16668         * <li>tree - The TreePanel</li>
16669         * <li>target - The node being targeted for the drop</li>
16670         * <li>data - The drag data from the drag source</li>
16671         * <li>point - The point of the drop - append, above or below</li>
16672         * <li>source - The drag source</li>
16673         * <li>rawEvent - Raw mouse event</li>
16674         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
16675         * to be inserted by setting them on this object.</li>
16676         * <li>cancel - Set this to true to cancel the drop.</li>
16677         * </ul>
16678         * @param {Object} dropEvent
16679         */
16680        "beforenodedrop" : true,
16681        /**
16682         * @event nodedrop
16683         * Fires after a DD object is dropped on a node in this tree. The dropEvent
16684         * passed to handlers has the following properties:<br />
16685         * <ul style="padding:5px;padding-left:16px;">
16686         * <li>tree - The TreePanel</li>
16687         * <li>target - The node being targeted for the drop</li>
16688         * <li>data - The drag data from the drag source</li>
16689         * <li>point - The point of the drop - append, above or below</li>
16690         * <li>source - The drag source</li>
16691         * <li>rawEvent - Raw mouse event</li>
16692         * <li>dropNode - Dropped node(s).</li>
16693         * </ul>
16694         * @param {Object} dropEvent
16695         */
16696        "nodedrop" : true,
16697         /**
16698         * @event nodedragover
16699         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
16700         * passed to handlers has the following properties:<br />
16701         * <ul style="padding:5px;padding-left:16px;">
16702         * <li>tree - The TreePanel</li>
16703         * <li>target - The node being targeted for the drop</li>
16704         * <li>data - The drag data from the drag source</li>
16705         * <li>point - The point of the drop - append, above or below</li>
16706         * <li>source - The drag source</li>
16707         * <li>rawEvent - Raw mouse event</li>
16708         * <li>dropNode - Drop node(s) provided by the source.</li>
16709         * <li>cancel - Set this to true to signal drop not allowed.</li>
16710         * </ul>
16711         * @param {Object} dragOverEvent
16712         */
16713        "nodedragover" : true
16714         
16715     });
16716     if(this.singleExpand){
16717        this.on("beforeexpand", this.restrictExpand, this);
16718     }
16719     if (this.editor) {
16720         this.editor.tree = this;
16721         this.editor = Roo.factory(this.editor, Roo.tree);
16722     }
16723     
16724     if (this.selModel) {
16725         this.selModel = Roo.factory(this.selModel, Roo.tree);
16726     }
16727    
16728 };
16729 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
16730     rootVisible : true,
16731     animate: Roo.enableFx,
16732     lines : true,
16733     enableDD : false,
16734     hlDrop : Roo.enableFx,
16735   
16736     renderer: false,
16737     
16738     rendererTip: false,
16739     // private
16740     restrictExpand : function(node){
16741         var p = node.parentNode;
16742         if(p){
16743             if(p.expandedChild && p.expandedChild.parentNode == p){
16744                 p.expandedChild.collapse();
16745             }
16746             p.expandedChild = node;
16747         }
16748     },
16749
16750     // private override
16751     setRootNode : function(node){
16752         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
16753         if(!this.rootVisible){
16754             node.ui = new Roo.tree.RootTreeNodeUI(node);
16755         }
16756         return node;
16757     },
16758
16759     /**
16760      * Returns the container element for this TreePanel
16761      */
16762     getEl : function(){
16763         return this.el;
16764     },
16765
16766     /**
16767      * Returns the default TreeLoader for this TreePanel
16768      */
16769     getLoader : function(){
16770         return this.loader;
16771     },
16772
16773     /**
16774      * Expand all nodes
16775      */
16776     expandAll : function(){
16777         this.root.expand(true);
16778     },
16779
16780     /**
16781      * Collapse all nodes
16782      */
16783     collapseAll : function(){
16784         this.root.collapse(true);
16785     },
16786
16787     /**
16788      * Returns the selection model used by this TreePanel
16789      */
16790     getSelectionModel : function(){
16791         if(!this.selModel){
16792             this.selModel = new Roo.tree.DefaultSelectionModel();
16793         }
16794         return this.selModel;
16795     },
16796
16797     /**
16798      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
16799      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
16800      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
16801      * @return {Array}
16802      */
16803     getChecked : function(a, startNode){
16804         startNode = startNode || this.root;
16805         var r = [];
16806         var f = function(){
16807             if(this.attributes.checked){
16808                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
16809             }
16810         }
16811         startNode.cascade(f);
16812         return r;
16813     },
16814
16815     /**
16816      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16817      * @param {String} path
16818      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16819      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
16820      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
16821      */
16822     expandPath : function(path, attr, callback){
16823         attr = attr || "id";
16824         var keys = path.split(this.pathSeparator);
16825         var curNode = this.root;
16826         if(curNode.attributes[attr] != keys[1]){ // invalid root
16827             if(callback){
16828                 callback(false, null);
16829             }
16830             return;
16831         }
16832         var index = 1;
16833         var f = function(){
16834             if(++index == keys.length){
16835                 if(callback){
16836                     callback(true, curNode);
16837                 }
16838                 return;
16839             }
16840             var c = curNode.findChild(attr, keys[index]);
16841             if(!c){
16842                 if(callback){
16843                     callback(false, curNode);
16844                 }
16845                 return;
16846             }
16847             curNode = c;
16848             c.expand(false, false, f);
16849         };
16850         curNode.expand(false, false, f);
16851     },
16852
16853     /**
16854      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16855      * @param {String} path
16856      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16857      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
16858      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
16859      */
16860     selectPath : function(path, attr, callback){
16861         attr = attr || "id";
16862         var keys = path.split(this.pathSeparator);
16863         var v = keys.pop();
16864         if(keys.length > 0){
16865             var f = function(success, node){
16866                 if(success && node){
16867                     var n = node.findChild(attr, v);
16868                     if(n){
16869                         n.select();
16870                         if(callback){
16871                             callback(true, n);
16872                         }
16873                     }else if(callback){
16874                         callback(false, n);
16875                     }
16876                 }else{
16877                     if(callback){
16878                         callback(false, n);
16879                     }
16880                 }
16881             };
16882             this.expandPath(keys.join(this.pathSeparator), attr, f);
16883         }else{
16884             this.root.select();
16885             if(callback){
16886                 callback(true, this.root);
16887             }
16888         }
16889     },
16890
16891     getTreeEl : function(){
16892         return this.el;
16893     },
16894
16895     /**
16896      * Trigger rendering of this TreePanel
16897      */
16898     render : function(){
16899         if (this.innerCt) {
16900             return this; // stop it rendering more than once!!
16901         }
16902         
16903         this.innerCt = this.el.createChild({tag:"ul",
16904                cls:"x-tree-root-ct " +
16905                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
16906
16907         if(this.containerScroll){
16908             Roo.dd.ScrollManager.register(this.el);
16909         }
16910         if((this.enableDD || this.enableDrop) && !this.dropZone){
16911            /**
16912             * The dropZone used by this tree if drop is enabled
16913             * @type Roo.tree.TreeDropZone
16914             */
16915              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
16916                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
16917            });
16918         }
16919         if((this.enableDD || this.enableDrag) && !this.dragZone){
16920            /**
16921             * The dragZone used by this tree if drag is enabled
16922             * @type Roo.tree.TreeDragZone
16923             */
16924             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
16925                ddGroup: this.ddGroup || "TreeDD",
16926                scroll: this.ddScroll
16927            });
16928         }
16929         this.getSelectionModel().init(this);
16930         if (!this.root) {
16931             console.log("ROOT not set in tree");
16932             return;
16933         }
16934         this.root.render();
16935         if(!this.rootVisible){
16936             this.root.renderChildren();
16937         }
16938         return this;
16939     }
16940 });/*
16941  * Based on:
16942  * Ext JS Library 1.1.1
16943  * Copyright(c) 2006-2007, Ext JS, LLC.
16944  *
16945  * Originally Released Under LGPL - original licence link has changed is not relivant.
16946  *
16947  * Fork - LGPL
16948  * <script type="text/javascript">
16949  */
16950  
16951
16952 /**
16953  * @class Roo.tree.DefaultSelectionModel
16954  * @extends Roo.util.Observable
16955  * The default single selection for a TreePanel.
16956  * @param {Object} cfg Configuration
16957  */
16958 Roo.tree.DefaultSelectionModel = function(cfg){
16959    this.selNode = null;
16960    
16961    
16962    
16963    this.addEvents({
16964        /**
16965         * @event selectionchange
16966         * Fires when the selected node changes
16967         * @param {DefaultSelectionModel} this
16968         * @param {TreeNode} node the new selection
16969         */
16970        "selectionchange" : true,
16971
16972        /**
16973         * @event beforeselect
16974         * Fires before the selected node changes, return false to cancel the change
16975         * @param {DefaultSelectionModel} this
16976         * @param {TreeNode} node the new selection
16977         * @param {TreeNode} node the old selection
16978         */
16979        "beforeselect" : true
16980    });
16981    
16982     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
16983 };
16984
16985 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
16986     init : function(tree){
16987         this.tree = tree;
16988         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16989         tree.on("click", this.onNodeClick, this);
16990     },
16991     
16992     onNodeClick : function(node, e){
16993         if (e.ctrlKey && this.selNode == node)  {
16994             this.unselect(node);
16995             return;
16996         }
16997         this.select(node);
16998     },
16999     
17000     /**
17001      * Select a node.
17002      * @param {TreeNode} node The node to select
17003      * @return {TreeNode} The selected node
17004      */
17005     select : function(node){
17006         var last = this.selNode;
17007         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
17008             if(last){
17009                 last.ui.onSelectedChange(false);
17010             }
17011             this.selNode = node;
17012             node.ui.onSelectedChange(true);
17013             this.fireEvent("selectionchange", this, node, last);
17014         }
17015         return node;
17016     },
17017     
17018     /**
17019      * Deselect a node.
17020      * @param {TreeNode} node The node to unselect
17021      */
17022     unselect : function(node){
17023         if(this.selNode == node){
17024             this.clearSelections();
17025         }    
17026     },
17027     
17028     /**
17029      * Clear all selections
17030      */
17031     clearSelections : function(){
17032         var n = this.selNode;
17033         if(n){
17034             n.ui.onSelectedChange(false);
17035             this.selNode = null;
17036             this.fireEvent("selectionchange", this, null);
17037         }
17038         return n;
17039     },
17040     
17041     /**
17042      * Get the selected node
17043      * @return {TreeNode} The selected node
17044      */
17045     getSelectedNode : function(){
17046         return this.selNode;    
17047     },
17048     
17049     /**
17050      * Returns true if the node is selected
17051      * @param {TreeNode} node The node to check
17052      * @return {Boolean}
17053      */
17054     isSelected : function(node){
17055         return this.selNode == node;  
17056     },
17057
17058     /**
17059      * Selects the node above the selected node in the tree, intelligently walking the nodes
17060      * @return TreeNode The new selection
17061      */
17062     selectPrevious : function(){
17063         var s = this.selNode || this.lastSelNode;
17064         if(!s){
17065             return null;
17066         }
17067         var ps = s.previousSibling;
17068         if(ps){
17069             if(!ps.isExpanded() || ps.childNodes.length < 1){
17070                 return this.select(ps);
17071             } else{
17072                 var lc = ps.lastChild;
17073                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
17074                     lc = lc.lastChild;
17075                 }
17076                 return this.select(lc);
17077             }
17078         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
17079             return this.select(s.parentNode);
17080         }
17081         return null;
17082     },
17083
17084     /**
17085      * Selects the node above the selected node in the tree, intelligently walking the nodes
17086      * @return TreeNode The new selection
17087      */
17088     selectNext : function(){
17089         var s = this.selNode || this.lastSelNode;
17090         if(!s){
17091             return null;
17092         }
17093         if(s.firstChild && s.isExpanded()){
17094              return this.select(s.firstChild);
17095          }else if(s.nextSibling){
17096              return this.select(s.nextSibling);
17097          }else if(s.parentNode){
17098             var newS = null;
17099             s.parentNode.bubble(function(){
17100                 if(this.nextSibling){
17101                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
17102                     return false;
17103                 }
17104             });
17105             return newS;
17106          }
17107         return null;
17108     },
17109
17110     onKeyDown : function(e){
17111         var s = this.selNode || this.lastSelNode;
17112         // undesirable, but required
17113         var sm = this;
17114         if(!s){
17115             return;
17116         }
17117         var k = e.getKey();
17118         switch(k){
17119              case e.DOWN:
17120                  e.stopEvent();
17121                  this.selectNext();
17122              break;
17123              case e.UP:
17124                  e.stopEvent();
17125                  this.selectPrevious();
17126              break;
17127              case e.RIGHT:
17128                  e.preventDefault();
17129                  if(s.hasChildNodes()){
17130                      if(!s.isExpanded()){
17131                          s.expand();
17132                      }else if(s.firstChild){
17133                          this.select(s.firstChild, e);
17134                      }
17135                  }
17136              break;
17137              case e.LEFT:
17138                  e.preventDefault();
17139                  if(s.hasChildNodes() && s.isExpanded()){
17140                      s.collapse();
17141                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
17142                      this.select(s.parentNode, e);
17143                  }
17144              break;
17145         };
17146     }
17147 });
17148
17149 /**
17150  * @class Roo.tree.MultiSelectionModel
17151  * @extends Roo.util.Observable
17152  * Multi selection for a TreePanel.
17153  * @param {Object} cfg Configuration
17154  */
17155 Roo.tree.MultiSelectionModel = function(){
17156    this.selNodes = [];
17157    this.selMap = {};
17158    this.addEvents({
17159        /**
17160         * @event selectionchange
17161         * Fires when the selected nodes change
17162         * @param {MultiSelectionModel} this
17163         * @param {Array} nodes Array of the selected nodes
17164         */
17165        "selectionchange" : true
17166    });
17167    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
17168    
17169 };
17170
17171 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
17172     init : function(tree){
17173         this.tree = tree;
17174         tree.getTreeEl().on("keydown", this.onKeyDown, this);
17175         tree.on("click", this.onNodeClick, this);
17176     },
17177     
17178     onNodeClick : function(node, e){
17179         this.select(node, e, e.ctrlKey);
17180     },
17181     
17182     /**
17183      * Select a node.
17184      * @param {TreeNode} node The node to select
17185      * @param {EventObject} e (optional) An event associated with the selection
17186      * @param {Boolean} keepExisting True to retain existing selections
17187      * @return {TreeNode} The selected node
17188      */
17189     select : function(node, e, keepExisting){
17190         if(keepExisting !== true){
17191             this.clearSelections(true);
17192         }
17193         if(this.isSelected(node)){
17194             this.lastSelNode = node;
17195             return node;
17196         }
17197         this.selNodes.push(node);
17198         this.selMap[node.id] = node;
17199         this.lastSelNode = node;
17200         node.ui.onSelectedChange(true);
17201         this.fireEvent("selectionchange", this, this.selNodes);
17202         return node;
17203     },
17204     
17205     /**
17206      * Deselect a node.
17207      * @param {TreeNode} node The node to unselect
17208      */
17209     unselect : function(node){
17210         if(this.selMap[node.id]){
17211             node.ui.onSelectedChange(false);
17212             var sn = this.selNodes;
17213             var index = -1;
17214             if(sn.indexOf){
17215                 index = sn.indexOf(node);
17216             }else{
17217                 for(var i = 0, len = sn.length; i < len; i++){
17218                     if(sn[i] == node){
17219                         index = i;
17220                         break;
17221                     }
17222                 }
17223             }
17224             if(index != -1){
17225                 this.selNodes.splice(index, 1);
17226             }
17227             delete this.selMap[node.id];
17228             this.fireEvent("selectionchange", this, this.selNodes);
17229         }
17230     },
17231     
17232     /**
17233      * Clear all selections
17234      */
17235     clearSelections : function(suppressEvent){
17236         var sn = this.selNodes;
17237         if(sn.length > 0){
17238             for(var i = 0, len = sn.length; i < len; i++){
17239                 sn[i].ui.onSelectedChange(false);
17240             }
17241             this.selNodes = [];
17242             this.selMap = {};
17243             if(suppressEvent !== true){
17244                 this.fireEvent("selectionchange", this, this.selNodes);
17245             }
17246         }
17247     },
17248     
17249     /**
17250      * Returns true if the node is selected
17251      * @param {TreeNode} node The node to check
17252      * @return {Boolean}
17253      */
17254     isSelected : function(node){
17255         return this.selMap[node.id] ? true : false;  
17256     },
17257     
17258     /**
17259      * Returns an array of the selected nodes
17260      * @return {Array}
17261      */
17262     getSelectedNodes : function(){
17263         return this.selNodes;    
17264     },
17265
17266     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
17267
17268     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
17269
17270     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
17271 });/*
17272  * Based on:
17273  * Ext JS Library 1.1.1
17274  * Copyright(c) 2006-2007, Ext JS, LLC.
17275  *
17276  * Originally Released Under LGPL - original licence link has changed is not relivant.
17277  *
17278  * Fork - LGPL
17279  * <script type="text/javascript">
17280  */
17281  
17282 /**
17283  * @class Roo.tree.TreeNode
17284  * @extends Roo.data.Node
17285  * @cfg {String} text The text for this node
17286  * @cfg {Boolean} expanded true to start the node expanded
17287  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
17288  * @cfg {Boolean} allowDrop false if this node cannot be drop on
17289  * @cfg {Boolean} disabled true to start the node disabled
17290  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
17291  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
17292  * @cfg {String} cls A css class to be added to the node
17293  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
17294  * @cfg {String} href URL of the link used for the node (defaults to #)
17295  * @cfg {String} hrefTarget target frame for the link
17296  * @cfg {String} qtip An Ext QuickTip for the node
17297  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
17298  * @cfg {Boolean} singleClickExpand True for single click expand on this node
17299  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
17300  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
17301  * (defaults to undefined with no checkbox rendered)
17302  * @constructor
17303  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
17304  */
17305 Roo.tree.TreeNode = function(attributes){
17306     attributes = attributes || {};
17307     if(typeof attributes == "string"){
17308         attributes = {text: attributes};
17309     }
17310     this.childrenRendered = false;
17311     this.rendered = false;
17312     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
17313     this.expanded = attributes.expanded === true;
17314     this.isTarget = attributes.isTarget !== false;
17315     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
17316     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
17317
17318     /**
17319      * Read-only. The text for this node. To change it use setText().
17320      * @type String
17321      */
17322     this.text = attributes.text;
17323     /**
17324      * True if this node is disabled.
17325      * @type Boolean
17326      */
17327     this.disabled = attributes.disabled === true;
17328
17329     this.addEvents({
17330         /**
17331         * @event textchange
17332         * Fires when the text for this node is changed
17333         * @param {Node} this This node
17334         * @param {String} text The new text
17335         * @param {String} oldText The old text
17336         */
17337         "textchange" : true,
17338         /**
17339         * @event beforeexpand
17340         * Fires before this node is expanded, return false to cancel.
17341         * @param {Node} this This node
17342         * @param {Boolean} deep
17343         * @param {Boolean} anim
17344         */
17345         "beforeexpand" : true,
17346         /**
17347         * @event beforecollapse
17348         * Fires before this node is collapsed, return false to cancel.
17349         * @param {Node} this This node
17350         * @param {Boolean} deep
17351         * @param {Boolean} anim
17352         */
17353         "beforecollapse" : true,
17354         /**
17355         * @event expand
17356         * Fires when this node is expanded
17357         * @param {Node} this This node
17358         */
17359         "expand" : true,
17360         /**
17361         * @event disabledchange
17362         * Fires when the disabled status of this node changes
17363         * @param {Node} this This node
17364         * @param {Boolean} disabled
17365         */
17366         "disabledchange" : true,
17367         /**
17368         * @event collapse
17369         * Fires when this node is collapsed
17370         * @param {Node} this This node
17371         */
17372         "collapse" : true,
17373         /**
17374         * @event beforeclick
17375         * Fires before click processing. Return false to cancel the default action.
17376         * @param {Node} this This node
17377         * @param {Roo.EventObject} e The event object
17378         */
17379         "beforeclick":true,
17380         /**
17381         * @event checkchange
17382         * Fires when a node with a checkbox's checked property changes
17383         * @param {Node} this This node
17384         * @param {Boolean} checked
17385         */
17386         "checkchange":true,
17387         /**
17388         * @event click
17389         * Fires when this node is clicked
17390         * @param {Node} this This node
17391         * @param {Roo.EventObject} e The event object
17392         */
17393         "click":true,
17394         /**
17395         * @event dblclick
17396         * Fires when this node is double clicked
17397         * @param {Node} this This node
17398         * @param {Roo.EventObject} e The event object
17399         */
17400         "dblclick":true,
17401         /**
17402         * @event contextmenu
17403         * Fires when this node is right clicked
17404         * @param {Node} this This node
17405         * @param {Roo.EventObject} e The event object
17406         */
17407         "contextmenu":true,
17408         /**
17409         * @event beforechildrenrendered
17410         * Fires right before the child nodes for this node are rendered
17411         * @param {Node} this This node
17412         */
17413         "beforechildrenrendered":true
17414     });
17415
17416     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
17417
17418     /**
17419      * Read-only. The UI for this node
17420      * @type TreeNodeUI
17421      */
17422     this.ui = new uiClass(this);
17423     
17424     // finally support items[]
17425     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
17426         return;
17427     }
17428     
17429     
17430     Roo.each(this.attributes.items, function(c) {
17431         this.appendChild(Roo.factory(c,Roo.Tree));
17432     }, this);
17433     delete this.attributes.items;
17434     
17435     
17436     
17437 };
17438 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
17439     preventHScroll: true,
17440     /**
17441      * Returns true if this node is expanded
17442      * @return {Boolean}
17443      */
17444     isExpanded : function(){
17445         return this.expanded;
17446     },
17447
17448     /**
17449      * Returns the UI object for this node
17450      * @return {TreeNodeUI}
17451      */
17452     getUI : function(){
17453         return this.ui;
17454     },
17455
17456     // private override
17457     setFirstChild : function(node){
17458         var of = this.firstChild;
17459         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
17460         if(this.childrenRendered && of && node != of){
17461             of.renderIndent(true, true);
17462         }
17463         if(this.rendered){
17464             this.renderIndent(true, true);
17465         }
17466     },
17467
17468     // private override
17469     setLastChild : function(node){
17470         var ol = this.lastChild;
17471         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
17472         if(this.childrenRendered && ol && node != ol){
17473             ol.renderIndent(true, true);
17474         }
17475         if(this.rendered){
17476             this.renderIndent(true, true);
17477         }
17478     },
17479
17480     // these methods are overridden to provide lazy rendering support
17481     // private override
17482     appendChild : function()
17483     {
17484         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
17485         if(node && this.childrenRendered){
17486             node.render();
17487         }
17488         this.ui.updateExpandIcon();
17489         return node;
17490     },
17491
17492     // private override
17493     removeChild : function(node){
17494         this.ownerTree.getSelectionModel().unselect(node);
17495         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
17496         // if it's been rendered remove dom node
17497         if(this.childrenRendered){
17498             node.ui.remove();
17499         }
17500         if(this.childNodes.length < 1){
17501             this.collapse(false, false);
17502         }else{
17503             this.ui.updateExpandIcon();
17504         }
17505         if(!this.firstChild) {
17506             this.childrenRendered = false;
17507         }
17508         return node;
17509     },
17510
17511     // private override
17512     insertBefore : function(node, refNode){
17513         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
17514         if(newNode && refNode && this.childrenRendered){
17515             node.render();
17516         }
17517         this.ui.updateExpandIcon();
17518         return newNode;
17519     },
17520
17521     /**
17522      * Sets the text for this node
17523      * @param {String} text
17524      */
17525     setText : function(text){
17526         var oldText = this.text;
17527         this.text = text;
17528         this.attributes.text = text;
17529         if(this.rendered){ // event without subscribing
17530             this.ui.onTextChange(this, text, oldText);
17531         }
17532         this.fireEvent("textchange", this, text, oldText);
17533     },
17534
17535     /**
17536      * Triggers selection of this node
17537      */
17538     select : function(){
17539         this.getOwnerTree().getSelectionModel().select(this);
17540     },
17541
17542     /**
17543      * Triggers deselection of this node
17544      */
17545     unselect : function(){
17546         this.getOwnerTree().getSelectionModel().unselect(this);
17547     },
17548
17549     /**
17550      * Returns true if this node is selected
17551      * @return {Boolean}
17552      */
17553     isSelected : function(){
17554         return this.getOwnerTree().getSelectionModel().isSelected(this);
17555     },
17556
17557     /**
17558      * Expand this node.
17559      * @param {Boolean} deep (optional) True to expand all children as well
17560      * @param {Boolean} anim (optional) false to cancel the default animation
17561      * @param {Function} callback (optional) A callback to be called when
17562      * expanding this node completes (does not wait for deep expand to complete).
17563      * Called with 1 parameter, this node.
17564      */
17565     expand : function(deep, anim, callback){
17566         if(!this.expanded){
17567             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
17568                 return;
17569             }
17570             if(!this.childrenRendered){
17571                 this.renderChildren();
17572             }
17573             this.expanded = true;
17574             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
17575                 this.ui.animExpand(function(){
17576                     this.fireEvent("expand", this);
17577                     if(typeof callback == "function"){
17578                         callback(this);
17579                     }
17580                     if(deep === true){
17581                         this.expandChildNodes(true);
17582                     }
17583                 }.createDelegate(this));
17584                 return;
17585             }else{
17586                 this.ui.expand();
17587                 this.fireEvent("expand", this);
17588                 if(typeof callback == "function"){
17589                     callback(this);
17590                 }
17591             }
17592         }else{
17593            if(typeof callback == "function"){
17594                callback(this);
17595            }
17596         }
17597         if(deep === true){
17598             this.expandChildNodes(true);
17599         }
17600     },
17601
17602     isHiddenRoot : function(){
17603         return this.isRoot && !this.getOwnerTree().rootVisible;
17604     },
17605
17606     /**
17607      * Collapse this node.
17608      * @param {Boolean} deep (optional) True to collapse all children as well
17609      * @param {Boolean} anim (optional) false to cancel the default animation
17610      */
17611     collapse : function(deep, anim){
17612         if(this.expanded && !this.isHiddenRoot()){
17613             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
17614                 return;
17615             }
17616             this.expanded = false;
17617             if((this.getOwnerTree().animate && anim !== false) || anim){
17618                 this.ui.animCollapse(function(){
17619                     this.fireEvent("collapse", this);
17620                     if(deep === true){
17621                         this.collapseChildNodes(true);
17622                     }
17623                 }.createDelegate(this));
17624                 return;
17625             }else{
17626                 this.ui.collapse();
17627                 this.fireEvent("collapse", this);
17628             }
17629         }
17630         if(deep === true){
17631             var cs = this.childNodes;
17632             for(var i = 0, len = cs.length; i < len; i++) {
17633                 cs[i].collapse(true, false);
17634             }
17635         }
17636     },
17637
17638     // private
17639     delayedExpand : function(delay){
17640         if(!this.expandProcId){
17641             this.expandProcId = this.expand.defer(delay, this);
17642         }
17643     },
17644
17645     // private
17646     cancelExpand : function(){
17647         if(this.expandProcId){
17648             clearTimeout(this.expandProcId);
17649         }
17650         this.expandProcId = false;
17651     },
17652
17653     /**
17654      * Toggles expanded/collapsed state of the node
17655      */
17656     toggle : function(){
17657         if(this.expanded){
17658             this.collapse();
17659         }else{
17660             this.expand();
17661         }
17662     },
17663
17664     /**
17665      * Ensures all parent nodes are expanded
17666      */
17667     ensureVisible : function(callback){
17668         var tree = this.getOwnerTree();
17669         tree.expandPath(this.parentNode.getPath(), false, function(){
17670             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
17671             Roo.callback(callback);
17672         }.createDelegate(this));
17673     },
17674
17675     /**
17676      * Expand all child nodes
17677      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
17678      */
17679     expandChildNodes : function(deep){
17680         var cs = this.childNodes;
17681         for(var i = 0, len = cs.length; i < len; i++) {
17682                 cs[i].expand(deep);
17683         }
17684     },
17685
17686     /**
17687      * Collapse all child nodes
17688      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
17689      */
17690     collapseChildNodes : function(deep){
17691         var cs = this.childNodes;
17692         for(var i = 0, len = cs.length; i < len; i++) {
17693                 cs[i].collapse(deep);
17694         }
17695     },
17696
17697     /**
17698      * Disables this node
17699      */
17700     disable : function(){
17701         this.disabled = true;
17702         this.unselect();
17703         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17704             this.ui.onDisableChange(this, true);
17705         }
17706         this.fireEvent("disabledchange", this, true);
17707     },
17708
17709     /**
17710      * Enables this node
17711      */
17712     enable : function(){
17713         this.disabled = false;
17714         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17715             this.ui.onDisableChange(this, false);
17716         }
17717         this.fireEvent("disabledchange", this, false);
17718     },
17719
17720     // private
17721     renderChildren : function(suppressEvent){
17722         if(suppressEvent !== false){
17723             this.fireEvent("beforechildrenrendered", this);
17724         }
17725         var cs = this.childNodes;
17726         for(var i = 0, len = cs.length; i < len; i++){
17727             cs[i].render(true);
17728         }
17729         this.childrenRendered = true;
17730     },
17731
17732     // private
17733     sort : function(fn, scope){
17734         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
17735         if(this.childrenRendered){
17736             var cs = this.childNodes;
17737             for(var i = 0, len = cs.length; i < len; i++){
17738                 cs[i].render(true);
17739             }
17740         }
17741     },
17742
17743     // private
17744     render : function(bulkRender){
17745         this.ui.render(bulkRender);
17746         if(!this.rendered){
17747             this.rendered = true;
17748             if(this.expanded){
17749                 this.expanded = false;
17750                 this.expand(false, false);
17751             }
17752         }
17753     },
17754
17755     // private
17756     renderIndent : function(deep, refresh){
17757         if(refresh){
17758             this.ui.childIndent = null;
17759         }
17760         this.ui.renderIndent();
17761         if(deep === true && this.childrenRendered){
17762             var cs = this.childNodes;
17763             for(var i = 0, len = cs.length; i < len; i++){
17764                 cs[i].renderIndent(true, refresh);
17765             }
17766         }
17767     }
17768 });/*
17769  * Based on:
17770  * Ext JS Library 1.1.1
17771  * Copyright(c) 2006-2007, Ext JS, LLC.
17772  *
17773  * Originally Released Under LGPL - original licence link has changed is not relivant.
17774  *
17775  * Fork - LGPL
17776  * <script type="text/javascript">
17777  */
17778  
17779 /**
17780  * @class Roo.tree.AsyncTreeNode
17781  * @extends Roo.tree.TreeNode
17782  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
17783  * @constructor
17784  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
17785  */
17786  Roo.tree.AsyncTreeNode = function(config){
17787     this.loaded = false;
17788     this.loading = false;
17789     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
17790     /**
17791     * @event beforeload
17792     * Fires before this node is loaded, return false to cancel
17793     * @param {Node} this This node
17794     */
17795     this.addEvents({'beforeload':true, 'load': true});
17796     /**
17797     * @event load
17798     * Fires when this node is loaded
17799     * @param {Node} this This node
17800     */
17801     /**
17802      * The loader used by this node (defaults to using the tree's defined loader)
17803      * @type TreeLoader
17804      * @property loader
17805      */
17806 };
17807 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
17808     expand : function(deep, anim, callback){
17809         if(this.loading){ // if an async load is already running, waiting til it's done
17810             var timer;
17811             var f = function(){
17812                 if(!this.loading){ // done loading
17813                     clearInterval(timer);
17814                     this.expand(deep, anim, callback);
17815                 }
17816             }.createDelegate(this);
17817             timer = setInterval(f, 200);
17818             return;
17819         }
17820         if(!this.loaded){
17821             if(this.fireEvent("beforeload", this) === false){
17822                 return;
17823             }
17824             this.loading = true;
17825             this.ui.beforeLoad(this);
17826             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
17827             if(loader){
17828                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
17829                 return;
17830             }
17831         }
17832         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
17833     },
17834     
17835     /**
17836      * Returns true if this node is currently loading
17837      * @return {Boolean}
17838      */
17839     isLoading : function(){
17840         return this.loading;  
17841     },
17842     
17843     loadComplete : function(deep, anim, callback){
17844         this.loading = false;
17845         this.loaded = true;
17846         this.ui.afterLoad(this);
17847         this.fireEvent("load", this);
17848         this.expand(deep, anim, callback);
17849     },
17850     
17851     /**
17852      * Returns true if this node has been loaded
17853      * @return {Boolean}
17854      */
17855     isLoaded : function(){
17856         return this.loaded;
17857     },
17858     
17859     hasChildNodes : function(){
17860         if(!this.isLeaf() && !this.loaded){
17861             return true;
17862         }else{
17863             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
17864         }
17865     },
17866
17867     /**
17868      * Trigger a reload for this node
17869      * @param {Function} callback
17870      */
17871     reload : function(callback){
17872         this.collapse(false, false);
17873         while(this.firstChild){
17874             this.removeChild(this.firstChild);
17875         }
17876         this.childrenRendered = false;
17877         this.loaded = false;
17878         if(this.isHiddenRoot()){
17879             this.expanded = false;
17880         }
17881         this.expand(false, false, callback);
17882     }
17883 });/*
17884  * Based on:
17885  * Ext JS Library 1.1.1
17886  * Copyright(c) 2006-2007, Ext JS, LLC.
17887  *
17888  * Originally Released Under LGPL - original licence link has changed is not relivant.
17889  *
17890  * Fork - LGPL
17891  * <script type="text/javascript">
17892  */
17893  
17894 /**
17895  * @class Roo.tree.TreeNodeUI
17896  * @constructor
17897  * @param {Object} node The node to render
17898  * The TreeNode UI implementation is separate from the
17899  * tree implementation. Unless you are customizing the tree UI,
17900  * you should never have to use this directly.
17901  */
17902 Roo.tree.TreeNodeUI = function(node){
17903     this.node = node;
17904     this.rendered = false;
17905     this.animating = false;
17906     this.emptyIcon = Roo.BLANK_IMAGE_URL;
17907 };
17908
17909 Roo.tree.TreeNodeUI.prototype = {
17910     removeChild : function(node){
17911         if(this.rendered){
17912             this.ctNode.removeChild(node.ui.getEl());
17913         }
17914     },
17915
17916     beforeLoad : function(){
17917          this.addClass("x-tree-node-loading");
17918     },
17919
17920     afterLoad : function(){
17921          this.removeClass("x-tree-node-loading");
17922     },
17923
17924     onTextChange : function(node, text, oldText){
17925         if(this.rendered){
17926             this.textNode.innerHTML = text;
17927         }
17928     },
17929
17930     onDisableChange : function(node, state){
17931         this.disabled = state;
17932         if(state){
17933             this.addClass("x-tree-node-disabled");
17934         }else{
17935             this.removeClass("x-tree-node-disabled");
17936         }
17937     },
17938
17939     onSelectedChange : function(state){
17940         if(state){
17941             this.focus();
17942             this.addClass("x-tree-selected");
17943         }else{
17944             //this.blur();
17945             this.removeClass("x-tree-selected");
17946         }
17947     },
17948
17949     onMove : function(tree, node, oldParent, newParent, index, refNode){
17950         this.childIndent = null;
17951         if(this.rendered){
17952             var targetNode = newParent.ui.getContainer();
17953             if(!targetNode){//target not rendered
17954                 this.holder = document.createElement("div");
17955                 this.holder.appendChild(this.wrap);
17956                 return;
17957             }
17958             var insertBefore = refNode ? refNode.ui.getEl() : null;
17959             if(insertBefore){
17960                 targetNode.insertBefore(this.wrap, insertBefore);
17961             }else{
17962                 targetNode.appendChild(this.wrap);
17963             }
17964             this.node.renderIndent(true);
17965         }
17966     },
17967
17968     addClass : function(cls){
17969         if(this.elNode){
17970             Roo.fly(this.elNode).addClass(cls);
17971         }
17972     },
17973
17974     removeClass : function(cls){
17975         if(this.elNode){
17976             Roo.fly(this.elNode).removeClass(cls);
17977         }
17978     },
17979
17980     remove : function(){
17981         if(this.rendered){
17982             this.holder = document.createElement("div");
17983             this.holder.appendChild(this.wrap);
17984         }
17985     },
17986
17987     fireEvent : function(){
17988         return this.node.fireEvent.apply(this.node, arguments);
17989     },
17990
17991     initEvents : function(){
17992         this.node.on("move", this.onMove, this);
17993         var E = Roo.EventManager;
17994         var a = this.anchor;
17995
17996         var el = Roo.fly(a, '_treeui');
17997
17998         if(Roo.isOpera){ // opera render bug ignores the CSS
17999             el.setStyle("text-decoration", "none");
18000         }
18001
18002         el.on("click", this.onClick, this);
18003         el.on("dblclick", this.onDblClick, this);
18004
18005         if(this.checkbox){
18006             Roo.EventManager.on(this.checkbox,
18007                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
18008         }
18009
18010         el.on("contextmenu", this.onContextMenu, this);
18011
18012         var icon = Roo.fly(this.iconNode);
18013         icon.on("click", this.onClick, this);
18014         icon.on("dblclick", this.onDblClick, this);
18015         icon.on("contextmenu", this.onContextMenu, this);
18016         E.on(this.ecNode, "click", this.ecClick, this, true);
18017
18018         if(this.node.disabled){
18019             this.addClass("x-tree-node-disabled");
18020         }
18021         if(this.node.hidden){
18022             this.addClass("x-tree-node-disabled");
18023         }
18024         var ot = this.node.getOwnerTree();
18025         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
18026         if(dd && (!this.node.isRoot || ot.rootVisible)){
18027             Roo.dd.Registry.register(this.elNode, {
18028                 node: this.node,
18029                 handles: this.getDDHandles(),
18030                 isHandle: false
18031             });
18032         }
18033     },
18034
18035     getDDHandles : function(){
18036         return [this.iconNode, this.textNode];
18037     },
18038
18039     hide : function(){
18040         if(this.rendered){
18041             this.wrap.style.display = "none";
18042         }
18043     },
18044
18045     show : function(){
18046         if(this.rendered){
18047             this.wrap.style.display = "";
18048         }
18049     },
18050
18051     onContextMenu : function(e){
18052         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
18053             e.preventDefault();
18054             this.focus();
18055             this.fireEvent("contextmenu", this.node, e);
18056         }
18057     },
18058
18059     onClick : function(e){
18060         if(this.dropping){
18061             e.stopEvent();
18062             return;
18063         }
18064         if(this.fireEvent("beforeclick", this.node, e) !== false){
18065             if(!this.disabled && this.node.attributes.href){
18066                 this.fireEvent("click", this.node, e);
18067                 return;
18068             }
18069             e.preventDefault();
18070             if(this.disabled){
18071                 return;
18072             }
18073
18074             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
18075                 this.node.toggle();
18076             }
18077
18078             this.fireEvent("click", this.node, e);
18079         }else{
18080             e.stopEvent();
18081         }
18082     },
18083
18084     onDblClick : function(e){
18085         e.preventDefault();
18086         if(this.disabled){
18087             return;
18088         }
18089         if(this.checkbox){
18090             this.toggleCheck();
18091         }
18092         if(!this.animating && this.node.hasChildNodes()){
18093             this.node.toggle();
18094         }
18095         this.fireEvent("dblclick", this.node, e);
18096     },
18097
18098     onCheckChange : function(){
18099         var checked = this.checkbox.checked;
18100         this.node.attributes.checked = checked;
18101         this.fireEvent('checkchange', this.node, checked);
18102     },
18103
18104     ecClick : function(e){
18105         if(!this.animating && this.node.hasChildNodes()){
18106             this.node.toggle();
18107         }
18108     },
18109
18110     startDrop : function(){
18111         this.dropping = true;
18112     },
18113
18114     // delayed drop so the click event doesn't get fired on a drop
18115     endDrop : function(){
18116        setTimeout(function(){
18117            this.dropping = false;
18118        }.createDelegate(this), 50);
18119     },
18120
18121     expand : function(){
18122         this.updateExpandIcon();
18123         this.ctNode.style.display = "";
18124     },
18125
18126     focus : function(){
18127         if(!this.node.preventHScroll){
18128             try{this.anchor.focus();
18129             }catch(e){}
18130         }else if(!Roo.isIE){
18131             try{
18132                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
18133                 var l = noscroll.scrollLeft;
18134                 this.anchor.focus();
18135                 noscroll.scrollLeft = l;
18136             }catch(e){}
18137         }
18138     },
18139
18140     toggleCheck : function(value){
18141         var cb = this.checkbox;
18142         if(cb){
18143             cb.checked = (value === undefined ? !cb.checked : value);
18144         }
18145     },
18146
18147     blur : function(){
18148         try{
18149             this.anchor.blur();
18150         }catch(e){}
18151     },
18152
18153     animExpand : function(callback){
18154         var ct = Roo.get(this.ctNode);
18155         ct.stopFx();
18156         if(!this.node.hasChildNodes()){
18157             this.updateExpandIcon();
18158             this.ctNode.style.display = "";
18159             Roo.callback(callback);
18160             return;
18161         }
18162         this.animating = true;
18163         this.updateExpandIcon();
18164
18165         ct.slideIn('t', {
18166            callback : function(){
18167                this.animating = false;
18168                Roo.callback(callback);
18169             },
18170             scope: this,
18171             duration: this.node.ownerTree.duration || .25
18172         });
18173     },
18174
18175     highlight : function(){
18176         var tree = this.node.getOwnerTree();
18177         Roo.fly(this.wrap).highlight(
18178             tree.hlColor || "C3DAF9",
18179             {endColor: tree.hlBaseColor}
18180         );
18181     },
18182
18183     collapse : function(){
18184         this.updateExpandIcon();
18185         this.ctNode.style.display = "none";
18186     },
18187
18188     animCollapse : function(callback){
18189         var ct = Roo.get(this.ctNode);
18190         ct.enableDisplayMode('block');
18191         ct.stopFx();
18192
18193         this.animating = true;
18194         this.updateExpandIcon();
18195
18196         ct.slideOut('t', {
18197             callback : function(){
18198                this.animating = false;
18199                Roo.callback(callback);
18200             },
18201             scope: this,
18202             duration: this.node.ownerTree.duration || .25
18203         });
18204     },
18205
18206     getContainer : function(){
18207         return this.ctNode;
18208     },
18209
18210     getEl : function(){
18211         return this.wrap;
18212     },
18213
18214     appendDDGhost : function(ghostNode){
18215         ghostNode.appendChild(this.elNode.cloneNode(true));
18216     },
18217
18218     getDDRepairXY : function(){
18219         return Roo.lib.Dom.getXY(this.iconNode);
18220     },
18221
18222     onRender : function(){
18223         this.render();
18224     },
18225
18226     render : function(bulkRender){
18227         var n = this.node, a = n.attributes;
18228         var targetNode = n.parentNode ?
18229               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
18230
18231         if(!this.rendered){
18232             this.rendered = true;
18233
18234             this.renderElements(n, a, targetNode, bulkRender);
18235
18236             if(a.qtip){
18237                if(this.textNode.setAttributeNS){
18238                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
18239                    if(a.qtipTitle){
18240                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
18241                    }
18242                }else{
18243                    this.textNode.setAttribute("ext:qtip", a.qtip);
18244                    if(a.qtipTitle){
18245                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
18246                    }
18247                }
18248             }else if(a.qtipCfg){
18249                 a.qtipCfg.target = Roo.id(this.textNode);
18250                 Roo.QuickTips.register(a.qtipCfg);
18251             }
18252             this.initEvents();
18253             if(!this.node.expanded){
18254                 this.updateExpandIcon();
18255             }
18256         }else{
18257             if(bulkRender === true) {
18258                 targetNode.appendChild(this.wrap);
18259             }
18260         }
18261     },
18262
18263     renderElements : function(n, a, targetNode, bulkRender)
18264     {
18265         // add some indent caching, this helps performance when rendering a large tree
18266         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
18267         var t = n.getOwnerTree();
18268         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
18269         if (typeof(n.attributes.html) != 'undefined') {
18270             txt = n.attributes.html;
18271         }
18272         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
18273         var cb = typeof a.checked == 'boolean';
18274         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
18275         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
18276             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
18277             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
18278             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
18279             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
18280             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
18281              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
18282                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
18283             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
18284             "</li>"];
18285
18286         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
18287             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
18288                                 n.nextSibling.ui.getEl(), buf.join(""));
18289         }else{
18290             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
18291         }
18292
18293         this.elNode = this.wrap.childNodes[0];
18294         this.ctNode = this.wrap.childNodes[1];
18295         var cs = this.elNode.childNodes;
18296         this.indentNode = cs[0];
18297         this.ecNode = cs[1];
18298         this.iconNode = cs[2];
18299         var index = 3;
18300         if(cb){
18301             this.checkbox = cs[3];
18302             index++;
18303         }
18304         this.anchor = cs[index];
18305         this.textNode = cs[index].firstChild;
18306     },
18307
18308     getAnchor : function(){
18309         return this.anchor;
18310     },
18311
18312     getTextEl : function(){
18313         return this.textNode;
18314     },
18315
18316     getIconEl : function(){
18317         return this.iconNode;
18318     },
18319
18320     isChecked : function(){
18321         return this.checkbox ? this.checkbox.checked : false;
18322     },
18323
18324     updateExpandIcon : function(){
18325         if(this.rendered){
18326             var n = this.node, c1, c2;
18327             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
18328             var hasChild = n.hasChildNodes();
18329             if(hasChild){
18330                 if(n.expanded){
18331                     cls += "-minus";
18332                     c1 = "x-tree-node-collapsed";
18333                     c2 = "x-tree-node-expanded";
18334                 }else{
18335                     cls += "-plus";
18336                     c1 = "x-tree-node-expanded";
18337                     c2 = "x-tree-node-collapsed";
18338                 }
18339                 if(this.wasLeaf){
18340                     this.removeClass("x-tree-node-leaf");
18341                     this.wasLeaf = false;
18342                 }
18343                 if(this.c1 != c1 || this.c2 != c2){
18344                     Roo.fly(this.elNode).replaceClass(c1, c2);
18345                     this.c1 = c1; this.c2 = c2;
18346                 }
18347             }else{
18348                 // this changes non-leafs into leafs if they have no children.
18349                 // it's not very rational behaviour..
18350                 
18351                 if(!this.wasLeaf && this.node.leaf){
18352                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
18353                     delete this.c1;
18354                     delete this.c2;
18355                     this.wasLeaf = true;
18356                 }
18357             }
18358             var ecc = "x-tree-ec-icon "+cls;
18359             if(this.ecc != ecc){
18360                 this.ecNode.className = ecc;
18361                 this.ecc = ecc;
18362             }
18363         }
18364     },
18365
18366     getChildIndent : function(){
18367         if(!this.childIndent){
18368             var buf = [];
18369             var p = this.node;
18370             while(p){
18371                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
18372                     if(!p.isLast()) {
18373                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
18374                     } else {
18375                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
18376                     }
18377                 }
18378                 p = p.parentNode;
18379             }
18380             this.childIndent = buf.join("");
18381         }
18382         return this.childIndent;
18383     },
18384
18385     renderIndent : function(){
18386         if(this.rendered){
18387             var indent = "";
18388             var p = this.node.parentNode;
18389             if(p){
18390                 indent = p.ui.getChildIndent();
18391             }
18392             if(this.indentMarkup != indent){ // don't rerender if not required
18393                 this.indentNode.innerHTML = indent;
18394                 this.indentMarkup = indent;
18395             }
18396             this.updateExpandIcon();
18397         }
18398     }
18399 };
18400
18401 Roo.tree.RootTreeNodeUI = function(){
18402     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
18403 };
18404 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
18405     render : function(){
18406         if(!this.rendered){
18407             var targetNode = this.node.ownerTree.innerCt.dom;
18408             this.node.expanded = true;
18409             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
18410             this.wrap = this.ctNode = targetNode.firstChild;
18411         }
18412     },
18413     collapse : function(){
18414     },
18415     expand : function(){
18416     }
18417 });/*
18418  * Based on:
18419  * Ext JS Library 1.1.1
18420  * Copyright(c) 2006-2007, Ext JS, LLC.
18421  *
18422  * Originally Released Under LGPL - original licence link has changed is not relivant.
18423  *
18424  * Fork - LGPL
18425  * <script type="text/javascript">
18426  */
18427 /**
18428  * @class Roo.tree.TreeLoader
18429  * @extends Roo.util.Observable
18430  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
18431  * nodes from a specified URL. The response must be a javascript Array definition
18432  * who's elements are node definition objects. eg:
18433  * <pre><code>
18434 {  success : true,
18435    data :      [
18436    
18437     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
18438     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
18439     ]
18440 }
18441
18442
18443 </code></pre>
18444  * <br><br>
18445  * The old style respose with just an array is still supported, but not recommended.
18446  * <br><br>
18447  *
18448  * A server request is sent, and child nodes are loaded only when a node is expanded.
18449  * The loading node's id is passed to the server under the parameter name "node" to
18450  * enable the server to produce the correct child nodes.
18451  * <br><br>
18452  * To pass extra parameters, an event handler may be attached to the "beforeload"
18453  * event, and the parameters specified in the TreeLoader's baseParams property:
18454  * <pre><code>
18455     myTreeLoader.on("beforeload", function(treeLoader, node) {
18456         this.baseParams.category = node.attributes.category;
18457     }, this);
18458 </code></pre><
18459  * This would pass an HTTP parameter called "category" to the server containing
18460  * the value of the Node's "category" attribute.
18461  * @constructor
18462  * Creates a new Treeloader.
18463  * @param {Object} config A config object containing config properties.
18464  */
18465 Roo.tree.TreeLoader = function(config){
18466     this.baseParams = {};
18467     this.requestMethod = "POST";
18468     Roo.apply(this, config);
18469
18470     this.addEvents({
18471     
18472         /**
18473          * @event beforeload
18474          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
18475          * @param {Object} This TreeLoader object.
18476          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
18477          * @param {Object} callback The callback function specified in the {@link #load} call.
18478          */
18479         beforeload : true,
18480         /**
18481          * @event load
18482          * Fires when the node has been successfuly loaded.
18483          * @param {Object} This TreeLoader object.
18484          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
18485          * @param {Object} response The response object containing the data from the server.
18486          */
18487         load : true,
18488         /**
18489          * @event loadexception
18490          * Fires if the network request failed.
18491          * @param {Object} This TreeLoader object.
18492          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
18493          * @param {Object} response The response object containing the data from the server.
18494          */
18495         loadexception : true,
18496         /**
18497          * @event create
18498          * Fires before a node is created, enabling you to return custom Node types 
18499          * @param {Object} This TreeLoader object.
18500          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
18501          */
18502         create : true
18503     });
18504
18505     Roo.tree.TreeLoader.superclass.constructor.call(this);
18506 };
18507
18508 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
18509     /**
18510     * @cfg {String} dataUrl The URL from which to request a Json string which
18511     * specifies an array of node definition object representing the child nodes
18512     * to be loaded.
18513     */
18514     /**
18515     * @cfg {Object} baseParams (optional) An object containing properties which
18516     * specify HTTP parameters to be passed to each request for child nodes.
18517     */
18518     /**
18519     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
18520     * created by this loader. If the attributes sent by the server have an attribute in this object,
18521     * they take priority.
18522     */
18523     /**
18524     * @cfg {Object} uiProviders (optional) An object containing properties which
18525     * 
18526     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
18527     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
18528     * <i>uiProvider</i> attribute of a returned child node is a string rather
18529     * than a reference to a TreeNodeUI implementation, this that string value
18530     * is used as a property name in the uiProviders object. You can define the provider named
18531     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
18532     */
18533     uiProviders : {},
18534
18535     /**
18536     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
18537     * child nodes before loading.
18538     */
18539     clearOnLoad : true,
18540
18541     /**
18542     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
18543     * property on loading, rather than expecting an array. (eg. more compatible to a standard
18544     * Grid query { data : [ .....] }
18545     */
18546     
18547     root : false,
18548      /**
18549     * @cfg {String} queryParam (optional) 
18550     * Name of the query as it will be passed on the querystring (defaults to 'node')
18551     * eg. the request will be ?node=[id]
18552     */
18553     
18554     
18555     queryParam: false,
18556     
18557     /**
18558      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
18559      * This is called automatically when a node is expanded, but may be used to reload
18560      * a node (or append new children if the {@link #clearOnLoad} option is false.)
18561      * @param {Roo.tree.TreeNode} node
18562      * @param {Function} callback
18563      */
18564     load : function(node, callback){
18565         if(this.clearOnLoad){
18566             while(node.firstChild){
18567                 node.removeChild(node.firstChild);
18568             }
18569         }
18570         if(node.attributes.children){ // preloaded json children
18571             var cs = node.attributes.children;
18572             for(var i = 0, len = cs.length; i < len; i++){
18573                 node.appendChild(this.createNode(cs[i]));
18574             }
18575             if(typeof callback == "function"){
18576                 callback();
18577             }
18578         }else if(this.dataUrl){
18579             this.requestData(node, callback);
18580         }
18581     },
18582
18583     getParams: function(node){
18584         var buf = [], bp = this.baseParams;
18585         for(var key in bp){
18586             if(typeof bp[key] != "function"){
18587                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
18588             }
18589         }
18590         var n = this.queryParam === false ? 'node' : this.queryParam;
18591         buf.push(n + "=", encodeURIComponent(node.id));
18592         return buf.join("");
18593     },
18594
18595     requestData : function(node, callback){
18596         if(this.fireEvent("beforeload", this, node, callback) !== false){
18597             this.transId = Roo.Ajax.request({
18598                 method:this.requestMethod,
18599                 url: this.dataUrl||this.url,
18600                 success: this.handleResponse,
18601                 failure: this.handleFailure,
18602                 scope: this,
18603                 argument: {callback: callback, node: node},
18604                 params: this.getParams(node)
18605             });
18606         }else{
18607             // if the load is cancelled, make sure we notify
18608             // the node that we are done
18609             if(typeof callback == "function"){
18610                 callback();
18611             }
18612         }
18613     },
18614
18615     isLoading : function(){
18616         return this.transId ? true : false;
18617     },
18618
18619     abort : function(){
18620         if(this.isLoading()){
18621             Roo.Ajax.abort(this.transId);
18622         }
18623     },
18624
18625     // private
18626     createNode : function(attr)
18627     {
18628         // apply baseAttrs, nice idea Corey!
18629         if(this.baseAttrs){
18630             Roo.applyIf(attr, this.baseAttrs);
18631         }
18632         if(this.applyLoader !== false){
18633             attr.loader = this;
18634         }
18635         // uiProvider = depreciated..
18636         
18637         if(typeof(attr.uiProvider) == 'string'){
18638            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
18639                 /**  eval:var:attr */ eval(attr.uiProvider);
18640         }
18641         if(typeof(this.uiProviders['default']) != 'undefined') {
18642             attr.uiProvider = this.uiProviders['default'];
18643         }
18644         
18645         this.fireEvent('create', this, attr);
18646         
18647         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
18648         return(attr.leaf ?
18649                         new Roo.tree.TreeNode(attr) :
18650                         new Roo.tree.AsyncTreeNode(attr));
18651     },
18652
18653     processResponse : function(response, node, callback)
18654     {
18655         var json = response.responseText;
18656         try {
18657             
18658             var o = Roo.decode(json);
18659             
18660             if (this.root === false && typeof(o.success) != undefined) {
18661                 this.root = 'data'; // the default behaviour for list like data..
18662                 }
18663                 
18664             if (this.root !== false &&  !o.success) {
18665                 // it's a failure condition.
18666                 var a = response.argument;
18667                 this.fireEvent("loadexception", this, a.node, response);
18668                 Roo.log("Load failed - should have a handler really");
18669                 return;
18670             }
18671             
18672             
18673             
18674             if (this.root !== false) {
18675                  o = o[this.root];
18676             }
18677             
18678             for(var i = 0, len = o.length; i < len; i++){
18679                 var n = this.createNode(o[i]);
18680                 if(n){
18681                     node.appendChild(n);
18682                 }
18683             }
18684             if(typeof callback == "function"){
18685                 callback(this, node);
18686             }
18687         }catch(e){
18688             this.handleFailure(response);
18689         }
18690     },
18691
18692     handleResponse : function(response){
18693         this.transId = false;
18694         var a = response.argument;
18695         this.processResponse(response, a.node, a.callback);
18696         this.fireEvent("load", this, a.node, response);
18697     },
18698
18699     handleFailure : function(response)
18700     {
18701         // should handle failure better..
18702         this.transId = false;
18703         var a = response.argument;
18704         this.fireEvent("loadexception", this, a.node, response);
18705         if(typeof a.callback == "function"){
18706             a.callback(this, a.node);
18707         }
18708     }
18709 });/*
18710  * Based on:
18711  * Ext JS Library 1.1.1
18712  * Copyright(c) 2006-2007, Ext JS, LLC.
18713  *
18714  * Originally Released Under LGPL - original licence link has changed is not relivant.
18715  *
18716  * Fork - LGPL
18717  * <script type="text/javascript">
18718  */
18719
18720 /**
18721 * @class Roo.tree.TreeFilter
18722 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
18723 * @param {TreePanel} tree
18724 * @param {Object} config (optional)
18725  */
18726 Roo.tree.TreeFilter = function(tree, config){
18727     this.tree = tree;
18728     this.filtered = {};
18729     Roo.apply(this, config);
18730 };
18731
18732 Roo.tree.TreeFilter.prototype = {
18733     clearBlank:false,
18734     reverse:false,
18735     autoClear:false,
18736     remove:false,
18737
18738      /**
18739      * Filter the data by a specific attribute.
18740      * @param {String/RegExp} value Either string that the attribute value
18741      * should start with or a RegExp to test against the attribute
18742      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
18743      * @param {TreeNode} startNode (optional) The node to start the filter at.
18744      */
18745     filter : function(value, attr, startNode){
18746         attr = attr || "text";
18747         var f;
18748         if(typeof value == "string"){
18749             var vlen = value.length;
18750             // auto clear empty filter
18751             if(vlen == 0 && this.clearBlank){
18752                 this.clear();
18753                 return;
18754             }
18755             value = value.toLowerCase();
18756             f = function(n){
18757                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
18758             };
18759         }else if(value.exec){ // regex?
18760             f = function(n){
18761                 return value.test(n.attributes[attr]);
18762             };
18763         }else{
18764             throw 'Illegal filter type, must be string or regex';
18765         }
18766         this.filterBy(f, null, startNode);
18767         },
18768
18769     /**
18770      * Filter by a function. The passed function will be called with each
18771      * node in the tree (or from the startNode). If the function returns true, the node is kept
18772      * otherwise it is filtered. If a node is filtered, its children are also filtered.
18773      * @param {Function} fn The filter function
18774      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
18775      */
18776     filterBy : function(fn, scope, startNode){
18777         startNode = startNode || this.tree.root;
18778         if(this.autoClear){
18779             this.clear();
18780         }
18781         var af = this.filtered, rv = this.reverse;
18782         var f = function(n){
18783             if(n == startNode){
18784                 return true;
18785             }
18786             if(af[n.id]){
18787                 return false;
18788             }
18789             var m = fn.call(scope || n, n);
18790             if(!m || rv){
18791                 af[n.id] = n;
18792                 n.ui.hide();
18793                 return false;
18794             }
18795             return true;
18796         };
18797         startNode.cascade(f);
18798         if(this.remove){
18799            for(var id in af){
18800                if(typeof id != "function"){
18801                    var n = af[id];
18802                    if(n && n.parentNode){
18803                        n.parentNode.removeChild(n);
18804                    }
18805                }
18806            }
18807         }
18808     },
18809
18810     /**
18811      * Clears the current filter. Note: with the "remove" option
18812      * set a filter cannot be cleared.
18813      */
18814     clear : function(){
18815         var t = this.tree;
18816         var af = this.filtered;
18817         for(var id in af){
18818             if(typeof id != "function"){
18819                 var n = af[id];
18820                 if(n){
18821                     n.ui.show();
18822                 }
18823             }
18824         }
18825         this.filtered = {};
18826     }
18827 };
18828 /*
18829  * Based on:
18830  * Ext JS Library 1.1.1
18831  * Copyright(c) 2006-2007, Ext JS, LLC.
18832  *
18833  * Originally Released Under LGPL - original licence link has changed is not relivant.
18834  *
18835  * Fork - LGPL
18836  * <script type="text/javascript">
18837  */
18838  
18839
18840 /**
18841  * @class Roo.tree.TreeSorter
18842  * Provides sorting of nodes in a TreePanel
18843  * 
18844  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
18845  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
18846  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
18847  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
18848  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
18849  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
18850  * @constructor
18851  * @param {TreePanel} tree
18852  * @param {Object} config
18853  */
18854 Roo.tree.TreeSorter = function(tree, config){
18855     Roo.apply(this, config);
18856     tree.on("beforechildrenrendered", this.doSort, this);
18857     tree.on("append", this.updateSort, this);
18858     tree.on("insert", this.updateSort, this);
18859     
18860     var dsc = this.dir && this.dir.toLowerCase() == "desc";
18861     var p = this.property || "text";
18862     var sortType = this.sortType;
18863     var fs = this.folderSort;
18864     var cs = this.caseSensitive === true;
18865     var leafAttr = this.leafAttr || 'leaf';
18866
18867     this.sortFn = function(n1, n2){
18868         if(fs){
18869             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
18870                 return 1;
18871             }
18872             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
18873                 return -1;
18874             }
18875         }
18876         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
18877         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
18878         if(v1 < v2){
18879                         return dsc ? +1 : -1;
18880                 }else if(v1 > v2){
18881                         return dsc ? -1 : +1;
18882         }else{
18883                 return 0;
18884         }
18885     };
18886 };
18887
18888 Roo.tree.TreeSorter.prototype = {
18889     doSort : function(node){
18890         node.sort(this.sortFn);
18891     },
18892     
18893     compareNodes : function(n1, n2){
18894         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
18895     },
18896     
18897     updateSort : function(tree, node){
18898         if(node.childrenRendered){
18899             this.doSort.defer(1, this, [node]);
18900         }
18901     }
18902 };/*
18903  * Based on:
18904  * Ext JS Library 1.1.1
18905  * Copyright(c) 2006-2007, Ext JS, LLC.
18906  *
18907  * Originally Released Under LGPL - original licence link has changed is not relivant.
18908  *
18909  * Fork - LGPL
18910  * <script type="text/javascript">
18911  */
18912
18913 if(Roo.dd.DropZone){
18914     
18915 Roo.tree.TreeDropZone = function(tree, config){
18916     this.allowParentInsert = false;
18917     this.allowContainerDrop = false;
18918     this.appendOnly = false;
18919     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
18920     this.tree = tree;
18921     this.lastInsertClass = "x-tree-no-status";
18922     this.dragOverData = {};
18923 };
18924
18925 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
18926     ddGroup : "TreeDD",
18927     
18928     expandDelay : 1000,
18929     
18930     expandNode : function(node){
18931         if(node.hasChildNodes() && !node.isExpanded()){
18932             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
18933         }
18934     },
18935     
18936     queueExpand : function(node){
18937         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
18938     },
18939     
18940     cancelExpand : function(){
18941         if(this.expandProcId){
18942             clearTimeout(this.expandProcId);
18943             this.expandProcId = false;
18944         }
18945     },
18946     
18947     isValidDropPoint : function(n, pt, dd, e, data){
18948         if(!n || !data){ return false; }
18949         var targetNode = n.node;
18950         var dropNode = data.node;
18951         // default drop rules
18952         if(!(targetNode && targetNode.isTarget && pt)){
18953             return false;
18954         }
18955         if(pt == "append" && targetNode.allowChildren === false){
18956             return false;
18957         }
18958         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
18959             return false;
18960         }
18961         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
18962             return false;
18963         }
18964         // reuse the object
18965         var overEvent = this.dragOverData;
18966         overEvent.tree = this.tree;
18967         overEvent.target = targetNode;
18968         overEvent.data = data;
18969         overEvent.point = pt;
18970         overEvent.source = dd;
18971         overEvent.rawEvent = e;
18972         overEvent.dropNode = dropNode;
18973         overEvent.cancel = false;  
18974         var result = this.tree.fireEvent("nodedragover", overEvent);
18975         return overEvent.cancel === false && result !== false;
18976     },
18977     
18978     getDropPoint : function(e, n, dd){
18979         var tn = n.node;
18980         if(tn.isRoot){
18981             return tn.allowChildren !== false ? "append" : false; // always append for root
18982         }
18983         var dragEl = n.ddel;
18984         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
18985         var y = Roo.lib.Event.getPageY(e);
18986         //var noAppend = tn.allowChildren === false || tn.isLeaf();
18987         
18988         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
18989         var noAppend = tn.allowChildren === false;
18990         if(this.appendOnly || tn.parentNode.allowChildren === false){
18991             return noAppend ? false : "append";
18992         }
18993         var noBelow = false;
18994         if(!this.allowParentInsert){
18995             noBelow = tn.hasChildNodes() && tn.isExpanded();
18996         }
18997         var q = (b - t) / (noAppend ? 2 : 3);
18998         if(y >= t && y < (t + q)){
18999             return "above";
19000         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
19001             return "below";
19002         }else{
19003             return "append";
19004         }
19005     },
19006     
19007     onNodeEnter : function(n, dd, e, data){
19008         this.cancelExpand();
19009     },
19010     
19011     onNodeOver : function(n, dd, e, data){
19012         var pt = this.getDropPoint(e, n, dd);
19013         var node = n.node;
19014         
19015         // auto node expand check
19016         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
19017             this.queueExpand(node);
19018         }else if(pt != "append"){
19019             this.cancelExpand();
19020         }
19021         
19022         // set the insert point style on the target node
19023         var returnCls = this.dropNotAllowed;
19024         if(this.isValidDropPoint(n, pt, dd, e, data)){
19025            if(pt){
19026                var el = n.ddel;
19027                var cls;
19028                if(pt == "above"){
19029                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
19030                    cls = "x-tree-drag-insert-above";
19031                }else if(pt == "below"){
19032                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
19033                    cls = "x-tree-drag-insert-below";
19034                }else{
19035                    returnCls = "x-tree-drop-ok-append";
19036                    cls = "x-tree-drag-append";
19037                }
19038                if(this.lastInsertClass != cls){
19039                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
19040                    this.lastInsertClass = cls;
19041                }
19042            }
19043        }
19044        return returnCls;
19045     },
19046     
19047     onNodeOut : function(n, dd, e, data){
19048         this.cancelExpand();
19049         this.removeDropIndicators(n);
19050     },
19051     
19052     onNodeDrop : function(n, dd, e, data){
19053         var point = this.getDropPoint(e, n, dd);
19054         var targetNode = n.node;
19055         targetNode.ui.startDrop();
19056         if(!this.isValidDropPoint(n, point, dd, e, data)){
19057             targetNode.ui.endDrop();
19058             return false;
19059         }
19060         // first try to find the drop node
19061         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
19062         var dropEvent = {
19063             tree : this.tree,
19064             target: targetNode,
19065             data: data,
19066             point: point,
19067             source: dd,
19068             rawEvent: e,
19069             dropNode: dropNode,
19070             cancel: !dropNode   
19071         };
19072         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
19073         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
19074             targetNode.ui.endDrop();
19075             return false;
19076         }
19077         // allow target changing
19078         targetNode = dropEvent.target;
19079         if(point == "append" && !targetNode.isExpanded()){
19080             targetNode.expand(false, null, function(){
19081                 this.completeDrop(dropEvent);
19082             }.createDelegate(this));
19083         }else{
19084             this.completeDrop(dropEvent);
19085         }
19086         return true;
19087     },
19088     
19089     completeDrop : function(de){
19090         var ns = de.dropNode, p = de.point, t = de.target;
19091         if(!(ns instanceof Array)){
19092             ns = [ns];
19093         }
19094         var n;
19095         for(var i = 0, len = ns.length; i < len; i++){
19096             n = ns[i];
19097             if(p == "above"){
19098                 t.parentNode.insertBefore(n, t);
19099             }else if(p == "below"){
19100                 t.parentNode.insertBefore(n, t.nextSibling);
19101             }else{
19102                 t.appendChild(n);
19103             }
19104         }
19105         n.ui.focus();
19106         if(this.tree.hlDrop){
19107             n.ui.highlight();
19108         }
19109         t.ui.endDrop();
19110         this.tree.fireEvent("nodedrop", de);
19111     },
19112     
19113     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
19114         if(this.tree.hlDrop){
19115             dropNode.ui.focus();
19116             dropNode.ui.highlight();
19117         }
19118         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
19119     },
19120     
19121     getTree : function(){
19122         return this.tree;
19123     },
19124     
19125     removeDropIndicators : function(n){
19126         if(n && n.ddel){
19127             var el = n.ddel;
19128             Roo.fly(el).removeClass([
19129                     "x-tree-drag-insert-above",
19130                     "x-tree-drag-insert-below",
19131                     "x-tree-drag-append"]);
19132             this.lastInsertClass = "_noclass";
19133         }
19134     },
19135     
19136     beforeDragDrop : function(target, e, id){
19137         this.cancelExpand();
19138         return true;
19139     },
19140     
19141     afterRepair : function(data){
19142         if(data && Roo.enableFx){
19143             data.node.ui.highlight();
19144         }
19145         this.hideProxy();
19146     }    
19147 });
19148
19149 }
19150 /*
19151  * Based on:
19152  * Ext JS Library 1.1.1
19153  * Copyright(c) 2006-2007, Ext JS, LLC.
19154  *
19155  * Originally Released Under LGPL - original licence link has changed is not relivant.
19156  *
19157  * Fork - LGPL
19158  * <script type="text/javascript">
19159  */
19160  
19161
19162 if(Roo.dd.DragZone){
19163 Roo.tree.TreeDragZone = function(tree, config){
19164     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
19165     this.tree = tree;
19166 };
19167
19168 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
19169     ddGroup : "TreeDD",
19170     
19171     onBeforeDrag : function(data, e){
19172         var n = data.node;
19173         return n && n.draggable && !n.disabled;
19174     },
19175     
19176     onInitDrag : function(e){
19177         var data = this.dragData;
19178         this.tree.getSelectionModel().select(data.node);
19179         this.proxy.update("");
19180         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
19181         this.tree.fireEvent("startdrag", this.tree, data.node, e);
19182     },
19183     
19184     getRepairXY : function(e, data){
19185         return data.node.ui.getDDRepairXY();
19186     },
19187     
19188     onEndDrag : function(data, e){
19189         this.tree.fireEvent("enddrag", this.tree, data.node, e);
19190     },
19191     
19192     onValidDrop : function(dd, e, id){
19193         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
19194         this.hideProxy();
19195     },
19196     
19197     beforeInvalidDrop : function(e, id){
19198         // this scrolls the original position back into view
19199         var sm = this.tree.getSelectionModel();
19200         sm.clearSelections();
19201         sm.select(this.dragData.node);
19202     }
19203 });
19204 }/*
19205  * Based on:
19206  * Ext JS Library 1.1.1
19207  * Copyright(c) 2006-2007, Ext JS, LLC.
19208  *
19209  * Originally Released Under LGPL - original licence link has changed is not relivant.
19210  *
19211  * Fork - LGPL
19212  * <script type="text/javascript">
19213  */
19214 /**
19215  * @class Roo.tree.TreeEditor
19216  * @extends Roo.Editor
19217  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
19218  * as the editor field.
19219  * @constructor
19220  * @param {Object} config (used to be the tree panel.)
19221  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
19222  * 
19223  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
19224  * @cfg {Roo.form.TextField|Object} field The field configuration
19225  *
19226  * 
19227  */
19228 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
19229     var tree = config;
19230     var field;
19231     if (oldconfig) { // old style..
19232         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
19233     } else {
19234         // new style..
19235         tree = config.tree;
19236         config.field = config.field  || {};
19237         config.field.xtype = 'TextField';
19238         field = Roo.factory(config.field, Roo.form);
19239     }
19240     config = config || {};
19241     
19242     
19243     this.addEvents({
19244         /**
19245          * @event beforenodeedit
19246          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
19247          * false from the handler of this event.
19248          * @param {Editor} this
19249          * @param {Roo.tree.Node} node 
19250          */
19251         "beforenodeedit" : true
19252     });
19253     
19254     //Roo.log(config);
19255     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
19256
19257     this.tree = tree;
19258
19259     tree.on('beforeclick', this.beforeNodeClick, this);
19260     tree.getTreeEl().on('mousedown', this.hide, this);
19261     this.on('complete', this.updateNode, this);
19262     this.on('beforestartedit', this.fitToTree, this);
19263     this.on('startedit', this.bindScroll, this, {delay:10});
19264     this.on('specialkey', this.onSpecialKey, this);
19265 };
19266
19267 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
19268     /**
19269      * @cfg {String} alignment
19270      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
19271      */
19272     alignment: "l-l",
19273     // inherit
19274     autoSize: false,
19275     /**
19276      * @cfg {Boolean} hideEl
19277      * True to hide the bound element while the editor is displayed (defaults to false)
19278      */
19279     hideEl : false,
19280     /**
19281      * @cfg {String} cls
19282      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
19283      */
19284     cls: "x-small-editor x-tree-editor",
19285     /**
19286      * @cfg {Boolean} shim
19287      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
19288      */
19289     shim:false,
19290     // inherit
19291     shadow:"frame",
19292     /**
19293      * @cfg {Number} maxWidth
19294      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
19295      * the containing tree element's size, it will be automatically limited for you to the container width, taking
19296      * scroll and client offsets into account prior to each edit.
19297      */
19298     maxWidth: 250,
19299
19300     editDelay : 350,
19301
19302     // private
19303     fitToTree : function(ed, el){
19304         var td = this.tree.getTreeEl().dom, nd = el.dom;
19305         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
19306             td.scrollLeft = nd.offsetLeft;
19307         }
19308         var w = Math.min(
19309                 this.maxWidth,
19310                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
19311         this.setSize(w, '');
19312         
19313         return this.fireEvent('beforenodeedit', this, this.editNode);
19314         
19315     },
19316
19317     // private
19318     triggerEdit : function(node){
19319         this.completeEdit();
19320         this.editNode = node;
19321         this.startEdit(node.ui.textNode, node.text);
19322     },
19323
19324     // private
19325     bindScroll : function(){
19326         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
19327     },
19328
19329     // private
19330     beforeNodeClick : function(node, e){
19331         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
19332         this.lastClick = new Date();
19333         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
19334             e.stopEvent();
19335             this.triggerEdit(node);
19336             return false;
19337         }
19338         return true;
19339     },
19340
19341     // private
19342     updateNode : function(ed, value){
19343         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
19344         this.editNode.setText(value);
19345     },
19346
19347     // private
19348     onHide : function(){
19349         Roo.tree.TreeEditor.superclass.onHide.call(this);
19350         if(this.editNode){
19351             this.editNode.ui.focus();
19352         }
19353     },
19354
19355     // private
19356     onSpecialKey : function(field, e){
19357         var k = e.getKey();
19358         if(k == e.ESC){
19359             e.stopEvent();
19360             this.cancelEdit();
19361         }else if(k == e.ENTER && !e.hasModifier()){
19362             e.stopEvent();
19363             this.completeEdit();
19364         }
19365     }
19366 });//<Script type="text/javascript">
19367 /*
19368  * Based on:
19369  * Ext JS Library 1.1.1
19370  * Copyright(c) 2006-2007, Ext JS, LLC.
19371  *
19372  * Originally Released Under LGPL - original licence link has changed is not relivant.
19373  *
19374  * Fork - LGPL
19375  * <script type="text/javascript">
19376  */
19377  
19378 /**
19379  * Not documented??? - probably should be...
19380  */
19381
19382 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
19383     //focus: Roo.emptyFn, // prevent odd scrolling behavior
19384     
19385     renderElements : function(n, a, targetNode, bulkRender){
19386         //consel.log("renderElements?");
19387         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
19388
19389         var t = n.getOwnerTree();
19390         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
19391         
19392         var cols = t.columns;
19393         var bw = t.borderWidth;
19394         var c = cols[0];
19395         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
19396          var cb = typeof a.checked == "boolean";
19397         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
19398         var colcls = 'x-t-' + tid + '-c0';
19399         var buf = [
19400             '<li class="x-tree-node">',
19401             
19402                 
19403                 '<div class="x-tree-node-el ', a.cls,'">',
19404                     // extran...
19405                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
19406                 
19407                 
19408                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
19409                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
19410                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
19411                            (a.icon ? ' x-tree-node-inline-icon' : ''),
19412                            (a.iconCls ? ' '+a.iconCls : ''),
19413                            '" unselectable="on" />',
19414                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
19415                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
19416                              
19417                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
19418                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
19419                             '<span unselectable="on" qtip="' + tx + '">',
19420                              tx,
19421                              '</span></a>' ,
19422                     '</div>',
19423                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
19424                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
19425                  ];
19426         for(var i = 1, len = cols.length; i < len; i++){
19427             c = cols[i];
19428             colcls = 'x-t-' + tid + '-c' +i;
19429             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
19430             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
19431                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
19432                       "</div>");
19433          }
19434          
19435          buf.push(
19436             '</a>',
19437             '<div class="x-clear"></div></div>',
19438             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
19439             "</li>");
19440         
19441         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
19442             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
19443                                 n.nextSibling.ui.getEl(), buf.join(""));
19444         }else{
19445             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
19446         }
19447         var el = this.wrap.firstChild;
19448         this.elRow = el;
19449         this.elNode = el.firstChild;
19450         this.ranchor = el.childNodes[1];
19451         this.ctNode = this.wrap.childNodes[1];
19452         var cs = el.firstChild.childNodes;
19453         this.indentNode = cs[0];
19454         this.ecNode = cs[1];
19455         this.iconNode = cs[2];
19456         var index = 3;
19457         if(cb){
19458             this.checkbox = cs[3];
19459             index++;
19460         }
19461         this.anchor = cs[index];
19462         
19463         this.textNode = cs[index].firstChild;
19464         
19465         //el.on("click", this.onClick, this);
19466         //el.on("dblclick", this.onDblClick, this);
19467         
19468         
19469        // console.log(this);
19470     },
19471     initEvents : function(){
19472         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
19473         
19474             
19475         var a = this.ranchor;
19476
19477         var el = Roo.get(a);
19478
19479         if(Roo.isOpera){ // opera render bug ignores the CSS
19480             el.setStyle("text-decoration", "none");
19481         }
19482
19483         el.on("click", this.onClick, this);
19484         el.on("dblclick", this.onDblClick, this);
19485         el.on("contextmenu", this.onContextMenu, this);
19486         
19487     },
19488     
19489     /*onSelectedChange : function(state){
19490         if(state){
19491             this.focus();
19492             this.addClass("x-tree-selected");
19493         }else{
19494             //this.blur();
19495             this.removeClass("x-tree-selected");
19496         }
19497     },*/
19498     addClass : function(cls){
19499         if(this.elRow){
19500             Roo.fly(this.elRow).addClass(cls);
19501         }
19502         
19503     },
19504     
19505     
19506     removeClass : function(cls){
19507         if(this.elRow){
19508             Roo.fly(this.elRow).removeClass(cls);
19509         }
19510     }
19511
19512     
19513     
19514 });//<Script type="text/javascript">
19515
19516 /*
19517  * Based on:
19518  * Ext JS Library 1.1.1
19519  * Copyright(c) 2006-2007, Ext JS, LLC.
19520  *
19521  * Originally Released Under LGPL - original licence link has changed is not relivant.
19522  *
19523  * Fork - LGPL
19524  * <script type="text/javascript">
19525  */
19526  
19527
19528 /**
19529  * @class Roo.tree.ColumnTree
19530  * @extends Roo.data.TreePanel
19531  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
19532  * @cfg {int} borderWidth  compined right/left border allowance
19533  * @constructor
19534  * @param {String/HTMLElement/Element} el The container element
19535  * @param {Object} config
19536  */
19537 Roo.tree.ColumnTree =  function(el, config)
19538 {
19539    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
19540    this.addEvents({
19541         /**
19542         * @event resize
19543         * Fire this event on a container when it resizes
19544         * @param {int} w Width
19545         * @param {int} h Height
19546         */
19547        "resize" : true
19548     });
19549     this.on('resize', this.onResize, this);
19550 };
19551
19552 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
19553     //lines:false,
19554     
19555     
19556     borderWidth: Roo.isBorderBox ? 0 : 2, 
19557     headEls : false,
19558     
19559     render : function(){
19560         // add the header.....
19561        
19562         Roo.tree.ColumnTree.superclass.render.apply(this);
19563         
19564         this.el.addClass('x-column-tree');
19565         
19566         this.headers = this.el.createChild(
19567             {cls:'x-tree-headers'},this.innerCt.dom);
19568    
19569         var cols = this.columns, c;
19570         var totalWidth = 0;
19571         this.headEls = [];
19572         var  len = cols.length;
19573         for(var i = 0; i < len; i++){
19574              c = cols[i];
19575              totalWidth += c.width;
19576             this.headEls.push(this.headers.createChild({
19577                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
19578                  cn: {
19579                      cls:'x-tree-hd-text',
19580                      html: c.header
19581                  },
19582                  style:'width:'+(c.width-this.borderWidth)+'px;'
19583              }));
19584         }
19585         this.headers.createChild({cls:'x-clear'});
19586         // prevent floats from wrapping when clipped
19587         this.headers.setWidth(totalWidth);
19588         //this.innerCt.setWidth(totalWidth);
19589         this.innerCt.setStyle({ overflow: 'auto' });
19590         this.onResize(this.width, this.height);
19591              
19592         
19593     },
19594     onResize : function(w,h)
19595     {
19596         this.height = h;
19597         this.width = w;
19598         // resize cols..
19599         this.innerCt.setWidth(this.width);
19600         this.innerCt.setHeight(this.height-20);
19601         
19602         // headers...
19603         var cols = this.columns, c;
19604         var totalWidth = 0;
19605         var expEl = false;
19606         var len = cols.length;
19607         for(var i = 0; i < len; i++){
19608             c = cols[i];
19609             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
19610                 // it's the expander..
19611                 expEl  = this.headEls[i];
19612                 continue;
19613             }
19614             totalWidth += c.width;
19615             
19616         }
19617         if (expEl) {
19618             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
19619         }
19620         this.headers.setWidth(w-20);
19621
19622         
19623         
19624         
19625     }
19626 });
19627 /*
19628  * Based on:
19629  * Ext JS Library 1.1.1
19630  * Copyright(c) 2006-2007, Ext JS, LLC.
19631  *
19632  * Originally Released Under LGPL - original licence link has changed is not relivant.
19633  *
19634  * Fork - LGPL
19635  * <script type="text/javascript">
19636  */
19637  
19638 /**
19639  * @class Roo.menu.Menu
19640  * @extends Roo.util.Observable
19641  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
19642  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
19643  * @constructor
19644  * Creates a new Menu
19645  * @param {Object} config Configuration options
19646  */
19647 Roo.menu.Menu = function(config){
19648     Roo.apply(this, config);
19649     this.id = this.id || Roo.id();
19650     this.addEvents({
19651         /**
19652          * @event beforeshow
19653          * Fires before this menu is displayed
19654          * @param {Roo.menu.Menu} this
19655          */
19656         beforeshow : true,
19657         /**
19658          * @event beforehide
19659          * Fires before this menu is hidden
19660          * @param {Roo.menu.Menu} this
19661          */
19662         beforehide : true,
19663         /**
19664          * @event show
19665          * Fires after this menu is displayed
19666          * @param {Roo.menu.Menu} this
19667          */
19668         show : true,
19669         /**
19670          * @event hide
19671          * Fires after this menu is hidden
19672          * @param {Roo.menu.Menu} this
19673          */
19674         hide : true,
19675         /**
19676          * @event click
19677          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
19678          * @param {Roo.menu.Menu} this
19679          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19680          * @param {Roo.EventObject} e
19681          */
19682         click : true,
19683         /**
19684          * @event mouseover
19685          * Fires when the mouse is hovering over this menu
19686          * @param {Roo.menu.Menu} this
19687          * @param {Roo.EventObject} e
19688          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19689          */
19690         mouseover : true,
19691         /**
19692          * @event mouseout
19693          * Fires when the mouse exits this menu
19694          * @param {Roo.menu.Menu} this
19695          * @param {Roo.EventObject} e
19696          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19697          */
19698         mouseout : true,
19699         /**
19700          * @event itemclick
19701          * Fires when a menu item contained in this menu is clicked
19702          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
19703          * @param {Roo.EventObject} e
19704          */
19705         itemclick: true
19706     });
19707     if (this.registerMenu) {
19708         Roo.menu.MenuMgr.register(this);
19709     }
19710     
19711     var mis = this.items;
19712     this.items = new Roo.util.MixedCollection();
19713     if(mis){
19714         this.add.apply(this, mis);
19715     }
19716 };
19717
19718 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
19719     /**
19720      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
19721      */
19722     minWidth : 120,
19723     /**
19724      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
19725      * for bottom-right shadow (defaults to "sides")
19726      */
19727     shadow : "sides",
19728     /**
19729      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
19730      * this menu (defaults to "tl-tr?")
19731      */
19732     subMenuAlign : "tl-tr?",
19733     /**
19734      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
19735      * relative to its element of origin (defaults to "tl-bl?")
19736      */
19737     defaultAlign : "tl-bl?",
19738     /**
19739      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
19740      */
19741     allowOtherMenus : false,
19742     /**
19743      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
19744      */
19745     registerMenu : true,
19746
19747     hidden:true,
19748
19749     // private
19750     render : function(){
19751         if(this.el){
19752             return;
19753         }
19754         var el = this.el = new Roo.Layer({
19755             cls: "x-menu",
19756             shadow:this.shadow,
19757             constrain: false,
19758             parentEl: this.parentEl || document.body,
19759             zindex:15000
19760         });
19761
19762         this.keyNav = new Roo.menu.MenuNav(this);
19763
19764         if(this.plain){
19765             el.addClass("x-menu-plain");
19766         }
19767         if(this.cls){
19768             el.addClass(this.cls);
19769         }
19770         // generic focus element
19771         this.focusEl = el.createChild({
19772             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
19773         });
19774         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
19775         ul.on("click", this.onClick, this);
19776         ul.on("mouseover", this.onMouseOver, this);
19777         ul.on("mouseout", this.onMouseOut, this);
19778         this.items.each(function(item){
19779             var li = document.createElement("li");
19780             li.className = "x-menu-list-item";
19781             ul.dom.appendChild(li);
19782             item.render(li, this);
19783         }, this);
19784         this.ul = ul;
19785         this.autoWidth();
19786     },
19787
19788     // private
19789     autoWidth : function(){
19790         var el = this.el, ul = this.ul;
19791         if(!el){
19792             return;
19793         }
19794         var w = this.width;
19795         if(w){
19796             el.setWidth(w);
19797         }else if(Roo.isIE){
19798             el.setWidth(this.minWidth);
19799             var t = el.dom.offsetWidth; // force recalc
19800             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
19801         }
19802     },
19803
19804     // private
19805     delayAutoWidth : function(){
19806         if(this.rendered){
19807             if(!this.awTask){
19808                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
19809             }
19810             this.awTask.delay(20);
19811         }
19812     },
19813
19814     // private
19815     findTargetItem : function(e){
19816         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
19817         if(t && t.menuItemId){
19818             return this.items.get(t.menuItemId);
19819         }
19820     },
19821
19822     // private
19823     onClick : function(e){
19824         var t;
19825         if(t = this.findTargetItem(e)){
19826             t.onClick(e);
19827             this.fireEvent("click", this, t, e);
19828         }
19829     },
19830
19831     // private
19832     setActiveItem : function(item, autoExpand){
19833         if(item != this.activeItem){
19834             if(this.activeItem){
19835                 this.activeItem.deactivate();
19836             }
19837             this.activeItem = item;
19838             item.activate(autoExpand);
19839         }else if(autoExpand){
19840             item.expandMenu();
19841         }
19842     },
19843
19844     // private
19845     tryActivate : function(start, step){
19846         var items = this.items;
19847         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
19848             var item = items.get(i);
19849             if(!item.disabled && item.canActivate){
19850                 this.setActiveItem(item, false);
19851                 return item;
19852             }
19853         }
19854         return false;
19855     },
19856
19857     // private
19858     onMouseOver : function(e){
19859         var t;
19860         if(t = this.findTargetItem(e)){
19861             if(t.canActivate && !t.disabled){
19862                 this.setActiveItem(t, true);
19863             }
19864         }
19865         this.fireEvent("mouseover", this, e, t);
19866     },
19867
19868     // private
19869     onMouseOut : function(e){
19870         var t;
19871         if(t = this.findTargetItem(e)){
19872             if(t == this.activeItem && t.shouldDeactivate(e)){
19873                 this.activeItem.deactivate();
19874                 delete this.activeItem;
19875             }
19876         }
19877         this.fireEvent("mouseout", this, e, t);
19878     },
19879
19880     /**
19881      * Read-only.  Returns true if the menu is currently displayed, else false.
19882      * @type Boolean
19883      */
19884     isVisible : function(){
19885         return this.el && !this.hidden;
19886     },
19887
19888     /**
19889      * Displays this menu relative to another element
19890      * @param {String/HTMLElement/Roo.Element} element The element to align to
19891      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
19892      * the element (defaults to this.defaultAlign)
19893      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19894      */
19895     show : function(el, pos, parentMenu){
19896         this.parentMenu = parentMenu;
19897         if(!this.el){
19898             this.render();
19899         }
19900         this.fireEvent("beforeshow", this);
19901         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
19902     },
19903
19904     /**
19905      * Displays this menu at a specific xy position
19906      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
19907      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19908      */
19909     showAt : function(xy, parentMenu, /* private: */_e){
19910         this.parentMenu = parentMenu;
19911         if(!this.el){
19912             this.render();
19913         }
19914         if(_e !== false){
19915             this.fireEvent("beforeshow", this);
19916             xy = this.el.adjustForConstraints(xy);
19917         }
19918         this.el.setXY(xy);
19919         this.el.show();
19920         this.hidden = false;
19921         this.focus();
19922         this.fireEvent("show", this);
19923     },
19924
19925     focus : function(){
19926         if(!this.hidden){
19927             this.doFocus.defer(50, this);
19928         }
19929     },
19930
19931     doFocus : function(){
19932         if(!this.hidden){
19933             this.focusEl.focus();
19934         }
19935     },
19936
19937     /**
19938      * Hides this menu and optionally all parent menus
19939      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
19940      */
19941     hide : function(deep){
19942         if(this.el && this.isVisible()){
19943             this.fireEvent("beforehide", this);
19944             if(this.activeItem){
19945                 this.activeItem.deactivate();
19946                 this.activeItem = null;
19947             }
19948             this.el.hide();
19949             this.hidden = true;
19950             this.fireEvent("hide", this);
19951         }
19952         if(deep === true && this.parentMenu){
19953             this.parentMenu.hide(true);
19954         }
19955     },
19956
19957     /**
19958      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
19959      * Any of the following are valid:
19960      * <ul>
19961      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
19962      * <li>An HTMLElement object which will be converted to a menu item</li>
19963      * <li>A menu item config object that will be created as a new menu item</li>
19964      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
19965      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
19966      * </ul>
19967      * Usage:
19968      * <pre><code>
19969 // Create the menu
19970 var menu = new Roo.menu.Menu();
19971
19972 // Create a menu item to add by reference
19973 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
19974
19975 // Add a bunch of items at once using different methods.
19976 // Only the last item added will be returned.
19977 var item = menu.add(
19978     menuItem,                // add existing item by ref
19979     'Dynamic Item',          // new TextItem
19980     '-',                     // new separator
19981     { text: 'Config Item' }  // new item by config
19982 );
19983 </code></pre>
19984      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
19985      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
19986      */
19987     add : function(){
19988         var a = arguments, l = a.length, item;
19989         for(var i = 0; i < l; i++){
19990             var el = a[i];
19991             if ((typeof(el) == "object") && el.xtype && el.xns) {
19992                 el = Roo.factory(el, Roo.menu);
19993             }
19994             
19995             if(el.render){ // some kind of Item
19996                 item = this.addItem(el);
19997             }else if(typeof el == "string"){ // string
19998                 if(el == "separator" || el == "-"){
19999                     item = this.addSeparator();
20000                 }else{
20001                     item = this.addText(el);
20002                 }
20003             }else if(el.tagName || el.el){ // element
20004                 item = this.addElement(el);
20005             }else if(typeof el == "object"){ // must be menu item config?
20006                 item = this.addMenuItem(el);
20007             }
20008         }
20009         return item;
20010     },
20011
20012     /**
20013      * Returns this menu's underlying {@link Roo.Element} object
20014      * @return {Roo.Element} The element
20015      */
20016     getEl : function(){
20017         if(!this.el){
20018             this.render();
20019         }
20020         return this.el;
20021     },
20022
20023     /**
20024      * Adds a separator bar to the menu
20025      * @return {Roo.menu.Item} The menu item that was added
20026      */
20027     addSeparator : function(){
20028         return this.addItem(new Roo.menu.Separator());
20029     },
20030
20031     /**
20032      * Adds an {@link Roo.Element} object to the menu
20033      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
20034      * @return {Roo.menu.Item} The menu item that was added
20035      */
20036     addElement : function(el){
20037         return this.addItem(new Roo.menu.BaseItem(el));
20038     },
20039
20040     /**
20041      * Adds an existing object based on {@link Roo.menu.Item} to the menu
20042      * @param {Roo.menu.Item} item The menu item to add
20043      * @return {Roo.menu.Item} The menu item that was added
20044      */
20045     addItem : function(item){
20046         this.items.add(item);
20047         if(this.ul){
20048             var li = document.createElement("li");
20049             li.className = "x-menu-list-item";
20050             this.ul.dom.appendChild(li);
20051             item.render(li, this);
20052             this.delayAutoWidth();
20053         }
20054         return item;
20055     },
20056
20057     /**
20058      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
20059      * @param {Object} config A MenuItem config object
20060      * @return {Roo.menu.Item} The menu item that was added
20061      */
20062     addMenuItem : function(config){
20063         if(!(config instanceof Roo.menu.Item)){
20064             if(typeof config.checked == "boolean"){ // must be check menu item config?
20065                 config = new Roo.menu.CheckItem(config);
20066             }else{
20067                 config = new Roo.menu.Item(config);
20068             }
20069         }
20070         return this.addItem(config);
20071     },
20072
20073     /**
20074      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
20075      * @param {String} text The text to display in the menu item
20076      * @return {Roo.menu.Item} The menu item that was added
20077      */
20078     addText : function(text){
20079         return this.addItem(new Roo.menu.TextItem({ text : text }));
20080     },
20081
20082     /**
20083      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
20084      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
20085      * @param {Roo.menu.Item} item The menu item to add
20086      * @return {Roo.menu.Item} The menu item that was added
20087      */
20088     insert : function(index, item){
20089         this.items.insert(index, item);
20090         if(this.ul){
20091             var li = document.createElement("li");
20092             li.className = "x-menu-list-item";
20093             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
20094             item.render(li, this);
20095             this.delayAutoWidth();
20096         }
20097         return item;
20098     },
20099
20100     /**
20101      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
20102      * @param {Roo.menu.Item} item The menu item to remove
20103      */
20104     remove : function(item){
20105         this.items.removeKey(item.id);
20106         item.destroy();
20107     },
20108
20109     /**
20110      * Removes and destroys all items in the menu
20111      */
20112     removeAll : function(){
20113         var f;
20114         while(f = this.items.first()){
20115             this.remove(f);
20116         }
20117     }
20118 });
20119
20120 // MenuNav is a private utility class used internally by the Menu
20121 Roo.menu.MenuNav = function(menu){
20122     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
20123     this.scope = this.menu = menu;
20124 };
20125
20126 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
20127     doRelay : function(e, h){
20128         var k = e.getKey();
20129         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
20130             this.menu.tryActivate(0, 1);
20131             return false;
20132         }
20133         return h.call(this.scope || this, e, this.menu);
20134     },
20135
20136     up : function(e, m){
20137         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
20138             m.tryActivate(m.items.length-1, -1);
20139         }
20140     },
20141
20142     down : function(e, m){
20143         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
20144             m.tryActivate(0, 1);
20145         }
20146     },
20147
20148     right : function(e, m){
20149         if(m.activeItem){
20150             m.activeItem.expandMenu(true);
20151         }
20152     },
20153
20154     left : function(e, m){
20155         m.hide();
20156         if(m.parentMenu && m.parentMenu.activeItem){
20157             m.parentMenu.activeItem.activate();
20158         }
20159     },
20160
20161     enter : function(e, m){
20162         if(m.activeItem){
20163             e.stopPropagation();
20164             m.activeItem.onClick(e);
20165             m.fireEvent("click", this, m.activeItem);
20166             return true;
20167         }
20168     }
20169 });/*
20170  * Based on:
20171  * Ext JS Library 1.1.1
20172  * Copyright(c) 2006-2007, Ext JS, LLC.
20173  *
20174  * Originally Released Under LGPL - original licence link has changed is not relivant.
20175  *
20176  * Fork - LGPL
20177  * <script type="text/javascript">
20178  */
20179  
20180 /**
20181  * @class Roo.menu.MenuMgr
20182  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
20183  * @singleton
20184  */
20185 Roo.menu.MenuMgr = function(){
20186    var menus, active, groups = {}, attached = false, lastShow = new Date();
20187
20188    // private - called when first menu is created
20189    function init(){
20190        menus = {};
20191        active = new Roo.util.MixedCollection();
20192        Roo.get(document).addKeyListener(27, function(){
20193            if(active.length > 0){
20194                hideAll();
20195            }
20196        });
20197    }
20198
20199    // private
20200    function hideAll(){
20201        if(active && active.length > 0){
20202            var c = active.clone();
20203            c.each(function(m){
20204                m.hide();
20205            });
20206        }
20207    }
20208
20209    // private
20210    function onHide(m){
20211        active.remove(m);
20212        if(active.length < 1){
20213            Roo.get(document).un("mousedown", onMouseDown);
20214            attached = false;
20215        }
20216    }
20217
20218    // private
20219    function onShow(m){
20220        var last = active.last();
20221        lastShow = new Date();
20222        active.add(m);
20223        if(!attached){
20224            Roo.get(document).on("mousedown", onMouseDown);
20225            attached = true;
20226        }
20227        if(m.parentMenu){
20228           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
20229           m.parentMenu.activeChild = m;
20230        }else if(last && last.isVisible()){
20231           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
20232        }
20233    }
20234
20235    // private
20236    function onBeforeHide(m){
20237        if(m.activeChild){
20238            m.activeChild.hide();
20239        }
20240        if(m.autoHideTimer){
20241            clearTimeout(m.autoHideTimer);
20242            delete m.autoHideTimer;
20243        }
20244    }
20245
20246    // private
20247    function onBeforeShow(m){
20248        var pm = m.parentMenu;
20249        if(!pm && !m.allowOtherMenus){
20250            hideAll();
20251        }else if(pm && pm.activeChild && active != m){
20252            pm.activeChild.hide();
20253        }
20254    }
20255
20256    // private
20257    function onMouseDown(e){
20258        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
20259            hideAll();
20260        }
20261    }
20262
20263    // private
20264    function onBeforeCheck(mi, state){
20265        if(state){
20266            var g = groups[mi.group];
20267            for(var i = 0, l = g.length; i < l; i++){
20268                if(g[i] != mi){
20269                    g[i].setChecked(false);
20270                }
20271            }
20272        }
20273    }
20274
20275    return {
20276
20277        /**
20278         * Hides all menus that are currently visible
20279         */
20280        hideAll : function(){
20281             hideAll();  
20282        },
20283
20284        // private
20285        register : function(menu){
20286            if(!menus){
20287                init();
20288            }
20289            menus[menu.id] = menu;
20290            menu.on("beforehide", onBeforeHide);
20291            menu.on("hide", onHide);
20292            menu.on("beforeshow", onBeforeShow);
20293            menu.on("show", onShow);
20294            var g = menu.group;
20295            if(g && menu.events["checkchange"]){
20296                if(!groups[g]){
20297                    groups[g] = [];
20298                }
20299                groups[g].push(menu);
20300                menu.on("checkchange", onCheck);
20301            }
20302        },
20303
20304         /**
20305          * Returns a {@link Roo.menu.Menu} object
20306          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
20307          * be used to generate and return a new Menu instance.
20308          */
20309        get : function(menu){
20310            if(typeof menu == "string"){ // menu id
20311                return menus[menu];
20312            }else if(menu.events){  // menu instance
20313                return menu;
20314            }else if(typeof menu.length == 'number'){ // array of menu items?
20315                return new Roo.menu.Menu({items:menu});
20316            }else{ // otherwise, must be a config
20317                return new Roo.menu.Menu(menu);
20318            }
20319        },
20320
20321        // private
20322        unregister : function(menu){
20323            delete menus[menu.id];
20324            menu.un("beforehide", onBeforeHide);
20325            menu.un("hide", onHide);
20326            menu.un("beforeshow", onBeforeShow);
20327            menu.un("show", onShow);
20328            var g = menu.group;
20329            if(g && menu.events["checkchange"]){
20330                groups[g].remove(menu);
20331                menu.un("checkchange", onCheck);
20332            }
20333        },
20334
20335        // private
20336        registerCheckable : function(menuItem){
20337            var g = menuItem.group;
20338            if(g){
20339                if(!groups[g]){
20340                    groups[g] = [];
20341                }
20342                groups[g].push(menuItem);
20343                menuItem.on("beforecheckchange", onBeforeCheck);
20344            }
20345        },
20346
20347        // private
20348        unregisterCheckable : function(menuItem){
20349            var g = menuItem.group;
20350            if(g){
20351                groups[g].remove(menuItem);
20352                menuItem.un("beforecheckchange", onBeforeCheck);
20353            }
20354        }
20355    };
20356 }();/*
20357  * Based on:
20358  * Ext JS Library 1.1.1
20359  * Copyright(c) 2006-2007, Ext JS, LLC.
20360  *
20361  * Originally Released Under LGPL - original licence link has changed is not relivant.
20362  *
20363  * Fork - LGPL
20364  * <script type="text/javascript">
20365  */
20366  
20367
20368 /**
20369  * @class Roo.menu.BaseItem
20370  * @extends Roo.Component
20371  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
20372  * management and base configuration options shared by all menu components.
20373  * @constructor
20374  * Creates a new BaseItem
20375  * @param {Object} config Configuration options
20376  */
20377 Roo.menu.BaseItem = function(config){
20378     Roo.menu.BaseItem.superclass.constructor.call(this, config);
20379
20380     this.addEvents({
20381         /**
20382          * @event click
20383          * Fires when this item is clicked
20384          * @param {Roo.menu.BaseItem} this
20385          * @param {Roo.EventObject} e
20386          */
20387         click: true,
20388         /**
20389          * @event activate
20390          * Fires when this item is activated
20391          * @param {Roo.menu.BaseItem} this
20392          */
20393         activate : true,
20394         /**
20395          * @event deactivate
20396          * Fires when this item is deactivated
20397          * @param {Roo.menu.BaseItem} this
20398          */
20399         deactivate : true
20400     });
20401
20402     if(this.handler){
20403         this.on("click", this.handler, this.scope, true);
20404     }
20405 };
20406
20407 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
20408     /**
20409      * @cfg {Function} handler
20410      * A function that will handle the click event of this menu item (defaults to undefined)
20411      */
20412     /**
20413      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
20414      */
20415     canActivate : false,
20416     /**
20417      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
20418      */
20419     activeClass : "x-menu-item-active",
20420     /**
20421      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
20422      */
20423     hideOnClick : true,
20424     /**
20425      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
20426      */
20427     hideDelay : 100,
20428
20429     // private
20430     ctype: "Roo.menu.BaseItem",
20431
20432     // private
20433     actionMode : "container",
20434
20435     // private
20436     render : function(container, parentMenu){
20437         this.parentMenu = parentMenu;
20438         Roo.menu.BaseItem.superclass.render.call(this, container);
20439         this.container.menuItemId = this.id;
20440     },
20441
20442     // private
20443     onRender : function(container, position){
20444         this.el = Roo.get(this.el);
20445         container.dom.appendChild(this.el.dom);
20446     },
20447
20448     // private
20449     onClick : function(e){
20450         if(!this.disabled && this.fireEvent("click", this, e) !== false
20451                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
20452             this.handleClick(e);
20453         }else{
20454             e.stopEvent();
20455         }
20456     },
20457
20458     // private
20459     activate : function(){
20460         if(this.disabled){
20461             return false;
20462         }
20463         var li = this.container;
20464         li.addClass(this.activeClass);
20465         this.region = li.getRegion().adjust(2, 2, -2, -2);
20466         this.fireEvent("activate", this);
20467         return true;
20468     },
20469
20470     // private
20471     deactivate : function(){
20472         this.container.removeClass(this.activeClass);
20473         this.fireEvent("deactivate", this);
20474     },
20475
20476     // private
20477     shouldDeactivate : function(e){
20478         return !this.region || !this.region.contains(e.getPoint());
20479     },
20480
20481     // private
20482     handleClick : function(e){
20483         if(this.hideOnClick){
20484             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
20485         }
20486     },
20487
20488     // private
20489     expandMenu : function(autoActivate){
20490         // do nothing
20491     },
20492
20493     // private
20494     hideMenu : function(){
20495         // do nothing
20496     }
20497 });/*
20498  * Based on:
20499  * Ext JS Library 1.1.1
20500  * Copyright(c) 2006-2007, Ext JS, LLC.
20501  *
20502  * Originally Released Under LGPL - original licence link has changed is not relivant.
20503  *
20504  * Fork - LGPL
20505  * <script type="text/javascript">
20506  */
20507  
20508 /**
20509  * @class Roo.menu.Adapter
20510  * @extends Roo.menu.BaseItem
20511  * 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.
20512  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
20513  * @constructor
20514  * Creates a new Adapter
20515  * @param {Object} config Configuration options
20516  */
20517 Roo.menu.Adapter = function(component, config){
20518     Roo.menu.Adapter.superclass.constructor.call(this, config);
20519     this.component = component;
20520 };
20521 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
20522     // private
20523     canActivate : true,
20524
20525     // private
20526     onRender : function(container, position){
20527         this.component.render(container);
20528         this.el = this.component.getEl();
20529     },
20530
20531     // private
20532     activate : function(){
20533         if(this.disabled){
20534             return false;
20535         }
20536         this.component.focus();
20537         this.fireEvent("activate", this);
20538         return true;
20539     },
20540
20541     // private
20542     deactivate : function(){
20543         this.fireEvent("deactivate", this);
20544     },
20545
20546     // private
20547     disable : function(){
20548         this.component.disable();
20549         Roo.menu.Adapter.superclass.disable.call(this);
20550     },
20551
20552     // private
20553     enable : function(){
20554         this.component.enable();
20555         Roo.menu.Adapter.superclass.enable.call(this);
20556     }
20557 });/*
20558  * Based on:
20559  * Ext JS Library 1.1.1
20560  * Copyright(c) 2006-2007, Ext JS, LLC.
20561  *
20562  * Originally Released Under LGPL - original licence link has changed is not relivant.
20563  *
20564  * Fork - LGPL
20565  * <script type="text/javascript">
20566  */
20567
20568 /**
20569  * @class Roo.menu.TextItem
20570  * @extends Roo.menu.BaseItem
20571  * Adds a static text string to a menu, usually used as either a heading or group separator.
20572  * Note: old style constructor with text is still supported.
20573  * 
20574  * @constructor
20575  * Creates a new TextItem
20576  * @param {Object} cfg Configuration
20577  */
20578 Roo.menu.TextItem = function(cfg){
20579     if (typeof(cfg) == 'string') {
20580         this.text = cfg;
20581     } else {
20582         Roo.apply(this,cfg);
20583     }
20584     
20585     Roo.menu.TextItem.superclass.constructor.call(this);
20586 };
20587
20588 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
20589     /**
20590      * @cfg {Boolean} text Text to show on item.
20591      */
20592     text : '',
20593     
20594     /**
20595      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20596      */
20597     hideOnClick : false,
20598     /**
20599      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
20600      */
20601     itemCls : "x-menu-text",
20602
20603     // private
20604     onRender : function(){
20605         var s = document.createElement("span");
20606         s.className = this.itemCls;
20607         s.innerHTML = this.text;
20608         this.el = s;
20609         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
20610     }
20611 });/*
20612  * Based on:
20613  * Ext JS Library 1.1.1
20614  * Copyright(c) 2006-2007, Ext JS, LLC.
20615  *
20616  * Originally Released Under LGPL - original licence link has changed is not relivant.
20617  *
20618  * Fork - LGPL
20619  * <script type="text/javascript">
20620  */
20621
20622 /**
20623  * @class Roo.menu.Separator
20624  * @extends Roo.menu.BaseItem
20625  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
20626  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
20627  * @constructor
20628  * @param {Object} config Configuration options
20629  */
20630 Roo.menu.Separator = function(config){
20631     Roo.menu.Separator.superclass.constructor.call(this, config);
20632 };
20633
20634 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
20635     /**
20636      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
20637      */
20638     itemCls : "x-menu-sep",
20639     /**
20640      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20641      */
20642     hideOnClick : false,
20643
20644     // private
20645     onRender : function(li){
20646         var s = document.createElement("span");
20647         s.className = this.itemCls;
20648         s.innerHTML = "&#160;";
20649         this.el = s;
20650         li.addClass("x-menu-sep-li");
20651         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
20652     }
20653 });/*
20654  * Based on:
20655  * Ext JS Library 1.1.1
20656  * Copyright(c) 2006-2007, Ext JS, LLC.
20657  *
20658  * Originally Released Under LGPL - original licence link has changed is not relivant.
20659  *
20660  * Fork - LGPL
20661  * <script type="text/javascript">
20662  */
20663 /**
20664  * @class Roo.menu.Item
20665  * @extends Roo.menu.BaseItem
20666  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
20667  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
20668  * activation and click handling.
20669  * @constructor
20670  * Creates a new Item
20671  * @param {Object} config Configuration options
20672  */
20673 Roo.menu.Item = function(config){
20674     Roo.menu.Item.superclass.constructor.call(this, config);
20675     if(this.menu){
20676         this.menu = Roo.menu.MenuMgr.get(this.menu);
20677     }
20678 };
20679 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
20680     
20681     /**
20682      * @cfg {String} text
20683      * The text to show on the menu item.
20684      */
20685     text: '',
20686      /**
20687      * @cfg {String} HTML to render in menu
20688      * The text to show on the menu item (HTML version).
20689      */
20690     html: '',
20691     /**
20692      * @cfg {String} icon
20693      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
20694      */
20695     icon: undefined,
20696     /**
20697      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
20698      */
20699     itemCls : "x-menu-item",
20700     /**
20701      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
20702      */
20703     canActivate : true,
20704     /**
20705      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
20706      */
20707     showDelay: 200,
20708     // doc'd in BaseItem
20709     hideDelay: 200,
20710
20711     // private
20712     ctype: "Roo.menu.Item",
20713     
20714     // private
20715     onRender : function(container, position){
20716         var el = document.createElement("a");
20717         el.hideFocus = true;
20718         el.unselectable = "on";
20719         el.href = this.href || "#";
20720         if(this.hrefTarget){
20721             el.target = this.hrefTarget;
20722         }
20723         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
20724         
20725         var html = this.html.length ? this.html  : String.format('{0}',this.text);
20726         
20727         el.innerHTML = String.format(
20728                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
20729                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
20730         this.el = el;
20731         Roo.menu.Item.superclass.onRender.call(this, container, position);
20732     },
20733
20734     /**
20735      * Sets the text to display in this menu item
20736      * @param {String} text The text to display
20737      * @param {Boolean} isHTML true to indicate text is pure html.
20738      */
20739     setText : function(text, isHTML){
20740         if (isHTML) {
20741             this.html = text;
20742         } else {
20743             this.text = text;
20744             this.html = '';
20745         }
20746         if(this.rendered){
20747             var html = this.html.length ? this.html  : String.format('{0}',this.text);
20748      
20749             this.el.update(String.format(
20750                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
20751                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
20752             this.parentMenu.autoWidth();
20753         }
20754     },
20755
20756     // private
20757     handleClick : function(e){
20758         if(!this.href){ // if no link defined, stop the event automatically
20759             e.stopEvent();
20760         }
20761         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
20762     },
20763
20764     // private
20765     activate : function(autoExpand){
20766         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
20767             this.focus();
20768             if(autoExpand){
20769                 this.expandMenu();
20770             }
20771         }
20772         return true;
20773     },
20774
20775     // private
20776     shouldDeactivate : function(e){
20777         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
20778             if(this.menu && this.menu.isVisible()){
20779                 return !this.menu.getEl().getRegion().contains(e.getPoint());
20780             }
20781             return true;
20782         }
20783         return false;
20784     },
20785
20786     // private
20787     deactivate : function(){
20788         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
20789         this.hideMenu();
20790     },
20791
20792     // private
20793     expandMenu : function(autoActivate){
20794         if(!this.disabled && this.menu){
20795             clearTimeout(this.hideTimer);
20796             delete this.hideTimer;
20797             if(!this.menu.isVisible() && !this.showTimer){
20798                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
20799             }else if (this.menu.isVisible() && autoActivate){
20800                 this.menu.tryActivate(0, 1);
20801             }
20802         }
20803     },
20804
20805     // private
20806     deferExpand : function(autoActivate){
20807         delete this.showTimer;
20808         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
20809         if(autoActivate){
20810             this.menu.tryActivate(0, 1);
20811         }
20812     },
20813
20814     // private
20815     hideMenu : function(){
20816         clearTimeout(this.showTimer);
20817         delete this.showTimer;
20818         if(!this.hideTimer && this.menu && this.menu.isVisible()){
20819             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
20820         }
20821     },
20822
20823     // private
20824     deferHide : function(){
20825         delete this.hideTimer;
20826         this.menu.hide();
20827     }
20828 });/*
20829  * Based on:
20830  * Ext JS Library 1.1.1
20831  * Copyright(c) 2006-2007, Ext JS, LLC.
20832  *
20833  * Originally Released Under LGPL - original licence link has changed is not relivant.
20834  *
20835  * Fork - LGPL
20836  * <script type="text/javascript">
20837  */
20838  
20839 /**
20840  * @class Roo.menu.CheckItem
20841  * @extends Roo.menu.Item
20842  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
20843  * @constructor
20844  * Creates a new CheckItem
20845  * @param {Object} config Configuration options
20846  */
20847 Roo.menu.CheckItem = function(config){
20848     Roo.menu.CheckItem.superclass.constructor.call(this, config);
20849     this.addEvents({
20850         /**
20851          * @event beforecheckchange
20852          * Fires before the checked value is set, providing an opportunity to cancel if needed
20853          * @param {Roo.menu.CheckItem} this
20854          * @param {Boolean} checked The new checked value that will be set
20855          */
20856         "beforecheckchange" : true,
20857         /**
20858          * @event checkchange
20859          * Fires after the checked value has been set
20860          * @param {Roo.menu.CheckItem} this
20861          * @param {Boolean} checked The checked value that was set
20862          */
20863         "checkchange" : true
20864     });
20865     if(this.checkHandler){
20866         this.on('checkchange', this.checkHandler, this.scope);
20867     }
20868 };
20869 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
20870     /**
20871      * @cfg {String} group
20872      * All check items with the same group name will automatically be grouped into a single-select
20873      * radio button group (defaults to '')
20874      */
20875     /**
20876      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
20877      */
20878     itemCls : "x-menu-item x-menu-check-item",
20879     /**
20880      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
20881      */
20882     groupClass : "x-menu-group-item",
20883
20884     /**
20885      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
20886      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
20887      * initialized with checked = true will be rendered as checked.
20888      */
20889     checked: false,
20890
20891     // private
20892     ctype: "Roo.menu.CheckItem",
20893
20894     // private
20895     onRender : function(c){
20896         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
20897         if(this.group){
20898             this.el.addClass(this.groupClass);
20899         }
20900         Roo.menu.MenuMgr.registerCheckable(this);
20901         if(this.checked){
20902             this.checked = false;
20903             this.setChecked(true, true);
20904         }
20905     },
20906
20907     // private
20908     destroy : function(){
20909         if(this.rendered){
20910             Roo.menu.MenuMgr.unregisterCheckable(this);
20911         }
20912         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
20913     },
20914
20915     /**
20916      * Set the checked state of this item
20917      * @param {Boolean} checked The new checked value
20918      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
20919      */
20920     setChecked : function(state, suppressEvent){
20921         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
20922             if(this.container){
20923                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
20924             }
20925             this.checked = state;
20926             if(suppressEvent !== true){
20927                 this.fireEvent("checkchange", this, state);
20928             }
20929         }
20930     },
20931
20932     // private
20933     handleClick : function(e){
20934        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
20935            this.setChecked(!this.checked);
20936        }
20937        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
20938     }
20939 });/*
20940  * Based on:
20941  * Ext JS Library 1.1.1
20942  * Copyright(c) 2006-2007, Ext JS, LLC.
20943  *
20944  * Originally Released Under LGPL - original licence link has changed is not relivant.
20945  *
20946  * Fork - LGPL
20947  * <script type="text/javascript">
20948  */
20949  
20950 /**
20951  * @class Roo.menu.DateItem
20952  * @extends Roo.menu.Adapter
20953  * A menu item that wraps the {@link Roo.DatPicker} component.
20954  * @constructor
20955  * Creates a new DateItem
20956  * @param {Object} config Configuration options
20957  */
20958 Roo.menu.DateItem = function(config){
20959     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
20960     /** The Roo.DatePicker object @type Roo.DatePicker */
20961     this.picker = this.component;
20962     this.addEvents({select: true});
20963     
20964     this.picker.on("render", function(picker){
20965         picker.getEl().swallowEvent("click");
20966         picker.container.addClass("x-menu-date-item");
20967     });
20968
20969     this.picker.on("select", this.onSelect, this);
20970 };
20971
20972 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
20973     // private
20974     onSelect : function(picker, date){
20975         this.fireEvent("select", this, date, picker);
20976         Roo.menu.DateItem.superclass.handleClick.call(this);
20977     }
20978 });/*
20979  * Based on:
20980  * Ext JS Library 1.1.1
20981  * Copyright(c) 2006-2007, Ext JS, LLC.
20982  *
20983  * Originally Released Under LGPL - original licence link has changed is not relivant.
20984  *
20985  * Fork - LGPL
20986  * <script type="text/javascript">
20987  */
20988  
20989 /**
20990  * @class Roo.menu.ColorItem
20991  * @extends Roo.menu.Adapter
20992  * A menu item that wraps the {@link Roo.ColorPalette} component.
20993  * @constructor
20994  * Creates a new ColorItem
20995  * @param {Object} config Configuration options
20996  */
20997 Roo.menu.ColorItem = function(config){
20998     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
20999     /** The Roo.ColorPalette object @type Roo.ColorPalette */
21000     this.palette = this.component;
21001     this.relayEvents(this.palette, ["select"]);
21002     if(this.selectHandler){
21003         this.on('select', this.selectHandler, this.scope);
21004     }
21005 };
21006 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
21007  * Based on:
21008  * Ext JS Library 1.1.1
21009  * Copyright(c) 2006-2007, Ext JS, LLC.
21010  *
21011  * Originally Released Under LGPL - original licence link has changed is not relivant.
21012  *
21013  * Fork - LGPL
21014  * <script type="text/javascript">
21015  */
21016  
21017
21018 /**
21019  * @class Roo.menu.DateMenu
21020  * @extends Roo.menu.Menu
21021  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
21022  * @constructor
21023  * Creates a new DateMenu
21024  * @param {Object} config Configuration options
21025  */
21026 Roo.menu.DateMenu = function(config){
21027     Roo.menu.DateMenu.superclass.constructor.call(this, config);
21028     this.plain = true;
21029     var di = new Roo.menu.DateItem(config);
21030     this.add(di);
21031     /**
21032      * The {@link Roo.DatePicker} instance for this DateMenu
21033      * @type DatePicker
21034      */
21035     this.picker = di.picker;
21036     /**
21037      * @event select
21038      * @param {DatePicker} picker
21039      * @param {Date} date
21040      */
21041     this.relayEvents(di, ["select"]);
21042
21043     this.on('beforeshow', function(){
21044         if(this.picker){
21045             this.picker.hideMonthPicker(true);
21046         }
21047     }, this);
21048 };
21049 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
21050     cls:'x-date-menu'
21051 });/*
21052  * Based on:
21053  * Ext JS Library 1.1.1
21054  * Copyright(c) 2006-2007, Ext JS, LLC.
21055  *
21056  * Originally Released Under LGPL - original licence link has changed is not relivant.
21057  *
21058  * Fork - LGPL
21059  * <script type="text/javascript">
21060  */
21061  
21062
21063 /**
21064  * @class Roo.menu.ColorMenu
21065  * @extends Roo.menu.Menu
21066  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
21067  * @constructor
21068  * Creates a new ColorMenu
21069  * @param {Object} config Configuration options
21070  */
21071 Roo.menu.ColorMenu = function(config){
21072     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
21073     this.plain = true;
21074     var ci = new Roo.menu.ColorItem(config);
21075     this.add(ci);
21076     /**
21077      * The {@link Roo.ColorPalette} instance for this ColorMenu
21078      * @type ColorPalette
21079      */
21080     this.palette = ci.palette;
21081     /**
21082      * @event select
21083      * @param {ColorPalette} palette
21084      * @param {String} color
21085      */
21086     this.relayEvents(ci, ["select"]);
21087 };
21088 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
21089  * Based on:
21090  * Ext JS Library 1.1.1
21091  * Copyright(c) 2006-2007, Ext JS, LLC.
21092  *
21093  * Originally Released Under LGPL - original licence link has changed is not relivant.
21094  *
21095  * Fork - LGPL
21096  * <script type="text/javascript">
21097  */
21098  
21099 /**
21100  * @class Roo.form.Field
21101  * @extends Roo.BoxComponent
21102  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
21103  * @constructor
21104  * Creates a new Field
21105  * @param {Object} config Configuration options
21106  */
21107 Roo.form.Field = function(config){
21108     Roo.form.Field.superclass.constructor.call(this, config);
21109 };
21110
21111 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
21112     /**
21113      * @cfg {String} fieldLabel Label to use when rendering a form.
21114      */
21115        /**
21116      * @cfg {String} qtip Mouse over tip
21117      */
21118      
21119     /**
21120      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
21121      */
21122     invalidClass : "x-form-invalid",
21123     /**
21124      * @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")
21125      */
21126     invalidText : "The value in this field is invalid",
21127     /**
21128      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
21129      */
21130     focusClass : "x-form-focus",
21131     /**
21132      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
21133       automatic validation (defaults to "keyup").
21134      */
21135     validationEvent : "keyup",
21136     /**
21137      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
21138      */
21139     validateOnBlur : true,
21140     /**
21141      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
21142      */
21143     validationDelay : 250,
21144     /**
21145      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21146      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
21147      */
21148     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "off"},
21149     /**
21150      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
21151      */
21152     fieldClass : "x-form-field",
21153     /**
21154      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
21155      *<pre>
21156 Value         Description
21157 -----------   ----------------------------------------------------------------------
21158 qtip          Display a quick tip when the user hovers over the field
21159 title         Display a default browser title attribute popup
21160 under         Add a block div beneath the field containing the error text
21161 side          Add an error icon to the right of the field with a popup on hover
21162 [element id]  Add the error text directly to the innerHTML of the specified element
21163 </pre>
21164      */
21165     msgTarget : 'qtip',
21166     /**
21167      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
21168      */
21169     msgFx : 'normal',
21170
21171     /**
21172      * @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.
21173      */
21174     readOnly : false,
21175
21176     /**
21177      * @cfg {Boolean} disabled True to disable the field (defaults to false).
21178      */
21179     disabled : false,
21180
21181     /**
21182      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
21183      */
21184     inputType : undefined,
21185     
21186     /**
21187      * @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).
21188          */
21189         tabIndex : undefined,
21190         
21191     // private
21192     isFormField : true,
21193
21194     // private
21195     hasFocus : false,
21196     /**
21197      * @property {Roo.Element} fieldEl
21198      * Element Containing the rendered Field (with label etc.)
21199      */
21200     /**
21201      * @cfg {Mixed} value A value to initialize this field with.
21202      */
21203     value : undefined,
21204
21205     /**
21206      * @cfg {String} name The field's HTML name attribute.
21207      */
21208     /**
21209      * @cfg {String} cls A CSS class to apply to the field's underlying element.
21210      */
21211
21212         // private ??
21213         initComponent : function(){
21214         Roo.form.Field.superclass.initComponent.call(this);
21215         this.addEvents({
21216             /**
21217              * @event focus
21218              * Fires when this field receives input focus.
21219              * @param {Roo.form.Field} this
21220              */
21221             focus : true,
21222             /**
21223              * @event blur
21224              * Fires when this field loses input focus.
21225              * @param {Roo.form.Field} this
21226              */
21227             blur : true,
21228             /**
21229              * @event specialkey
21230              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
21231              * {@link Roo.EventObject#getKey} to determine which key was pressed.
21232              * @param {Roo.form.Field} this
21233              * @param {Roo.EventObject} e The event object
21234              */
21235             specialkey : true,
21236             /**
21237              * @event change
21238              * Fires just before the field blurs if the field value has changed.
21239              * @param {Roo.form.Field} this
21240              * @param {Mixed} newValue The new value
21241              * @param {Mixed} oldValue The original value
21242              */
21243             change : true,
21244             /**
21245              * @event invalid
21246              * Fires after the field has been marked as invalid.
21247              * @param {Roo.form.Field} this
21248              * @param {String} msg The validation message
21249              */
21250             invalid : true,
21251             /**
21252              * @event valid
21253              * Fires after the field has been validated with no errors.
21254              * @param {Roo.form.Field} this
21255              */
21256             valid : true,
21257              /**
21258              * @event keyup
21259              * Fires after the key up
21260              * @param {Roo.form.Field} this
21261              * @param {Roo.EventObject}  e The event Object
21262              */
21263             keyup : true
21264         });
21265     },
21266
21267     /**
21268      * Returns the name attribute of the field if available
21269      * @return {String} name The field name
21270      */
21271     getName: function(){
21272          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
21273     },
21274
21275     // private
21276     onRender : function(ct, position){
21277         Roo.form.Field.superclass.onRender.call(this, ct, position);
21278         if(!this.el){
21279             var cfg = this.getAutoCreate();
21280             if(!cfg.name){
21281                 cfg.name = this.name || this.id;
21282             }
21283             if(this.inputType){
21284                 cfg.type = this.inputType;
21285             }
21286             this.el = ct.createChild(cfg, position);
21287         }
21288         var type = this.el.dom.type;
21289         if(type){
21290             if(type == 'password'){
21291                 type = 'text';
21292             }
21293             this.el.addClass('x-form-'+type);
21294         }
21295         if(this.readOnly){
21296             this.el.dom.readOnly = true;
21297         }
21298         if(this.tabIndex !== undefined){
21299             this.el.dom.setAttribute('tabIndex', this.tabIndex);
21300         }
21301
21302         this.el.addClass([this.fieldClass, this.cls]);
21303         this.initValue();
21304     },
21305
21306     /**
21307      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
21308      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
21309      * @return {Roo.form.Field} this
21310      */
21311     applyTo : function(target){
21312         this.allowDomMove = false;
21313         this.el = Roo.get(target);
21314         this.render(this.el.dom.parentNode);
21315         return this;
21316     },
21317
21318     // private
21319     initValue : function(){
21320         if(this.value !== undefined){
21321             this.setValue(this.value);
21322         }else if(this.el.dom.value.length > 0){
21323             this.setValue(this.el.dom.value);
21324         }
21325     },
21326
21327     /**
21328      * Returns true if this field has been changed since it was originally loaded and is not disabled.
21329      */
21330     isDirty : function() {
21331         if(this.disabled) {
21332             return false;
21333         }
21334         return String(this.getValue()) !== String(this.originalValue);
21335     },
21336
21337     // private
21338     afterRender : function(){
21339         Roo.form.Field.superclass.afterRender.call(this);
21340         this.initEvents();
21341     },
21342
21343     // private
21344     fireKey : function(e){
21345         //Roo.log('field ' + e.getKey());
21346         if(e.isNavKeyPress()){
21347             this.fireEvent("specialkey", this, e);
21348         }
21349     },
21350
21351     /**
21352      * Resets the current field value to the originally loaded value and clears any validation messages
21353      */
21354     reset : function(){
21355         this.setValue(this.originalValue);
21356         this.clearInvalid();
21357     },
21358
21359     // private
21360     initEvents : function(){
21361         // safari killled keypress - so keydown is now used..
21362         this.el.on("keydown" , this.fireKey,  this);
21363         this.el.on("focus", this.onFocus,  this);
21364         this.el.on("blur", this.onBlur,  this);
21365         this.el.relayEvent('keyup', this);
21366
21367         // reference to original value for reset
21368         this.originalValue = this.getValue();
21369     },
21370
21371     // private
21372     onFocus : function(){
21373         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
21374             this.el.addClass(this.focusClass);
21375         }
21376         if(!this.hasFocus){
21377             this.hasFocus = true;
21378             this.startValue = this.getValue();
21379             this.fireEvent("focus", this);
21380         }
21381     },
21382
21383     beforeBlur : Roo.emptyFn,
21384
21385     // private
21386     onBlur : function(){
21387         this.beforeBlur();
21388         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
21389             this.el.removeClass(this.focusClass);
21390         }
21391         this.hasFocus = false;
21392         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
21393             this.validate();
21394         }
21395         var v = this.getValue();
21396         if(String(v) !== String(this.startValue)){
21397             this.fireEvent('change', this, v, this.startValue);
21398         }
21399         this.fireEvent("blur", this);
21400     },
21401
21402     /**
21403      * Returns whether or not the field value is currently valid
21404      * @param {Boolean} preventMark True to disable marking the field invalid
21405      * @return {Boolean} True if the value is valid, else false
21406      */
21407     isValid : function(preventMark){
21408         if(this.disabled){
21409             return true;
21410         }
21411         var restore = this.preventMark;
21412         this.preventMark = preventMark === true;
21413         var v = this.validateValue(this.processValue(this.getRawValue()));
21414         this.preventMark = restore;
21415         return v;
21416     },
21417
21418     /**
21419      * Validates the field value
21420      * @return {Boolean} True if the value is valid, else false
21421      */
21422     validate : function(){
21423         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
21424             this.clearInvalid();
21425             return true;
21426         }
21427         return false;
21428     },
21429
21430     processValue : function(value){
21431         return value;
21432     },
21433
21434     // private
21435     // Subclasses should provide the validation implementation by overriding this
21436     validateValue : function(value){
21437         return true;
21438     },
21439
21440     /**
21441      * Mark this field as invalid
21442      * @param {String} msg The validation message
21443      */
21444     markInvalid : function(msg){
21445         if(!this.rendered || this.preventMark){ // not rendered
21446             return;
21447         }
21448         this.el.addClass(this.invalidClass);
21449         msg = msg || this.invalidText;
21450         switch(this.msgTarget){
21451             case 'qtip':
21452                 this.el.dom.qtip = msg;
21453                 this.el.dom.qclass = 'x-form-invalid-tip';
21454                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
21455                     Roo.QuickTips.enable();
21456                 }
21457                 break;
21458             case 'title':
21459                 this.el.dom.title = msg;
21460                 break;
21461             case 'under':
21462                 if(!this.errorEl){
21463                     var elp = this.el.findParent('.x-form-element', 5, true);
21464                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
21465                     this.errorEl.setWidth(elp.getWidth(true)-20);
21466                 }
21467                 this.errorEl.update(msg);
21468                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
21469                 break;
21470             case 'side':
21471                 if(!this.errorIcon){
21472                     var elp = this.el.findParent('.x-form-element', 5, true);
21473                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
21474                 }
21475                 this.alignErrorIcon();
21476                 this.errorIcon.dom.qtip = msg;
21477                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
21478                 this.errorIcon.show();
21479                 this.on('resize', this.alignErrorIcon, this);
21480                 break;
21481             default:
21482                 var t = Roo.getDom(this.msgTarget);
21483                 t.innerHTML = msg;
21484                 t.style.display = this.msgDisplay;
21485                 break;
21486         }
21487         this.fireEvent('invalid', this, msg);
21488     },
21489
21490     // private
21491     alignErrorIcon : function(){
21492         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
21493     },
21494
21495     /**
21496      * Clear any invalid styles/messages for this field
21497      */
21498     clearInvalid : function(){
21499         if(!this.rendered || this.preventMark){ // not rendered
21500             return;
21501         }
21502         this.el.removeClass(this.invalidClass);
21503         switch(this.msgTarget){
21504             case 'qtip':
21505                 this.el.dom.qtip = '';
21506                 break;
21507             case 'title':
21508                 this.el.dom.title = '';
21509                 break;
21510             case 'under':
21511                 if(this.errorEl){
21512                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
21513                 }
21514                 break;
21515             case 'side':
21516                 if(this.errorIcon){
21517                     this.errorIcon.dom.qtip = '';
21518                     this.errorIcon.hide();
21519                     this.un('resize', this.alignErrorIcon, this);
21520                 }
21521                 break;
21522             default:
21523                 var t = Roo.getDom(this.msgTarget);
21524                 t.innerHTML = '';
21525                 t.style.display = 'none';
21526                 break;
21527         }
21528         this.fireEvent('valid', this);
21529     },
21530
21531     /**
21532      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
21533      * @return {Mixed} value The field value
21534      */
21535     getRawValue : function(){
21536         var v = this.el.getValue();
21537         if(v === this.emptyText){
21538             v = '';
21539         }
21540         return v;
21541     },
21542
21543     /**
21544      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
21545      * @return {Mixed} value The field value
21546      */
21547     getValue : function(){
21548         var v = this.el.getValue();
21549         if(v === this.emptyText || v === undefined){
21550             v = '';
21551         }
21552         return v;
21553     },
21554
21555     /**
21556      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
21557      * @param {Mixed} value The value to set
21558      */
21559     setRawValue : function(v){
21560         return this.el.dom.value = (v === null || v === undefined ? '' : v);
21561     },
21562
21563     /**
21564      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
21565      * @param {Mixed} value The value to set
21566      */
21567     setValue : function(v){
21568         this.value = v;
21569         if(this.rendered){
21570             this.el.dom.value = (v === null || v === undefined ? '' : v);
21571              this.validate();
21572         }
21573     },
21574
21575     adjustSize : function(w, h){
21576         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
21577         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
21578         return s;
21579     },
21580
21581     adjustWidth : function(tag, w){
21582         tag = tag.toLowerCase();
21583         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
21584             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
21585                 if(tag == 'input'){
21586                     return w + 2;
21587                 }
21588                 if(tag = 'textarea'){
21589                     return w-2;
21590                 }
21591             }else if(Roo.isOpera){
21592                 if(tag == 'input'){
21593                     return w + 2;
21594                 }
21595                 if(tag = 'textarea'){
21596                     return w-2;
21597                 }
21598             }
21599         }
21600         return w;
21601     }
21602 });
21603
21604
21605 // anything other than normal should be considered experimental
21606 Roo.form.Field.msgFx = {
21607     normal : {
21608         show: function(msgEl, f){
21609             msgEl.setDisplayed('block');
21610         },
21611
21612         hide : function(msgEl, f){
21613             msgEl.setDisplayed(false).update('');
21614         }
21615     },
21616
21617     slide : {
21618         show: function(msgEl, f){
21619             msgEl.slideIn('t', {stopFx:true});
21620         },
21621
21622         hide : function(msgEl, f){
21623             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
21624         }
21625     },
21626
21627     slideRight : {
21628         show: function(msgEl, f){
21629             msgEl.fixDisplay();
21630             msgEl.alignTo(f.el, 'tl-tr');
21631             msgEl.slideIn('l', {stopFx:true});
21632         },
21633
21634         hide : function(msgEl, f){
21635             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
21636         }
21637     }
21638 };/*
21639  * Based on:
21640  * Ext JS Library 1.1.1
21641  * Copyright(c) 2006-2007, Ext JS, LLC.
21642  *
21643  * Originally Released Under LGPL - original licence link has changed is not relivant.
21644  *
21645  * Fork - LGPL
21646  * <script type="text/javascript">
21647  */
21648  
21649
21650 /**
21651  * @class Roo.form.TextField
21652  * @extends Roo.form.Field
21653  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
21654  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
21655  * @constructor
21656  * Creates a new TextField
21657  * @param {Object} config Configuration options
21658  */
21659 Roo.form.TextField = function(config){
21660     Roo.form.TextField.superclass.constructor.call(this, config);
21661     this.addEvents({
21662         /**
21663          * @event autosize
21664          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
21665          * according to the default logic, but this event provides a hook for the developer to apply additional
21666          * logic at runtime to resize the field if needed.
21667              * @param {Roo.form.Field} this This text field
21668              * @param {Number} width The new field width
21669              */
21670         autosize : true
21671     });
21672 };
21673
21674 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
21675     /**
21676      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
21677      */
21678     grow : false,
21679     /**
21680      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
21681      */
21682     growMin : 30,
21683     /**
21684      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
21685      */
21686     growMax : 800,
21687     /**
21688      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
21689      */
21690     vtype : null,
21691     /**
21692      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
21693      */
21694     maskRe : null,
21695     /**
21696      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
21697      */
21698     disableKeyFilter : false,
21699     /**
21700      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
21701      */
21702     allowBlank : true,
21703     /**
21704      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
21705      */
21706     minLength : 0,
21707     /**
21708      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
21709      */
21710     maxLength : Number.MAX_VALUE,
21711     /**
21712      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
21713      */
21714     minLengthText : "The minimum length for this field is {0}",
21715     /**
21716      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
21717      */
21718     maxLengthText : "The maximum length for this field is {0}",
21719     /**
21720      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
21721      */
21722     selectOnFocus : false,
21723     /**
21724      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
21725      */
21726     blankText : "This field is required",
21727     /**
21728      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
21729      * If available, this function will be called only after the basic validators all return true, and will be passed the
21730      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
21731      */
21732     validator : null,
21733     /**
21734      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
21735      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
21736      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
21737      */
21738     regex : null,
21739     /**
21740      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
21741      */
21742     regexText : "",
21743     /**
21744      * @cfg {String} emptyText The default text to display in an empty field (defaults to null).
21745      */
21746     emptyText : null,
21747     /**
21748      * @cfg {String} emptyClass The CSS class to apply to an empty field to style the {@link #emptyText} (defaults to
21749      * 'x-form-empty-field').  This class is automatically added and removed as needed depending on the current field value.
21750      */
21751     emptyClass : 'x-form-empty-field',
21752
21753     // private
21754     initEvents : function(){
21755         Roo.form.TextField.superclass.initEvents.call(this);
21756         if(this.validationEvent == 'keyup'){
21757             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
21758             this.el.on('keyup', this.filterValidation, this);
21759         }
21760         else if(this.validationEvent !== false){
21761             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
21762         }
21763         if(this.selectOnFocus || this.emptyText){
21764             this.on("focus", this.preFocus, this);
21765             if(this.emptyText){
21766                 this.on('blur', this.postBlur, this);
21767                 this.applyEmptyText();
21768             }
21769         }
21770         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
21771             this.el.on("keypress", this.filterKeys, this);
21772         }
21773         if(this.grow){
21774             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
21775             this.el.on("click", this.autoSize,  this);
21776         }
21777     },
21778
21779     processValue : function(value){
21780         if(this.stripCharsRe){
21781             var newValue = value.replace(this.stripCharsRe, '');
21782             if(newValue !== value){
21783                 this.setRawValue(newValue);
21784                 return newValue;
21785             }
21786         }
21787         return value;
21788     },
21789
21790     filterValidation : function(e){
21791         if(!e.isNavKeyPress()){
21792             this.validationTask.delay(this.validationDelay);
21793         }
21794     },
21795
21796     // private
21797     onKeyUp : function(e){
21798         if(!e.isNavKeyPress()){
21799             this.autoSize();
21800         }
21801     },
21802
21803     /**
21804      * Resets the current field value to the originally-loaded value and clears any validation messages.
21805      * Also adds emptyText and emptyClass if the original value was blank.
21806      */
21807     reset : function(){
21808         Roo.form.TextField.superclass.reset.call(this);
21809         this.applyEmptyText();
21810     },
21811
21812     applyEmptyText : function(){
21813         if(this.rendered && this.emptyText && this.getRawValue().length < 1){
21814             this.setRawValue(this.emptyText);
21815             this.el.addClass(this.emptyClass);
21816         }
21817     },
21818
21819     // private
21820     preFocus : function(){
21821         if(this.emptyText){
21822             if(this.el.dom.value == this.emptyText){
21823                 this.setRawValue('');
21824             }
21825             this.el.removeClass(this.emptyClass);
21826         }
21827         if(this.selectOnFocus){
21828             this.el.dom.select();
21829         }
21830     },
21831
21832     // private
21833     postBlur : function(){
21834         this.applyEmptyText();
21835     },
21836
21837     // private
21838     filterKeys : function(e){
21839         var k = e.getKey();
21840         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
21841             return;
21842         }
21843         var c = e.getCharCode(), cc = String.fromCharCode(c);
21844         if(Roo.isIE && (e.isSpecialKey() || !cc)){
21845             return;
21846         }
21847         if(!this.maskRe.test(cc)){
21848             e.stopEvent();
21849         }
21850     },
21851
21852     setValue : function(v){
21853         if(this.emptyText && this.el && v !== undefined && v !== null && v !== ''){
21854             this.el.removeClass(this.emptyClass);
21855         }
21856         Roo.form.TextField.superclass.setValue.apply(this, arguments);
21857         this.applyEmptyText();
21858         this.autoSize();
21859     },
21860
21861     /**
21862      * Validates a value according to the field's validation rules and marks the field as invalid
21863      * if the validation fails
21864      * @param {Mixed} value The value to validate
21865      * @return {Boolean} True if the value is valid, else false
21866      */
21867     validateValue : function(value){
21868         if(value.length < 1 || value === this.emptyText){ // if it's blank
21869              if(this.allowBlank){
21870                 this.clearInvalid();
21871                 return true;
21872              }else{
21873                 this.markInvalid(this.blankText);
21874                 return false;
21875              }
21876         }
21877         if(value.length < this.minLength){
21878             this.markInvalid(String.format(this.minLengthText, this.minLength));
21879             return false;
21880         }
21881         if(value.length > this.maxLength){
21882             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
21883             return false;
21884         }
21885         if(this.vtype){
21886             var vt = Roo.form.VTypes;
21887             if(!vt[this.vtype](value, this)){
21888                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
21889                 return false;
21890             }
21891         }
21892         if(typeof this.validator == "function"){
21893             var msg = this.validator(value);
21894             if(msg !== true){
21895                 this.markInvalid(msg);
21896                 return false;
21897             }
21898         }
21899         if(this.regex && !this.regex.test(value)){
21900             this.markInvalid(this.regexText);
21901             return false;
21902         }
21903         return true;
21904     },
21905
21906     /**
21907      * Selects text in this field
21908      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
21909      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
21910      */
21911     selectText : function(start, end){
21912         var v = this.getRawValue();
21913         if(v.length > 0){
21914             start = start === undefined ? 0 : start;
21915             end = end === undefined ? v.length : end;
21916             var d = this.el.dom;
21917             if(d.setSelectionRange){
21918                 d.setSelectionRange(start, end);
21919             }else if(d.createTextRange){
21920                 var range = d.createTextRange();
21921                 range.moveStart("character", start);
21922                 range.moveEnd("character", v.length-end);
21923                 range.select();
21924             }
21925         }
21926     },
21927
21928     /**
21929      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
21930      * This only takes effect if grow = true, and fires the autosize event.
21931      */
21932     autoSize : function(){
21933         if(!this.grow || !this.rendered){
21934             return;
21935         }
21936         if(!this.metrics){
21937             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
21938         }
21939         var el = this.el;
21940         var v = el.dom.value;
21941         var d = document.createElement('div');
21942         d.appendChild(document.createTextNode(v));
21943         v = d.innerHTML;
21944         d = null;
21945         v += "&#160;";
21946         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
21947         this.el.setWidth(w);
21948         this.fireEvent("autosize", this, w);
21949     }
21950 });/*
21951  * Based on:
21952  * Ext JS Library 1.1.1
21953  * Copyright(c) 2006-2007, Ext JS, LLC.
21954  *
21955  * Originally Released Under LGPL - original licence link has changed is not relivant.
21956  *
21957  * Fork - LGPL
21958  * <script type="text/javascript">
21959  */
21960  
21961 /**
21962  * @class Roo.form.Hidden
21963  * @extends Roo.form.TextField
21964  * Simple Hidden element used on forms 
21965  * 
21966  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
21967  * 
21968  * @constructor
21969  * Creates a new Hidden form element.
21970  * @param {Object} config Configuration options
21971  */
21972
21973
21974
21975 // easy hidden field...
21976 Roo.form.Hidden = function(config){
21977     Roo.form.Hidden.superclass.constructor.call(this, config);
21978 };
21979   
21980 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
21981     fieldLabel:      '',
21982     inputType:      'hidden',
21983     width:          50,
21984     allowBlank:     true,
21985     labelSeparator: '',
21986     hidden:         true,
21987     itemCls :       'x-form-item-display-none'
21988
21989
21990 });
21991
21992
21993 /*
21994  * Based on:
21995  * Ext JS Library 1.1.1
21996  * Copyright(c) 2006-2007, Ext JS, LLC.
21997  *
21998  * Originally Released Under LGPL - original licence link has changed is not relivant.
21999  *
22000  * Fork - LGPL
22001  * <script type="text/javascript">
22002  */
22003  
22004 /**
22005  * @class Roo.form.TriggerField
22006  * @extends Roo.form.TextField
22007  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
22008  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
22009  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
22010  * for which you can provide a custom implementation.  For example:
22011  * <pre><code>
22012 var trigger = new Roo.form.TriggerField();
22013 trigger.onTriggerClick = myTriggerFn;
22014 trigger.applyTo('my-field');
22015 </code></pre>
22016  *
22017  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
22018  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
22019  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
22020  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
22021  * @constructor
22022  * Create a new TriggerField.
22023  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
22024  * to the base TextField)
22025  */
22026 Roo.form.TriggerField = function(config){
22027     this.mimicing = false;
22028     Roo.form.TriggerField.superclass.constructor.call(this, config);
22029 };
22030
22031 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
22032     /**
22033      * @cfg {String} triggerClass A CSS class to apply to the trigger
22034      */
22035     /**
22036      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
22037      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
22038      */
22039     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "off"},
22040     /**
22041      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
22042      */
22043     hideTrigger:false,
22044
22045     /** @cfg {Boolean} grow @hide */
22046     /** @cfg {Number} growMin @hide */
22047     /** @cfg {Number} growMax @hide */
22048
22049     /**
22050      * @hide 
22051      * @method
22052      */
22053     autoSize: Roo.emptyFn,
22054     // private
22055     monitorTab : true,
22056     // private
22057     deferHeight : true,
22058
22059     
22060     actionMode : 'wrap',
22061     // private
22062     onResize : function(w, h){
22063         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
22064         if(typeof w == 'number'){
22065             var x = w - this.trigger.getWidth();
22066             this.el.setWidth(this.adjustWidth('input', x));
22067             this.trigger.setStyle('left', x+'px');
22068         }
22069     },
22070
22071     // private
22072     adjustSize : Roo.BoxComponent.prototype.adjustSize,
22073
22074     // private
22075     getResizeEl : function(){
22076         return this.wrap;
22077     },
22078
22079     // private
22080     getPositionEl : function(){
22081         return this.wrap;
22082     },
22083
22084     // private
22085     alignErrorIcon : function(){
22086         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
22087     },
22088
22089     // private
22090     onRender : function(ct, position){
22091         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
22092         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
22093         this.trigger = this.wrap.createChild(this.triggerConfig ||
22094                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
22095         if(this.hideTrigger){
22096             this.trigger.setDisplayed(false);
22097         }
22098         this.initTrigger();
22099         if(!this.width){
22100             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
22101         }
22102     },
22103
22104     // private
22105     initTrigger : function(){
22106         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
22107         this.trigger.addClassOnOver('x-form-trigger-over');
22108         this.trigger.addClassOnClick('x-form-trigger-click');
22109     },
22110
22111     // private
22112     onDestroy : function(){
22113         if(this.trigger){
22114             this.trigger.removeAllListeners();
22115             this.trigger.remove();
22116         }
22117         if(this.wrap){
22118             this.wrap.remove();
22119         }
22120         Roo.form.TriggerField.superclass.onDestroy.call(this);
22121     },
22122
22123     // private
22124     onFocus : function(){
22125         Roo.form.TriggerField.superclass.onFocus.call(this);
22126         if(!this.mimicing){
22127             this.wrap.addClass('x-trigger-wrap-focus');
22128             this.mimicing = true;
22129             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
22130             if(this.monitorTab){
22131                 this.el.on("keydown", this.checkTab, this);
22132             }
22133         }
22134     },
22135
22136     // private
22137     checkTab : function(e){
22138         if(e.getKey() == e.TAB){
22139             this.triggerBlur();
22140         }
22141     },
22142
22143     // private
22144     onBlur : function(){
22145         // do nothing
22146     },
22147
22148     // private
22149     mimicBlur : function(e, t){
22150         if(!this.wrap.contains(t) && this.validateBlur()){
22151             this.triggerBlur();
22152         }
22153     },
22154
22155     // private
22156     triggerBlur : function(){
22157         this.mimicing = false;
22158         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
22159         if(this.monitorTab){
22160             this.el.un("keydown", this.checkTab, this);
22161         }
22162         this.wrap.removeClass('x-trigger-wrap-focus');
22163         Roo.form.TriggerField.superclass.onBlur.call(this);
22164     },
22165
22166     // private
22167     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
22168     validateBlur : function(e, t){
22169         return true;
22170     },
22171
22172     // private
22173     onDisable : function(){
22174         Roo.form.TriggerField.superclass.onDisable.call(this);
22175         if(this.wrap){
22176             this.wrap.addClass('x-item-disabled');
22177         }
22178     },
22179
22180     // private
22181     onEnable : function(){
22182         Roo.form.TriggerField.superclass.onEnable.call(this);
22183         if(this.wrap){
22184             this.wrap.removeClass('x-item-disabled');
22185         }
22186     },
22187
22188     // private
22189     onShow : function(){
22190         var ae = this.getActionEl();
22191         
22192         if(ae){
22193             ae.dom.style.display = '';
22194             ae.dom.style.visibility = 'visible';
22195         }
22196     },
22197
22198     // private
22199     
22200     onHide : function(){
22201         var ae = this.getActionEl();
22202         ae.dom.style.display = 'none';
22203     },
22204
22205     /**
22206      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
22207      * by an implementing function.
22208      * @method
22209      * @param {EventObject} e
22210      */
22211     onTriggerClick : Roo.emptyFn
22212 });
22213
22214 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
22215 // to be extended by an implementing class.  For an example of implementing this class, see the custom
22216 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
22217 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
22218     initComponent : function(){
22219         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
22220
22221         this.triggerConfig = {
22222             tag:'span', cls:'x-form-twin-triggers', cn:[
22223             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
22224             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
22225         ]};
22226     },
22227
22228     getTrigger : function(index){
22229         return this.triggers[index];
22230     },
22231
22232     initTrigger : function(){
22233         var ts = this.trigger.select('.x-form-trigger', true);
22234         this.wrap.setStyle('overflow', 'hidden');
22235         var triggerField = this;
22236         ts.each(function(t, all, index){
22237             t.hide = function(){
22238                 var w = triggerField.wrap.getWidth();
22239                 this.dom.style.display = 'none';
22240                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
22241             };
22242             t.show = function(){
22243                 var w = triggerField.wrap.getWidth();
22244                 this.dom.style.display = '';
22245                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
22246             };
22247             var triggerIndex = 'Trigger'+(index+1);
22248
22249             if(this['hide'+triggerIndex]){
22250                 t.dom.style.display = 'none';
22251             }
22252             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
22253             t.addClassOnOver('x-form-trigger-over');
22254             t.addClassOnClick('x-form-trigger-click');
22255         }, this);
22256         this.triggers = ts.elements;
22257     },
22258
22259     onTrigger1Click : Roo.emptyFn,
22260     onTrigger2Click : Roo.emptyFn
22261 });/*
22262  * Based on:
22263  * Ext JS Library 1.1.1
22264  * Copyright(c) 2006-2007, Ext JS, LLC.
22265  *
22266  * Originally Released Under LGPL - original licence link has changed is not relivant.
22267  *
22268  * Fork - LGPL
22269  * <script type="text/javascript">
22270  */
22271  
22272 /**
22273  * @class Roo.form.TextArea
22274  * @extends Roo.form.TextField
22275  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
22276  * support for auto-sizing.
22277  * @constructor
22278  * Creates a new TextArea
22279  * @param {Object} config Configuration options
22280  */
22281 Roo.form.TextArea = function(config){
22282     Roo.form.TextArea.superclass.constructor.call(this, config);
22283     // these are provided exchanges for backwards compat
22284     // minHeight/maxHeight were replaced by growMin/growMax to be
22285     // compatible with TextField growing config values
22286     if(this.minHeight !== undefined){
22287         this.growMin = this.minHeight;
22288     }
22289     if(this.maxHeight !== undefined){
22290         this.growMax = this.maxHeight;
22291     }
22292 };
22293
22294 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
22295     /**
22296      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
22297      */
22298     growMin : 60,
22299     /**
22300      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
22301      */
22302     growMax: 1000,
22303     /**
22304      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
22305      * in the field (equivalent to setting overflow: hidden, defaults to false)
22306      */
22307     preventScrollbars: false,
22308     /**
22309      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
22310      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
22311      */
22312
22313     // private
22314     onRender : function(ct, position){
22315         if(!this.el){
22316             this.defaultAutoCreate = {
22317                 tag: "textarea",
22318                 style:"width:300px;height:60px;",
22319                 autocomplete: "off"
22320             };
22321         }
22322         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
22323         if(this.grow){
22324             this.textSizeEl = Roo.DomHelper.append(document.body, {
22325                 tag: "pre", cls: "x-form-grow-sizer"
22326             });
22327             if(this.preventScrollbars){
22328                 this.el.setStyle("overflow", "hidden");
22329             }
22330             this.el.setHeight(this.growMin);
22331         }
22332     },
22333
22334     onDestroy : function(){
22335         if(this.textSizeEl){
22336             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
22337         }
22338         Roo.form.TextArea.superclass.onDestroy.call(this);
22339     },
22340
22341     // private
22342     onKeyUp : function(e){
22343         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
22344             this.autoSize();
22345         }
22346     },
22347
22348     /**
22349      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
22350      * This only takes effect if grow = true, and fires the autosize event if the height changes.
22351      */
22352     autoSize : function(){
22353         if(!this.grow || !this.textSizeEl){
22354             return;
22355         }
22356         var el = this.el;
22357         var v = el.dom.value;
22358         var ts = this.textSizeEl;
22359
22360         ts.innerHTML = '';
22361         ts.appendChild(document.createTextNode(v));
22362         v = ts.innerHTML;
22363
22364         Roo.fly(ts).setWidth(this.el.getWidth());
22365         if(v.length < 1){
22366             v = "&#160;&#160;";
22367         }else{
22368             if(Roo.isIE){
22369                 v = v.replace(/\n/g, '<p>&#160;</p>');
22370             }
22371             v += "&#160;\n&#160;";
22372         }
22373         ts.innerHTML = v;
22374         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
22375         if(h != this.lastHeight){
22376             this.lastHeight = h;
22377             this.el.setHeight(h);
22378             this.fireEvent("autosize", this, h);
22379         }
22380     }
22381 });/*
22382  * Based on:
22383  * Ext JS Library 1.1.1
22384  * Copyright(c) 2006-2007, Ext JS, LLC.
22385  *
22386  * Originally Released Under LGPL - original licence link has changed is not relivant.
22387  *
22388  * Fork - LGPL
22389  * <script type="text/javascript">
22390  */
22391  
22392
22393 /**
22394  * @class Roo.form.NumberField
22395  * @extends Roo.form.TextField
22396  * Numeric text field that provides automatic keystroke filtering and numeric validation.
22397  * @constructor
22398  * Creates a new NumberField
22399  * @param {Object} config Configuration options
22400  */
22401 Roo.form.NumberField = function(config){
22402     Roo.form.NumberField.superclass.constructor.call(this, config);
22403 };
22404
22405 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
22406     /**
22407      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
22408      */
22409     fieldClass: "x-form-field x-form-num-field",
22410     /**
22411      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
22412      */
22413     allowDecimals : true,
22414     /**
22415      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
22416      */
22417     decimalSeparator : ".",
22418     /**
22419      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
22420      */
22421     decimalPrecision : 2,
22422     /**
22423      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
22424      */
22425     allowNegative : true,
22426     /**
22427      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
22428      */
22429     minValue : Number.NEGATIVE_INFINITY,
22430     /**
22431      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
22432      */
22433     maxValue : Number.MAX_VALUE,
22434     /**
22435      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
22436      */
22437     minText : "The minimum value for this field is {0}",
22438     /**
22439      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
22440      */
22441     maxText : "The maximum value for this field is {0}",
22442     /**
22443      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
22444      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
22445      */
22446     nanText : "{0} is not a valid number",
22447
22448     // private
22449     initEvents : function(){
22450         Roo.form.NumberField.superclass.initEvents.call(this);
22451         var allowed = "0123456789";
22452         if(this.allowDecimals){
22453             allowed += this.decimalSeparator;
22454         }
22455         if(this.allowNegative){
22456             allowed += "-";
22457         }
22458         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
22459         var keyPress = function(e){
22460             var k = e.getKey();
22461             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
22462                 return;
22463             }
22464             var c = e.getCharCode();
22465             if(allowed.indexOf(String.fromCharCode(c)) === -1){
22466                 e.stopEvent();
22467             }
22468         };
22469         this.el.on("keypress", keyPress, this);
22470     },
22471
22472     // private
22473     validateValue : function(value){
22474         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
22475             return false;
22476         }
22477         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22478              return true;
22479         }
22480         var num = this.parseValue(value);
22481         if(isNaN(num)){
22482             this.markInvalid(String.format(this.nanText, value));
22483             return false;
22484         }
22485         if(num < this.minValue){
22486             this.markInvalid(String.format(this.minText, this.minValue));
22487             return false;
22488         }
22489         if(num > this.maxValue){
22490             this.markInvalid(String.format(this.maxText, this.maxValue));
22491             return false;
22492         }
22493         return true;
22494     },
22495
22496     getValue : function(){
22497         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
22498     },
22499
22500     // private
22501     parseValue : function(value){
22502         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
22503         return isNaN(value) ? '' : value;
22504     },
22505
22506     // private
22507     fixPrecision : function(value){
22508         var nan = isNaN(value);
22509         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
22510             return nan ? '' : value;
22511         }
22512         return parseFloat(value).toFixed(this.decimalPrecision);
22513     },
22514
22515     setValue : function(v){
22516         v = this.fixPrecision(v);
22517         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
22518     },
22519
22520     // private
22521     decimalPrecisionFcn : function(v){
22522         return Math.floor(v);
22523     },
22524
22525     beforeBlur : function(){
22526         var v = this.parseValue(this.getRawValue());
22527         if(v){
22528             this.setValue(v);
22529         }
22530     }
22531 });/*
22532  * Based on:
22533  * Ext JS Library 1.1.1
22534  * Copyright(c) 2006-2007, Ext JS, LLC.
22535  *
22536  * Originally Released Under LGPL - original licence link has changed is not relivant.
22537  *
22538  * Fork - LGPL
22539  * <script type="text/javascript">
22540  */
22541  
22542 /**
22543  * @class Roo.form.DateField
22544  * @extends Roo.form.TriggerField
22545  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
22546 * @constructor
22547 * Create a new DateField
22548 * @param {Object} config
22549  */
22550 Roo.form.DateField = function(config){
22551     Roo.form.DateField.superclass.constructor.call(this, config);
22552     
22553       this.addEvents({
22554          
22555         /**
22556          * @event select
22557          * Fires when a date is selected
22558              * @param {Roo.form.DateField} combo This combo box
22559              * @param {Date} date The date selected
22560              */
22561         'select' : true
22562          
22563     });
22564     
22565     
22566     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
22567     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22568     this.ddMatch = null;
22569     if(this.disabledDates){
22570         var dd = this.disabledDates;
22571         var re = "(?:";
22572         for(var i = 0; i < dd.length; i++){
22573             re += dd[i];
22574             if(i != dd.length-1) re += "|";
22575         }
22576         this.ddMatch = new RegExp(re + ")");
22577     }
22578 };
22579
22580 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
22581     /**
22582      * @cfg {String} format
22583      * The default date format string which can be overriden for localization support.  The format must be
22584      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22585      */
22586     format : "m/d/y",
22587     /**
22588      * @cfg {String} altFormats
22589      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22590      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22591      */
22592     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
22593     /**
22594      * @cfg {Array} disabledDays
22595      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22596      */
22597     disabledDays : null,
22598     /**
22599      * @cfg {String} disabledDaysText
22600      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22601      */
22602     disabledDaysText : "Disabled",
22603     /**
22604      * @cfg {Array} disabledDates
22605      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22606      * expression so they are very powerful. Some examples:
22607      * <ul>
22608      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22609      * <li>["03/08", "09/16"] would disable those days for every year</li>
22610      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22611      * <li>["03/../2006"] would disable every day in March 2006</li>
22612      * <li>["^03"] would disable every day in every March</li>
22613      * </ul>
22614      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22615      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22616      */
22617     disabledDates : null,
22618     /**
22619      * @cfg {String} disabledDatesText
22620      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22621      */
22622     disabledDatesText : "Disabled",
22623     /**
22624      * @cfg {Date/String} minValue
22625      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22626      * valid format (defaults to null).
22627      */
22628     minValue : null,
22629     /**
22630      * @cfg {Date/String} maxValue
22631      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22632      * valid format (defaults to null).
22633      */
22634     maxValue : null,
22635     /**
22636      * @cfg {String} minText
22637      * The error text to display when the date in the cell is before minValue (defaults to
22638      * 'The date in this field must be after {minValue}').
22639      */
22640     minText : "The date in this field must be equal to or after {0}",
22641     /**
22642      * @cfg {String} maxText
22643      * The error text to display when the date in the cell is after maxValue (defaults to
22644      * 'The date in this field must be before {maxValue}').
22645      */
22646     maxText : "The date in this field must be equal to or before {0}",
22647     /**
22648      * @cfg {String} invalidText
22649      * The error text to display when the date in the field is invalid (defaults to
22650      * '{value} is not a valid date - it must be in the format {format}').
22651      */
22652     invalidText : "{0} is not a valid date - it must be in the format {1}",
22653     /**
22654      * @cfg {String} triggerClass
22655      * An additional CSS class used to style the trigger button.  The trigger will always get the
22656      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22657      * which displays a calendar icon).
22658      */
22659     triggerClass : 'x-form-date-trigger',
22660     
22661
22662     /**
22663      * @cfg {bool} useIso
22664      * if enabled, then the date field will use a hidden field to store the 
22665      * real value as iso formated date. default (false)
22666      */ 
22667     useIso : false,
22668     /**
22669      * @cfg {String/Object} autoCreate
22670      * A DomHelper element spec, or true for a default element spec (defaults to
22671      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22672      */ 
22673     // private
22674     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22675     
22676     // private
22677     hiddenField: false,
22678     
22679     onRender : function(ct, position)
22680     {
22681         Roo.form.DateField.superclass.onRender.call(this, ct, position);
22682         if (this.useIso) {
22683             this.el.dom.removeAttribute('name'); 
22684             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22685                     'before', true);
22686             this.hiddenField.value = this.formatDate(this.value, 'Y-m-d');
22687             // prevent input submission
22688             this.hiddenName = this.name;
22689         }
22690             
22691             
22692     },
22693     
22694     // private
22695     validateValue : function(value)
22696     {
22697         value = this.formatDate(value);
22698         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
22699             return false;
22700         }
22701         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22702              return true;
22703         }
22704         var svalue = value;
22705         value = this.parseDate(value);
22706         if(!value){
22707             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22708             return false;
22709         }
22710         var time = value.getTime();
22711         if(this.minValue && time < this.minValue.getTime()){
22712             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22713             return false;
22714         }
22715         if(this.maxValue && time > this.maxValue.getTime()){
22716             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22717             return false;
22718         }
22719         if(this.disabledDays){
22720             var day = value.getDay();
22721             for(var i = 0; i < this.disabledDays.length; i++) {
22722                 if(day === this.disabledDays[i]){
22723                     this.markInvalid(this.disabledDaysText);
22724                     return false;
22725                 }
22726             }
22727         }
22728         var fvalue = this.formatDate(value);
22729         if(this.ddMatch && this.ddMatch.test(fvalue)){
22730             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22731             return false;
22732         }
22733         return true;
22734     },
22735
22736     // private
22737     // Provides logic to override the default TriggerField.validateBlur which just returns true
22738     validateBlur : function(){
22739         return !this.menu || !this.menu.isVisible();
22740     },
22741
22742     /**
22743      * Returns the current date value of the date field.
22744      * @return {Date} The date value
22745      */
22746     getValue : function(){
22747         
22748         return  this.hiddenField ? this.hiddenField.value : this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
22749     },
22750
22751     /**
22752      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22753      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
22754      * (the default format used is "m/d/y").
22755      * <br />Usage:
22756      * <pre><code>
22757 //All of these calls set the same date value (May 4, 2006)
22758
22759 //Pass a date object:
22760 var dt = new Date('5/4/06');
22761 dateField.setValue(dt);
22762
22763 //Pass a date string (default format):
22764 dateField.setValue('5/4/06');
22765
22766 //Pass a date string (custom format):
22767 dateField.format = 'Y-m-d';
22768 dateField.setValue('2006-5-4');
22769 </code></pre>
22770      * @param {String/Date} date The date or valid date string
22771      */
22772     setValue : function(date){
22773         if (this.hiddenField) {
22774             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22775         }
22776         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22777     },
22778
22779     // private
22780     parseDate : function(value){
22781         if(!value || value instanceof Date){
22782             return value;
22783         }
22784         var v = Date.parseDate(value, this.format);
22785         if(!v && this.altFormats){
22786             if(!this.altFormatsArray){
22787                 this.altFormatsArray = this.altFormats.split("|");
22788             }
22789             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22790                 v = Date.parseDate(value, this.altFormatsArray[i]);
22791             }
22792         }
22793         return v;
22794     },
22795
22796     // private
22797     formatDate : function(date, fmt){
22798         return (!date || !(date instanceof Date)) ?
22799                date : date.dateFormat(fmt || this.format);
22800     },
22801
22802     // private
22803     menuListeners : {
22804         select: function(m, d){
22805             this.setValue(d);
22806             this.fireEvent('select', this, d);
22807         },
22808         show : function(){ // retain focus styling
22809             this.onFocus();
22810         },
22811         hide : function(){
22812             this.focus.defer(10, this);
22813             var ml = this.menuListeners;
22814             this.menu.un("select", ml.select,  this);
22815             this.menu.un("show", ml.show,  this);
22816             this.menu.un("hide", ml.hide,  this);
22817         }
22818     },
22819
22820     // private
22821     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22822     onTriggerClick : function(){
22823         if(this.disabled){
22824             return;
22825         }
22826         if(this.menu == null){
22827             this.menu = new Roo.menu.DateMenu();
22828         }
22829         Roo.apply(this.menu.picker,  {
22830             showClear: this.allowBlank,
22831             minDate : this.minValue,
22832             maxDate : this.maxValue,
22833             disabledDatesRE : this.ddMatch,
22834             disabledDatesText : this.disabledDatesText,
22835             disabledDays : this.disabledDays,
22836             disabledDaysText : this.disabledDaysText,
22837             format : this.format,
22838             minText : String.format(this.minText, this.formatDate(this.minValue)),
22839             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22840         });
22841         this.menu.on(Roo.apply({}, this.menuListeners, {
22842             scope:this
22843         }));
22844         this.menu.picker.setValue(this.getValue() || new Date());
22845         this.menu.show(this.el, "tl-bl?");
22846     },
22847
22848     beforeBlur : function(){
22849         var v = this.parseDate(this.getRawValue());
22850         if(v){
22851             this.setValue(v);
22852         }
22853     }
22854
22855     /** @cfg {Boolean} grow @hide */
22856     /** @cfg {Number} growMin @hide */
22857     /** @cfg {Number} growMax @hide */
22858     /**
22859      * @hide
22860      * @method autoSize
22861      */
22862 });/*
22863  * Based on:
22864  * Ext JS Library 1.1.1
22865  * Copyright(c) 2006-2007, Ext JS, LLC.
22866  *
22867  * Originally Released Under LGPL - original licence link has changed is not relivant.
22868  *
22869  * Fork - LGPL
22870  * <script type="text/javascript">
22871  */
22872  
22873
22874 /**
22875  * @class Roo.form.ComboBox
22876  * @extends Roo.form.TriggerField
22877  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
22878  * @constructor
22879  * Create a new ComboBox.
22880  * @param {Object} config Configuration options
22881  */
22882 Roo.form.ComboBox = function(config){
22883     Roo.form.ComboBox.superclass.constructor.call(this, config);
22884     this.addEvents({
22885         /**
22886          * @event expand
22887          * Fires when the dropdown list is expanded
22888              * @param {Roo.form.ComboBox} combo This combo box
22889              */
22890         'expand' : true,
22891         /**
22892          * @event collapse
22893          * Fires when the dropdown list is collapsed
22894              * @param {Roo.form.ComboBox} combo This combo box
22895              */
22896         'collapse' : true,
22897         /**
22898          * @event beforeselect
22899          * Fires before a list item is selected. Return false to cancel the selection.
22900              * @param {Roo.form.ComboBox} combo This combo box
22901              * @param {Roo.data.Record} record The data record returned from the underlying store
22902              * @param {Number} index The index of the selected item in the dropdown list
22903              */
22904         'beforeselect' : true,
22905         /**
22906          * @event select
22907          * Fires when a list item is selected
22908              * @param {Roo.form.ComboBox} combo This combo box
22909              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
22910              * @param {Number} index The index of the selected item in the dropdown list
22911              */
22912         'select' : true,
22913         /**
22914          * @event beforequery
22915          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
22916          * The event object passed has these properties:
22917              * @param {Roo.form.ComboBox} combo This combo box
22918              * @param {String} query The query
22919              * @param {Boolean} forceAll true to force "all" query
22920              * @param {Boolean} cancel true to cancel the query
22921              * @param {Object} e The query event object
22922              */
22923         'beforequery': true,
22924          /**
22925          * @event add
22926          * Fires when the 'add' icon is pressed (add a listener to enable add button)
22927              * @param {Roo.form.ComboBox} combo This combo box
22928              */
22929         'add' : true,
22930         /**
22931          * @event edit
22932          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
22933              * @param {Roo.form.ComboBox} combo This combo box
22934              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
22935              */
22936         'edit' : true
22937         
22938         
22939     });
22940     if(this.transform){
22941         this.allowDomMove = false;
22942         var s = Roo.getDom(this.transform);
22943         if(!this.hiddenName){
22944             this.hiddenName = s.name;
22945         }
22946         if(!this.store){
22947             this.mode = 'local';
22948             var d = [], opts = s.options;
22949             for(var i = 0, len = opts.length;i < len; i++){
22950                 var o = opts[i];
22951                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
22952                 if(o.selected) {
22953                     this.value = value;
22954                 }
22955                 d.push([value, o.text]);
22956             }
22957             this.store = new Roo.data.SimpleStore({
22958                 'id': 0,
22959                 fields: ['value', 'text'],
22960                 data : d
22961             });
22962             this.valueField = 'value';
22963             this.displayField = 'text';
22964         }
22965         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
22966         if(!this.lazyRender){
22967             this.target = true;
22968             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
22969             s.parentNode.removeChild(s); // remove it
22970             this.render(this.el.parentNode);
22971         }else{
22972             s.parentNode.removeChild(s); // remove it
22973         }
22974
22975     }
22976     if (this.store) {
22977         this.store = Roo.factory(this.store, Roo.data);
22978     }
22979     
22980     this.selectedIndex = -1;
22981     if(this.mode == 'local'){
22982         if(config.queryDelay === undefined){
22983             this.queryDelay = 10;
22984         }
22985         if(config.minChars === undefined){
22986             this.minChars = 0;
22987         }
22988     }
22989 };
22990
22991 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
22992     /**
22993      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
22994      */
22995     /**
22996      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
22997      * rendering into an Roo.Editor, defaults to false)
22998      */
22999     /**
23000      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
23001      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
23002      */
23003     /**
23004      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
23005      */
23006     /**
23007      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
23008      * the dropdown list (defaults to undefined, with no header element)
23009      */
23010
23011      /**
23012      * @cfg {String/Roo.Template} tpl The template to use to render the output
23013      */
23014      
23015     // private
23016     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
23017     /**
23018      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
23019      */
23020     listWidth: undefined,
23021     /**
23022      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
23023      * mode = 'remote' or 'text' if mode = 'local')
23024      */
23025     displayField: undefined,
23026     /**
23027      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
23028      * mode = 'remote' or 'value' if mode = 'local'). 
23029      * Note: use of a valueField requires the user make a selection
23030      * in order for a value to be mapped.
23031      */
23032     valueField: undefined,
23033     
23034     
23035     /**
23036      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
23037      * field's data value (defaults to the underlying DOM element's name)
23038      */
23039     hiddenName: undefined,
23040     /**
23041      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
23042      */
23043     listClass: '',
23044     /**
23045      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
23046      */
23047     selectedClass: 'x-combo-selected',
23048     /**
23049      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
23050      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
23051      * which displays a downward arrow icon).
23052      */
23053     triggerClass : 'x-form-arrow-trigger',
23054     /**
23055      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
23056      */
23057     shadow:'sides',
23058     /**
23059      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
23060      * anchor positions (defaults to 'tl-bl')
23061      */
23062     listAlign: 'tl-bl?',
23063     /**
23064      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
23065      */
23066     maxHeight: 300,
23067     /**
23068      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
23069      * query specified by the allQuery config option (defaults to 'query')
23070      */
23071     triggerAction: 'query',
23072     /**
23073      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
23074      * (defaults to 4, does not apply if editable = false)
23075      */
23076     minChars : 4,
23077     /**
23078      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
23079      * delay (typeAheadDelay) if it matches a known value (defaults to false)
23080      */
23081     typeAhead: false,
23082     /**
23083      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
23084      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
23085      */
23086     queryDelay: 500,
23087     /**
23088      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
23089      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
23090      */
23091     pageSize: 0,
23092     /**
23093      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
23094      * when editable = true (defaults to false)
23095      */
23096     selectOnFocus:false,
23097     /**
23098      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
23099      */
23100     queryParam: 'query',
23101     /**
23102      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
23103      * when mode = 'remote' (defaults to 'Loading...')
23104      */
23105     loadingText: 'Loading...',
23106     /**
23107      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
23108      */
23109     resizable: false,
23110     /**
23111      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
23112      */
23113     handleHeight : 8,
23114     /**
23115      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
23116      * traditional select (defaults to true)
23117      */
23118     editable: true,
23119     /**
23120      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
23121      */
23122     allQuery: '',
23123     /**
23124      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
23125      */
23126     mode: 'remote',
23127     /**
23128      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
23129      * listWidth has a higher value)
23130      */
23131     minListWidth : 70,
23132     /**
23133      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
23134      * allow the user to set arbitrary text into the field (defaults to false)
23135      */
23136     forceSelection:false,
23137     /**
23138      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
23139      * if typeAhead = true (defaults to 250)
23140      */
23141     typeAheadDelay : 250,
23142     /**
23143      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
23144      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
23145      */
23146     valueNotFoundText : undefined,
23147     /**
23148      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
23149      */
23150     blockFocus : false,
23151     
23152     /**
23153      * @cfg {Boolean} disableClear Disable showing of clear button.
23154      */
23155     disableClear : false,
23156     /**
23157      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
23158      */
23159     alwaysQuery : false,
23160     
23161     //private
23162     addicon : false,
23163     editicon: false,
23164     
23165     // element that contains real text value.. (when hidden is used..)
23166      
23167     // private
23168     onRender : function(ct, position){
23169         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
23170         if(this.hiddenName){
23171             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
23172                     'before', true);
23173             this.hiddenField.value =
23174                 this.hiddenValue !== undefined ? this.hiddenValue :
23175                 this.value !== undefined ? this.value : '';
23176
23177             // prevent input submission
23178             this.el.dom.removeAttribute('name');
23179              
23180              
23181         }
23182         if(Roo.isGecko){
23183             this.el.dom.setAttribute('autocomplete', 'off');
23184         }
23185
23186         var cls = 'x-combo-list';
23187
23188         this.list = new Roo.Layer({
23189             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
23190         });
23191
23192         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
23193         this.list.setWidth(lw);
23194         this.list.swallowEvent('mousewheel');
23195         this.assetHeight = 0;
23196
23197         if(this.title){
23198             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
23199             this.assetHeight += this.header.getHeight();
23200         }
23201
23202         this.innerList = this.list.createChild({cls:cls+'-inner'});
23203         this.innerList.on('mouseover', this.onViewOver, this);
23204         this.innerList.on('mousemove', this.onViewMove, this);
23205         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23206         
23207         if(this.allowBlank && !this.pageSize && !this.disableClear){
23208             this.footer = this.list.createChild({cls:cls+'-ft'});
23209             this.pageTb = new Roo.Toolbar(this.footer);
23210            
23211         }
23212         if(this.pageSize){
23213             this.footer = this.list.createChild({cls:cls+'-ft'});
23214             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
23215                     {pageSize: this.pageSize});
23216             
23217         }
23218         
23219         if (this.pageTb && this.allowBlank && !this.disableClear) {
23220             var _this = this;
23221             this.pageTb.add(new Roo.Toolbar.Fill(), {
23222                 cls: 'x-btn-icon x-btn-clear',
23223                 text: '&#160;',
23224                 handler: function()
23225                 {
23226                     _this.collapse();
23227                     _this.clearValue();
23228                     _this.onSelect(false, -1);
23229                 }
23230             });
23231         }
23232         if (this.footer) {
23233             this.assetHeight += this.footer.getHeight();
23234         }
23235         
23236
23237         if(!this.tpl){
23238             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
23239         }
23240
23241         this.view = new Roo.View(this.innerList, this.tpl, {
23242             singleSelect:true, store: this.store, selectedClass: this.selectedClass
23243         });
23244
23245         this.view.on('click', this.onViewClick, this);
23246
23247         this.store.on('beforeload', this.onBeforeLoad, this);
23248         this.store.on('load', this.onLoad, this);
23249         this.store.on('loadexception', this.onLoadException, this);
23250
23251         if(this.resizable){
23252             this.resizer = new Roo.Resizable(this.list,  {
23253                pinned:true, handles:'se'
23254             });
23255             this.resizer.on('resize', function(r, w, h){
23256                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
23257                 this.listWidth = w;
23258                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
23259                 this.restrictHeight();
23260             }, this);
23261             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
23262         }
23263         if(!this.editable){
23264             this.editable = true;
23265             this.setEditable(false);
23266         }  
23267         
23268         
23269         if (typeof(this.events.add.listeners) != 'undefined') {
23270             
23271             this.addicon = this.wrap.createChild(
23272                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
23273        
23274             this.addicon.on('click', function(e) {
23275                 this.fireEvent('add', this);
23276             }, this);
23277         }
23278         if (typeof(this.events.edit.listeners) != 'undefined') {
23279             
23280             this.editicon = this.wrap.createChild(
23281                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
23282             if (this.addicon) {
23283                 this.editicon.setStyle('margin-left', '40px');
23284             }
23285             this.editicon.on('click', function(e) {
23286                 
23287                 // we fire even  if inothing is selected..
23288                 this.fireEvent('edit', this, this.lastData );
23289                 
23290             }, this);
23291         }
23292         
23293         
23294         
23295     },
23296
23297     // private
23298     initEvents : function(){
23299         Roo.form.ComboBox.superclass.initEvents.call(this);
23300
23301         this.keyNav = new Roo.KeyNav(this.el, {
23302             "up" : function(e){
23303                 this.inKeyMode = true;
23304                 this.selectPrev();
23305             },
23306
23307             "down" : function(e){
23308                 if(!this.isExpanded()){
23309                     this.onTriggerClick();
23310                 }else{
23311                     this.inKeyMode = true;
23312                     this.selectNext();
23313                 }
23314             },
23315
23316             "enter" : function(e){
23317                 this.onViewClick();
23318                 //return true;
23319             },
23320
23321             "esc" : function(e){
23322                 this.collapse();
23323             },
23324
23325             "tab" : function(e){
23326                 this.onViewClick(false);
23327                 this.fireEvent("specialkey", this, e);
23328                 return true;
23329             },
23330
23331             scope : this,
23332
23333             doRelay : function(foo, bar, hname){
23334                 if(hname == 'down' || this.scope.isExpanded()){
23335                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
23336                 }
23337                 return true;
23338             },
23339
23340             forceKeyDown: true
23341         });
23342         this.queryDelay = Math.max(this.queryDelay || 10,
23343                 this.mode == 'local' ? 10 : 250);
23344         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
23345         if(this.typeAhead){
23346             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
23347         }
23348         if(this.editable !== false){
23349             this.el.on("keyup", this.onKeyUp, this);
23350         }
23351         if(this.forceSelection){
23352             this.on('blur', this.doForce, this);
23353         }
23354     },
23355
23356     onDestroy : function(){
23357         if(this.view){
23358             this.view.setStore(null);
23359             this.view.el.removeAllListeners();
23360             this.view.el.remove();
23361             this.view.purgeListeners();
23362         }
23363         if(this.list){
23364             this.list.destroy();
23365         }
23366         if(this.store){
23367             this.store.un('beforeload', this.onBeforeLoad, this);
23368             this.store.un('load', this.onLoad, this);
23369             this.store.un('loadexception', this.onLoadException, this);
23370         }
23371         Roo.form.ComboBox.superclass.onDestroy.call(this);
23372     },
23373
23374     // private
23375     fireKey : function(e){
23376         if(e.isNavKeyPress() && !this.list.isVisible()){
23377             this.fireEvent("specialkey", this, e);
23378         }
23379     },
23380
23381     // private
23382     onResize: function(w, h){
23383         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
23384         
23385         if(typeof w != 'number'){
23386             // we do not handle it!?!?
23387             return;
23388         }
23389         var tw = this.trigger.getWidth();
23390         tw += this.addicon ? this.addicon.getWidth() : 0;
23391         tw += this.editicon ? this.editicon.getWidth() : 0;
23392         var x = w - tw;
23393         this.el.setWidth( this.adjustWidth('input', x));
23394             
23395         this.trigger.setStyle('left', x+'px');
23396         
23397         if(this.list && this.listWidth === undefined){
23398             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
23399             this.list.setWidth(lw);
23400             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23401         }
23402         
23403     
23404         
23405     },
23406
23407     /**
23408      * Allow or prevent the user from directly editing the field text.  If false is passed,
23409      * the user will only be able to select from the items defined in the dropdown list.  This method
23410      * is the runtime equivalent of setting the 'editable' config option at config time.
23411      * @param {Boolean} value True to allow the user to directly edit the field text
23412      */
23413     setEditable : function(value){
23414         if(value == this.editable){
23415             return;
23416         }
23417         this.editable = value;
23418         if(!value){
23419             this.el.dom.setAttribute('readOnly', true);
23420             this.el.on('mousedown', this.onTriggerClick,  this);
23421             this.el.addClass('x-combo-noedit');
23422         }else{
23423             this.el.dom.setAttribute('readOnly', false);
23424             this.el.un('mousedown', this.onTriggerClick,  this);
23425             this.el.removeClass('x-combo-noedit');
23426         }
23427     },
23428
23429     // private
23430     onBeforeLoad : function(){
23431         if(!this.hasFocus){
23432             return;
23433         }
23434         this.innerList.update(this.loadingText ?
23435                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
23436         this.restrictHeight();
23437         this.selectedIndex = -1;
23438     },
23439
23440     // private
23441     onLoad : function(){
23442         if(!this.hasFocus){
23443             return;
23444         }
23445         if(this.store.getCount() > 0){
23446             this.expand();
23447             this.restrictHeight();
23448             if(this.lastQuery == this.allQuery){
23449                 if(this.editable){
23450                     this.el.dom.select();
23451                 }
23452                 if(!this.selectByValue(this.value, true)){
23453                     this.select(0, true);
23454                 }
23455             }else{
23456                 this.selectNext();
23457                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
23458                     this.taTask.delay(this.typeAheadDelay);
23459                 }
23460             }
23461         }else{
23462             this.onEmptyResults();
23463         }
23464         //this.el.focus();
23465     },
23466     // private
23467     onLoadException : function()
23468     {
23469         this.collapse();
23470         Roo.log(this.store.reader.jsonData);
23471         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
23472             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
23473         }
23474         
23475         
23476     },
23477     // private
23478     onTypeAhead : function(){
23479         if(this.store.getCount() > 0){
23480             var r = this.store.getAt(0);
23481             var newValue = r.data[this.displayField];
23482             var len = newValue.length;
23483             var selStart = this.getRawValue().length;
23484             if(selStart != len){
23485                 this.setRawValue(newValue);
23486                 this.selectText(selStart, newValue.length);
23487             }
23488         }
23489     },
23490
23491     // private
23492     onSelect : function(record, index){
23493         if(this.fireEvent('beforeselect', this, record, index) !== false){
23494             this.setFromData(index > -1 ? record.data : false);
23495             this.collapse();
23496             this.fireEvent('select', this, record, index);
23497         }
23498     },
23499
23500     /**
23501      * Returns the currently selected field value or empty string if no value is set.
23502      * @return {String} value The selected value
23503      */
23504     getValue : function(){
23505         if(this.valueField){
23506             return typeof this.value != 'undefined' ? this.value : '';
23507         }else{
23508             return Roo.form.ComboBox.superclass.getValue.call(this);
23509         }
23510     },
23511
23512     /**
23513      * Clears any text/value currently set in the field
23514      */
23515     clearValue : function(){
23516         if(this.hiddenField){
23517             this.hiddenField.value = '';
23518         }
23519         this.value = '';
23520         this.setRawValue('');
23521         this.lastSelectionText = '';
23522         this.applyEmptyText();
23523     },
23524
23525     /**
23526      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
23527      * will be displayed in the field.  If the value does not match the data value of an existing item,
23528      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
23529      * Otherwise the field will be blank (although the value will still be set).
23530      * @param {String} value The value to match
23531      */
23532     setValue : function(v){
23533         var text = v;
23534         if(this.valueField){
23535             var r = this.findRecord(this.valueField, v);
23536             if(r){
23537                 text = r.data[this.displayField];
23538             }else if(this.valueNotFoundText !== undefined){
23539                 text = this.valueNotFoundText;
23540             }
23541         }
23542         this.lastSelectionText = text;
23543         if(this.hiddenField){
23544             this.hiddenField.value = v;
23545         }
23546         Roo.form.ComboBox.superclass.setValue.call(this, text);
23547         this.value = v;
23548     },
23549     /**
23550      * @property {Object} the last set data for the element
23551      */
23552     
23553     lastData : false,
23554     /**
23555      * Sets the value of the field based on a object which is related to the record format for the store.
23556      * @param {Object} value the value to set as. or false on reset?
23557      */
23558     setFromData : function(o){
23559         var dv = ''; // display value
23560         var vv = ''; // value value..
23561         this.lastData = o;
23562         if (this.displayField) {
23563             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
23564         } else {
23565             // this is an error condition!!!
23566             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
23567         }
23568         
23569         if(this.valueField){
23570             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
23571         }
23572         if(this.hiddenField){
23573             this.hiddenField.value = vv;
23574             
23575             this.lastSelectionText = dv;
23576             Roo.form.ComboBox.superclass.setValue.call(this, dv);
23577             this.value = vv;
23578             return;
23579         }
23580         // no hidden field.. - we store the value in 'value', but still display
23581         // display field!!!!
23582         this.lastSelectionText = dv;
23583         Roo.form.ComboBox.superclass.setValue.call(this, dv);
23584         this.value = vv;
23585         
23586         
23587     },
23588     // private
23589     reset : function(){
23590         // overridden so that last data is reset..
23591         this.setValue(this.originalValue);
23592         this.clearInvalid();
23593         this.lastData = false;
23594     },
23595     // private
23596     findRecord : function(prop, value){
23597         var record;
23598         if(this.store.getCount() > 0){
23599             this.store.each(function(r){
23600                 if(r.data[prop] == value){
23601                     record = r;
23602                     return false;
23603                 }
23604                 return true;
23605             });
23606         }
23607         return record;
23608     },
23609     
23610     getName: function()
23611     {
23612         // returns hidden if it's set..
23613         if (!this.rendered) {return ''};
23614         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
23615         
23616     },
23617     // private
23618     onViewMove : function(e, t){
23619         this.inKeyMode = false;
23620     },
23621
23622     // private
23623     onViewOver : function(e, t){
23624         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
23625             return;
23626         }
23627         var item = this.view.findItemFromChild(t);
23628         if(item){
23629             var index = this.view.indexOf(item);
23630             this.select(index, false);
23631         }
23632     },
23633
23634     // private
23635     onViewClick : function(doFocus)
23636     {
23637         var index = this.view.getSelectedIndexes()[0];
23638         var r = this.store.getAt(index);
23639         if(r){
23640             this.onSelect(r, index);
23641         }
23642         if(doFocus !== false && !this.blockFocus){
23643             this.el.focus();
23644         }
23645     },
23646
23647     // private
23648     restrictHeight : function(){
23649         this.innerList.dom.style.height = '';
23650         var inner = this.innerList.dom;
23651         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
23652         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
23653         this.list.beginUpdate();
23654         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
23655         this.list.alignTo(this.el, this.listAlign);
23656         this.list.endUpdate();
23657     },
23658
23659     // private
23660     onEmptyResults : function(){
23661         this.collapse();
23662     },
23663
23664     /**
23665      * Returns true if the dropdown list is expanded, else false.
23666      */
23667     isExpanded : function(){
23668         return this.list.isVisible();
23669     },
23670
23671     /**
23672      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
23673      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23674      * @param {String} value The data value of the item to select
23675      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23676      * selected item if it is not currently in view (defaults to true)
23677      * @return {Boolean} True if the value matched an item in the list, else false
23678      */
23679     selectByValue : function(v, scrollIntoView){
23680         if(v !== undefined && v !== null){
23681             var r = this.findRecord(this.valueField || this.displayField, v);
23682             if(r){
23683                 this.select(this.store.indexOf(r), scrollIntoView);
23684                 return true;
23685             }
23686         }
23687         return false;
23688     },
23689
23690     /**
23691      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
23692      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23693      * @param {Number} index The zero-based index of the list item to select
23694      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23695      * selected item if it is not currently in view (defaults to true)
23696      */
23697     select : function(index, scrollIntoView){
23698         this.selectedIndex = index;
23699         this.view.select(index);
23700         if(scrollIntoView !== false){
23701             var el = this.view.getNode(index);
23702             if(el){
23703                 this.innerList.scrollChildIntoView(el, false);
23704             }
23705         }
23706     },
23707
23708     // private
23709     selectNext : function(){
23710         var ct = this.store.getCount();
23711         if(ct > 0){
23712             if(this.selectedIndex == -1){
23713                 this.select(0);
23714             }else if(this.selectedIndex < ct-1){
23715                 this.select(this.selectedIndex+1);
23716             }
23717         }
23718     },
23719
23720     // private
23721     selectPrev : function(){
23722         var ct = this.store.getCount();
23723         if(ct > 0){
23724             if(this.selectedIndex == -1){
23725                 this.select(0);
23726             }else if(this.selectedIndex != 0){
23727                 this.select(this.selectedIndex-1);
23728             }
23729         }
23730     },
23731
23732     // private
23733     onKeyUp : function(e){
23734         if(this.editable !== false && !e.isSpecialKey()){
23735             this.lastKey = e.getKey();
23736             this.dqTask.delay(this.queryDelay);
23737         }
23738     },
23739
23740     // private
23741     validateBlur : function(){
23742         return !this.list || !this.list.isVisible();   
23743     },
23744
23745     // private
23746     initQuery : function(){
23747         this.doQuery(this.getRawValue());
23748     },
23749
23750     // private
23751     doForce : function(){
23752         if(this.el.dom.value.length > 0){
23753             this.el.dom.value =
23754                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
23755             this.applyEmptyText();
23756         }
23757     },
23758
23759     /**
23760      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
23761      * query allowing the query action to be canceled if needed.
23762      * @param {String} query The SQL query to execute
23763      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
23764      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
23765      * saved in the current store (defaults to false)
23766      */
23767     doQuery : function(q, forceAll){
23768         if(q === undefined || q === null){
23769             q = '';
23770         }
23771         var qe = {
23772             query: q,
23773             forceAll: forceAll,
23774             combo: this,
23775             cancel:false
23776         };
23777         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
23778             return false;
23779         }
23780         q = qe.query;
23781         forceAll = qe.forceAll;
23782         if(forceAll === true || (q.length >= this.minChars)){
23783             if(this.lastQuery != q || this.alwaysQuery){
23784                 this.lastQuery = q;
23785                 if(this.mode == 'local'){
23786                     this.selectedIndex = -1;
23787                     if(forceAll){
23788                         this.store.clearFilter();
23789                     }else{
23790                         this.store.filter(this.displayField, q);
23791                     }
23792                     this.onLoad();
23793                 }else{
23794                     this.store.baseParams[this.queryParam] = q;
23795                     this.store.load({
23796                         params: this.getParams(q)
23797                     });
23798                     this.expand();
23799                 }
23800             }else{
23801                 this.selectedIndex = -1;
23802                 this.onLoad();   
23803             }
23804         }
23805     },
23806
23807     // private
23808     getParams : function(q){
23809         var p = {};
23810         //p[this.queryParam] = q;
23811         if(this.pageSize){
23812             p.start = 0;
23813             p.limit = this.pageSize;
23814         }
23815         return p;
23816     },
23817
23818     /**
23819      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
23820      */
23821     collapse : function(){
23822         if(!this.isExpanded()){
23823             return;
23824         }
23825         this.list.hide();
23826         Roo.get(document).un('mousedown', this.collapseIf, this);
23827         Roo.get(document).un('mousewheel', this.collapseIf, this);
23828         if (!this.editable) {
23829             Roo.get(document).un('keydown', this.listKeyPress, this);
23830         }
23831         this.fireEvent('collapse', this);
23832     },
23833
23834     // private
23835     collapseIf : function(e){
23836         if(!e.within(this.wrap) && !e.within(this.list)){
23837             this.collapse();
23838         }
23839     },
23840
23841     /**
23842      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
23843      */
23844     expand : function(){
23845         if(this.isExpanded() || !this.hasFocus){
23846             return;
23847         }
23848         this.list.alignTo(this.el, this.listAlign);
23849         this.list.show();
23850         Roo.get(document).on('mousedown', this.collapseIf, this);
23851         Roo.get(document).on('mousewheel', this.collapseIf, this);
23852         if (!this.editable) {
23853             Roo.get(document).on('keydown', this.listKeyPress, this);
23854         }
23855         
23856         this.fireEvent('expand', this);
23857     },
23858
23859     // private
23860     // Implements the default empty TriggerField.onTriggerClick function
23861     onTriggerClick : function(){
23862         if(this.disabled){
23863             return;
23864         }
23865         if(this.isExpanded()){
23866             this.collapse();
23867             if (!this.blockFocus) {
23868                 this.el.focus();
23869             }
23870             
23871         }else {
23872             this.hasFocus = true;
23873             if(this.triggerAction == 'all') {
23874                 this.doQuery(this.allQuery, true);
23875             } else {
23876                 this.doQuery(this.getRawValue());
23877             }
23878             if (!this.blockFocus) {
23879                 this.el.focus();
23880             }
23881         }
23882     },
23883     listKeyPress : function(e)
23884     {
23885         //Roo.log('listkeypress');
23886         // scroll to first matching element based on key pres..
23887         if (e.isSpecialKey()) {
23888             return false;
23889         }
23890         var k = String.fromCharCode(e.getKey()).toUpperCase();
23891         //Roo.log(k);
23892         var match  = false;
23893         var csel = this.view.getSelectedNodes();
23894         var cselitem = false;
23895         if (csel.length) {
23896             var ix = this.view.indexOf(csel[0]);
23897             cselitem  = this.store.getAt(ix);
23898             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
23899                 cselitem = false;
23900             }
23901             
23902         }
23903         
23904         this.store.each(function(v) { 
23905             if (cselitem) {
23906                 // start at existing selection.
23907                 if (cselitem.id == v.id) {
23908                     cselitem = false;
23909                 }
23910                 return;
23911             }
23912                 
23913             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
23914                 match = this.store.indexOf(v);
23915                 return false;
23916             }
23917         }, this);
23918         
23919         if (match === false) {
23920             return true; // no more action?
23921         }
23922         // scroll to?
23923         this.view.select(match);
23924         var sn = Roo.get(this.view.getSelectedNodes()[0])
23925         sn.scrollIntoView(sn.dom.parentNode, false);
23926     }
23927
23928     /** 
23929     * @cfg {Boolean} grow 
23930     * @hide 
23931     */
23932     /** 
23933     * @cfg {Number} growMin 
23934     * @hide 
23935     */
23936     /** 
23937     * @cfg {Number} growMax 
23938     * @hide 
23939     */
23940     /**
23941      * @hide
23942      * @method autoSize
23943      */
23944 });/*
23945  * Copyright(c) 2010-2012, Roo J Solutions Limited
23946  *
23947  * Licence LGPL
23948  *
23949  */
23950
23951 /**
23952  * @class Roo.form.ComboBoxArray
23953  * @extends Roo.form.ComboBox
23954  * A facebook style adder... for lists of email / people / countries  etc...
23955  * pick multiple items from a combo box, and shows each one.
23956  *
23957  *  Fred [x]  Brian [x]  [Pick another |v]
23958  *
23959  *
23960  *  For this to work: it needs various extra information
23961  *    - normal combo problay has
23962  *      name, hiddenName
23963  *    + displayField, valueField
23964  *
23965  *    For our purpose...
23966  *
23967  *
23968  *   If we change from 'extends' to wrapping...
23969  *   
23970  *  
23971  *
23972  
23973  
23974  * @constructor
23975  * Create a new ComboBoxArray.
23976  * @param {Object} config Configuration options
23977  */
23978  
23979
23980 Roo.form.ComboBoxArray = function(config)
23981 {
23982     
23983     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
23984     
23985     this.items = new Roo.util.MixedCollection(false);
23986     
23987     // construct the child combo...
23988     
23989     
23990     
23991     
23992    
23993     
23994 }
23995
23996  
23997 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
23998
23999     /**
24000      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
24001      */
24002     
24003     lastData : false,
24004     
24005     // behavies liek a hiddne field
24006     inputType:      'hidden',
24007     /**
24008      * @cfg {Number} width The width of the box that displays the selected element
24009      */ 
24010     width:          300,
24011
24012     
24013     
24014     /**
24015      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
24016      */
24017     name : false,
24018     /**
24019      * @cfg {String} name    The hidden name of the field, often contains an comma seperated list of names
24020      */
24021     hiddenName : false,
24022     
24023     
24024     // private the array of items that are displayed..
24025     items  : false,
24026     // private - the hidden field el.
24027     hiddenEl : false,
24028     // private - the filed el..
24029     el : false,
24030     
24031     //validateValue : function() { return true; }, // all values are ok!
24032     //onAddClick: function() { },
24033     
24034     onRender : function(ct, position) 
24035     {
24036         
24037         // create the standard hidden element
24038         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
24039         
24040         
24041         // give fake names to child combo;
24042         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
24043         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
24044         
24045         this.combo = Roo.factory(this.combo, Roo.form);
24046         this.combo.onRender(ct, position);
24047         
24048         // assigned so form know we need to do this..
24049         this.store          = this.combo.store;
24050         this.valueField     = this.combo.valueField;
24051         this.displayField   = this.combo.displayField ;
24052         
24053         
24054         this.combo.wrap.addClass('x-cbarray-grp');
24055         
24056         var cbwrap = this.combo.wrap.createChild(
24057             {tag: 'div', cls: 'x-cbarray-cb'},
24058             this.combo.el.dom
24059         );
24060         
24061              
24062         this.hiddenEl = this.combo.wrap.createChild({
24063             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
24064         });
24065         this.el = this.combo.wrap.createChild({
24066             tag: 'input',  type:'hidden' , name: this.name, value : ''
24067         });
24068          //   this.el.dom.removeAttribute("name");
24069         
24070         
24071         this.outerWrap = this.combo.wrap;
24072         this.wrap = cbwrap;
24073         
24074         this.outerWrap.setWidth(this.width);
24075         this.outerWrap.dom.removeChild(this.el.dom);
24076         
24077         this.wrap.dom.appendChild(this.el.dom);
24078         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
24079         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
24080         
24081         this.combo.trigger.setStyle('position','relative');
24082         this.combo.trigger.setStyle('left', '0px');
24083         this.combo.trigger.setStyle('top', '2px');
24084         
24085         this.combo.el.setStyle('vertical-align', 'text-bottom');
24086         
24087         //this.trigger.setStyle('vertical-align', 'top');
24088         
24089         // this should use the code from combo really... on('add' ....)
24090         if (this.adder) {
24091             
24092         
24093             this.adder = this.outerWrap.createChild(
24094                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
24095             var _t = this;
24096             this.adder.on('click', function(e) {
24097                 _t.fireEvent('adderclick', this, e);
24098             }, _t);
24099         }
24100         //var _t = this;
24101         //this.adder.on('click', this.onAddClick, _t);
24102         
24103         
24104         this.combo.on('select', function(cb, rec, ix) {
24105             this.addItem(rec.data);
24106             
24107             cb.setValue('');
24108             cb.el.dom.value = '';
24109             //cb.lastData = rec.data;
24110             // add to list
24111             
24112         }, this);
24113         
24114         
24115     },
24116     
24117     
24118     getName: function()
24119     {
24120         // returns hidden if it's set..
24121         if (!this.rendered) {return ''};
24122         return  this.hiddenName ? this.hiddenName : this.name;
24123         
24124     },
24125     
24126     
24127     onResize: function(w, h){
24128         
24129         return;
24130         // not sure if this is needed..
24131         this.combo.onResize(w,h);
24132         
24133         if(typeof w != 'number'){
24134             // we do not handle it!?!?
24135             return;
24136         }
24137         var tw = this.combo.trigger.getWidth();
24138         tw += this.addicon ? this.addicon.getWidth() : 0;
24139         tw += this.editicon ? this.editicon.getWidth() : 0;
24140         var x = w - tw;
24141         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
24142             
24143         this.combo.trigger.setStyle('left', '0px');
24144         
24145         if(this.list && this.listWidth === undefined){
24146             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
24147             this.list.setWidth(lw);
24148             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
24149         }
24150         
24151     
24152         
24153     },
24154     
24155     addItem: function(rec)
24156     {
24157         var idField = this.combo.valueField;
24158         var displayField = this.combo.displayField;
24159         if (this.items.indexOfKey(rec[idField]) > -1) {
24160             //console.log("GOT " + rec.data.id);
24161             return;
24162         }
24163         
24164         var x = new Roo.form.ComboBoxArray.Item({
24165             //id : rec[this.idField],
24166             data : rec,
24167             nameField : displayField ,
24168             tipField : displayField ,
24169             cb : this
24170         });
24171         // use the 
24172         this.items.add(rec[idField],x);
24173         // add it before the element..
24174         this.updateHiddenEl();
24175         x.render(this.outerWrap, this.wrap.dom);
24176         // add the image handler..
24177     },
24178     
24179     updateHiddenEl : function()
24180     {
24181         this.validate();
24182         if (!this.hiddenEl) {
24183             return;
24184         }
24185         var ar = [];
24186         var idField = this.combo.valueField;
24187         
24188         this.items.each(function(f) {
24189             ar.push(f.data[idField]);
24190            
24191         });
24192         this.hiddenEl.dom.value = ar.join(',');
24193         this.validate();
24194     },
24195     
24196     reset : function()
24197     {
24198         Roo.form.ComboBoxArray.superclass.reset.call(this); 
24199         this.items.each(function(f) {
24200            f.remove(); 
24201         });
24202         if (this.hiddenEl) {
24203             this.hiddenEl.dom.value = '';
24204         }
24205         
24206     },
24207     getValue: function()
24208     {
24209         return this.hiddenEl ? this.hiddenEl.dom.value : '';
24210     },
24211     setValue: function(v) // not a valid action - must use addItems..
24212     {
24213          
24214         
24215         if (this.store.isLocal) {
24216             // then we can use the store to find the values..
24217             // comma seperated at present.. this needs to allow JSON based encoding..
24218             this.hiddenEl.value  = v;
24219             var v_ar = [];
24220             Roo.each(v.split(','), function(k) {
24221                 Roo.log("CHECK " + this.valueField + ',' + k);
24222                 var li = this.store.query(this.valueField, k);
24223                 if (!li.length) {
24224                     return;
24225                 }
24226                 add = {};
24227                 add[this.valueField] = k;
24228                 add[this.displayField] = li.item(0).data[this.displayField];
24229                 
24230                 this.addItem(add);
24231             }, this) 
24232             
24233                 
24234             
24235         }
24236         
24237         
24238     },
24239     setFromData: function(v)
24240     {
24241         // this recieves an object, if setValues is called.
24242         var keys = v[this.valueField].split(',');
24243         var display = v[this.displayField].split(',');
24244         for (var i = 0 ; i < keys.length; i++) {
24245             
24246             add = {};
24247             add[this.valueField] = keys[i];
24248             add[this.displayField] = display[i];
24249             this.addItem(add);
24250         }
24251       
24252         
24253     },
24254     
24255     
24256     validateValue : function(value){
24257         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
24258         
24259     }
24260     
24261 });
24262
24263
24264
24265 /**
24266  * @class Roo.form.ComboBoxArray.Item
24267  * @extends Roo.BoxComponent
24268  * A selected item in the list
24269  *  Fred [x]  Brian [x]  [Pick another |v]
24270  * 
24271  * @constructor
24272  * Create a new item.
24273  * @param {Object} config Configuration options
24274  */
24275  
24276 Roo.form.ComboBoxArray.Item = function(config) {
24277     config.id = Roo.id();
24278     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
24279 }
24280
24281 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
24282     data : {},
24283     cb: false,
24284     nameField : false,
24285     tipField : false,
24286     
24287     
24288     defaultAutoCreate : {
24289         tag: 'div',
24290         cls: 'x-cbarray-item',
24291         cn : [ 
24292             { tag: 'div' },
24293             {
24294                 tag: 'img',
24295                 width:16,
24296                 height : 16,
24297                 src : Roo.BLANK_IMAGE_URL ,
24298                 align: 'center'
24299             }
24300         ]
24301         
24302     },
24303     
24304  
24305     onRender : function(ct, position)
24306     {
24307         Roo.form.Field.superclass.onRender.call(this, ct, position);
24308         
24309         if(!this.el){
24310             var cfg = this.getAutoCreate();
24311             this.el = ct.createChild(cfg, position);
24312         }
24313         
24314         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
24315         
24316         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
24317             this.cb.renderer(this.data) :
24318             String.format('{0}',this.data[this.nameField]);
24319         
24320             
24321         this.el.child('div').dom.setAttribute('qtip',
24322                         String.format('{0}',this.data[this.tipField])
24323         );
24324         
24325         this.el.child('img').on('click', this.remove, this);
24326         
24327     },
24328    
24329     remove : function()
24330     {
24331         
24332         this.cb.items.remove(this);
24333         this.el.child('img').un('click', this.remove, this);
24334         this.el.remove();
24335         this.cb.updateHiddenEl();
24336     }
24337     
24338     
24339 });/*
24340  * Based on:
24341  * Ext JS Library 1.1.1
24342  * Copyright(c) 2006-2007, Ext JS, LLC.
24343  *
24344  * Originally Released Under LGPL - original licence link has changed is not relivant.
24345  *
24346  * Fork - LGPL
24347  * <script type="text/javascript">
24348  */
24349 /**
24350  * @class Roo.form.Checkbox
24351  * @extends Roo.form.Field
24352  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
24353  * @constructor
24354  * Creates a new Checkbox
24355  * @param {Object} config Configuration options
24356  */
24357 Roo.form.Checkbox = function(config){
24358     Roo.form.Checkbox.superclass.constructor.call(this, config);
24359     this.addEvents({
24360         /**
24361          * @event check
24362          * Fires when the checkbox is checked or unchecked.
24363              * @param {Roo.form.Checkbox} this This checkbox
24364              * @param {Boolean} checked The new checked value
24365              */
24366         check : true
24367     });
24368 };
24369
24370 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
24371     /**
24372      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
24373      */
24374     focusClass : undefined,
24375     /**
24376      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
24377      */
24378     fieldClass: "x-form-field",
24379     /**
24380      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
24381      */
24382     checked: false,
24383     /**
24384      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
24385      * {tag: "input", type: "checkbox", autocomplete: "off"})
24386      */
24387     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
24388     /**
24389      * @cfg {String} boxLabel The text that appears beside the checkbox
24390      */
24391     boxLabel : "",
24392     /**
24393      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
24394      */  
24395     inputValue : '1',
24396     /**
24397      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24398      */
24399      valueOff: '0', // value when not checked..
24400
24401     actionMode : 'viewEl', 
24402     //
24403     // private
24404     itemCls : 'x-menu-check-item x-form-item',
24405     groupClass : 'x-menu-group-item',
24406     inputType : 'hidden',
24407     
24408     
24409     inSetChecked: false, // check that we are not calling self...
24410     
24411     inputElement: false, // real input element?
24412     basedOn: false, // ????
24413     
24414     isFormField: true, // not sure where this is needed!!!!
24415
24416     onResize : function(){
24417         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
24418         if(!this.boxLabel){
24419             this.el.alignTo(this.wrap, 'c-c');
24420         }
24421     },
24422
24423     initEvents : function(){
24424         Roo.form.Checkbox.superclass.initEvents.call(this);
24425         this.el.on("click", this.onClick,  this);
24426         this.el.on("change", this.onClick,  this);
24427     },
24428
24429
24430     getResizeEl : function(){
24431         return this.wrap;
24432     },
24433
24434     getPositionEl : function(){
24435         return this.wrap;
24436     },
24437
24438     // private
24439     onRender : function(ct, position){
24440         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24441         /*
24442         if(this.inputValue !== undefined){
24443             this.el.dom.value = this.inputValue;
24444         }
24445         */
24446         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24447         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24448         var viewEl = this.wrap.createChild({ 
24449             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24450         this.viewEl = viewEl;   
24451         this.wrap.on('click', this.onClick,  this); 
24452         
24453         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24454         this.el.on('propertychange', this.setFromHidden,  this);  //ie
24455         
24456         
24457         
24458         if(this.boxLabel){
24459             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24460         //    viewEl.on('click', this.onClick,  this); 
24461         }
24462         //if(this.checked){
24463             this.setChecked(this.checked);
24464         //}else{
24465             //this.checked = this.el.dom;
24466         //}
24467
24468     },
24469
24470     // private
24471     initValue : Roo.emptyFn,
24472
24473     /**
24474      * Returns the checked state of the checkbox.
24475      * @return {Boolean} True if checked, else false
24476      */
24477     getValue : function(){
24478         if(this.el){
24479             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
24480         }
24481         return this.valueOff;
24482         
24483     },
24484
24485         // private
24486     onClick : function(){ 
24487         this.setChecked(!this.checked);
24488
24489         //if(this.el.dom.checked != this.checked){
24490         //    this.setValue(this.el.dom.checked);
24491        // }
24492     },
24493
24494     /**
24495      * Sets the checked state of the checkbox.
24496      * On is always based on a string comparison between inputValue and the param.
24497      * @param {Boolean/String} value - the value to set 
24498      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
24499      */
24500     setValue : function(v,suppressEvent){
24501         
24502         
24503         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
24504         //if(this.el && this.el.dom){
24505         //    this.el.dom.checked = this.checked;
24506         //    this.el.dom.defaultChecked = this.checked;
24507         //}
24508         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
24509         //this.fireEvent("check", this, this.checked);
24510     },
24511     // private..
24512     setChecked : function(state,suppressEvent)
24513     {
24514         if (this.inSetChecked) {
24515             this.checked = state;
24516             return;
24517         }
24518         
24519     
24520         if(this.wrap){
24521             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
24522         }
24523         this.checked = state;
24524         if(suppressEvent !== true){
24525             this.fireEvent('check', this, state);
24526         }
24527         this.inSetChecked = true;
24528         this.el.dom.value = state ? this.inputValue : this.valueOff;
24529         this.inSetChecked = false;
24530         
24531     },
24532     // handle setting of hidden value by some other method!!?!?
24533     setFromHidden: function()
24534     {
24535         if(!this.el){
24536             return;
24537         }
24538         //console.log("SET FROM HIDDEN");
24539         //alert('setFrom hidden');
24540         this.setValue(this.el.dom.value);
24541     },
24542     
24543     onDestroy : function()
24544     {
24545         if(this.viewEl){
24546             Roo.get(this.viewEl).remove();
24547         }
24548          
24549         Roo.form.Checkbox.superclass.onDestroy.call(this);
24550     }
24551
24552 });/*
24553  * Based on:
24554  * Ext JS Library 1.1.1
24555  * Copyright(c) 2006-2007, Ext JS, LLC.
24556  *
24557  * Originally Released Under LGPL - original licence link has changed is not relivant.
24558  *
24559  * Fork - LGPL
24560  * <script type="text/javascript">
24561  */
24562  
24563 /**
24564  * @class Roo.form.Radio
24565  * @extends Roo.form.Checkbox
24566  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
24567  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
24568  * @constructor
24569  * Creates a new Radio
24570  * @param {Object} config Configuration options
24571  */
24572 Roo.form.Radio = function(){
24573     Roo.form.Radio.superclass.constructor.apply(this, arguments);
24574 };
24575 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
24576     inputType: 'radio',
24577
24578     /**
24579      * If this radio is part of a group, it will return the selected value
24580      * @return {String}
24581      */
24582     getGroupValue : function(){
24583         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
24584     }
24585 });//<script type="text/javascript">
24586
24587 /*
24588  * Ext JS Library 1.1.1
24589  * Copyright(c) 2006-2007, Ext JS, LLC.
24590  * licensing@extjs.com
24591  * 
24592  * http://www.extjs.com/license
24593  */
24594  
24595  /*
24596   * 
24597   * Known bugs:
24598   * Default CSS appears to render it as fixed text by default (should really be Sans-Serif)
24599   * - IE ? - no idea how much works there.
24600   * 
24601   * 
24602   * 
24603   */
24604  
24605
24606 /**
24607  * @class Ext.form.HtmlEditor
24608  * @extends Ext.form.Field
24609  * Provides a lightweight HTML Editor component.
24610  *
24611  * This has been tested on Fireforx / Chrome.. IE may not be so great..
24612  * 
24613  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
24614  * supported by this editor.</b><br/><br/>
24615  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
24616  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
24617  */
24618 Roo.form.HtmlEditor = Roo.extend(Roo.form.Field, {
24619       /**
24620      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
24621      */
24622     toolbars : false,
24623     /**
24624      * @cfg {String} createLinkText The default text for the create link prompt
24625      */
24626     createLinkText : 'Please enter the URL for the link:',
24627     /**
24628      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
24629      */
24630     defaultLinkValue : 'http:/'+'/',
24631    
24632      /**
24633      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
24634      *                        Roo.resizable.
24635      */
24636     resizable : false,
24637      /**
24638      * @cfg {Number} height (in pixels)
24639      */   
24640     height: 300,
24641    /**
24642      * @cfg {Number} width (in pixels)
24643      */   
24644     width: 500,
24645     
24646     /**
24647      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
24648      * 
24649      */
24650     stylesheets: false,
24651     
24652     // id of frame..
24653     frameId: false,
24654     
24655     // private properties
24656     validationEvent : false,
24657     deferHeight: true,
24658     initialized : false,
24659     activated : false,
24660     sourceEditMode : false,
24661     onFocus : Roo.emptyFn,
24662     iframePad:3,
24663     hideMode:'offsets',
24664     
24665     defaultAutoCreate : { // modified by initCompnoent..
24666         tag: "textarea",
24667         style:"width:500px;height:300px;",
24668         autocomplete: "off"
24669     },
24670
24671     // private
24672     initComponent : function(){
24673         this.addEvents({
24674             /**
24675              * @event initialize
24676              * Fires when the editor is fully initialized (including the iframe)
24677              * @param {HtmlEditor} this
24678              */
24679             initialize: true,
24680             /**
24681              * @event activate
24682              * Fires when the editor is first receives the focus. Any insertion must wait
24683              * until after this event.
24684              * @param {HtmlEditor} this
24685              */
24686             activate: true,
24687              /**
24688              * @event beforesync
24689              * Fires before the textarea is updated with content from the editor iframe. Return false
24690              * to cancel the sync.
24691              * @param {HtmlEditor} this
24692              * @param {String} html
24693              */
24694             beforesync: true,
24695              /**
24696              * @event beforepush
24697              * Fires before the iframe editor is updated with content from the textarea. Return false
24698              * to cancel the push.
24699              * @param {HtmlEditor} this
24700              * @param {String} html
24701              */
24702             beforepush: true,
24703              /**
24704              * @event sync
24705              * Fires when the textarea is updated with content from the editor iframe.
24706              * @param {HtmlEditor} this
24707              * @param {String} html
24708              */
24709             sync: true,
24710              /**
24711              * @event push
24712              * Fires when the iframe editor is updated with content from the textarea.
24713              * @param {HtmlEditor} this
24714              * @param {String} html
24715              */
24716             push: true,
24717              /**
24718              * @event editmodechange
24719              * Fires when the editor switches edit modes
24720              * @param {HtmlEditor} this
24721              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
24722              */
24723             editmodechange: true,
24724             /**
24725              * @event editorevent
24726              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
24727              * @param {HtmlEditor} this
24728              */
24729             editorevent: true
24730         });
24731         this.defaultAutoCreate =  {
24732             tag: "textarea",
24733             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
24734             autocomplete: "off"
24735         };
24736     },
24737
24738     /**
24739      * Protected method that will not generally be called directly. It
24740      * is called when the editor creates its toolbar. Override this method if you need to
24741      * add custom toolbar buttons.
24742      * @param {HtmlEditor} editor
24743      */
24744     createToolbar : function(editor){
24745         if (!editor.toolbars || !editor.toolbars.length) {
24746             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
24747         }
24748         
24749         for (var i =0 ; i < editor.toolbars.length;i++) {
24750             editor.toolbars[i] = Roo.factory(editor.toolbars[i], Roo.form.HtmlEditor);
24751             editor.toolbars[i].init(editor);
24752         }
24753          
24754         
24755     },
24756
24757     /**
24758      * Protected method that will not generally be called directly. It
24759      * is called when the editor initializes the iframe with HTML contents. Override this method if you
24760      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
24761      */
24762     getDocMarkup : function(){
24763         // body styles..
24764         var st = '';
24765         if (this.stylesheets === false) {
24766             
24767             Roo.get(document.head).select('style').each(function(node) {
24768                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24769             });
24770             
24771             Roo.get(document.head).select('link').each(function(node) { 
24772                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24773             });
24774             
24775         } else if (!this.stylesheets.length) {
24776                 // simple..
24777                 st = '<style type="text/css">' +
24778                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24779                    '</style>';
24780         } else {
24781             Roo.each(this.stylesheets, function(s) {
24782                 st += '<link rel="stylesheet" type="text/css" href="' + s +'" />'
24783             });
24784             
24785         }
24786         
24787         st +=  '<style type="text/css">' +
24788             'IMG { cursor: pointer } ' +
24789         '</style>';
24790
24791         
24792         return '<html><head>' + st  +
24793             //<style type="text/css">' +
24794             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24795             //'</style>' +
24796             ' </head><body class="roo-htmleditor-body"></body></html>';
24797     },
24798
24799     // private
24800     onRender : function(ct, position)
24801     {
24802         var _t = this;
24803         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
24804         this.el.dom.style.border = '0 none';
24805         this.el.dom.setAttribute('tabIndex', -1);
24806         this.el.addClass('x-hidden');
24807         if(Roo.isIE){ // fix IE 1px bogus margin
24808             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
24809         }
24810         this.wrap = this.el.wrap({
24811             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
24812         });
24813         
24814         if (this.resizable) {
24815             this.resizeEl = new Roo.Resizable(this.wrap, {
24816                 pinned : true,
24817                 wrap: true,
24818                 dynamic : true,
24819                 minHeight : this.height,
24820                 height: this.height,
24821                 handles : this.resizable,
24822                 width: this.width,
24823                 listeners : {
24824                     resize : function(r, w, h) {
24825                         _t.onResize(w,h); // -something
24826                     }
24827                 }
24828             });
24829             
24830         }
24831
24832         this.frameId = Roo.id();
24833         
24834         this.createToolbar(this);
24835         
24836       
24837         
24838         var iframe = this.wrap.createChild({
24839             tag: 'iframe',
24840             id: this.frameId,
24841             name: this.frameId,
24842             frameBorder : 'no',
24843             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
24844         }, this.el
24845         );
24846         
24847        // console.log(iframe);
24848         //this.wrap.dom.appendChild(iframe);
24849
24850         this.iframe = iframe.dom;
24851
24852          this.assignDocWin();
24853         
24854         this.doc.designMode = 'on';
24855        
24856         this.doc.open();
24857         this.doc.write(this.getDocMarkup());
24858         this.doc.close();
24859
24860         
24861         var task = { // must defer to wait for browser to be ready
24862             run : function(){
24863                 //console.log("run task?" + this.doc.readyState);
24864                 this.assignDocWin();
24865                 if(this.doc.body || this.doc.readyState == 'complete'){
24866                     try {
24867                         this.doc.designMode="on";
24868                     } catch (e) {
24869                         return;
24870                     }
24871                     Roo.TaskMgr.stop(task);
24872                     this.initEditor.defer(10, this);
24873                 }
24874             },
24875             interval : 10,
24876             duration:10000,
24877             scope: this
24878         };
24879         Roo.TaskMgr.start(task);
24880
24881         if(!this.width){
24882             this.setSize(this.wrap.getSize());
24883         }
24884         if (this.resizeEl) {
24885             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
24886             // should trigger onReize..
24887         }
24888     },
24889
24890     // private
24891     onResize : function(w, h)
24892     {
24893         //Roo.log('resize: ' +w + ',' + h );
24894         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
24895         if(this.el && this.iframe){
24896             if(typeof w == 'number'){
24897                 var aw = w - this.wrap.getFrameWidth('lr');
24898                 this.el.setWidth(this.adjustWidth('textarea', aw));
24899                 this.iframe.style.width = aw + 'px';
24900             }
24901             if(typeof h == 'number'){
24902                 var tbh = 0;
24903                 for (var i =0; i < this.toolbars.length;i++) {
24904                     // fixme - ask toolbars for heights?
24905                     tbh += this.toolbars[i].tb.el.getHeight();
24906                     if (this.toolbars[i].footer) {
24907                         tbh += this.toolbars[i].footer.el.getHeight();
24908                     }
24909                 }
24910                 
24911                 
24912                 
24913                 
24914                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
24915                 ah -= 5; // knock a few pixes off for look..
24916                 this.el.setHeight(this.adjustWidth('textarea', ah));
24917                 this.iframe.style.height = ah + 'px';
24918                 if(this.doc){
24919                     (this.doc.body || this.doc.documentElement).style.height = (ah - (this.iframePad*2)) + 'px';
24920                 }
24921             }
24922         }
24923     },
24924
24925     /**
24926      * Toggles the editor between standard and source edit mode.
24927      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24928      */
24929     toggleSourceEdit : function(sourceEditMode){
24930         
24931         this.sourceEditMode = sourceEditMode === true;
24932         
24933         if(this.sourceEditMode){
24934           
24935             this.syncValue();
24936             this.iframe.className = 'x-hidden';
24937             this.el.removeClass('x-hidden');
24938             this.el.dom.removeAttribute('tabIndex');
24939             this.el.focus();
24940         }else{
24941              
24942             this.pushValue();
24943             this.iframe.className = '';
24944             this.el.addClass('x-hidden');
24945             this.el.dom.setAttribute('tabIndex', -1);
24946             this.deferFocus();
24947         }
24948         this.setSize(this.wrap.getSize());
24949         this.fireEvent('editmodechange', this, this.sourceEditMode);
24950     },
24951
24952     // private used internally
24953     createLink : function(){
24954         var url = prompt(this.createLinkText, this.defaultLinkValue);
24955         if(url && url != 'http:/'+'/'){
24956             this.relayCmd('createlink', url);
24957         }
24958     },
24959
24960     // private (for BoxComponent)
24961     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24962
24963     // private (for BoxComponent)
24964     getResizeEl : function(){
24965         return this.wrap;
24966     },
24967
24968     // private (for BoxComponent)
24969     getPositionEl : function(){
24970         return this.wrap;
24971     },
24972
24973     // private
24974     initEvents : function(){
24975         this.originalValue = this.getValue();
24976     },
24977
24978     /**
24979      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24980      * @method
24981      */
24982     markInvalid : Roo.emptyFn,
24983     /**
24984      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24985      * @method
24986      */
24987     clearInvalid : Roo.emptyFn,
24988
24989     setValue : function(v){
24990         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
24991         this.pushValue();
24992     },
24993
24994     /**
24995      * Protected method that will not generally be called directly. If you need/want
24996      * custom HTML cleanup, this is the method you should override.
24997      * @param {String} html The HTML to be cleaned
24998      * return {String} The cleaned HTML
24999      */
25000     cleanHtml : function(html){
25001         html = String(html);
25002         if(html.length > 5){
25003             if(Roo.isSafari){ // strip safari nonsense
25004                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
25005             }
25006         }
25007         if(html == '&nbsp;'){
25008             html = '';
25009         }
25010         return html;
25011     },
25012
25013     /**
25014      * Protected method that will not generally be called directly. Syncs the contents
25015      * of the editor iframe with the textarea.
25016      */
25017     syncValue : function(){
25018         if(this.initialized){
25019             var bd = (this.doc.body || this.doc.documentElement);
25020             //this.cleanUpPaste(); -- this is done else where and causes havoc..
25021             var html = bd.innerHTML;
25022             if(Roo.isSafari){
25023                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
25024                 var m = bs.match(/text-align:(.*?);/i);
25025                 if(m && m[1]){
25026                     html = '<div style="'+m[0]+'">' + html + '</div>';
25027                 }
25028             }
25029             html = this.cleanHtml(html);
25030             // fix up the special chars..
25031             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
25032                 return "&#"+b.charCodeAt()+";" 
25033             });
25034             if(this.fireEvent('beforesync', this, html) !== false){
25035                 this.el.dom.value = html;
25036                 this.fireEvent('sync', this, html);
25037             }
25038         }
25039     },
25040
25041     /**
25042      * Protected method that will not generally be called directly. Pushes the value of the textarea
25043      * into the iframe editor.
25044      */
25045     pushValue : function(){
25046         if(this.initialized){
25047             var v = this.el.dom.value;
25048             if(v.length < 1){
25049                 v = '&#160;';
25050             }
25051             
25052             if(this.fireEvent('beforepush', this, v) !== false){
25053                 var d = (this.doc.body || this.doc.documentElement);
25054                 d.innerHTML = v;
25055                 this.cleanUpPaste();
25056                 this.el.dom.value = d.innerHTML;
25057                 this.fireEvent('push', this, v);
25058             }
25059         }
25060     },
25061
25062     // private
25063     deferFocus : function(){
25064         this.focus.defer(10, this);
25065     },
25066
25067     // doc'ed in Field
25068     focus : function(){
25069         if(this.win && !this.sourceEditMode){
25070             this.win.focus();
25071         }else{
25072             this.el.focus();
25073         }
25074     },
25075     
25076     assignDocWin: function()
25077     {
25078         var iframe = this.iframe;
25079         
25080          if(Roo.isIE){
25081             this.doc = iframe.contentWindow.document;
25082             this.win = iframe.contentWindow;
25083         } else {
25084             if (!Roo.get(this.frameId)) {
25085                 return;
25086             }
25087             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
25088             this.win = Roo.get(this.frameId).dom.contentWindow;
25089         }
25090     },
25091     
25092     // private
25093     initEditor : function(){
25094         //console.log("INIT EDITOR");
25095         this.assignDocWin();
25096         
25097         
25098         
25099         this.doc.designMode="on";
25100         this.doc.open();
25101         this.doc.write(this.getDocMarkup());
25102         this.doc.close();
25103         
25104         var dbody = (this.doc.body || this.doc.documentElement);
25105         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
25106         // this copies styles from the containing element into thsi one..
25107         // not sure why we need all of this..
25108         var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
25109         ss['background-attachment'] = 'fixed'; // w3c
25110         dbody.bgProperties = 'fixed'; // ie
25111         Roo.DomHelper.applyStyles(dbody, ss);
25112         Roo.EventManager.on(this.doc, {
25113             //'mousedown': this.onEditorEvent,
25114             'mouseup': this.onEditorEvent,
25115             'dblclick': this.onEditorEvent,
25116             'click': this.onEditorEvent,
25117             'keyup': this.onEditorEvent,
25118             buffer:100,
25119             scope: this
25120         });
25121         if(Roo.isGecko){
25122             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
25123         }
25124         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
25125             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
25126         }
25127         this.initialized = true;
25128
25129         this.fireEvent('initialize', this);
25130         this.pushValue();
25131     },
25132
25133     // private
25134     onDestroy : function(){
25135         
25136         
25137         
25138         if(this.rendered){
25139             
25140             for (var i =0; i < this.toolbars.length;i++) {
25141                 // fixme - ask toolbars for heights?
25142                 this.toolbars[i].onDestroy();
25143             }
25144             
25145             this.wrap.dom.innerHTML = '';
25146             this.wrap.remove();
25147         }
25148     },
25149
25150     // private
25151     onFirstFocus : function(){
25152         
25153         this.assignDocWin();
25154         
25155         
25156         this.activated = true;
25157         for (var i =0; i < this.toolbars.length;i++) {
25158             this.toolbars[i].onFirstFocus();
25159         }
25160        
25161         if(Roo.isGecko){ // prevent silly gecko errors
25162             this.win.focus();
25163             var s = this.win.getSelection();
25164             if(!s.focusNode || s.focusNode.nodeType != 3){
25165                 var r = s.getRangeAt(0);
25166                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
25167                 r.collapse(true);
25168                 this.deferFocus();
25169             }
25170             try{
25171                 this.execCmd('useCSS', true);
25172                 this.execCmd('styleWithCSS', false);
25173             }catch(e){}
25174         }
25175         this.fireEvent('activate', this);
25176     },
25177
25178     // private
25179     adjustFont: function(btn){
25180         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
25181         //if(Roo.isSafari){ // safari
25182         //    adjust *= 2;
25183        // }
25184         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
25185         if(Roo.isSafari){ // safari
25186             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
25187             v =  (v < 10) ? 10 : v;
25188             v =  (v > 48) ? 48 : v;
25189             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
25190             
25191         }
25192         
25193         
25194         v = Math.max(1, v+adjust);
25195         
25196         this.execCmd('FontSize', v  );
25197     },
25198
25199     onEditorEvent : function(e){
25200         this.fireEvent('editorevent', this, e);
25201       //  this.updateToolbar();
25202         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
25203     },
25204
25205     insertTag : function(tg)
25206     {
25207         // could be a bit smarter... -> wrap the current selected tRoo..
25208         
25209         this.execCmd("formatblock",   tg);
25210         
25211     },
25212     
25213     insertText : function(txt)
25214     {
25215         
25216         
25217         range = this.createRange();
25218         range.deleteContents();
25219                //alert(Sender.getAttribute('label'));
25220                
25221         range.insertNode(this.doc.createTextNode(txt));
25222     } ,
25223     
25224     // private
25225     relayBtnCmd : function(btn){
25226         this.relayCmd(btn.cmd);
25227     },
25228
25229     /**
25230      * Executes a Midas editor command on the editor document and performs necessary focus and
25231      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
25232      * @param {String} cmd The Midas command
25233      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25234      */
25235     relayCmd : function(cmd, value){
25236         this.win.focus();
25237         this.execCmd(cmd, value);
25238         this.fireEvent('editorevent', this);
25239         //this.updateToolbar();
25240         this.deferFocus();
25241     },
25242
25243     /**
25244      * Executes a Midas editor command directly on the editor document.
25245      * For visual commands, you should use {@link #relayCmd} instead.
25246      * <b>This should only be called after the editor is initialized.</b>
25247      * @param {String} cmd The Midas command
25248      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25249      */
25250     execCmd : function(cmd, value){
25251         this.doc.execCommand(cmd, false, value === undefined ? null : value);
25252         this.syncValue();
25253     },
25254  
25255  
25256    
25257     /**
25258      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
25259      * to insert tRoo.
25260      * @param {String} text | dom node.. 
25261      */
25262     insertAtCursor : function(text)
25263     {
25264         
25265         
25266         
25267         if(!this.activated){
25268             return;
25269         }
25270         /*
25271         if(Roo.isIE){
25272             this.win.focus();
25273             var r = this.doc.selection.createRange();
25274             if(r){
25275                 r.collapse(true);
25276                 r.pasteHTML(text);
25277                 this.syncValue();
25278                 this.deferFocus();
25279             
25280             }
25281             return;
25282         }
25283         */
25284         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
25285             this.win.focus();
25286             
25287             
25288             // from jquery ui (MIT licenced)
25289             var range, node;
25290             var win = this.win;
25291             
25292             if (win.getSelection && win.getSelection().getRangeAt) {
25293                 range = win.getSelection().getRangeAt(0);
25294                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
25295                 range.insertNode(node);
25296             } else if (win.document.selection && win.document.selection.createRange) {
25297                 // no firefox support
25298                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25299                 win.document.selection.createRange().pasteHTML(txt);
25300             } else {
25301                 // no firefox support
25302                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25303                 this.execCmd('InsertHTML', txt);
25304             } 
25305             
25306             this.syncValue();
25307             
25308             this.deferFocus();
25309         }
25310     },
25311  // private
25312     mozKeyPress : function(e){
25313         if(e.ctrlKey){
25314             var c = e.getCharCode(), cmd;
25315           
25316             if(c > 0){
25317                 c = String.fromCharCode(c).toLowerCase();
25318                 switch(c){
25319                     case 'b':
25320                         cmd = 'bold';
25321                         break;
25322                     case 'i':
25323                         cmd = 'italic';
25324                         break;
25325                     
25326                     case 'u':
25327                         cmd = 'underline';
25328                         break;
25329                     
25330                     case 'v':
25331                         this.cleanUpPaste.defer(100, this);
25332                         return;
25333                         
25334                 }
25335                 if(cmd){
25336                     this.win.focus();
25337                     this.execCmd(cmd);
25338                     this.deferFocus();
25339                     e.preventDefault();
25340                 }
25341                 
25342             }
25343         }
25344     },
25345
25346     // private
25347     fixKeys : function(){ // load time branching for fastest keydown performance
25348         if(Roo.isIE){
25349             return function(e){
25350                 var k = e.getKey(), r;
25351                 if(k == e.TAB){
25352                     e.stopEvent();
25353                     r = this.doc.selection.createRange();
25354                     if(r){
25355                         r.collapse(true);
25356                         r.pasteHTML('&#160;&#160;&#160;&#160;');
25357                         this.deferFocus();
25358                     }
25359                     return;
25360                 }
25361                 
25362                 if(k == e.ENTER){
25363                     r = this.doc.selection.createRange();
25364                     if(r){
25365                         var target = r.parentElement();
25366                         if(!target || target.tagName.toLowerCase() != 'li'){
25367                             e.stopEvent();
25368                             r.pasteHTML('<br />');
25369                             r.collapse(false);
25370                             r.select();
25371                         }
25372                     }
25373                 }
25374                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25375                     this.cleanUpPaste.defer(100, this);
25376                     return;
25377                 }
25378                 
25379                 
25380             };
25381         }else if(Roo.isOpera){
25382             return function(e){
25383                 var k = e.getKey();
25384                 if(k == e.TAB){
25385                     e.stopEvent();
25386                     this.win.focus();
25387                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
25388                     this.deferFocus();
25389                 }
25390                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25391                     this.cleanUpPaste.defer(100, this);
25392                     return;
25393                 }
25394                 
25395             };
25396         }else if(Roo.isSafari){
25397             return function(e){
25398                 var k = e.getKey();
25399                 
25400                 if(k == e.TAB){
25401                     e.stopEvent();
25402                     this.execCmd('InsertText','\t');
25403                     this.deferFocus();
25404                     return;
25405                 }
25406                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25407                     this.cleanUpPaste.defer(100, this);
25408                     return;
25409                 }
25410                 
25411              };
25412         }
25413     }(),
25414     
25415     getAllAncestors: function()
25416     {
25417         var p = this.getSelectedNode();
25418         var a = [];
25419         if (!p) {
25420             a.push(p); // push blank onto stack..
25421             p = this.getParentElement();
25422         }
25423         
25424         
25425         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
25426             a.push(p);
25427             p = p.parentNode;
25428         }
25429         a.push(this.doc.body);
25430         return a;
25431     },
25432     lastSel : false,
25433     lastSelNode : false,
25434     
25435     
25436     getSelection : function() 
25437     {
25438         this.assignDocWin();
25439         return Roo.isIE ? this.doc.selection : this.win.getSelection();
25440     },
25441     
25442     getSelectedNode: function() 
25443     {
25444         // this may only work on Gecko!!!
25445         
25446         // should we cache this!!!!
25447         
25448         
25449         
25450          
25451         var range = this.createRange(this.getSelection()).cloneRange();
25452         
25453         if (Roo.isIE) {
25454             var parent = range.parentElement();
25455             while (true) {
25456                 var testRange = range.duplicate();
25457                 testRange.moveToElementText(parent);
25458                 if (testRange.inRange(range)) {
25459                     break;
25460                 }
25461                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
25462                     break;
25463                 }
25464                 parent = parent.parentElement;
25465             }
25466             return parent;
25467         }
25468         
25469         // is ancestor a text element.
25470         var ac =  range.commonAncestorContainer;
25471         if (ac.nodeType == 3) {
25472             ac = ac.parentNode;
25473         }
25474         
25475         var ar = ac.childNodes;
25476          
25477         var nodes = [];
25478         var other_nodes = [];
25479         var has_other_nodes = false;
25480         for (var i=0;i<ar.length;i++) {
25481             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
25482                 continue;
25483             }
25484             // fullly contained node.
25485             
25486             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
25487                 nodes.push(ar[i]);
25488                 continue;
25489             }
25490             
25491             // probably selected..
25492             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
25493                 other_nodes.push(ar[i]);
25494                 continue;
25495             }
25496             // outer..
25497             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
25498                 continue;
25499             }
25500             
25501             
25502             has_other_nodes = true;
25503         }
25504         if (!nodes.length && other_nodes.length) {
25505             nodes= other_nodes;
25506         }
25507         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
25508             return false;
25509         }
25510         
25511         return nodes[0];
25512     },
25513     createRange: function(sel)
25514     {
25515         // this has strange effects when using with 
25516         // top toolbar - not sure if it's a great idea.
25517         //this.editor.contentWindow.focus();
25518         if (typeof sel != "undefined") {
25519             try {
25520                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
25521             } catch(e) {
25522                 return this.doc.createRange();
25523             }
25524         } else {
25525             return this.doc.createRange();
25526         }
25527     },
25528     getParentElement: function()
25529     {
25530         
25531         this.assignDocWin();
25532         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
25533         
25534         var range = this.createRange(sel);
25535          
25536         try {
25537             var p = range.commonAncestorContainer;
25538             while (p.nodeType == 3) { // text node
25539                 p = p.parentNode;
25540             }
25541             return p;
25542         } catch (e) {
25543             return null;
25544         }
25545     
25546     },
25547     /***
25548      *
25549      * Range intersection.. the hard stuff...
25550      *  '-1' = before
25551      *  '0' = hits..
25552      *  '1' = after.
25553      *         [ -- selected range --- ]
25554      *   [fail]                        [fail]
25555      *
25556      *    basically..
25557      *      if end is before start or  hits it. fail.
25558      *      if start is after end or hits it fail.
25559      *
25560      *   if either hits (but other is outside. - then it's not 
25561      *   
25562      *    
25563      **/
25564     
25565     
25566     // @see http://www.thismuchiknow.co.uk/?p=64.
25567     rangeIntersectsNode : function(range, node)
25568     {
25569         var nodeRange = node.ownerDocument.createRange();
25570         try {
25571             nodeRange.selectNode(node);
25572         } catch (e) {
25573             nodeRange.selectNodeContents(node);
25574         }
25575     
25576         var rangeStartRange = range.cloneRange();
25577         rangeStartRange.collapse(true);
25578     
25579         var rangeEndRange = range.cloneRange();
25580         rangeEndRange.collapse(false);
25581     
25582         var nodeStartRange = nodeRange.cloneRange();
25583         nodeStartRange.collapse(true);
25584     
25585         var nodeEndRange = nodeRange.cloneRange();
25586         nodeEndRange.collapse(false);
25587     
25588         return rangeStartRange.compareBoundaryPoints(
25589                  Range.START_TO_START, nodeEndRange) == -1 &&
25590                rangeEndRange.compareBoundaryPoints(
25591                  Range.START_TO_START, nodeStartRange) == 1;
25592         
25593          
25594     },
25595     rangeCompareNode : function(range, node)
25596     {
25597         var nodeRange = node.ownerDocument.createRange();
25598         try {
25599             nodeRange.selectNode(node);
25600         } catch (e) {
25601             nodeRange.selectNodeContents(node);
25602         }
25603         
25604         
25605         range.collapse(true);
25606     
25607         nodeRange.collapse(true);
25608      
25609         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
25610         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
25611          
25612         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
25613         
25614         var nodeIsBefore   =  ss == 1;
25615         var nodeIsAfter    = ee == -1;
25616         
25617         if (nodeIsBefore && nodeIsAfter)
25618             return 0; // outer
25619         if (!nodeIsBefore && nodeIsAfter)
25620             return 1; //right trailed.
25621         
25622         if (nodeIsBefore && !nodeIsAfter)
25623             return 2;  // left trailed.
25624         // fully contined.
25625         return 3;
25626     },
25627
25628     // private? - in a new class?
25629     cleanUpPaste :  function()
25630     {
25631         // cleans up the whole document..
25632          Roo.log('cleanuppaste');
25633         this.cleanUpChildren(this.doc.body);
25634         var clean = this.cleanWordChars(this.doc.body.innerHTML);
25635         if (clean != this.doc.body.innerHTML) {
25636             this.doc.body.innerHTML = clean;
25637         }
25638         
25639     },
25640     
25641     cleanWordChars : function(input) {
25642         var he = Roo.form.HtmlEditor;
25643     
25644         var output = input;
25645         Roo.each(he.swapCodes, function(sw) { 
25646         
25647             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
25648             output = output.replace(swapper, sw[1]);
25649         });
25650         return output;
25651     },
25652     
25653     
25654     cleanUpChildren : function (n)
25655     {
25656         if (!n.childNodes.length) {
25657             return;
25658         }
25659         for (var i = n.childNodes.length-1; i > -1 ; i--) {
25660            this.cleanUpChild(n.childNodes[i]);
25661         }
25662     },
25663     
25664     
25665         
25666     
25667     cleanUpChild : function (node)
25668     {
25669         //console.log(node);
25670         if (node.nodeName == "#text") {
25671             // clean up silly Windows -- stuff?
25672             return; 
25673         }
25674         if (node.nodeName == "#comment") {
25675             node.parentNode.removeChild(node);
25676             // clean up silly Windows -- stuff?
25677             return; 
25678         }
25679         
25680         if (Roo.form.HtmlEditor.black.indexOf(node.tagName.toLowerCase()) > -1) {
25681             // remove node.
25682             node.parentNode.removeChild(node);
25683             return;
25684             
25685         }
25686         
25687         var remove_keep_children= Roo.form.HtmlEditor.remove.indexOf(node.tagName.toLowerCase()) > -1;
25688         
25689         // remove <a name=....> as rendering on yahoo mailer is bored with this.
25690         
25691         if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
25692             remove_keep_children = true;
25693         }
25694         
25695         if (remove_keep_children) {
25696             this.cleanUpChildren(node);
25697             // inserts everything just before this node...
25698             while (node.childNodes.length) {
25699                 var cn = node.childNodes[0];
25700                 node.removeChild(cn);
25701                 node.parentNode.insertBefore(cn, node);
25702             }
25703             node.parentNode.removeChild(node);
25704             return;
25705         }
25706         
25707         if (!node.attributes || !node.attributes.length) {
25708             this.cleanUpChildren(node);
25709             return;
25710         }
25711         
25712         function cleanAttr(n,v)
25713         {
25714             
25715             if (v.match(/^\./) || v.match(/^\//)) {
25716                 return;
25717             }
25718             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
25719                 return;
25720             }
25721             Roo.log("(REMOVE)"+ node.tagName +'.' + n + '=' + v);
25722             node.removeAttribute(n);
25723             
25724         }
25725         
25726         function cleanStyle(n,v)
25727         {
25728             if (v.match(/expression/)) { //XSS?? should we even bother..
25729                 node.removeAttribute(n);
25730                 return;
25731             }
25732             
25733             
25734             var parts = v.split(/;/);
25735             Roo.each(parts, function(p) {
25736                 p = p.replace(/\s+/g,'');
25737                 if (!p.length) {
25738                     return true;
25739                 }
25740                 var l = p.split(':').shift().replace(/\s+/g,'');
25741                 
25742                 // only allow 'c whitelisted system attributes'
25743                 if (Roo.form.HtmlEditor.cwhite.indexOf(l) < 0) {
25744                     Roo.log('(REMOVE)' + node.tagName +'.' + n + ':'+l + '=' + v);
25745                     node.removeAttribute(n);
25746                     return false;
25747                 }
25748                 return true;
25749             });
25750             
25751             
25752         }
25753         
25754         
25755         for (var i = node.attributes.length-1; i > -1 ; i--) {
25756             var a = node.attributes[i];
25757             //console.log(a);
25758             if (Roo.form.HtmlEditor.ablack.indexOf(a.name.toLowerCase()) > -1) {
25759                 node.removeAttribute(a.name);
25760                 return;
25761             }
25762             if (Roo.form.HtmlEditor.aclean.indexOf(a.name.toLowerCase()) > -1) {
25763                 cleanAttr(a.name,a.value); // fixme..
25764                 return;
25765             }
25766             if (a.name == 'style') {
25767                 cleanStyle(a.name,a.value);
25768             }
25769             /// clean up MS crap..
25770             // tecnically this should be a list of valid class'es..
25771             
25772             
25773             if (a.name == 'class') {
25774                 if (a.value.match(/^Mso/)) {
25775                     node.className = '';
25776                 }
25777                 
25778                 if (a.value.match(/body/)) {
25779                     node.className = '';
25780                 }
25781             }
25782             
25783             // style cleanup!?
25784             // class cleanup?
25785             
25786         }
25787         
25788         
25789         this.cleanUpChildren(node);
25790         
25791         
25792     }
25793     
25794     
25795     // hide stuff that is not compatible
25796     /**
25797      * @event blur
25798      * @hide
25799      */
25800     /**
25801      * @event change
25802      * @hide
25803      */
25804     /**
25805      * @event focus
25806      * @hide
25807      */
25808     /**
25809      * @event specialkey
25810      * @hide
25811      */
25812     /**
25813      * @cfg {String} fieldClass @hide
25814      */
25815     /**
25816      * @cfg {String} focusClass @hide
25817      */
25818     /**
25819      * @cfg {String} autoCreate @hide
25820      */
25821     /**
25822      * @cfg {String} inputType @hide
25823      */
25824     /**
25825      * @cfg {String} invalidClass @hide
25826      */
25827     /**
25828      * @cfg {String} invalidText @hide
25829      */
25830     /**
25831      * @cfg {String} msgFx @hide
25832      */
25833     /**
25834      * @cfg {String} validateOnBlur @hide
25835      */
25836 });
25837
25838 Roo.form.HtmlEditor.white = [
25839         'area', 'br', 'img', 'input', 'hr', 'wbr',
25840         
25841        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
25842        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
25843        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
25844        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
25845        'table',   'ul',         'xmp', 
25846        
25847        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
25848       'thead',   'tr', 
25849      
25850       'dir', 'menu', 'ol', 'ul', 'dl',
25851        
25852       'embed',  'object'
25853 ];
25854
25855
25856 Roo.form.HtmlEditor.black = [
25857     //    'embed',  'object', // enable - backend responsiblity to clean thiese
25858         'applet', // 
25859         'base',   'basefont', 'bgsound', 'blink',  'body', 
25860         'frame',  'frameset', 'head',    'html',   'ilayer', 
25861         'iframe', 'layer',  'link',     'meta',    'object',   
25862         'script', 'style' ,'title',  'xml' // clean later..
25863 ];
25864 Roo.form.HtmlEditor.clean = [
25865     'script', 'style', 'title', 'xml'
25866 ];
25867 Roo.form.HtmlEditor.remove = [
25868     'font'
25869 ];
25870 // attributes..
25871
25872 Roo.form.HtmlEditor.ablack = [
25873     'on'
25874 ];
25875     
25876 Roo.form.HtmlEditor.aclean = [ 
25877     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc'
25878 ];
25879
25880 // protocols..
25881 Roo.form.HtmlEditor.pwhite= [
25882         'http',  'https',  'mailto'
25883 ];
25884
25885 // white listed style attributes.
25886 Roo.form.HtmlEditor.cwhite= [
25887         'text-align',
25888         'font-size'
25889 ];
25890
25891
25892 Roo.form.HtmlEditor.swapCodes   =[ 
25893     [    8211, "--" ], 
25894     [    8212, "--" ], 
25895     [    8216,  "'" ],  
25896     [    8217, "'" ],  
25897     [    8220, '"' ],  
25898     [    8221, '"' ],  
25899     [    8226, "*" ],  
25900     [    8230, "..." ]
25901 ]; 
25902
25903     // <script type="text/javascript">
25904 /*
25905  * Based on
25906  * Ext JS Library 1.1.1
25907  * Copyright(c) 2006-2007, Ext JS, LLC.
25908  *  
25909  
25910  */
25911
25912 /**
25913  * @class Roo.form.HtmlEditorToolbar1
25914  * Basic Toolbar
25915  * 
25916  * Usage:
25917  *
25918  new Roo.form.HtmlEditor({
25919     ....
25920     toolbars : [
25921         new Roo.form.HtmlEditorToolbar1({
25922             disable : { fonts: 1 , format: 1, ..., ... , ...],
25923             btns : [ .... ]
25924         })
25925     }
25926      
25927  * 
25928  * @cfg {Object} disable List of elements to disable..
25929  * @cfg {Array} btns List of additional buttons.
25930  * 
25931  * 
25932  * NEEDS Extra CSS? 
25933  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
25934  */
25935  
25936 Roo.form.HtmlEditor.ToolbarStandard = function(config)
25937 {
25938     
25939     Roo.apply(this, config);
25940     
25941     // default disabled, based on 'good practice'..
25942     this.disable = this.disable || {};
25943     Roo.applyIf(this.disable, {
25944         fontSize : true,
25945         colors : true,
25946         specialElements : true
25947     });
25948     
25949     
25950     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
25951     // dont call parent... till later.
25952 }
25953
25954 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
25955     
25956     tb: false,
25957     
25958     rendered: false,
25959     
25960     editor : false,
25961     /**
25962      * @cfg {Object} disable  List of toolbar elements to disable
25963          
25964      */
25965     disable : false,
25966       /**
25967      * @cfg {Array} fontFamilies An array of available font families
25968      */
25969     fontFamilies : [
25970         'Arial',
25971         'Courier New',
25972         'Tahoma',
25973         'Times New Roman',
25974         'Verdana'
25975     ],
25976     
25977     specialChars : [
25978            "&#169;",
25979           "&#174;",     
25980           "&#8482;",    
25981           "&#163;" ,    
25982          // "&#8212;",    
25983           "&#8230;",    
25984           "&#247;" ,    
25985         //  "&#225;" ,     ?? a acute?
25986            "&#8364;"    , //Euro
25987        //   "&#8220;"    ,
25988         //  "&#8221;"    ,
25989         //  "&#8226;"    ,
25990           "&#176;"  //   , // degrees
25991
25992          // "&#233;"     , // e ecute
25993          // "&#250;"     , // u ecute?
25994     ],
25995     
25996     specialElements : [
25997         {
25998             text: "Insert Table",
25999             xtype: 'MenuItem',
26000             xns : Roo.Menu,
26001             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
26002                 
26003         },
26004         {    
26005             text: "Insert Image",
26006             xtype: 'MenuItem',
26007             xns : Roo.Menu,
26008             ihtml : '<img src="about:blank"/>'
26009             
26010         }
26011         
26012          
26013     ],
26014     
26015     
26016     inputElements : [ 
26017             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
26018             "input:submit", "input:button", "select", "textarea", "label" ],
26019     formats : [
26020         ["p"] ,  
26021         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
26022         ["pre"],[ "code"], 
26023         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"]
26024     ],
26025      /**
26026      * @cfg {String} defaultFont default font to use.
26027      */
26028     defaultFont: 'tahoma',
26029    
26030     fontSelect : false,
26031     
26032     
26033     formatCombo : false,
26034     
26035     init : function(editor)
26036     {
26037         this.editor = editor;
26038         
26039         
26040         var fid = editor.frameId;
26041         var etb = this;
26042         function btn(id, toggle, handler){
26043             var xid = fid + '-'+ id ;
26044             return {
26045                 id : xid,
26046                 cmd : id,
26047                 cls : 'x-btn-icon x-edit-'+id,
26048                 enableToggle:toggle !== false,
26049                 scope: editor, // was editor...
26050                 handler:handler||editor.relayBtnCmd,
26051                 clickEvent:'mousedown',
26052                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
26053                 tabIndex:-1
26054             };
26055         }
26056         
26057         
26058         
26059         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
26060         this.tb = tb;
26061          // stop form submits
26062         tb.el.on('click', function(e){
26063             e.preventDefault(); // what does this do?
26064         });
26065
26066         if(!this.disable.font && !Roo.isSafari){
26067             /* why no safari for fonts
26068             editor.fontSelect = tb.el.createChild({
26069                 tag:'select',
26070                 tabIndex: -1,
26071                 cls:'x-font-select',
26072                 html: editor.createFontOptions()
26073             });
26074             editor.fontSelect.on('change', function(){
26075                 var font = editor.fontSelect.dom.value;
26076                 editor.relayCmd('fontname', font);
26077                 editor.deferFocus();
26078             }, editor);
26079             tb.add(
26080                 editor.fontSelect.dom,
26081                 '-'
26082             );
26083             */
26084         };
26085         if(!this.disable.formats){
26086             this.formatCombo = new Roo.form.ComboBox({
26087                 store: new Roo.data.SimpleStore({
26088                     id : 'tag',
26089                     fields: ['tag'],
26090                     data : this.formats // from states.js
26091                 }),
26092                 blockFocus : true,
26093                 //autoCreate : {tag: "div",  size: "20"},
26094                 displayField:'tag',
26095                 typeAhead: false,
26096                 mode: 'local',
26097                 editable : false,
26098                 triggerAction: 'all',
26099                 emptyText:'Add tag',
26100                 selectOnFocus:true,
26101                 width:135,
26102                 listeners : {
26103                     'select': function(c, r, i) {
26104                         editor.insertTag(r.get('tag'));
26105                         editor.focus();
26106                     }
26107                 }
26108
26109             });
26110             tb.addField(this.formatCombo);
26111             
26112         }
26113         
26114         if(!this.disable.format){
26115             tb.add(
26116                 btn('bold'),
26117                 btn('italic'),
26118                 btn('underline')
26119             );
26120         };
26121         if(!this.disable.fontSize){
26122             tb.add(
26123                 '-',
26124                 
26125                 
26126                 btn('increasefontsize', false, editor.adjustFont),
26127                 btn('decreasefontsize', false, editor.adjustFont)
26128             );
26129         };
26130         
26131         
26132         if(!this.disable.colors){
26133             tb.add(
26134                 '-', {
26135                     id:editor.frameId +'-forecolor',
26136                     cls:'x-btn-icon x-edit-forecolor',
26137                     clickEvent:'mousedown',
26138                     tooltip: this.buttonTips['forecolor'] || undefined,
26139                     tabIndex:-1,
26140                     menu : new Roo.menu.ColorMenu({
26141                         allowReselect: true,
26142                         focus: Roo.emptyFn,
26143                         value:'000000',
26144                         plain:true,
26145                         selectHandler: function(cp, color){
26146                             editor.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
26147                             editor.deferFocus();
26148                         },
26149                         scope: editor,
26150                         clickEvent:'mousedown'
26151                     })
26152                 }, {
26153                     id:editor.frameId +'backcolor',
26154                     cls:'x-btn-icon x-edit-backcolor',
26155                     clickEvent:'mousedown',
26156                     tooltip: this.buttonTips['backcolor'] || undefined,
26157                     tabIndex:-1,
26158                     menu : new Roo.menu.ColorMenu({
26159                         focus: Roo.emptyFn,
26160                         value:'FFFFFF',
26161                         plain:true,
26162                         allowReselect: true,
26163                         selectHandler: function(cp, color){
26164                             if(Roo.isGecko){
26165                                 editor.execCmd('useCSS', false);
26166                                 editor.execCmd('hilitecolor', color);
26167                                 editor.execCmd('useCSS', true);
26168                                 editor.deferFocus();
26169                             }else{
26170                                 editor.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
26171                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
26172                                 editor.deferFocus();
26173                             }
26174                         },
26175                         scope:editor,
26176                         clickEvent:'mousedown'
26177                     })
26178                 }
26179             );
26180         };
26181         // now add all the items...
26182         
26183
26184         if(!this.disable.alignments){
26185             tb.add(
26186                 '-',
26187                 btn('justifyleft'),
26188                 btn('justifycenter'),
26189                 btn('justifyright')
26190             );
26191         };
26192
26193         //if(!Roo.isSafari){
26194             if(!this.disable.links){
26195                 tb.add(
26196                     '-',
26197                     btn('createlink', false, editor.createLink)    /// MOVE TO HERE?!!?!?!?!
26198                 );
26199             };
26200
26201             if(!this.disable.lists){
26202                 tb.add(
26203                     '-',
26204                     btn('insertorderedlist'),
26205                     btn('insertunorderedlist')
26206                 );
26207             }
26208             if(!this.disable.sourceEdit){
26209                 tb.add(
26210                     '-',
26211                     btn('sourceedit', true, function(btn){
26212                         this.toggleSourceEdit(btn.pressed);
26213                     })
26214                 );
26215             }
26216         //}
26217         
26218         var smenu = { };
26219         // special menu.. - needs to be tidied up..
26220         if (!this.disable.special) {
26221             smenu = {
26222                 text: "&#169;",
26223                 cls: 'x-edit-none',
26224                 
26225                 menu : {
26226                     items : []
26227                 }
26228             };
26229             for (var i =0; i < this.specialChars.length; i++) {
26230                 smenu.menu.items.push({
26231                     
26232                     html: this.specialChars[i],
26233                     handler: function(a,b) {
26234                         editor.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
26235                         //editor.insertAtCursor(a.html);
26236                         
26237                     },
26238                     tabIndex:-1
26239                 });
26240             }
26241             
26242             
26243             tb.add(smenu);
26244             
26245             
26246         }
26247          
26248         if (!this.disable.specialElements) {
26249             var semenu = {
26250                 text: "Other;",
26251                 cls: 'x-edit-none',
26252                 menu : {
26253                     items : []
26254                 }
26255             };
26256             for (var i =0; i < this.specialElements.length; i++) {
26257                 semenu.menu.items.push(
26258                     Roo.apply({ 
26259                         handler: function(a,b) {
26260                             editor.insertAtCursor(this.ihtml);
26261                         }
26262                     }, this.specialElements[i])
26263                 );
26264                     
26265             }
26266             
26267             tb.add(semenu);
26268             
26269             
26270         }
26271          
26272         
26273         if (this.btns) {
26274             for(var i =0; i< this.btns.length;i++) {
26275                 var b = this.btns[i];
26276                 b.cls =  'x-edit-none';
26277                 b.scope = editor;
26278                 tb.add(b);
26279             }
26280         
26281         }
26282         
26283         
26284         
26285         // disable everything...
26286         
26287         this.tb.items.each(function(item){
26288            if(item.id != editor.frameId+ '-sourceedit'){
26289                 item.disable();
26290             }
26291         });
26292         this.rendered = true;
26293         
26294         // the all the btns;
26295         editor.on('editorevent', this.updateToolbar, this);
26296         // other toolbars need to implement this..
26297         //editor.on('editmodechange', this.updateToolbar, this);
26298     },
26299     
26300     
26301     
26302     /**
26303      * Protected method that will not generally be called directly. It triggers
26304      * a toolbar update by reading the markup state of the current selection in the editor.
26305      */
26306     updateToolbar: function(){
26307
26308         if(!this.editor.activated){
26309             this.editor.onFirstFocus();
26310             return;
26311         }
26312
26313         var btns = this.tb.items.map, 
26314             doc = this.editor.doc,
26315             frameId = this.editor.frameId;
26316
26317         if(!this.disable.font && !Roo.isSafari){
26318             /*
26319             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
26320             if(name != this.fontSelect.dom.value){
26321                 this.fontSelect.dom.value = name;
26322             }
26323             */
26324         }
26325         if(!this.disable.format){
26326             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
26327             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
26328             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
26329         }
26330         if(!this.disable.alignments){
26331             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
26332             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
26333             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
26334         }
26335         if(!Roo.isSafari && !this.disable.lists){
26336             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
26337             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
26338         }
26339         
26340         var ans = this.editor.getAllAncestors();
26341         if (this.formatCombo) {
26342             
26343             
26344             var store = this.formatCombo.store;
26345             this.formatCombo.setValue("");
26346             for (var i =0; i < ans.length;i++) {
26347                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
26348                     // select it..
26349                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
26350                     break;
26351                 }
26352             }
26353         }
26354         
26355         
26356         
26357         // hides menus... - so this cant be on a menu...
26358         Roo.menu.MenuMgr.hideAll();
26359
26360         //this.editorsyncValue();
26361     },
26362    
26363     
26364     createFontOptions : function(){
26365         var buf = [], fs = this.fontFamilies, ff, lc;
26366         for(var i = 0, len = fs.length; i< len; i++){
26367             ff = fs[i];
26368             lc = ff.toLowerCase();
26369             buf.push(
26370                 '<option value="',lc,'" style="font-family:',ff,';"',
26371                     (this.defaultFont == lc ? ' selected="true">' : '>'),
26372                     ff,
26373                 '</option>'
26374             );
26375         }
26376         return buf.join('');
26377     },
26378     
26379     toggleSourceEdit : function(sourceEditMode){
26380         if(sourceEditMode === undefined){
26381             sourceEditMode = !this.sourceEditMode;
26382         }
26383         this.sourceEditMode = sourceEditMode === true;
26384         var btn = this.tb.items.get(this.editor.frameId +'-sourceedit');
26385         // just toggle the button?
26386         if(btn.pressed !== this.editor.sourceEditMode){
26387             btn.toggle(this.editor.sourceEditMode);
26388             return;
26389         }
26390         
26391         if(this.sourceEditMode){
26392             this.tb.items.each(function(item){
26393                 if(item.cmd != 'sourceedit'){
26394                     item.disable();
26395                 }
26396             });
26397           
26398         }else{
26399             if(this.initialized){
26400                 this.tb.items.each(function(item){
26401                     item.enable();
26402                 });
26403             }
26404             
26405         }
26406         // tell the editor that it's been pressed..
26407         this.editor.toggleSourceEdit(sourceEditMode);
26408        
26409     },
26410      /**
26411      * Object collection of toolbar tooltips for the buttons in the editor. The key
26412      * is the command id associated with that button and the value is a valid QuickTips object.
26413      * For example:
26414 <pre><code>
26415 {
26416     bold : {
26417         title: 'Bold (Ctrl+B)',
26418         text: 'Make the selected text bold.',
26419         cls: 'x-html-editor-tip'
26420     },
26421     italic : {
26422         title: 'Italic (Ctrl+I)',
26423         text: 'Make the selected text italic.',
26424         cls: 'x-html-editor-tip'
26425     },
26426     ...
26427 </code></pre>
26428     * @type Object
26429      */
26430     buttonTips : {
26431         bold : {
26432             title: 'Bold (Ctrl+B)',
26433             text: 'Make the selected text bold.',
26434             cls: 'x-html-editor-tip'
26435         },
26436         italic : {
26437             title: 'Italic (Ctrl+I)',
26438             text: 'Make the selected text italic.',
26439             cls: 'x-html-editor-tip'
26440         },
26441         underline : {
26442             title: 'Underline (Ctrl+U)',
26443             text: 'Underline the selected text.',
26444             cls: 'x-html-editor-tip'
26445         },
26446         increasefontsize : {
26447             title: 'Grow Text',
26448             text: 'Increase the font size.',
26449             cls: 'x-html-editor-tip'
26450         },
26451         decreasefontsize : {
26452             title: 'Shrink Text',
26453             text: 'Decrease the font size.',
26454             cls: 'x-html-editor-tip'
26455         },
26456         backcolor : {
26457             title: 'Text Highlight Color',
26458             text: 'Change the background color of the selected text.',
26459             cls: 'x-html-editor-tip'
26460         },
26461         forecolor : {
26462             title: 'Font Color',
26463             text: 'Change the color of the selected text.',
26464             cls: 'x-html-editor-tip'
26465         },
26466         justifyleft : {
26467             title: 'Align Text Left',
26468             text: 'Align text to the left.',
26469             cls: 'x-html-editor-tip'
26470         },
26471         justifycenter : {
26472             title: 'Center Text',
26473             text: 'Center text in the editor.',
26474             cls: 'x-html-editor-tip'
26475         },
26476         justifyright : {
26477             title: 'Align Text Right',
26478             text: 'Align text to the right.',
26479             cls: 'x-html-editor-tip'
26480         },
26481         insertunorderedlist : {
26482             title: 'Bullet List',
26483             text: 'Start a bulleted list.',
26484             cls: 'x-html-editor-tip'
26485         },
26486         insertorderedlist : {
26487             title: 'Numbered List',
26488             text: 'Start a numbered list.',
26489             cls: 'x-html-editor-tip'
26490         },
26491         createlink : {
26492             title: 'Hyperlink',
26493             text: 'Make the selected text a hyperlink.',
26494             cls: 'x-html-editor-tip'
26495         },
26496         sourceedit : {
26497             title: 'Source Edit',
26498             text: 'Switch to source editing mode.',
26499             cls: 'x-html-editor-tip'
26500         }
26501     },
26502     // private
26503     onDestroy : function(){
26504         if(this.rendered){
26505             
26506             this.tb.items.each(function(item){
26507                 if(item.menu){
26508                     item.menu.removeAll();
26509                     if(item.menu.el){
26510                         item.menu.el.destroy();
26511                     }
26512                 }
26513                 item.destroy();
26514             });
26515              
26516         }
26517     },
26518     onFirstFocus: function() {
26519         this.tb.items.each(function(item){
26520            item.enable();
26521         });
26522     }
26523 });
26524
26525
26526
26527
26528 // <script type="text/javascript">
26529 /*
26530  * Based on
26531  * Ext JS Library 1.1.1
26532  * Copyright(c) 2006-2007, Ext JS, LLC.
26533  *  
26534  
26535  */
26536
26537  
26538 /**
26539  * @class Roo.form.HtmlEditor.ToolbarContext
26540  * Context Toolbar
26541  * 
26542  * Usage:
26543  *
26544  new Roo.form.HtmlEditor({
26545     ....
26546     toolbars : [
26547         { xtype: 'ToolbarStandard', styles : {} }
26548         { xtype: 'ToolbarContext', disable : {} }
26549     ]
26550 })
26551
26552      
26553  * 
26554  * @config : {Object} disable List of elements to disable.. (not done yet.)
26555  * @config : {Object} styles  Map of styles available.
26556  * 
26557  */
26558
26559 Roo.form.HtmlEditor.ToolbarContext = function(config)
26560 {
26561     
26562     Roo.apply(this, config);
26563     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26564     // dont call parent... till later.
26565     this.styles = this.styles || {};
26566 }
26567 Roo.form.HtmlEditor.ToolbarContext.types = {
26568     'IMG' : {
26569         width : {
26570             title: "Width",
26571             width: 40
26572         },
26573         height:  {
26574             title: "Height",
26575             width: 40
26576         },
26577         align: {
26578             title: "Align",
26579             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
26580             width : 80
26581             
26582         },
26583         border: {
26584             title: "Border",
26585             width: 40
26586         },
26587         alt: {
26588             title: "Alt",
26589             width: 120
26590         },
26591         src : {
26592             title: "Src",
26593             width: 220
26594         }
26595         
26596     },
26597     'A' : {
26598         name : {
26599             title: "Name",
26600             width: 50
26601         },
26602         href:  {
26603             title: "Href",
26604             width: 220
26605         } // border?
26606         
26607     },
26608     'TABLE' : {
26609         rows : {
26610             title: "Rows",
26611             width: 20
26612         },
26613         cols : {
26614             title: "Cols",
26615             width: 20
26616         },
26617         width : {
26618             title: "Width",
26619             width: 40
26620         },
26621         height : {
26622             title: "Height",
26623             width: 40
26624         },
26625         border : {
26626             title: "Border",
26627             width: 20
26628         }
26629     },
26630     'TD' : {
26631         width : {
26632             title: "Width",
26633             width: 40
26634         },
26635         height : {
26636             title: "Height",
26637             width: 40
26638         },   
26639         align: {
26640             title: "Align",
26641             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
26642             width: 80
26643         },
26644         valign: {
26645             title: "Valign",
26646             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
26647             width: 80
26648         },
26649         colspan: {
26650             title: "Colspan",
26651             width: 20
26652             
26653         }
26654     },
26655     'INPUT' : {
26656         name : {
26657             title: "name",
26658             width: 120
26659         },
26660         value : {
26661             title: "Value",
26662             width: 120
26663         },
26664         width : {
26665             title: "Width",
26666             width: 40
26667         }
26668     },
26669     'LABEL' : {
26670         'for' : {
26671             title: "For",
26672             width: 120
26673         }
26674     },
26675     'TEXTAREA' : {
26676           name : {
26677             title: "name",
26678             width: 120
26679         },
26680         rows : {
26681             title: "Rows",
26682             width: 20
26683         },
26684         cols : {
26685             title: "Cols",
26686             width: 20
26687         }
26688     },
26689     'SELECT' : {
26690         name : {
26691             title: "name",
26692             width: 120
26693         },
26694         selectoptions : {
26695             title: "Options",
26696             width: 200
26697         }
26698     },
26699     
26700     // should we really allow this??
26701     // should this just be 
26702     'BODY' : {
26703         title : {
26704             title: "title",
26705             width: 200,
26706             disabled : true
26707         }
26708     },
26709     '*' : {
26710         // empty..
26711     }
26712 };
26713
26714
26715
26716 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
26717     
26718     tb: false,
26719     
26720     rendered: false,
26721     
26722     editor : false,
26723     /**
26724      * @cfg {Object} disable  List of toolbar elements to disable
26725          
26726      */
26727     disable : false,
26728     /**
26729      * @cfg {Object} styles List of styles 
26730      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
26731      *
26732      * These must be defined in the page, so they get rendered correctly..
26733      * .headline { }
26734      * TD.underline { }
26735      * 
26736      */
26737     styles : false,
26738     
26739     
26740     
26741     toolbars : false,
26742     
26743     init : function(editor)
26744     {
26745         this.editor = editor;
26746         
26747         
26748         var fid = editor.frameId;
26749         var etb = this;
26750         function btn(id, toggle, handler){
26751             var xid = fid + '-'+ id ;
26752             return {
26753                 id : xid,
26754                 cmd : id,
26755                 cls : 'x-btn-icon x-edit-'+id,
26756                 enableToggle:toggle !== false,
26757                 scope: editor, // was editor...
26758                 handler:handler||editor.relayBtnCmd,
26759                 clickEvent:'mousedown',
26760                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
26761                 tabIndex:-1
26762             };
26763         }
26764         // create a new element.
26765         var wdiv = editor.wrap.createChild({
26766                 tag: 'div'
26767             }, editor.wrap.dom.firstChild.nextSibling, true);
26768         
26769         // can we do this more than once??
26770         
26771          // stop form submits
26772       
26773  
26774         // disable everything...
26775         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
26776         this.toolbars = {};
26777            
26778         for (var i in  ty) {
26779           
26780             this.toolbars[i] = this.buildToolbar(ty[i],i);
26781         }
26782         this.tb = this.toolbars.BODY;
26783         this.tb.el.show();
26784         this.buildFooter();
26785         this.footer.show();
26786         editor.on('hide', function( ) { this.footer.hide() }, this);
26787         editor.on('show', function( ) { this.footer.show() }, this);
26788         
26789          
26790         this.rendered = true;
26791         
26792         // the all the btns;
26793         editor.on('editorevent', this.updateToolbar, this);
26794         // other toolbars need to implement this..
26795         //editor.on('editmodechange', this.updateToolbar, this);
26796     },
26797     
26798     
26799     
26800     /**
26801      * Protected method that will not generally be called directly. It triggers
26802      * a toolbar update by reading the markup state of the current selection in the editor.
26803      */
26804     updateToolbar: function(editor,ev,sel){
26805
26806         //Roo.log(ev);
26807         // capture mouse up - this is handy for selecting images..
26808         // perhaps should go somewhere else...
26809         if(!this.editor.activated){
26810              this.editor.onFirstFocus();
26811             return;
26812         }
26813         
26814         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
26815         // selectNode - might want to handle IE?
26816         if (ev &&
26817             (ev.type == 'mouseup' || ev.type == 'click' ) &&
26818             ev.target && ev.target.tagName == 'IMG') {
26819             // they have click on an image...
26820             // let's see if we can change the selection...
26821             sel = ev.target;
26822          
26823               var nodeRange = sel.ownerDocument.createRange();
26824             try {
26825                 nodeRange.selectNode(sel);
26826             } catch (e) {
26827                 nodeRange.selectNodeContents(sel);
26828             }
26829             //nodeRange.collapse(true);
26830             var s = editor.win.getSelection();
26831             s.removeAllRanges();
26832             s.addRange(nodeRange);
26833         }  
26834         
26835       
26836         var updateFooter = sel ? false : true;
26837         
26838         
26839         var ans = this.editor.getAllAncestors();
26840         
26841         // pick
26842         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
26843         
26844         if (!sel) { 
26845             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editor.doc.body;
26846             sel = sel ? sel : this.editor.doc.body;
26847             sel = sel.tagName.length ? sel : this.editor.doc.body;
26848             
26849         }
26850         // pick a menu that exists..
26851         var tn = sel.tagName.toUpperCase();
26852         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
26853         
26854         tn = sel.tagName.toUpperCase();
26855         
26856         var lastSel = this.tb.selectedNode
26857         
26858         this.tb.selectedNode = sel;
26859         
26860         // if current menu does not match..
26861         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode)) {
26862                 
26863             this.tb.el.hide();
26864             ///console.log("show: " + tn);
26865             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
26866             this.tb.el.show();
26867             // update name
26868             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
26869             
26870             
26871             // update attributes
26872             if (this.tb.fields) {
26873                 this.tb.fields.each(function(e) {
26874                    e.setValue(sel.getAttribute(e.attrname));
26875                 });
26876             }
26877             
26878             var hasStyles = false;
26879             for(var i in this.styles) {
26880                 hasStyles = true;
26881                 break;
26882             }
26883             
26884             // update styles
26885             if (hasStyles) { 
26886                 var st = this.tb.fields.item(0);
26887                 
26888                 st.store.removeAll();
26889                
26890                 
26891                 var cn = sel.className.split(/\s+/);
26892                 
26893                 var avs = [];
26894                 if (this.styles['*']) {
26895                     
26896                     Roo.each(this.styles['*'], function(v) {
26897                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
26898                     });
26899                 }
26900                 if (this.styles[tn]) { 
26901                     Roo.each(this.styles[tn], function(v) {
26902                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
26903                     });
26904                 }
26905                 
26906                 st.store.loadData(avs);
26907                 st.collapse();
26908                 st.setValue(cn);
26909             }
26910             // flag our selected Node.
26911             this.tb.selectedNode = sel;
26912            
26913            
26914             Roo.menu.MenuMgr.hideAll();
26915
26916         }
26917         
26918         if (!updateFooter) {
26919             return;
26920         }
26921         // update the footer
26922         //
26923         var html = '';
26924         
26925         this.footerEls = ans.reverse();
26926         Roo.each(this.footerEls, function(a,i) {
26927             if (!a) { return; }
26928             html += html.length ? ' &gt; '  :  '';
26929             
26930             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
26931             
26932         });
26933        
26934         // 
26935         var sz = this.footDisp.up('td').getSize();
26936         this.footDisp.dom.style.width = (sz.width -10) + 'px';
26937         this.footDisp.dom.style.marginLeft = '5px';
26938         
26939         this.footDisp.dom.style.overflow = 'hidden';
26940         
26941         this.footDisp.dom.innerHTML = html;
26942             
26943         //this.editorsyncValue();
26944     },
26945    
26946        
26947     // private
26948     onDestroy : function(){
26949         if(this.rendered){
26950             
26951             this.tb.items.each(function(item){
26952                 if(item.menu){
26953                     item.menu.removeAll();
26954                     if(item.menu.el){
26955                         item.menu.el.destroy();
26956                     }
26957                 }
26958                 item.destroy();
26959             });
26960              
26961         }
26962     },
26963     onFirstFocus: function() {
26964         // need to do this for all the toolbars..
26965         this.tb.items.each(function(item){
26966            item.enable();
26967         });
26968     },
26969     buildToolbar: function(tlist, nm)
26970     {
26971         var editor = this.editor;
26972          // create a new element.
26973         var wdiv = editor.wrap.createChild({
26974                 tag: 'div'
26975             }, editor.wrap.dom.firstChild.nextSibling, true);
26976         
26977        
26978         var tb = new Roo.Toolbar(wdiv);
26979         // add the name..
26980         
26981         tb.add(nm+ ":&nbsp;");
26982         
26983         var styles = [];
26984         for(var i in this.styles) {
26985             styles.push(i);
26986         }
26987         
26988         // styles...
26989         if (styles && styles.length) {
26990             
26991             // this needs a multi-select checkbox...
26992             tb.addField( new Roo.form.ComboBox({
26993                 store: new Roo.data.SimpleStore({
26994                     id : 'val',
26995                     fields: ['val', 'selected'],
26996                     data : [] 
26997                 }),
26998                 name : '-roo-edit-className',
26999                 attrname : 'className',
27000                 displayField:'val',
27001                 typeAhead: false,
27002                 mode: 'local',
27003                 editable : false,
27004                 triggerAction: 'all',
27005                 emptyText:'Select Style',
27006                 selectOnFocus:true,
27007                 width: 130,
27008                 listeners : {
27009                     'select': function(c, r, i) {
27010                         // initial support only for on class per el..
27011                         tb.selectedNode.className =  r ? r.get('val') : '';
27012                         editor.syncValue();
27013                     }
27014                 }
27015     
27016             }));
27017         }
27018             
27019         
27020         
27021         for (var i in tlist) {
27022             
27023             var item = tlist[i];
27024             tb.add(item.title + ":&nbsp;");
27025             
27026             
27027             
27028             
27029             if (item.opts) {
27030                 // opts == pulldown..
27031                 tb.addField( new Roo.form.ComboBox({
27032                     store: new Roo.data.SimpleStore({
27033                         id : 'val',
27034                         fields: ['val'],
27035                         data : item.opts  
27036                     }),
27037                     name : '-roo-edit-' + i,
27038                     attrname : i,
27039                     displayField:'val',
27040                     typeAhead: false,
27041                     mode: 'local',
27042                     editable : false,
27043                     triggerAction: 'all',
27044                     emptyText:'Select',
27045                     selectOnFocus:true,
27046                     width: item.width ? item.width  : 130,
27047                     listeners : {
27048                         'select': function(c, r, i) {
27049                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
27050                         }
27051                     }
27052
27053                 }));
27054                 continue;
27055                     
27056                  
27057                 
27058                 tb.addField( new Roo.form.TextField({
27059                     name: i,
27060                     width: 100,
27061                     //allowBlank:false,
27062                     value: ''
27063                 }));
27064                 continue;
27065             }
27066             tb.addField( new Roo.form.TextField({
27067                 name: '-roo-edit-' + i,
27068                 attrname : i,
27069                 
27070                 width: item.width,
27071                 //allowBlank:true,
27072                 value: '',
27073                 listeners: {
27074                     'change' : function(f, nv, ov) {
27075                         tb.selectedNode.setAttribute(f.attrname, nv);
27076                     }
27077                 }
27078             }));
27079              
27080         }
27081         tb.el.on('click', function(e){
27082             e.preventDefault(); // what does this do?
27083         });
27084         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
27085         tb.el.hide();
27086         tb.name = nm;
27087         // dont need to disable them... as they will get hidden
27088         return tb;
27089          
27090         
27091     },
27092     buildFooter : function()
27093     {
27094         
27095         var fel = this.editor.wrap.createChild();
27096         this.footer = new Roo.Toolbar(fel);
27097         // toolbar has scrolly on left / right?
27098         var footDisp= new Roo.Toolbar.Fill();
27099         var _t = this;
27100         this.footer.add(
27101             {
27102                 text : '&lt;',
27103                 xtype: 'Button',
27104                 handler : function() {
27105                     _t.footDisp.scrollTo('left',0,true)
27106                 }
27107             }
27108         );
27109         this.footer.add( footDisp );
27110         this.footer.add( 
27111             {
27112                 text : '&gt;',
27113                 xtype: 'Button',
27114                 handler : function() {
27115                     // no animation..
27116                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
27117                 }
27118             }
27119         );
27120         var fel = Roo.get(footDisp.el);
27121         fel.addClass('x-editor-context');
27122         this.footDispWrap = fel; 
27123         this.footDispWrap.overflow  = 'hidden';
27124         
27125         this.footDisp = fel.createChild();
27126         this.footDispWrap.on('click', this.onContextClick, this)
27127         
27128         
27129     },
27130     onContextClick : function (ev,dom)
27131     {
27132         ev.preventDefault();
27133         var  cn = dom.className;
27134         Roo.log(cn);
27135         if (!cn.match(/x-ed-loc-/)) {
27136             return;
27137         }
27138         var n = cn.split('-').pop();
27139         var ans = this.footerEls;
27140         var sel = ans[n];
27141         
27142          // pick
27143         var range = this.editor.createRange();
27144         
27145         range.selectNodeContents(sel);
27146         //range.selectNode(sel);
27147         
27148         
27149         var selection = this.editor.getSelection();
27150         selection.removeAllRanges();
27151         selection.addRange(range);
27152         
27153         
27154         
27155         this.updateToolbar(null, null, sel);
27156         
27157         
27158     }
27159     
27160     
27161     
27162     
27163     
27164 });
27165
27166
27167
27168
27169
27170 /*
27171  * Based on:
27172  * Ext JS Library 1.1.1
27173  * Copyright(c) 2006-2007, Ext JS, LLC.
27174  *
27175  * Originally Released Under LGPL - original licence link has changed is not relivant.
27176  *
27177  * Fork - LGPL
27178  * <script type="text/javascript">
27179  */
27180  
27181 /**
27182  * @class Roo.form.BasicForm
27183  * @extends Roo.util.Observable
27184  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
27185  * @constructor
27186  * @param {String/HTMLElement/Roo.Element} el The form element or its id
27187  * @param {Object} config Configuration options
27188  */
27189 Roo.form.BasicForm = function(el, config){
27190     this.allItems = [];
27191     this.childForms = [];
27192     Roo.apply(this, config);
27193     /*
27194      * The Roo.form.Field items in this form.
27195      * @type MixedCollection
27196      */
27197      
27198      
27199     this.items = new Roo.util.MixedCollection(false, function(o){
27200         return o.id || (o.id = Roo.id());
27201     });
27202     this.addEvents({
27203         /**
27204          * @event beforeaction
27205          * Fires before any action is performed. Return false to cancel the action.
27206          * @param {Form} this
27207          * @param {Action} action The action to be performed
27208          */
27209         beforeaction: true,
27210         /**
27211          * @event actionfailed
27212          * Fires when an action fails.
27213          * @param {Form} this
27214          * @param {Action} action The action that failed
27215          */
27216         actionfailed : true,
27217         /**
27218          * @event actioncomplete
27219          * Fires when an action is completed.
27220          * @param {Form} this
27221          * @param {Action} action The action that completed
27222          */
27223         actioncomplete : true
27224     });
27225     if(el){
27226         this.initEl(el);
27227     }
27228     Roo.form.BasicForm.superclass.constructor.call(this);
27229 };
27230
27231 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
27232     /**
27233      * @cfg {String} method
27234      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
27235      */
27236     /**
27237      * @cfg {DataReader} reader
27238      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
27239      * This is optional as there is built-in support for processing JSON.
27240      */
27241     /**
27242      * @cfg {DataReader} errorReader
27243      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
27244      * This is completely optional as there is built-in support for processing JSON.
27245      */
27246     /**
27247      * @cfg {String} url
27248      * The URL to use for form actions if one isn't supplied in the action options.
27249      */
27250     /**
27251      * @cfg {Boolean} fileUpload
27252      * Set to true if this form is a file upload.
27253      */
27254      
27255     /**
27256      * @cfg {Object} baseParams
27257      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
27258      */
27259      /**
27260      
27261     /**
27262      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
27263      */
27264     timeout: 30,
27265
27266     // private
27267     activeAction : null,
27268
27269     /**
27270      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
27271      * or setValues() data instead of when the form was first created.
27272      */
27273     trackResetOnLoad : false,
27274     
27275     
27276     /**
27277      * childForms - used for multi-tab forms
27278      * @type {Array}
27279      */
27280     childForms : false,
27281     
27282     /**
27283      * allItems - full list of fields.
27284      * @type {Array}
27285      */
27286     allItems : false,
27287     
27288     /**
27289      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
27290      * element by passing it or its id or mask the form itself by passing in true.
27291      * @type Mixed
27292      */
27293     waitMsgTarget : false,
27294
27295     // private
27296     initEl : function(el){
27297         this.el = Roo.get(el);
27298         this.id = this.el.id || Roo.id();
27299         this.el.on('submit', this.onSubmit, this);
27300         this.el.addClass('x-form');
27301     },
27302
27303     // private
27304     onSubmit : function(e){
27305         e.stopEvent();
27306     },
27307
27308     /**
27309      * Returns true if client-side validation on the form is successful.
27310      * @return Boolean
27311      */
27312     isValid : function(){
27313         var valid = true;
27314         this.items.each(function(f){
27315            if(!f.validate()){
27316                valid = false;
27317            }
27318         });
27319         return valid;
27320     },
27321
27322     /**
27323      * Returns true if any fields in this form have changed since their original load.
27324      * @return Boolean
27325      */
27326     isDirty : function(){
27327         var dirty = false;
27328         this.items.each(function(f){
27329            if(f.isDirty()){
27330                dirty = true;
27331                return false;
27332            }
27333         });
27334         return dirty;
27335     },
27336
27337     /**
27338      * Performs a predefined action (submit or load) or custom actions you define on this form.
27339      * @param {String} actionName The name of the action type
27340      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
27341      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
27342      * accept other config options):
27343      * <pre>
27344 Property          Type             Description
27345 ----------------  ---------------  ----------------------------------------------------------------------------------
27346 url               String           The url for the action (defaults to the form's url)
27347 method            String           The form method to use (defaults to the form's method, or POST if not defined)
27348 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
27349 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
27350                                    validate the form on the client (defaults to false)
27351      * </pre>
27352      * @return {BasicForm} this
27353      */
27354     doAction : function(action, options){
27355         if(typeof action == 'string'){
27356             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
27357         }
27358         if(this.fireEvent('beforeaction', this, action) !== false){
27359             this.beforeAction(action);
27360             action.run.defer(100, action);
27361         }
27362         return this;
27363     },
27364
27365     /**
27366      * Shortcut to do a submit action.
27367      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27368      * @return {BasicForm} this
27369      */
27370     submit : function(options){
27371         this.doAction('submit', options);
27372         return this;
27373     },
27374
27375     /**
27376      * Shortcut to do a load action.
27377      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27378      * @return {BasicForm} this
27379      */
27380     load : function(options){
27381         this.doAction('load', options);
27382         return this;
27383     },
27384
27385     /**
27386      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
27387      * @param {Record} record The record to edit
27388      * @return {BasicForm} this
27389      */
27390     updateRecord : function(record){
27391         record.beginEdit();
27392         var fs = record.fields;
27393         fs.each(function(f){
27394             var field = this.findField(f.name);
27395             if(field){
27396                 record.set(f.name, field.getValue());
27397             }
27398         }, this);
27399         record.endEdit();
27400         return this;
27401     },
27402
27403     /**
27404      * Loads an Roo.data.Record into this form.
27405      * @param {Record} record The record to load
27406      * @return {BasicForm} this
27407      */
27408     loadRecord : function(record){
27409         this.setValues(record.data);
27410         return this;
27411     },
27412
27413     // private
27414     beforeAction : function(action){
27415         var o = action.options;
27416         
27417        
27418         if(this.waitMsgTarget === true){
27419             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
27420         }else if(this.waitMsgTarget){
27421             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
27422             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
27423         }else {
27424             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
27425         }
27426          
27427     },
27428
27429     // private
27430     afterAction : function(action, success){
27431         this.activeAction = null;
27432         var o = action.options;
27433         
27434         if(this.waitMsgTarget === true){
27435             this.el.unmask();
27436         }else if(this.waitMsgTarget){
27437             this.waitMsgTarget.unmask();
27438         }else{
27439             Roo.MessageBox.updateProgress(1);
27440             Roo.MessageBox.hide();
27441         }
27442          
27443         if(success){
27444             if(o.reset){
27445                 this.reset();
27446             }
27447             Roo.callback(o.success, o.scope, [this, action]);
27448             this.fireEvent('actioncomplete', this, action);
27449             
27450         }else{
27451             
27452             // failure condition..
27453             // we have a scenario where updates need confirming.
27454             // eg. if a locking scenario exists..
27455             // we look for { errors : { needs_confirm : true }} in the response.
27456             if (
27457                 (typeof(action.result) != 'undefined')  &&
27458                 (typeof(action.result.errors) != 'undefined')  &&
27459                 (typeof(action.result.errors.needs_confirm) != 'undefined')
27460            ){
27461                 var _t = this;
27462                 Roo.MessageBox.confirm(
27463                     "Change requires confirmation",
27464                     action.result.errorMsg,
27465                     function(r) {
27466                         if (r != 'yes') {
27467                             return;
27468                         }
27469                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
27470                     }
27471                     
27472                 );
27473                 
27474                 
27475                 
27476                 return;
27477             }
27478             
27479             Roo.callback(o.failure, o.scope, [this, action]);
27480             // show an error message if no failed handler is set..
27481             if (!this.hasListener('actionfailed')) {
27482                 Roo.MessageBox.alert("Error",
27483                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
27484                         action.result.errorMsg :
27485                         "Saving Failed, please check your entries or try again"
27486                 );
27487             }
27488             
27489             this.fireEvent('actionfailed', this, action);
27490         }
27491         
27492     },
27493
27494     /**
27495      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
27496      * @param {String} id The value to search for
27497      * @return Field
27498      */
27499     findField : function(id){
27500         var field = this.items.get(id);
27501         if(!field){
27502             this.items.each(function(f){
27503                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
27504                     field = f;
27505                     return false;
27506                 }
27507             });
27508         }
27509         return field || null;
27510     },
27511
27512     /**
27513      * Add a secondary form to this one, 
27514      * Used to provide tabbed forms. One form is primary, with hidden values 
27515      * which mirror the elements from the other forms.
27516      * 
27517      * @param {Roo.form.Form} form to add.
27518      * 
27519      */
27520     addForm : function(form)
27521     {
27522        
27523         if (this.childForms.indexOf(form) > -1) {
27524             // already added..
27525             return;
27526         }
27527         this.childForms.push(form);
27528         var n = '';
27529         Roo.each(form.allItems, function (fe) {
27530             
27531             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
27532             if (this.findField(n)) { // already added..
27533                 return;
27534             }
27535             var add = new Roo.form.Hidden({
27536                 name : n
27537             });
27538             add.render(this.el);
27539             
27540             this.add( add );
27541         }, this);
27542         
27543     },
27544     /**
27545      * Mark fields in this form invalid in bulk.
27546      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
27547      * @return {BasicForm} this
27548      */
27549     markInvalid : function(errors){
27550         if(errors instanceof Array){
27551             for(var i = 0, len = errors.length; i < len; i++){
27552                 var fieldError = errors[i];
27553                 var f = this.findField(fieldError.id);
27554                 if(f){
27555                     f.markInvalid(fieldError.msg);
27556                 }
27557             }
27558         }else{
27559             var field, id;
27560             for(id in errors){
27561                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
27562                     field.markInvalid(errors[id]);
27563                 }
27564             }
27565         }
27566         Roo.each(this.childForms || [], function (f) {
27567             f.markInvalid(errors);
27568         });
27569         
27570         return this;
27571     },
27572
27573     /**
27574      * Set values for fields in this form in bulk.
27575      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
27576      * @return {BasicForm} this
27577      */
27578     setValues : function(values){
27579         if(values instanceof Array){ // array of objects
27580             for(var i = 0, len = values.length; i < len; i++){
27581                 var v = values[i];
27582                 var f = this.findField(v.id);
27583                 if(f){
27584                     f.setValue(v.value);
27585                     if(this.trackResetOnLoad){
27586                         f.originalValue = f.getValue();
27587                     }
27588                 }
27589             }
27590         }else{ // object hash
27591             var field, id;
27592             for(id in values){
27593                 if(typeof values[id] != 'function' && (field = this.findField(id))){
27594                     
27595                     if (field.setFromData && 
27596                         field.valueField && 
27597                         field.displayField &&
27598                         // combos' with local stores can 
27599                         // be queried via setValue()
27600                         // to set their value..
27601                         (field.store && !field.store.isLocal)
27602                         ) {
27603                         // it's a combo
27604                         var sd = { };
27605                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
27606                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
27607                         field.setFromData(sd);
27608                         
27609                     } else {
27610                         field.setValue(values[id]);
27611                     }
27612                     
27613                     
27614                     if(this.trackResetOnLoad){
27615                         field.originalValue = field.getValue();
27616                     }
27617                 }
27618             }
27619         }
27620          
27621         Roo.each(this.childForms || [], function (f) {
27622             f.setValues(values);
27623         });
27624                 
27625         return this;
27626     },
27627
27628     /**
27629      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
27630      * they are returned as an array.
27631      * @param {Boolean} asString
27632      * @return {Object}
27633      */
27634     getValues : function(asString){
27635         if (this.childForms) {
27636             // copy values from the child forms
27637             Roo.each(this.childForms, function (f) {
27638                 this.setValues(f.getValues());
27639             }, this);
27640         }
27641         
27642         
27643         
27644         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
27645         if(asString === true){
27646             return fs;
27647         }
27648         return Roo.urlDecode(fs);
27649     },
27650     
27651     /**
27652      * Returns the fields in this form as an object with key/value pairs. 
27653      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
27654      * @return {Object}
27655      */
27656     getFieldValues : function(with_hidden)
27657     {
27658         if (this.childForms) {
27659             // copy values from the child forms
27660             // should this call getFieldValues - probably not as we do not currently copy
27661             // hidden fields when we generate..
27662             Roo.each(this.childForms, function (f) {
27663                 this.setValues(f.getValues());
27664             }, this);
27665         }
27666         
27667         var ret = {};
27668         this.items.each(function(f){
27669             if (!f.getName()) {
27670                 return;
27671             }
27672             var v = f.getValue();
27673             // not sure if this supported any more..
27674             if ((typeof(v) == 'object') && f.getRawValue) {
27675                 v = f.getRawValue() ; // dates..
27676             }
27677             // combo boxes where name != hiddenName...
27678             if (f.name != f.getName()) {
27679                 ret[f.name] = f.getRawValue();
27680             }
27681             ret[f.getName()] = v;
27682         });
27683         
27684         return ret;
27685     },
27686
27687     /**
27688      * Clears all invalid messages in this form.
27689      * @return {BasicForm} this
27690      */
27691     clearInvalid : function(){
27692         this.items.each(function(f){
27693            f.clearInvalid();
27694         });
27695         
27696         Roo.each(this.childForms || [], function (f) {
27697             f.clearInvalid();
27698         });
27699         
27700         
27701         return this;
27702     },
27703
27704     /**
27705      * Resets this form.
27706      * @return {BasicForm} this
27707      */
27708     reset : function(){
27709         this.items.each(function(f){
27710             f.reset();
27711         });
27712         
27713         Roo.each(this.childForms || [], function (f) {
27714             f.reset();
27715         });
27716        
27717         
27718         return this;
27719     },
27720
27721     /**
27722      * Add Roo.form components to this form.
27723      * @param {Field} field1
27724      * @param {Field} field2 (optional)
27725      * @param {Field} etc (optional)
27726      * @return {BasicForm} this
27727      */
27728     add : function(){
27729         this.items.addAll(Array.prototype.slice.call(arguments, 0));
27730         return this;
27731     },
27732
27733
27734     /**
27735      * Removes a field from the items collection (does NOT remove its markup).
27736      * @param {Field} field
27737      * @return {BasicForm} this
27738      */
27739     remove : function(field){
27740         this.items.remove(field);
27741         return this;
27742     },
27743
27744     /**
27745      * Looks at the fields in this form, checks them for an id attribute,
27746      * and calls applyTo on the existing dom element with that id.
27747      * @return {BasicForm} this
27748      */
27749     render : function(){
27750         this.items.each(function(f){
27751             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
27752                 f.applyTo(f.id);
27753             }
27754         });
27755         return this;
27756     },
27757
27758     /**
27759      * Calls {@link Ext#apply} for all fields in this form with the passed object.
27760      * @param {Object} values
27761      * @return {BasicForm} this
27762      */
27763     applyToFields : function(o){
27764         this.items.each(function(f){
27765            Roo.apply(f, o);
27766         });
27767         return this;
27768     },
27769
27770     /**
27771      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
27772      * @param {Object} values
27773      * @return {BasicForm} this
27774      */
27775     applyIfToFields : function(o){
27776         this.items.each(function(f){
27777            Roo.applyIf(f, o);
27778         });
27779         return this;
27780     }
27781 });
27782
27783 // back compat
27784 Roo.BasicForm = Roo.form.BasicForm;/*
27785  * Based on:
27786  * Ext JS Library 1.1.1
27787  * Copyright(c) 2006-2007, Ext JS, LLC.
27788  *
27789  * Originally Released Under LGPL - original licence link has changed is not relivant.
27790  *
27791  * Fork - LGPL
27792  * <script type="text/javascript">
27793  */
27794
27795 /**
27796  * @class Roo.form.Form
27797  * @extends Roo.form.BasicForm
27798  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
27799  * @constructor
27800  * @param {Object} config Configuration options
27801  */
27802 Roo.form.Form = function(config){
27803     var xitems =  [];
27804     if (config.items) {
27805         xitems = config.items;
27806         delete config.items;
27807     }
27808    
27809     
27810     Roo.form.Form.superclass.constructor.call(this, null, config);
27811     this.url = this.url || this.action;
27812     if(!this.root){
27813         this.root = new Roo.form.Layout(Roo.applyIf({
27814             id: Roo.id()
27815         }, config));
27816     }
27817     this.active = this.root;
27818     /**
27819      * Array of all the buttons that have been added to this form via {@link addButton}
27820      * @type Array
27821      */
27822     this.buttons = [];
27823     this.allItems = [];
27824     this.addEvents({
27825         /**
27826          * @event clientvalidation
27827          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
27828          * @param {Form} this
27829          * @param {Boolean} valid true if the form has passed client-side validation
27830          */
27831         clientvalidation: true,
27832         /**
27833          * @event rendered
27834          * Fires when the form is rendered
27835          * @param {Roo.form.Form} form
27836          */
27837         rendered : true
27838     });
27839     
27840     if (this.progressUrl) {
27841             // push a hidden field onto the list of fields..
27842             this.addxtype( {
27843                     xns: Roo.form, 
27844                     xtype : 'Hidden', 
27845                     name : 'UPLOAD_IDENTIFIER' 
27846             });
27847         }
27848         
27849     
27850     Roo.each(xitems, this.addxtype, this);
27851     
27852     
27853     
27854 };
27855
27856 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
27857     /**
27858      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
27859      */
27860     /**
27861      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
27862      */
27863     /**
27864      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
27865      */
27866     buttonAlign:'center',
27867
27868     /**
27869      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
27870      */
27871     minButtonWidth:75,
27872
27873     /**
27874      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
27875      * This property cascades to child containers if not set.
27876      */
27877     labelAlign:'left',
27878
27879     /**
27880      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
27881      * fires a looping event with that state. This is required to bind buttons to the valid
27882      * state using the config value formBind:true on the button.
27883      */
27884     monitorValid : false,
27885
27886     /**
27887      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
27888      */
27889     monitorPoll : 200,
27890     
27891     /**
27892      * @cfg {String} progressUrl - Url to return progress data 
27893      */
27894     
27895     progressUrl : false,
27896   
27897     /**
27898      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
27899      * fields are added and the column is closed. If no fields are passed the column remains open
27900      * until end() is called.
27901      * @param {Object} config The config to pass to the column
27902      * @param {Field} field1 (optional)
27903      * @param {Field} field2 (optional)
27904      * @param {Field} etc (optional)
27905      * @return Column The column container object
27906      */
27907     column : function(c){
27908         var col = new Roo.form.Column(c);
27909         this.start(col);
27910         if(arguments.length > 1){ // duplicate code required because of Opera
27911             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
27912             this.end();
27913         }
27914         return col;
27915     },
27916
27917     /**
27918      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
27919      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
27920      * until end() is called.
27921      * @param {Object} config The config to pass to the fieldset
27922      * @param {Field} field1 (optional)
27923      * @param {Field} field2 (optional)
27924      * @param {Field} etc (optional)
27925      * @return FieldSet The fieldset container object
27926      */
27927     fieldset : function(c){
27928         var fs = new Roo.form.FieldSet(c);
27929         this.start(fs);
27930         if(arguments.length > 1){ // duplicate code required because of Opera
27931             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
27932             this.end();
27933         }
27934         return fs;
27935     },
27936
27937     /**
27938      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
27939      * fields are added and the container is closed. If no fields are passed the container remains open
27940      * until end() is called.
27941      * @param {Object} config The config to pass to the Layout
27942      * @param {Field} field1 (optional)
27943      * @param {Field} field2 (optional)
27944      * @param {Field} etc (optional)
27945      * @return Layout The container object
27946      */
27947     container : function(c){
27948         var l = new Roo.form.Layout(c);
27949         this.start(l);
27950         if(arguments.length > 1){ // duplicate code required because of Opera
27951             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
27952             this.end();
27953         }
27954         return l;
27955     },
27956
27957     /**
27958      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
27959      * @param {Object} container A Roo.form.Layout or subclass of Layout
27960      * @return {Form} this
27961      */
27962     start : function(c){
27963         // cascade label info
27964         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
27965         this.active.stack.push(c);
27966         c.ownerCt = this.active;
27967         this.active = c;
27968         return this;
27969     },
27970
27971     /**
27972      * Closes the current open container
27973      * @return {Form} this
27974      */
27975     end : function(){
27976         if(this.active == this.root){
27977             return this;
27978         }
27979         this.active = this.active.ownerCt;
27980         return this;
27981     },
27982
27983     /**
27984      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
27985      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
27986      * as the label of the field.
27987      * @param {Field} field1
27988      * @param {Field} field2 (optional)
27989      * @param {Field} etc. (optional)
27990      * @return {Form} this
27991      */
27992     add : function(){
27993         this.active.stack.push.apply(this.active.stack, arguments);
27994         this.allItems.push.apply(this.allItems,arguments);
27995         var r = [];
27996         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
27997             if(a[i].isFormField){
27998                 r.push(a[i]);
27999             }
28000         }
28001         if(r.length > 0){
28002             Roo.form.Form.superclass.add.apply(this, r);
28003         }
28004         return this;
28005     },
28006     
28007
28008     
28009     
28010     
28011      /**
28012      * Find any element that has been added to a form, using it's ID or name
28013      * This can include framesets, columns etc. along with regular fields..
28014      * @param {String} id - id or name to find.
28015      
28016      * @return {Element} e - or false if nothing found.
28017      */
28018     findbyId : function(id)
28019     {
28020         var ret = false;
28021         if (!id) {
28022             return ret;
28023         }
28024         Roo.each(this.allItems, function(f){
28025             if (f.id == id || f.name == id ){
28026                 ret = f;
28027                 return false;
28028             }
28029         });
28030         return ret;
28031     },
28032
28033     
28034     
28035     /**
28036      * Render this form into the passed container. This should only be called once!
28037      * @param {String/HTMLElement/Element} container The element this component should be rendered into
28038      * @return {Form} this
28039      */
28040     render : function(ct)
28041     {
28042         
28043         
28044         
28045         ct = Roo.get(ct);
28046         var o = this.autoCreate || {
28047             tag: 'form',
28048             method : this.method || 'POST',
28049             id : this.id || Roo.id()
28050         };
28051         this.initEl(ct.createChild(o));
28052
28053         this.root.render(this.el);
28054         
28055        
28056              
28057         this.items.each(function(f){
28058             f.render('x-form-el-'+f.id);
28059         });
28060
28061         if(this.buttons.length > 0){
28062             // tables are required to maintain order and for correct IE layout
28063             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
28064                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
28065                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
28066             }}, null, true);
28067             var tr = tb.getElementsByTagName('tr')[0];
28068             for(var i = 0, len = this.buttons.length; i < len; i++) {
28069                 var b = this.buttons[i];
28070                 var td = document.createElement('td');
28071                 td.className = 'x-form-btn-td';
28072                 b.render(tr.appendChild(td));
28073             }
28074         }
28075         if(this.monitorValid){ // initialize after render
28076             this.startMonitoring();
28077         }
28078         this.fireEvent('rendered', this);
28079         return this;
28080     },
28081
28082     /**
28083      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
28084      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
28085      * object or a valid Roo.DomHelper element config
28086      * @param {Function} handler The function called when the button is clicked
28087      * @param {Object} scope (optional) The scope of the handler function
28088      * @return {Roo.Button}
28089      */
28090     addButton : function(config, handler, scope){
28091         var bc = {
28092             handler: handler,
28093             scope: scope,
28094             minWidth: this.minButtonWidth,
28095             hideParent:true
28096         };
28097         if(typeof config == "string"){
28098             bc.text = config;
28099         }else{
28100             Roo.apply(bc, config);
28101         }
28102         var btn = new Roo.Button(null, bc);
28103         this.buttons.push(btn);
28104         return btn;
28105     },
28106
28107      /**
28108      * Adds a series of form elements (using the xtype property as the factory method.
28109      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
28110      * @param {Object} config 
28111      */
28112     
28113     addxtype : function()
28114     {
28115         var ar = Array.prototype.slice.call(arguments, 0);
28116         var ret = false;
28117         for(var i = 0; i < ar.length; i++) {
28118             if (!ar[i]) {
28119                 continue; // skip -- if this happends something invalid got sent, we 
28120                 // should ignore it, as basically that interface element will not show up
28121                 // and that should be pretty obvious!!
28122             }
28123             
28124             if (Roo.form[ar[i].xtype]) {
28125                 ar[i].form = this;
28126                 var fe = Roo.factory(ar[i], Roo.form);
28127                 if (!ret) {
28128                     ret = fe;
28129                 }
28130                 fe.form = this;
28131                 if (fe.store) {
28132                     fe.store.form = this;
28133                 }
28134                 if (fe.isLayout) {  
28135                          
28136                     this.start(fe);
28137                     this.allItems.push(fe);
28138                     if (fe.items && fe.addxtype) {
28139                         fe.addxtype.apply(fe, fe.items);
28140                         delete fe.items;
28141                     }
28142                      this.end();
28143                     continue;
28144                 }
28145                 
28146                 
28147                  
28148                 this.add(fe);
28149               //  console.log('adding ' + ar[i].xtype);
28150             }
28151             if (ar[i].xtype == 'Button') {  
28152                 //console.log('adding button');
28153                 //console.log(ar[i]);
28154                 this.addButton(ar[i]);
28155                 this.allItems.push(fe);
28156                 continue;
28157             }
28158             
28159             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
28160                 alert('end is not supported on xtype any more, use items');
28161             //    this.end();
28162             //    //console.log('adding end');
28163             }
28164             
28165         }
28166         return ret;
28167     },
28168     
28169     /**
28170      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
28171      * option "monitorValid"
28172      */
28173     startMonitoring : function(){
28174         if(!this.bound){
28175             this.bound = true;
28176             Roo.TaskMgr.start({
28177                 run : this.bindHandler,
28178                 interval : this.monitorPoll || 200,
28179                 scope: this
28180             });
28181         }
28182     },
28183
28184     /**
28185      * Stops monitoring of the valid state of this form
28186      */
28187     stopMonitoring : function(){
28188         this.bound = false;
28189     },
28190
28191     // private
28192     bindHandler : function(){
28193         if(!this.bound){
28194             return false; // stops binding
28195         }
28196         var valid = true;
28197         this.items.each(function(f){
28198             if(!f.isValid(true)){
28199                 valid = false;
28200                 return false;
28201             }
28202         });
28203         for(var i = 0, len = this.buttons.length; i < len; i++){
28204             var btn = this.buttons[i];
28205             if(btn.formBind === true && btn.disabled === valid){
28206                 btn.setDisabled(!valid);
28207             }
28208         }
28209         this.fireEvent('clientvalidation', this, valid);
28210     }
28211     
28212     
28213     
28214     
28215     
28216     
28217     
28218     
28219 });
28220
28221
28222 // back compat
28223 Roo.Form = Roo.form.Form;
28224 /*
28225  * Based on:
28226  * Ext JS Library 1.1.1
28227  * Copyright(c) 2006-2007, Ext JS, LLC.
28228  *
28229  * Originally Released Under LGPL - original licence link has changed is not relivant.
28230  *
28231  * Fork - LGPL
28232  * <script type="text/javascript">
28233  */
28234  
28235  /**
28236  * @class Roo.form.Action
28237  * Internal Class used to handle form actions
28238  * @constructor
28239  * @param {Roo.form.BasicForm} el The form element or its id
28240  * @param {Object} config Configuration options
28241  */
28242  
28243  
28244 // define the action interface
28245 Roo.form.Action = function(form, options){
28246     this.form = form;
28247     this.options = options || {};
28248 };
28249 /**
28250  * Client Validation Failed
28251  * @const 
28252  */
28253 Roo.form.Action.CLIENT_INVALID = 'client';
28254 /**
28255  * Server Validation Failed
28256  * @const 
28257  */
28258  Roo.form.Action.SERVER_INVALID = 'server';
28259  /**
28260  * Connect to Server Failed
28261  * @const 
28262  */
28263 Roo.form.Action.CONNECT_FAILURE = 'connect';
28264 /**
28265  * Reading Data from Server Failed
28266  * @const 
28267  */
28268 Roo.form.Action.LOAD_FAILURE = 'load';
28269
28270 Roo.form.Action.prototype = {
28271     type : 'default',
28272     failureType : undefined,
28273     response : undefined,
28274     result : undefined,
28275
28276     // interface method
28277     run : function(options){
28278
28279     },
28280
28281     // interface method
28282     success : function(response){
28283
28284     },
28285
28286     // interface method
28287     handleResponse : function(response){
28288
28289     },
28290
28291     // default connection failure
28292     failure : function(response){
28293         
28294         this.response = response;
28295         this.failureType = Roo.form.Action.CONNECT_FAILURE;
28296         this.form.afterAction(this, false);
28297     },
28298
28299     processResponse : function(response){
28300         this.response = response;
28301         if(!response.responseText){
28302             return true;
28303         }
28304         this.result = this.handleResponse(response);
28305         return this.result;
28306     },
28307
28308     // utility functions used internally
28309     getUrl : function(appendParams){
28310         var url = this.options.url || this.form.url || this.form.el.dom.action;
28311         if(appendParams){
28312             var p = this.getParams();
28313             if(p){
28314                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
28315             }
28316         }
28317         return url;
28318     },
28319
28320     getMethod : function(){
28321         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
28322     },
28323
28324     getParams : function(){
28325         var bp = this.form.baseParams;
28326         var p = this.options.params;
28327         if(p){
28328             if(typeof p == "object"){
28329                 p = Roo.urlEncode(Roo.applyIf(p, bp));
28330             }else if(typeof p == 'string' && bp){
28331                 p += '&' + Roo.urlEncode(bp);
28332             }
28333         }else if(bp){
28334             p = Roo.urlEncode(bp);
28335         }
28336         return p;
28337     },
28338
28339     createCallback : function(){
28340         return {
28341             success: this.success,
28342             failure: this.failure,
28343             scope: this,
28344             timeout: (this.form.timeout*1000),
28345             upload: this.form.fileUpload ? this.success : undefined
28346         };
28347     }
28348 };
28349
28350 Roo.form.Action.Submit = function(form, options){
28351     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
28352 };
28353
28354 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
28355     type : 'submit',
28356
28357     haveProgress : false,
28358     uploadComplete : false,
28359     
28360     // uploadProgress indicator.
28361     uploadProgress : function()
28362     {
28363         if (!this.form.progressUrl) {
28364             return;
28365         }
28366         
28367         if (!this.haveProgress) {
28368             Roo.MessageBox.progress("Uploading", "Uploading");
28369         }
28370         if (this.uploadComplete) {
28371            Roo.MessageBox.hide();
28372            return;
28373         }
28374         
28375         this.haveProgress = true;
28376    
28377         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
28378         
28379         var c = new Roo.data.Connection();
28380         c.request({
28381             url : this.form.progressUrl,
28382             params: {
28383                 id : uid
28384             },
28385             method: 'GET',
28386             success : function(req){
28387                //console.log(data);
28388                 var rdata = false;
28389                 var edata;
28390                 try  {
28391                    rdata = Roo.decode(req.responseText)
28392                 } catch (e) {
28393                     Roo.log("Invalid data from server..");
28394                     Roo.log(edata);
28395                     return;
28396                 }
28397                 if (!rdata || !rdata.success) {
28398                     Roo.log(rdata);
28399                     return;
28400                 }
28401                 var data = rdata.data;
28402                 
28403                 if (this.uploadComplete) {
28404                    Roo.MessageBox.hide();
28405                    return;
28406                 }
28407                    
28408                 if (data){
28409                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
28410                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
28411                     );
28412                 }
28413                 this.uploadProgress.defer(2000,this);
28414             },
28415        
28416             failure: function(data) {
28417                 Roo.log('progress url failed ');
28418                 Roo.log(data);
28419             },
28420             scope : this
28421         });
28422            
28423     },
28424     
28425     
28426     run : function()
28427     {
28428         // run get Values on the form, so it syncs any secondary forms.
28429         this.form.getValues();
28430         
28431         var o = this.options;
28432         var method = this.getMethod();
28433         var isPost = method == 'POST';
28434         if(o.clientValidation === false || this.form.isValid()){
28435             
28436             if (this.form.progressUrl) {
28437                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
28438                     (new Date() * 1) + '' + Math.random());
28439                     
28440             } 
28441             
28442             
28443             Roo.Ajax.request(Roo.apply(this.createCallback(), {
28444                 form:this.form.el.dom,
28445                 url:this.getUrl(!isPost),
28446                 method: method,
28447                 params:isPost ? this.getParams() : null,
28448                 isUpload: this.form.fileUpload
28449             }));
28450             
28451             this.uploadProgress();
28452
28453         }else if (o.clientValidation !== false){ // client validation failed
28454             this.failureType = Roo.form.Action.CLIENT_INVALID;
28455             this.form.afterAction(this, false);
28456         }
28457     },
28458
28459     success : function(response)
28460     {
28461         this.uploadComplete= true;
28462         if (this.haveProgress) {
28463             Roo.MessageBox.hide();
28464         }
28465         
28466         
28467         var result = this.processResponse(response);
28468         if(result === true || result.success){
28469             this.form.afterAction(this, true);
28470             return;
28471         }
28472         if(result.errors){
28473             this.form.markInvalid(result.errors);
28474             this.failureType = Roo.form.Action.SERVER_INVALID;
28475         }
28476         this.form.afterAction(this, false);
28477     },
28478     failure : function(response)
28479     {
28480         this.uploadComplete= true;
28481         if (this.haveProgress) {
28482             Roo.MessageBox.hide();
28483         }
28484         
28485         this.response = response;
28486         this.failureType = Roo.form.Action.CONNECT_FAILURE;
28487         this.form.afterAction(this, false);
28488     },
28489     
28490     handleResponse : function(response){
28491         if(this.form.errorReader){
28492             var rs = this.form.errorReader.read(response);
28493             var errors = [];
28494             if(rs.records){
28495                 for(var i = 0, len = rs.records.length; i < len; i++) {
28496                     var r = rs.records[i];
28497                     errors[i] = r.data;
28498                 }
28499             }
28500             if(errors.length < 1){
28501                 errors = null;
28502             }
28503             return {
28504                 success : rs.success,
28505                 errors : errors
28506             };
28507         }
28508         var ret = false;
28509         try {
28510             ret = Roo.decode(response.responseText);
28511         } catch (e) {
28512             ret = {
28513                 success: false,
28514                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
28515                 errors : []
28516             };
28517         }
28518         return ret;
28519         
28520     }
28521 });
28522
28523
28524 Roo.form.Action.Load = function(form, options){
28525     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
28526     this.reader = this.form.reader;
28527 };
28528
28529 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
28530     type : 'load',
28531
28532     run : function(){
28533         
28534         Roo.Ajax.request(Roo.apply(
28535                 this.createCallback(), {
28536                     method:this.getMethod(),
28537                     url:this.getUrl(false),
28538                     params:this.getParams()
28539         }));
28540     },
28541
28542     success : function(response){
28543         
28544         var result = this.processResponse(response);
28545         if(result === true || !result.success || !result.data){
28546             this.failureType = Roo.form.Action.LOAD_FAILURE;
28547             this.form.afterAction(this, false);
28548             return;
28549         }
28550         this.form.clearInvalid();
28551         this.form.setValues(result.data);
28552         this.form.afterAction(this, true);
28553     },
28554
28555     handleResponse : function(response){
28556         if(this.form.reader){
28557             var rs = this.form.reader.read(response);
28558             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
28559             return {
28560                 success : rs.success,
28561                 data : data
28562             };
28563         }
28564         return Roo.decode(response.responseText);
28565     }
28566 });
28567
28568 Roo.form.Action.ACTION_TYPES = {
28569     'load' : Roo.form.Action.Load,
28570     'submit' : Roo.form.Action.Submit
28571 };/*
28572  * Based on:
28573  * Ext JS Library 1.1.1
28574  * Copyright(c) 2006-2007, Ext JS, LLC.
28575  *
28576  * Originally Released Under LGPL - original licence link has changed is not relivant.
28577  *
28578  * Fork - LGPL
28579  * <script type="text/javascript">
28580  */
28581  
28582 /**
28583  * @class Roo.form.Layout
28584  * @extends Roo.Component
28585  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
28586  * @constructor
28587  * @param {Object} config Configuration options
28588  */
28589 Roo.form.Layout = function(config){
28590     var xitems = [];
28591     if (config.items) {
28592         xitems = config.items;
28593         delete config.items;
28594     }
28595     Roo.form.Layout.superclass.constructor.call(this, config);
28596     this.stack = [];
28597     Roo.each(xitems, this.addxtype, this);
28598      
28599 };
28600
28601 Roo.extend(Roo.form.Layout, Roo.Component, {
28602     /**
28603      * @cfg {String/Object} autoCreate
28604      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
28605      */
28606     /**
28607      * @cfg {String/Object/Function} style
28608      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
28609      * a function which returns such a specification.
28610      */
28611     /**
28612      * @cfg {String} labelAlign
28613      * Valid values are "left," "top" and "right" (defaults to "left")
28614      */
28615     /**
28616      * @cfg {Number} labelWidth
28617      * Fixed width in pixels of all field labels (defaults to undefined)
28618      */
28619     /**
28620      * @cfg {Boolean} clear
28621      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
28622      */
28623     clear : true,
28624     /**
28625      * @cfg {String} labelSeparator
28626      * The separator to use after field labels (defaults to ':')
28627      */
28628     labelSeparator : ':',
28629     /**
28630      * @cfg {Boolean} hideLabels
28631      * True to suppress the display of field labels in this layout (defaults to false)
28632      */
28633     hideLabels : false,
28634
28635     // private
28636     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
28637     
28638     isLayout : true,
28639     
28640     // private
28641     onRender : function(ct, position){
28642         if(this.el){ // from markup
28643             this.el = Roo.get(this.el);
28644         }else {  // generate
28645             var cfg = this.getAutoCreate();
28646             this.el = ct.createChild(cfg, position);
28647         }
28648         if(this.style){
28649             this.el.applyStyles(this.style);
28650         }
28651         if(this.labelAlign){
28652             this.el.addClass('x-form-label-'+this.labelAlign);
28653         }
28654         if(this.hideLabels){
28655             this.labelStyle = "display:none";
28656             this.elementStyle = "padding-left:0;";
28657         }else{
28658             if(typeof this.labelWidth == 'number'){
28659                 this.labelStyle = "width:"+this.labelWidth+"px;";
28660                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
28661             }
28662             if(this.labelAlign == 'top'){
28663                 this.labelStyle = "width:auto;";
28664                 this.elementStyle = "padding-left:0;";
28665             }
28666         }
28667         var stack = this.stack;
28668         var slen = stack.length;
28669         if(slen > 0){
28670             if(!this.fieldTpl){
28671                 var t = new Roo.Template(
28672                     '<div class="x-form-item {5}">',
28673                         '<label for="{0}" style="{2}">{1}{4}</label>',
28674                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
28675                         '</div>',
28676                     '</div><div class="x-form-clear-left"></div>'
28677                 );
28678                 t.disableFormats = true;
28679                 t.compile();
28680                 Roo.form.Layout.prototype.fieldTpl = t;
28681             }
28682             for(var i = 0; i < slen; i++) {
28683                 if(stack[i].isFormField){
28684                     this.renderField(stack[i]);
28685                 }else{
28686                     this.renderComponent(stack[i]);
28687                 }
28688             }
28689         }
28690         if(this.clear){
28691             this.el.createChild({cls:'x-form-clear'});
28692         }
28693     },
28694
28695     // private
28696     renderField : function(f){
28697         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
28698                f.id, //0
28699                f.fieldLabel, //1
28700                f.labelStyle||this.labelStyle||'', //2
28701                this.elementStyle||'', //3
28702                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
28703                f.itemCls||this.itemCls||''  //5
28704        ], true).getPrevSibling());
28705     },
28706
28707     // private
28708     renderComponent : function(c){
28709         c.render(c.isLayout ? this.el : this.el.createChild());    
28710     },
28711     /**
28712      * Adds a object form elements (using the xtype property as the factory method.)
28713      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
28714      * @param {Object} config 
28715      */
28716     addxtype : function(o)
28717     {
28718         // create the lement.
28719         o.form = this.form;
28720         var fe = Roo.factory(o, Roo.form);
28721         this.form.allItems.push(fe);
28722         this.stack.push(fe);
28723         
28724         if (fe.isFormField) {
28725             this.form.items.add(fe);
28726         }
28727          
28728         return fe;
28729     }
28730 });
28731
28732 /**
28733  * @class Roo.form.Column
28734  * @extends Roo.form.Layout
28735  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
28736  * @constructor
28737  * @param {Object} config Configuration options
28738  */
28739 Roo.form.Column = function(config){
28740     Roo.form.Column.superclass.constructor.call(this, config);
28741 };
28742
28743 Roo.extend(Roo.form.Column, Roo.form.Layout, {
28744     /**
28745      * @cfg {Number/String} width
28746      * The fixed width of the column in pixels or CSS value (defaults to "auto")
28747      */
28748     /**
28749      * @cfg {String/Object} autoCreate
28750      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
28751      */
28752
28753     // private
28754     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
28755
28756     // private
28757     onRender : function(ct, position){
28758         Roo.form.Column.superclass.onRender.call(this, ct, position);
28759         if(this.width){
28760             this.el.setWidth(this.width);
28761         }
28762     }
28763 });
28764
28765
28766 /**
28767  * @class Roo.form.Row
28768  * @extends Roo.form.Layout
28769  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
28770  * @constructor
28771  * @param {Object} config Configuration options
28772  */
28773
28774  
28775 Roo.form.Row = function(config){
28776     Roo.form.Row.superclass.constructor.call(this, config);
28777 };
28778  
28779 Roo.extend(Roo.form.Row, Roo.form.Layout, {
28780       /**
28781      * @cfg {Number/String} width
28782      * The fixed width of the column in pixels or CSS value (defaults to "auto")
28783      */
28784     /**
28785      * @cfg {Number/String} height
28786      * The fixed height of the column in pixels or CSS value (defaults to "auto")
28787      */
28788     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
28789     
28790     padWidth : 20,
28791     // private
28792     onRender : function(ct, position){
28793         //console.log('row render');
28794         if(!this.rowTpl){
28795             var t = new Roo.Template(
28796                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
28797                     '<label for="{0}" style="{2}">{1}{4}</label>',
28798                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
28799                     '</div>',
28800                 '</div>'
28801             );
28802             t.disableFormats = true;
28803             t.compile();
28804             Roo.form.Layout.prototype.rowTpl = t;
28805         }
28806         this.fieldTpl = this.rowTpl;
28807         
28808         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
28809         var labelWidth = 100;
28810         
28811         if ((this.labelAlign != 'top')) {
28812             if (typeof this.labelWidth == 'number') {
28813                 labelWidth = this.labelWidth
28814             }
28815             this.padWidth =  20 + labelWidth;
28816             
28817         }
28818         
28819         Roo.form.Column.superclass.onRender.call(this, ct, position);
28820         if(this.width){
28821             this.el.setWidth(this.width);
28822         }
28823         if(this.height){
28824             this.el.setHeight(this.height);
28825         }
28826     },
28827     
28828     // private
28829     renderField : function(f){
28830         f.fieldEl = this.fieldTpl.append(this.el, [
28831                f.id, f.fieldLabel,
28832                f.labelStyle||this.labelStyle||'',
28833                this.elementStyle||'',
28834                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
28835                f.itemCls||this.itemCls||'',
28836                f.width ? f.width + this.padWidth : 160 + this.padWidth
28837        ],true);
28838     }
28839 });
28840  
28841
28842 /**
28843  * @class Roo.form.FieldSet
28844  * @extends Roo.form.Layout
28845  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
28846  * @constructor
28847  * @param {Object} config Configuration options
28848  */
28849 Roo.form.FieldSet = function(config){
28850     Roo.form.FieldSet.superclass.constructor.call(this, config);
28851 };
28852
28853 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
28854     /**
28855      * @cfg {String} legend
28856      * The text to display as the legend for the FieldSet (defaults to '')
28857      */
28858     /**
28859      * @cfg {String/Object} autoCreate
28860      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
28861      */
28862
28863     // private
28864     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
28865
28866     // private
28867     onRender : function(ct, position){
28868         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
28869         if(this.legend){
28870             this.setLegend(this.legend);
28871         }
28872     },
28873
28874     // private
28875     setLegend : function(text){
28876         if(this.rendered){
28877             this.el.child('legend').update(text);
28878         }
28879     }
28880 });/*
28881  * Based on:
28882  * Ext JS Library 1.1.1
28883  * Copyright(c) 2006-2007, Ext JS, LLC.
28884  *
28885  * Originally Released Under LGPL - original licence link has changed is not relivant.
28886  *
28887  * Fork - LGPL
28888  * <script type="text/javascript">
28889  */
28890 /**
28891  * @class Roo.form.VTypes
28892  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
28893  * @singleton
28894  */
28895 Roo.form.VTypes = function(){
28896     // closure these in so they are only created once.
28897     var alpha = /^[a-zA-Z_]+$/;
28898     var alphanum = /^[a-zA-Z0-9_]+$/;
28899     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,4}$/;
28900     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
28901
28902     // All these messages and functions are configurable
28903     return {
28904         /**
28905          * The function used to validate email addresses
28906          * @param {String} value The email address
28907          */
28908         'email' : function(v){
28909             return email.test(v);
28910         },
28911         /**
28912          * The error text to display when the email validation function returns false
28913          * @type String
28914          */
28915         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
28916         /**
28917          * The keystroke filter mask to be applied on email input
28918          * @type RegExp
28919          */
28920         'emailMask' : /[a-z0-9_\.\-@]/i,
28921
28922         /**
28923          * The function used to validate URLs
28924          * @param {String} value The URL
28925          */
28926         'url' : function(v){
28927             return url.test(v);
28928         },
28929         /**
28930          * The error text to display when the url validation function returns false
28931          * @type String
28932          */
28933         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
28934         
28935         /**
28936          * The function used to validate alpha values
28937          * @param {String} value The value
28938          */
28939         'alpha' : function(v){
28940             return alpha.test(v);
28941         },
28942         /**
28943          * The error text to display when the alpha validation function returns false
28944          * @type String
28945          */
28946         'alphaText' : 'This field should only contain letters and _',
28947         /**
28948          * The keystroke filter mask to be applied on alpha input
28949          * @type RegExp
28950          */
28951         'alphaMask' : /[a-z_]/i,
28952
28953         /**
28954          * The function used to validate alphanumeric values
28955          * @param {String} value The value
28956          */
28957         'alphanum' : function(v){
28958             return alphanum.test(v);
28959         },
28960         /**
28961          * The error text to display when the alphanumeric validation function returns false
28962          * @type String
28963          */
28964         'alphanumText' : 'This field should only contain letters, numbers and _',
28965         /**
28966          * The keystroke filter mask to be applied on alphanumeric input
28967          * @type RegExp
28968          */
28969         'alphanumMask' : /[a-z0-9_]/i
28970     };
28971 }();//<script type="text/javascript">
28972
28973 /**
28974  * @class Roo.form.FCKeditor
28975  * @extends Roo.form.TextArea
28976  * Wrapper around the FCKEditor http://www.fckeditor.net
28977  * @constructor
28978  * Creates a new FCKeditor
28979  * @param {Object} config Configuration options
28980  */
28981 Roo.form.FCKeditor = function(config){
28982     Roo.form.FCKeditor.superclass.constructor.call(this, config);
28983     this.addEvents({
28984          /**
28985          * @event editorinit
28986          * Fired when the editor is initialized - you can add extra handlers here..
28987          * @param {FCKeditor} this
28988          * @param {Object} the FCK object.
28989          */
28990         editorinit : true
28991     });
28992     
28993     
28994 };
28995 Roo.form.FCKeditor.editors = { };
28996 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
28997 {
28998     //defaultAutoCreate : {
28999     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
29000     //},
29001     // private
29002     /**
29003      * @cfg {Object} fck options - see fck manual for details.
29004      */
29005     fckconfig : false,
29006     
29007     /**
29008      * @cfg {Object} fck toolbar set (Basic or Default)
29009      */
29010     toolbarSet : 'Basic',
29011     /**
29012      * @cfg {Object} fck BasePath
29013      */ 
29014     basePath : '/fckeditor/',
29015     
29016     
29017     frame : false,
29018     
29019     value : '',
29020     
29021    
29022     onRender : function(ct, position)
29023     {
29024         if(!this.el){
29025             this.defaultAutoCreate = {
29026                 tag: "textarea",
29027                 style:"width:300px;height:60px;",
29028                 autocomplete: "off"
29029             };
29030         }
29031         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
29032         /*
29033         if(this.grow){
29034             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
29035             if(this.preventScrollbars){
29036                 this.el.setStyle("overflow", "hidden");
29037             }
29038             this.el.setHeight(this.growMin);
29039         }
29040         */
29041         //console.log('onrender' + this.getId() );
29042         Roo.form.FCKeditor.editors[this.getId()] = this;
29043          
29044
29045         this.replaceTextarea() ;
29046         
29047     },
29048     
29049     getEditor : function() {
29050         return this.fckEditor;
29051     },
29052     /**
29053      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
29054      * @param {Mixed} value The value to set
29055      */
29056     
29057     
29058     setValue : function(value)
29059     {
29060         //console.log('setValue: ' + value);
29061         
29062         if(typeof(value) == 'undefined') { // not sure why this is happending...
29063             return;
29064         }
29065         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29066         
29067         //if(!this.el || !this.getEditor()) {
29068         //    this.value = value;
29069             //this.setValue.defer(100,this,[value]);    
29070         //    return;
29071         //} 
29072         
29073         if(!this.getEditor()) {
29074             return;
29075         }
29076         
29077         this.getEditor().SetData(value);
29078         
29079         //
29080
29081     },
29082
29083     /**
29084      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
29085      * @return {Mixed} value The field value
29086      */
29087     getValue : function()
29088     {
29089         
29090         if (this.frame && this.frame.dom.style.display == 'none') {
29091             return Roo.form.FCKeditor.superclass.getValue.call(this);
29092         }
29093         
29094         if(!this.el || !this.getEditor()) {
29095            
29096            // this.getValue.defer(100,this); 
29097             return this.value;
29098         }
29099        
29100         
29101         var value=this.getEditor().GetData();
29102         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29103         return Roo.form.FCKeditor.superclass.getValue.call(this);
29104         
29105
29106     },
29107
29108     /**
29109      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
29110      * @return {Mixed} value The field value
29111      */
29112     getRawValue : function()
29113     {
29114         if (this.frame && this.frame.dom.style.display == 'none') {
29115             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29116         }
29117         
29118         if(!this.el || !this.getEditor()) {
29119             //this.getRawValue.defer(100,this); 
29120             return this.value;
29121             return;
29122         }
29123         
29124         
29125         
29126         var value=this.getEditor().GetData();
29127         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
29128         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29129          
29130     },
29131     
29132     setSize : function(w,h) {
29133         
29134         
29135         
29136         //if (this.frame && this.frame.dom.style.display == 'none') {
29137         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29138         //    return;
29139         //}
29140         //if(!this.el || !this.getEditor()) {
29141         //    this.setSize.defer(100,this, [w,h]); 
29142         //    return;
29143         //}
29144         
29145         
29146         
29147         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29148         
29149         this.frame.dom.setAttribute('width', w);
29150         this.frame.dom.setAttribute('height', h);
29151         this.frame.setSize(w,h);
29152         
29153     },
29154     
29155     toggleSourceEdit : function(value) {
29156         
29157       
29158          
29159         this.el.dom.style.display = value ? '' : 'none';
29160         this.frame.dom.style.display = value ?  'none' : '';
29161         
29162     },
29163     
29164     
29165     focus: function(tag)
29166     {
29167         if (this.frame.dom.style.display == 'none') {
29168             return Roo.form.FCKeditor.superclass.focus.call(this);
29169         }
29170         if(!this.el || !this.getEditor()) {
29171             this.focus.defer(100,this, [tag]); 
29172             return;
29173         }
29174         
29175         
29176         
29177         
29178         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
29179         this.getEditor().Focus();
29180         if (tgs.length) {
29181             if (!this.getEditor().Selection.GetSelection()) {
29182                 this.focus.defer(100,this, [tag]); 
29183                 return;
29184             }
29185             
29186             
29187             var r = this.getEditor().EditorDocument.createRange();
29188             r.setStart(tgs[0],0);
29189             r.setEnd(tgs[0],0);
29190             this.getEditor().Selection.GetSelection().removeAllRanges();
29191             this.getEditor().Selection.GetSelection().addRange(r);
29192             this.getEditor().Focus();
29193         }
29194         
29195     },
29196     
29197     
29198     
29199     replaceTextarea : function()
29200     {
29201         if ( document.getElementById( this.getId() + '___Frame' ) )
29202             return ;
29203         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
29204         //{
29205             // We must check the elements firstly using the Id and then the name.
29206         var oTextarea = document.getElementById( this.getId() );
29207         
29208         var colElementsByName = document.getElementsByName( this.getId() ) ;
29209          
29210         oTextarea.style.display = 'none' ;
29211
29212         if ( oTextarea.tabIndex ) {            
29213             this.TabIndex = oTextarea.tabIndex ;
29214         }
29215         
29216         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
29217         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
29218         this.frame = Roo.get(this.getId() + '___Frame')
29219     },
29220     
29221     _getConfigHtml : function()
29222     {
29223         var sConfig = '' ;
29224
29225         for ( var o in this.fckconfig ) {
29226             sConfig += sConfig.length > 0  ? '&amp;' : '';
29227             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
29228         }
29229
29230         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
29231     },
29232     
29233     
29234     _getIFrameHtml : function()
29235     {
29236         var sFile = 'fckeditor.html' ;
29237         /* no idea what this is about..
29238         try
29239         {
29240             if ( (/fcksource=true/i).test( window.top.location.search ) )
29241                 sFile = 'fckeditor.original.html' ;
29242         }
29243         catch (e) { 
29244         */
29245
29246         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
29247         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
29248         
29249         
29250         var html = '<iframe id="' + this.getId() +
29251             '___Frame" src="' + sLink +
29252             '" width="' + this.width +
29253             '" height="' + this.height + '"' +
29254             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
29255             ' frameborder="0" scrolling="no"></iframe>' ;
29256
29257         return html ;
29258     },
29259     
29260     _insertHtmlBefore : function( html, element )
29261     {
29262         if ( element.insertAdjacentHTML )       {
29263             // IE
29264             element.insertAdjacentHTML( 'beforeBegin', html ) ;
29265         } else { // Gecko
29266             var oRange = document.createRange() ;
29267             oRange.setStartBefore( element ) ;
29268             var oFragment = oRange.createContextualFragment( html );
29269             element.parentNode.insertBefore( oFragment, element ) ;
29270         }
29271     }
29272     
29273     
29274   
29275     
29276     
29277     
29278     
29279
29280 });
29281
29282 //Roo.reg('fckeditor', Roo.form.FCKeditor);
29283
29284 function FCKeditor_OnComplete(editorInstance){
29285     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
29286     f.fckEditor = editorInstance;
29287     //console.log("loaded");
29288     f.fireEvent('editorinit', f, editorInstance);
29289
29290   
29291
29292  
29293
29294
29295
29296
29297
29298
29299
29300
29301
29302
29303
29304
29305
29306
29307
29308 //<script type="text/javascript">
29309 /**
29310  * @class Roo.form.GridField
29311  * @extends Roo.form.Field
29312  * Embed a grid (or editable grid into a form)
29313  * STATUS ALPHA
29314  * 
29315  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
29316  * it needs 
29317  * xgrid.store = Roo.data.Store
29318  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
29319  * xgrid.store.reader = Roo.data.JsonReader 
29320  * 
29321  * 
29322  * @constructor
29323  * Creates a new GridField
29324  * @param {Object} config Configuration options
29325  */
29326 Roo.form.GridField = function(config){
29327     Roo.form.GridField.superclass.constructor.call(this, config);
29328      
29329 };
29330
29331 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
29332     /**
29333      * @cfg {Number} width  - used to restrict width of grid..
29334      */
29335     width : 100,
29336     /**
29337      * @cfg {Number} height - used to restrict height of grid..
29338      */
29339     height : 50,
29340      /**
29341      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
29342          * 
29343          *}
29344      */
29345     xgrid : false, 
29346     /**
29347      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
29348      * {tag: "input", type: "checkbox", autocomplete: "off"})
29349      */
29350    // defaultAutoCreate : { tag: 'div' },
29351     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
29352     /**
29353      * @cfg {String} addTitle Text to include for adding a title.
29354      */
29355     addTitle : false,
29356     //
29357     onResize : function(){
29358         Roo.form.Field.superclass.onResize.apply(this, arguments);
29359     },
29360
29361     initEvents : function(){
29362         // Roo.form.Checkbox.superclass.initEvents.call(this);
29363         // has no events...
29364        
29365     },
29366
29367
29368     getResizeEl : function(){
29369         return this.wrap;
29370     },
29371
29372     getPositionEl : function(){
29373         return this.wrap;
29374     },
29375
29376     // private
29377     onRender : function(ct, position){
29378         
29379         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
29380         var style = this.style;
29381         delete this.style;
29382         
29383         Roo.form.GridField.superclass.onRender.call(this, ct, position);
29384         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
29385         this.viewEl = this.wrap.createChild({ tag: 'div' });
29386         if (style) {
29387             this.viewEl.applyStyles(style);
29388         }
29389         if (this.width) {
29390             this.viewEl.setWidth(this.width);
29391         }
29392         if (this.height) {
29393             this.viewEl.setHeight(this.height);
29394         }
29395         //if(this.inputValue !== undefined){
29396         //this.setValue(this.value);
29397         
29398         
29399         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
29400         
29401         
29402         this.grid.render();
29403         this.grid.getDataSource().on('remove', this.refreshValue, this);
29404         this.grid.getDataSource().on('update', this.refreshValue, this);
29405         this.grid.on('afteredit', this.refreshValue, this);
29406  
29407     },
29408      
29409     
29410     /**
29411      * Sets the value of the item. 
29412      * @param {String} either an object  or a string..
29413      */
29414     setValue : function(v){
29415         //this.value = v;
29416         v = v || []; // empty set..
29417         // this does not seem smart - it really only affects memoryproxy grids..
29418         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
29419             var ds = this.grid.getDataSource();
29420             // assumes a json reader..
29421             var data = {}
29422             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
29423             ds.loadData( data);
29424         }
29425         // clear selection so it does not get stale.
29426         if (this.grid.sm) { 
29427             this.grid.sm.clearSelections();
29428         }
29429         
29430         Roo.form.GridField.superclass.setValue.call(this, v);
29431         this.refreshValue();
29432         // should load data in the grid really....
29433     },
29434     
29435     // private
29436     refreshValue: function() {
29437          var val = [];
29438         this.grid.getDataSource().each(function(r) {
29439             val.push(r.data);
29440         });
29441         this.el.dom.value = Roo.encode(val);
29442     }
29443     
29444      
29445     
29446     
29447 });/*
29448  * Based on:
29449  * Ext JS Library 1.1.1
29450  * Copyright(c) 2006-2007, Ext JS, LLC.
29451  *
29452  * Originally Released Under LGPL - original licence link has changed is not relivant.
29453  *
29454  * Fork - LGPL
29455  * <script type="text/javascript">
29456  */
29457 /**
29458  * @class Roo.form.DisplayField
29459  * @extends Roo.form.Field
29460  * A generic Field to display non-editable data.
29461  * @constructor
29462  * Creates a new Display Field item.
29463  * @param {Object} config Configuration options
29464  */
29465 Roo.form.DisplayField = function(config){
29466     Roo.form.DisplayField.superclass.constructor.call(this, config);
29467     
29468 };
29469
29470 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
29471     inputType:      'hidden',
29472     allowBlank:     true,
29473     readOnly:         true,
29474     
29475  
29476     /**
29477      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
29478      */
29479     focusClass : undefined,
29480     /**
29481      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
29482      */
29483     fieldClass: 'x-form-field',
29484     
29485      /**
29486      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
29487      */
29488     valueRenderer: undefined,
29489     
29490     width: 100,
29491     /**
29492      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
29493      * {tag: "input", type: "checkbox", autocomplete: "off"})
29494      */
29495      
29496  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
29497
29498     onResize : function(){
29499         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
29500         
29501     },
29502
29503     initEvents : function(){
29504         // Roo.form.Checkbox.superclass.initEvents.call(this);
29505         // has no events...
29506        
29507     },
29508
29509
29510     getResizeEl : function(){
29511         return this.wrap;
29512     },
29513
29514     getPositionEl : function(){
29515         return this.wrap;
29516     },
29517
29518     // private
29519     onRender : function(ct, position){
29520         
29521         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
29522         //if(this.inputValue !== undefined){
29523         this.wrap = this.el.wrap();
29524         
29525         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
29526         
29527         if (this.bodyStyle) {
29528             this.viewEl.applyStyles(this.bodyStyle);
29529         }
29530         //this.viewEl.setStyle('padding', '2px');
29531         
29532         this.setValue(this.value);
29533         
29534     },
29535 /*
29536     // private
29537     initValue : Roo.emptyFn,
29538
29539   */
29540
29541         // private
29542     onClick : function(){
29543         
29544     },
29545
29546     /**
29547      * Sets the checked state of the checkbox.
29548      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
29549      */
29550     setValue : function(v){
29551         this.value = v;
29552         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
29553         // this might be called before we have a dom element..
29554         if (!this.viewEl) {
29555             return;
29556         }
29557         this.viewEl.dom.innerHTML = html;
29558         Roo.form.DisplayField.superclass.setValue.call(this, v);
29559
29560     }
29561 });/*
29562  * 
29563  * Licence- LGPL
29564  * 
29565  */
29566
29567 /**
29568  * @class Roo.form.DayPicker
29569  * @extends Roo.form.Field
29570  * A Day picker show [M] [T] [W] ....
29571  * @constructor
29572  * Creates a new Day Picker
29573  * @param {Object} config Configuration options
29574  */
29575 Roo.form.DayPicker= function(config){
29576     Roo.form.DayPicker.superclass.constructor.call(this, config);
29577      
29578 };
29579
29580 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
29581     /**
29582      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
29583      */
29584     focusClass : undefined,
29585     /**
29586      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
29587      */
29588     fieldClass: "x-form-field",
29589    
29590     /**
29591      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
29592      * {tag: "input", type: "checkbox", autocomplete: "off"})
29593      */
29594     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
29595     
29596    
29597     actionMode : 'viewEl', 
29598     //
29599     // private
29600  
29601     inputType : 'hidden',
29602     
29603      
29604     inputElement: false, // real input element?
29605     basedOn: false, // ????
29606     
29607     isFormField: true, // not sure where this is needed!!!!
29608
29609     onResize : function(){
29610         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
29611         if(!this.boxLabel){
29612             this.el.alignTo(this.wrap, 'c-c');
29613         }
29614     },
29615
29616     initEvents : function(){
29617         Roo.form.Checkbox.superclass.initEvents.call(this);
29618         this.el.on("click", this.onClick,  this);
29619         this.el.on("change", this.onClick,  this);
29620     },
29621
29622
29623     getResizeEl : function(){
29624         return this.wrap;
29625     },
29626
29627     getPositionEl : function(){
29628         return this.wrap;
29629     },
29630
29631     
29632     // private
29633     onRender : function(ct, position){
29634         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
29635        
29636         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
29637         
29638         var r1 = '<table><tr>';
29639         var r2 = '<tr class="x-form-daypick-icons">';
29640         for (var i=0; i < 7; i++) {
29641             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
29642             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
29643         }
29644         
29645         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
29646         viewEl.select('img').on('click', this.onClick, this);
29647         this.viewEl = viewEl;   
29648         
29649         
29650         // this will not work on Chrome!!!
29651         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
29652         this.el.on('propertychange', this.setFromHidden,  this);  //ie
29653         
29654         
29655           
29656
29657     },
29658
29659     // private
29660     initValue : Roo.emptyFn,
29661
29662     /**
29663      * Returns the checked state of the checkbox.
29664      * @return {Boolean} True if checked, else false
29665      */
29666     getValue : function(){
29667         return this.el.dom.value;
29668         
29669     },
29670
29671         // private
29672     onClick : function(e){ 
29673         //this.setChecked(!this.checked);
29674         Roo.get(e.target).toggleClass('x-menu-item-checked');
29675         this.refreshValue();
29676         //if(this.el.dom.checked != this.checked){
29677         //    this.setValue(this.el.dom.checked);
29678        // }
29679     },
29680     
29681     // private
29682     refreshValue : function()
29683     {
29684         var val = '';
29685         this.viewEl.select('img',true).each(function(e,i,n)  {
29686             val += e.is(".x-menu-item-checked") ? String(n) : '';
29687         });
29688         this.setValue(val, true);
29689     },
29690
29691     /**
29692      * Sets the checked state of the checkbox.
29693      * On is always based on a string comparison between inputValue and the param.
29694      * @param {Boolean/String} value - the value to set 
29695      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
29696      */
29697     setValue : function(v,suppressEvent){
29698         if (!this.el.dom) {
29699             return;
29700         }
29701         var old = this.el.dom.value ;
29702         this.el.dom.value = v;
29703         if (suppressEvent) {
29704             return ;
29705         }
29706          
29707         // update display..
29708         this.viewEl.select('img',true).each(function(e,i,n)  {
29709             
29710             var on = e.is(".x-menu-item-checked");
29711             var newv = v.indexOf(String(n)) > -1;
29712             if (on != newv) {
29713                 e.toggleClass('x-menu-item-checked');
29714             }
29715             
29716         });
29717         
29718         
29719         this.fireEvent('change', this, v, old);
29720         
29721         
29722     },
29723    
29724     // handle setting of hidden value by some other method!!?!?
29725     setFromHidden: function()
29726     {
29727         if(!this.el){
29728             return;
29729         }
29730         //console.log("SET FROM HIDDEN");
29731         //alert('setFrom hidden');
29732         this.setValue(this.el.dom.value);
29733     },
29734     
29735     onDestroy : function()
29736     {
29737         if(this.viewEl){
29738             Roo.get(this.viewEl).remove();
29739         }
29740          
29741         Roo.form.DayPicker.superclass.onDestroy.call(this);
29742     }
29743
29744 });/*
29745  * RooJS Library 1.1.1
29746  * Copyright(c) 2008-2011  Alan Knowles
29747  *
29748  * License - LGPL
29749  */
29750  
29751
29752 /**
29753  * @class Roo.form.ComboCheck
29754  * @extends Roo.form.ComboBox
29755  * A combobox for multiple select items.
29756  *
29757  * FIXME - could do with a reset button..
29758  * 
29759  * @constructor
29760  * Create a new ComboCheck
29761  * @param {Object} config Configuration options
29762  */
29763 Roo.form.ComboCheck = function(config){
29764     Roo.form.ComboCheck.superclass.constructor.call(this, config);
29765     // should verify some data...
29766     // like
29767     // hiddenName = required..
29768     // displayField = required
29769     // valudField == required
29770     var req= [ 'hiddenName', 'displayField', 'valueField' ];
29771     var _t = this;
29772     Roo.each(req, function(e) {
29773         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
29774             throw "Roo.form.ComboCheck : missing value for: " + e;
29775         }
29776     });
29777     
29778     
29779 };
29780
29781 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
29782      
29783      
29784     editable : false,
29785      
29786     selectedClass: 'x-menu-item-checked', 
29787     
29788     // private
29789     onRender : function(ct, position){
29790         var _t = this;
29791         
29792         
29793         
29794         if(!this.tpl){
29795             var cls = 'x-combo-list';
29796
29797             
29798             this.tpl =  new Roo.Template({
29799                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
29800                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
29801                    '<span>{' + this.displayField + '}</span>' +
29802                     '</div>' 
29803                 
29804             });
29805         }
29806  
29807         
29808         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
29809         this.view.singleSelect = false;
29810         this.view.multiSelect = true;
29811         this.view.toggleSelect = true;
29812         this.pageTb.add(new Roo.Toolbar.Fill(), {
29813             
29814             text: 'Done',
29815             handler: function()
29816             {
29817                 _t.collapse();
29818             }
29819         });
29820     },
29821     
29822     onViewOver : function(e, t){
29823         // do nothing...
29824         return;
29825         
29826     },
29827     
29828     onViewClick : function(doFocus,index){
29829         return;
29830         
29831     },
29832     select: function () {
29833         //Roo.log("SELECT CALLED");
29834     },
29835      
29836     selectByValue : function(xv, scrollIntoView){
29837         var ar = this.getValueArray();
29838         var sels = [];
29839         
29840         Roo.each(ar, function(v) {
29841             if(v === undefined || v === null){
29842                 return;
29843             }
29844             var r = this.findRecord(this.valueField, v);
29845             if(r){
29846                 sels.push(this.store.indexOf(r))
29847                 
29848             }
29849         },this);
29850         this.view.select(sels);
29851         return false;
29852     },
29853     
29854     
29855     
29856     onSelect : function(record, index){
29857        // Roo.log("onselect Called");
29858        // this is only called by the clear button now..
29859         this.view.clearSelections();
29860         this.setValue('[]');
29861         if (this.value != this.valueBefore) {
29862             this.fireEvent('change', this, this.value, this.valueBefore);
29863         }
29864     },
29865     getValueArray : function()
29866     {
29867         var ar = [] ;
29868         
29869         try {
29870             //Roo.log(this.value);
29871             if (typeof(this.value) == 'undefined') {
29872                 return [];
29873             }
29874             var ar = Roo.decode(this.value);
29875             return  ar instanceof Array ? ar : []; //?? valid?
29876             
29877         } catch(e) {
29878             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
29879             return [];
29880         }
29881          
29882     },
29883     expand : function ()
29884     {
29885         Roo.form.ComboCheck.superclass.expand.call(this);
29886         this.valueBefore = this.value;
29887         
29888
29889     },
29890     
29891     collapse : function(){
29892         Roo.form.ComboCheck.superclass.collapse.call(this);
29893         var sl = this.view.getSelectedIndexes();
29894         var st = this.store;
29895         var nv = [];
29896         var tv = [];
29897         var r;
29898         Roo.each(sl, function(i) {
29899             r = st.getAt(i);
29900             nv.push(r.get(this.valueField));
29901         },this);
29902         this.setValue(Roo.encode(nv));
29903         if (this.value != this.valueBefore) {
29904
29905             this.fireEvent('change', this, this.value, this.valueBefore);
29906         }
29907         
29908     },
29909     
29910     setValue : function(v){
29911         // Roo.log(v);
29912         this.value = v;
29913         
29914         var vals = this.getValueArray();
29915         var tv = [];
29916         Roo.each(vals, function(k) {
29917             var r = this.findRecord(this.valueField, k);
29918             if(r){
29919                 tv.push(r.data[this.displayField]);
29920             }else if(this.valueNotFoundText !== undefined){
29921                 tv.push( this.valueNotFoundText );
29922             }
29923         },this);
29924        // Roo.log(tv);
29925         
29926         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
29927         this.hiddenField.value = v;
29928         this.value = v;
29929     }
29930     
29931 });//<script type="text/javasscript">
29932  
29933
29934 /**
29935  * @class Roo.DDView
29936  * A DnD enabled version of Roo.View.
29937  * @param {Element/String} container The Element in which to create the View.
29938  * @param {String} tpl The template string used to create the markup for each element of the View
29939  * @param {Object} config The configuration properties. These include all the config options of
29940  * {@link Roo.View} plus some specific to this class.<br>
29941  * <p>
29942  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
29943  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
29944  * <p>
29945  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
29946 .x-view-drag-insert-above {
29947         border-top:1px dotted #3366cc;
29948 }
29949 .x-view-drag-insert-below {
29950         border-bottom:1px dotted #3366cc;
29951 }
29952 </code></pre>
29953  * 
29954  */
29955  
29956 Roo.DDView = function(container, tpl, config) {
29957     Roo.DDView.superclass.constructor.apply(this, arguments);
29958     this.getEl().setStyle("outline", "0px none");
29959     this.getEl().unselectable();
29960     if (this.dragGroup) {
29961                 this.setDraggable(this.dragGroup.split(","));
29962     }
29963     if (this.dropGroup) {
29964                 this.setDroppable(this.dropGroup.split(","));
29965     }
29966     if (this.deletable) {
29967         this.setDeletable();
29968     }
29969     this.isDirtyFlag = false;
29970         this.addEvents({
29971                 "drop" : true
29972         });
29973 };
29974
29975 Roo.extend(Roo.DDView, Roo.View, {
29976 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
29977 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
29978 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
29979 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
29980
29981         isFormField: true,
29982
29983         reset: Roo.emptyFn,
29984         
29985         clearInvalid: Roo.form.Field.prototype.clearInvalid,
29986
29987         validate: function() {
29988                 return true;
29989         },
29990         
29991         destroy: function() {
29992                 this.purgeListeners();
29993                 this.getEl.removeAllListeners();
29994                 this.getEl().remove();
29995                 if (this.dragZone) {
29996                         if (this.dragZone.destroy) {
29997                                 this.dragZone.destroy();
29998                         }
29999                 }
30000                 if (this.dropZone) {
30001                         if (this.dropZone.destroy) {
30002                                 this.dropZone.destroy();
30003                         }
30004                 }
30005         },
30006
30007 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
30008         getName: function() {
30009                 return this.name;
30010         },
30011
30012 /**     Loads the View from a JSON string representing the Records to put into the Store. */
30013         setValue: function(v) {
30014                 if (!this.store) {
30015                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
30016                 }
30017                 var data = {};
30018                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
30019                 this.store.proxy = new Roo.data.MemoryProxy(data);
30020                 this.store.load();
30021         },
30022
30023 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
30024         getValue: function() {
30025                 var result = '(';
30026                 this.store.each(function(rec) {
30027                         result += rec.id + ',';
30028                 });
30029                 return result.substr(0, result.length - 1) + ')';
30030         },
30031         
30032         getIds: function() {
30033                 var i = 0, result = new Array(this.store.getCount());
30034                 this.store.each(function(rec) {
30035                         result[i++] = rec.id;
30036                 });
30037                 return result;
30038         },
30039         
30040         isDirty: function() {
30041                 return this.isDirtyFlag;
30042         },
30043
30044 /**
30045  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
30046  *      whole Element becomes the target, and this causes the drop gesture to append.
30047  */
30048     getTargetFromEvent : function(e) {
30049                 var target = e.getTarget();
30050                 while ((target !== null) && (target.parentNode != this.el.dom)) {
30051                 target = target.parentNode;
30052                 }
30053                 if (!target) {
30054                         target = this.el.dom.lastChild || this.el.dom;
30055                 }
30056                 return target;
30057     },
30058
30059 /**
30060  *      Create the drag data which consists of an object which has the property "ddel" as
30061  *      the drag proxy element. 
30062  */
30063     getDragData : function(e) {
30064         var target = this.findItemFromChild(e.getTarget());
30065                 if(target) {
30066                         this.handleSelection(e);
30067                         var selNodes = this.getSelectedNodes();
30068             var dragData = {
30069                 source: this,
30070                 copy: this.copy || (this.allowCopy && e.ctrlKey),
30071                 nodes: selNodes,
30072                 records: []
30073                         };
30074                         var selectedIndices = this.getSelectedIndexes();
30075                         for (var i = 0; i < selectedIndices.length; i++) {
30076                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
30077                         }
30078                         if (selNodes.length == 1) {
30079                                 dragData.ddel = target.cloneNode(true); // the div element
30080                         } else {
30081                                 var div = document.createElement('div'); // create the multi element drag "ghost"
30082                                 div.className = 'multi-proxy';
30083                                 for (var i = 0, len = selNodes.length; i < len; i++) {
30084                                         div.appendChild(selNodes[i].cloneNode(true));
30085                                 }
30086                                 dragData.ddel = div;
30087                         }
30088             //console.log(dragData)
30089             //console.log(dragData.ddel.innerHTML)
30090                         return dragData;
30091                 }
30092         //console.log('nodragData')
30093                 return false;
30094     },
30095     
30096 /**     Specify to which ddGroup items in this DDView may be dragged. */
30097     setDraggable: function(ddGroup) {
30098         if (ddGroup instanceof Array) {
30099                 Roo.each(ddGroup, this.setDraggable, this);
30100                 return;
30101         }
30102         if (this.dragZone) {
30103                 this.dragZone.addToGroup(ddGroup);
30104         } else {
30105                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
30106                                 containerScroll: true,
30107                                 ddGroup: ddGroup 
30108
30109                         });
30110 //                      Draggability implies selection. DragZone's mousedown selects the element.
30111                         if (!this.multiSelect) { this.singleSelect = true; }
30112
30113 //                      Wire the DragZone's handlers up to methods in *this*
30114                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
30115                 }
30116     },
30117
30118 /**     Specify from which ddGroup this DDView accepts drops. */
30119     setDroppable: function(ddGroup) {
30120         if (ddGroup instanceof Array) {
30121                 Roo.each(ddGroup, this.setDroppable, this);
30122                 return;
30123         }
30124         if (this.dropZone) {
30125                 this.dropZone.addToGroup(ddGroup);
30126         } else {
30127                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
30128                                 containerScroll: true,
30129                                 ddGroup: ddGroup
30130                         });
30131
30132 //                      Wire the DropZone's handlers up to methods in *this*
30133                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
30134                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
30135                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
30136                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
30137                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
30138                 }
30139     },
30140
30141 /**     Decide whether to drop above or below a View node. */
30142     getDropPoint : function(e, n, dd){
30143         if (n == this.el.dom) { return "above"; }
30144                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
30145                 var c = t + (b - t) / 2;
30146                 var y = Roo.lib.Event.getPageY(e);
30147                 if(y <= c) {
30148                         return "above";
30149                 }else{
30150                         return "below";
30151                 }
30152     },
30153
30154     onNodeEnter : function(n, dd, e, data){
30155                 return false;
30156     },
30157     
30158     onNodeOver : function(n, dd, e, data){
30159                 var pt = this.getDropPoint(e, n, dd);
30160                 // set the insert point style on the target node
30161                 var dragElClass = this.dropNotAllowed;
30162                 if (pt) {
30163                         var targetElClass;
30164                         if (pt == "above"){
30165                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
30166                                 targetElClass = "x-view-drag-insert-above";
30167                         } else {
30168                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
30169                                 targetElClass = "x-view-drag-insert-below";
30170                         }
30171                         if (this.lastInsertClass != targetElClass){
30172                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
30173                                 this.lastInsertClass = targetElClass;
30174                         }
30175                 }
30176                 return dragElClass;
30177         },
30178
30179     onNodeOut : function(n, dd, e, data){
30180                 this.removeDropIndicators(n);
30181     },
30182
30183     onNodeDrop : function(n, dd, e, data){
30184         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
30185                 return false;
30186         }
30187         var pt = this.getDropPoint(e, n, dd);
30188                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
30189                 if (pt == "below") { insertAt++; }
30190                 for (var i = 0; i < data.records.length; i++) {
30191                         var r = data.records[i];
30192                         var dup = this.store.getById(r.id);
30193                         if (dup && (dd != this.dragZone)) {
30194                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
30195                         } else {
30196                                 if (data.copy) {
30197                                         this.store.insert(insertAt++, r.copy());
30198                                 } else {
30199                                         data.source.isDirtyFlag = true;
30200                                         r.store.remove(r);
30201                                         this.store.insert(insertAt++, r);
30202                                 }
30203                                 this.isDirtyFlag = true;
30204                         }
30205                 }
30206                 this.dragZone.cachedTarget = null;
30207                 return true;
30208     },
30209
30210     removeDropIndicators : function(n){
30211                 if(n){
30212                         Roo.fly(n).removeClass([
30213                                 "x-view-drag-insert-above",
30214                                 "x-view-drag-insert-below"]);
30215                         this.lastInsertClass = "_noclass";
30216                 }
30217     },
30218
30219 /**
30220  *      Utility method. Add a delete option to the DDView's context menu.
30221  *      @param {String} imageUrl The URL of the "delete" icon image.
30222  */
30223         setDeletable: function(imageUrl) {
30224                 if (!this.singleSelect && !this.multiSelect) {
30225                         this.singleSelect = true;
30226                 }
30227                 var c = this.getContextMenu();
30228                 this.contextMenu.on("itemclick", function(item) {
30229                         switch (item.id) {
30230                                 case "delete":
30231                                         this.remove(this.getSelectedIndexes());
30232                                         break;
30233                         }
30234                 }, this);
30235                 this.contextMenu.add({
30236                         icon: imageUrl,
30237                         id: "delete",
30238                         text: 'Delete'
30239                 });
30240         },
30241         
30242 /**     Return the context menu for this DDView. */
30243         getContextMenu: function() {
30244                 if (!this.contextMenu) {
30245 //                      Create the View's context menu
30246                         this.contextMenu = new Roo.menu.Menu({
30247                                 id: this.id + "-contextmenu"
30248                         });
30249                         this.el.on("contextmenu", this.showContextMenu, this);
30250                 }
30251                 return this.contextMenu;
30252         },
30253         
30254         disableContextMenu: function() {
30255                 if (this.contextMenu) {
30256                         this.el.un("contextmenu", this.showContextMenu, this);
30257                 }
30258         },
30259
30260         showContextMenu: function(e, item) {
30261         item = this.findItemFromChild(e.getTarget());
30262                 if (item) {
30263                         e.stopEvent();
30264                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
30265                         this.contextMenu.showAt(e.getXY());
30266             }
30267     },
30268
30269 /**
30270  *      Remove {@link Roo.data.Record}s at the specified indices.
30271  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
30272  */
30273     remove: function(selectedIndices) {
30274                 selectedIndices = [].concat(selectedIndices);
30275                 for (var i = 0; i < selectedIndices.length; i++) {
30276                         var rec = this.store.getAt(selectedIndices[i]);
30277                         this.store.remove(rec);
30278                 }
30279     },
30280
30281 /**
30282  *      Double click fires the event, but also, if this is draggable, and there is only one other
30283  *      related DropZone, it transfers the selected node.
30284  */
30285     onDblClick : function(e){
30286         var item = this.findItemFromChild(e.getTarget());
30287         if(item){
30288             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
30289                 return false;
30290             }
30291             if (this.dragGroup) {
30292                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
30293                     while (targets.indexOf(this.dropZone) > -1) {
30294                             targets.remove(this.dropZone);
30295                                 }
30296                     if (targets.length == 1) {
30297                                         this.dragZone.cachedTarget = null;
30298                         var el = Roo.get(targets[0].getEl());
30299                         var box = el.getBox(true);
30300                         targets[0].onNodeDrop(el.dom, {
30301                                 target: el.dom,
30302                                 xy: [box.x, box.y + box.height - 1]
30303                         }, null, this.getDragData(e));
30304                     }
30305                 }
30306         }
30307     },
30308     
30309     handleSelection: function(e) {
30310                 this.dragZone.cachedTarget = null;
30311         var item = this.findItemFromChild(e.getTarget());
30312         if (!item) {
30313                 this.clearSelections(true);
30314                 return;
30315         }
30316                 if (item && (this.multiSelect || this.singleSelect)){
30317                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
30318                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
30319                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
30320                                 this.unselect(item);
30321                         } else {
30322                                 this.select(item, this.multiSelect && e.ctrlKey);
30323                                 this.lastSelection = item;
30324                         }
30325                 }
30326     },
30327
30328     onItemClick : function(item, index, e){
30329                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
30330                         return false;
30331                 }
30332                 return true;
30333     },
30334
30335     unselect : function(nodeInfo, suppressEvent){
30336                 var node = this.getNode(nodeInfo);
30337                 if(node && this.isSelected(node)){
30338                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
30339                                 Roo.fly(node).removeClass(this.selectedClass);
30340                                 this.selections.remove(node);
30341                                 if(!suppressEvent){
30342                                         this.fireEvent("selectionchange", this, this.selections);
30343                                 }
30344                         }
30345                 }
30346     }
30347 });
30348 /*
30349  * Based on:
30350  * Ext JS Library 1.1.1
30351  * Copyright(c) 2006-2007, Ext JS, LLC.
30352  *
30353  * Originally Released Under LGPL - original licence link has changed is not relivant.
30354  *
30355  * Fork - LGPL
30356  * <script type="text/javascript">
30357  */
30358  
30359 /**
30360  * @class Roo.LayoutManager
30361  * @extends Roo.util.Observable
30362  * Base class for layout managers.
30363  */
30364 Roo.LayoutManager = function(container, config){
30365     Roo.LayoutManager.superclass.constructor.call(this);
30366     this.el = Roo.get(container);
30367     // ie scrollbar fix
30368     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
30369         document.body.scroll = "no";
30370     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
30371         this.el.position('relative');
30372     }
30373     this.id = this.el.id;
30374     this.el.addClass("x-layout-container");
30375     /** false to disable window resize monitoring @type Boolean */
30376     this.monitorWindowResize = true;
30377     this.regions = {};
30378     this.addEvents({
30379         /**
30380          * @event layout
30381          * Fires when a layout is performed. 
30382          * @param {Roo.LayoutManager} this
30383          */
30384         "layout" : true,
30385         /**
30386          * @event regionresized
30387          * Fires when the user resizes a region. 
30388          * @param {Roo.LayoutRegion} region The resized region
30389          * @param {Number} newSize The new size (width for east/west, height for north/south)
30390          */
30391         "regionresized" : true,
30392         /**
30393          * @event regioncollapsed
30394          * Fires when a region is collapsed. 
30395          * @param {Roo.LayoutRegion} region The collapsed region
30396          */
30397         "regioncollapsed" : true,
30398         /**
30399          * @event regionexpanded
30400          * Fires when a region is expanded.  
30401          * @param {Roo.LayoutRegion} region The expanded region
30402          */
30403         "regionexpanded" : true
30404     });
30405     this.updating = false;
30406     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
30407 };
30408
30409 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
30410     /**
30411      * Returns true if this layout is currently being updated
30412      * @return {Boolean}
30413      */
30414     isUpdating : function(){
30415         return this.updating; 
30416     },
30417     
30418     /**
30419      * Suspend the LayoutManager from doing auto-layouts while
30420      * making multiple add or remove calls
30421      */
30422     beginUpdate : function(){
30423         this.updating = true;    
30424     },
30425     
30426     /**
30427      * Restore auto-layouts and optionally disable the manager from performing a layout
30428      * @param {Boolean} noLayout true to disable a layout update 
30429      */
30430     endUpdate : function(noLayout){
30431         this.updating = false;
30432         if(!noLayout){
30433             this.layout();
30434         }    
30435     },
30436     
30437     layout: function(){
30438         
30439     },
30440     
30441     onRegionResized : function(region, newSize){
30442         this.fireEvent("regionresized", region, newSize);
30443         this.layout();
30444     },
30445     
30446     onRegionCollapsed : function(region){
30447         this.fireEvent("regioncollapsed", region);
30448     },
30449     
30450     onRegionExpanded : function(region){
30451         this.fireEvent("regionexpanded", region);
30452     },
30453         
30454     /**
30455      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
30456      * performs box-model adjustments.
30457      * @return {Object} The size as an object {width: (the width), height: (the height)}
30458      */
30459     getViewSize : function(){
30460         var size;
30461         if(this.el.dom != document.body){
30462             size = this.el.getSize();
30463         }else{
30464             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
30465         }
30466         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
30467         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
30468         return size;
30469     },
30470     
30471     /**
30472      * Returns the Element this layout is bound to.
30473      * @return {Roo.Element}
30474      */
30475     getEl : function(){
30476         return this.el;
30477     },
30478     
30479     /**
30480      * Returns the specified region.
30481      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
30482      * @return {Roo.LayoutRegion}
30483      */
30484     getRegion : function(target){
30485         return this.regions[target.toLowerCase()];
30486     },
30487     
30488     onWindowResize : function(){
30489         if(this.monitorWindowResize){
30490             this.layout();
30491         }
30492     }
30493 });/*
30494  * Based on:
30495  * Ext JS Library 1.1.1
30496  * Copyright(c) 2006-2007, Ext JS, LLC.
30497  *
30498  * Originally Released Under LGPL - original licence link has changed is not relivant.
30499  *
30500  * Fork - LGPL
30501  * <script type="text/javascript">
30502  */
30503 /**
30504  * @class Roo.BorderLayout
30505  * @extends Roo.LayoutManager
30506  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
30507  * please see: <br><br>
30508  * <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>
30509  * <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>
30510  * Example:
30511  <pre><code>
30512  var layout = new Roo.BorderLayout(document.body, {
30513     north: {
30514         initialSize: 25,
30515         titlebar: false
30516     },
30517     west: {
30518         split:true,
30519         initialSize: 200,
30520         minSize: 175,
30521         maxSize: 400,
30522         titlebar: true,
30523         collapsible: true
30524     },
30525     east: {
30526         split:true,
30527         initialSize: 202,
30528         minSize: 175,
30529         maxSize: 400,
30530         titlebar: true,
30531         collapsible: true
30532     },
30533     south: {
30534         split:true,
30535         initialSize: 100,
30536         minSize: 100,
30537         maxSize: 200,
30538         titlebar: true,
30539         collapsible: true
30540     },
30541     center: {
30542         titlebar: true,
30543         autoScroll:true,
30544         resizeTabs: true,
30545         minTabWidth: 50,
30546         preferredTabWidth: 150
30547     }
30548 });
30549
30550 // shorthand
30551 var CP = Roo.ContentPanel;
30552
30553 layout.beginUpdate();
30554 layout.add("north", new CP("north", "North"));
30555 layout.add("south", new CP("south", {title: "South", closable: true}));
30556 layout.add("west", new CP("west", {title: "West"}));
30557 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
30558 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
30559 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
30560 layout.getRegion("center").showPanel("center1");
30561 layout.endUpdate();
30562 </code></pre>
30563
30564 <b>The container the layout is rendered into can be either the body element or any other element.
30565 If it is not the body element, the container needs to either be an absolute positioned element,
30566 or you will need to add "position:relative" to the css of the container.  You will also need to specify
30567 the container size if it is not the body element.</b>
30568
30569 * @constructor
30570 * Create a new BorderLayout
30571 * @param {String/HTMLElement/Element} container The container this layout is bound to
30572 * @param {Object} config Configuration options
30573  */
30574 Roo.BorderLayout = function(container, config){
30575     config = config || {};
30576     Roo.BorderLayout.superclass.constructor.call(this, container, config);
30577     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
30578     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
30579         var target = this.factory.validRegions[i];
30580         if(config[target]){
30581             this.addRegion(target, config[target]);
30582         }
30583     }
30584 };
30585
30586 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
30587     /**
30588      * Creates and adds a new region if it doesn't already exist.
30589      * @param {String} target The target region key (north, south, east, west or center).
30590      * @param {Object} config The regions config object
30591      * @return {BorderLayoutRegion} The new region
30592      */
30593     addRegion : function(target, config){
30594         if(!this.regions[target]){
30595             var r = this.factory.create(target, this, config);
30596             this.bindRegion(target, r);
30597         }
30598         return this.regions[target];
30599     },
30600
30601     // private (kinda)
30602     bindRegion : function(name, r){
30603         this.regions[name] = r;
30604         r.on("visibilitychange", this.layout, this);
30605         r.on("paneladded", this.layout, this);
30606         r.on("panelremoved", this.layout, this);
30607         r.on("invalidated", this.layout, this);
30608         r.on("resized", this.onRegionResized, this);
30609         r.on("collapsed", this.onRegionCollapsed, this);
30610         r.on("expanded", this.onRegionExpanded, this);
30611     },
30612
30613     /**
30614      * Performs a layout update.
30615      */
30616     layout : function(){
30617         if(this.updating) return;
30618         var size = this.getViewSize();
30619         var w = size.width;
30620         var h = size.height;
30621         var centerW = w;
30622         var centerH = h;
30623         var centerY = 0;
30624         var centerX = 0;
30625         //var x = 0, y = 0;
30626
30627         var rs = this.regions;
30628         var north = rs["north"];
30629         var south = rs["south"]; 
30630         var west = rs["west"];
30631         var east = rs["east"];
30632         var center = rs["center"];
30633         //if(this.hideOnLayout){ // not supported anymore
30634             //c.el.setStyle("display", "none");
30635         //}
30636         if(north && north.isVisible()){
30637             var b = north.getBox();
30638             var m = north.getMargins();
30639             b.width = w - (m.left+m.right);
30640             b.x = m.left;
30641             b.y = m.top;
30642             centerY = b.height + b.y + m.bottom;
30643             centerH -= centerY;
30644             north.updateBox(this.safeBox(b));
30645         }
30646         if(south && south.isVisible()){
30647             var b = south.getBox();
30648             var m = south.getMargins();
30649             b.width = w - (m.left+m.right);
30650             b.x = m.left;
30651             var totalHeight = (b.height + m.top + m.bottom);
30652             b.y = h - totalHeight + m.top;
30653             centerH -= totalHeight;
30654             south.updateBox(this.safeBox(b));
30655         }
30656         if(west && west.isVisible()){
30657             var b = west.getBox();
30658             var m = west.getMargins();
30659             b.height = centerH - (m.top+m.bottom);
30660             b.x = m.left;
30661             b.y = centerY + m.top;
30662             var totalWidth = (b.width + m.left + m.right);
30663             centerX += totalWidth;
30664             centerW -= totalWidth;
30665             west.updateBox(this.safeBox(b));
30666         }
30667         if(east && east.isVisible()){
30668             var b = east.getBox();
30669             var m = east.getMargins();
30670             b.height = centerH - (m.top+m.bottom);
30671             var totalWidth = (b.width + m.left + m.right);
30672             b.x = w - totalWidth + m.left;
30673             b.y = centerY + m.top;
30674             centerW -= totalWidth;
30675             east.updateBox(this.safeBox(b));
30676         }
30677         if(center){
30678             var m = center.getMargins();
30679             var centerBox = {
30680                 x: centerX + m.left,
30681                 y: centerY + m.top,
30682                 width: centerW - (m.left+m.right),
30683                 height: centerH - (m.top+m.bottom)
30684             };
30685             //if(this.hideOnLayout){
30686                 //center.el.setStyle("display", "block");
30687             //}
30688             center.updateBox(this.safeBox(centerBox));
30689         }
30690         this.el.repaint();
30691         this.fireEvent("layout", this);
30692     },
30693
30694     // private
30695     safeBox : function(box){
30696         box.width = Math.max(0, box.width);
30697         box.height = Math.max(0, box.height);
30698         return box;
30699     },
30700
30701     /**
30702      * Adds a ContentPanel (or subclass) to this layout.
30703      * @param {String} target The target region key (north, south, east, west or center).
30704      * @param {Roo.ContentPanel} panel The panel to add
30705      * @return {Roo.ContentPanel} The added panel
30706      */
30707     add : function(target, panel){
30708          
30709         target = target.toLowerCase();
30710         return this.regions[target].add(panel);
30711     },
30712
30713     /**
30714      * Remove a ContentPanel (or subclass) to this layout.
30715      * @param {String} target The target region key (north, south, east, west or center).
30716      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
30717      * @return {Roo.ContentPanel} The removed panel
30718      */
30719     remove : function(target, panel){
30720         target = target.toLowerCase();
30721         return this.regions[target].remove(panel);
30722     },
30723
30724     /**
30725      * Searches all regions for a panel with the specified id
30726      * @param {String} panelId
30727      * @return {Roo.ContentPanel} The panel or null if it wasn't found
30728      */
30729     findPanel : function(panelId){
30730         var rs = this.regions;
30731         for(var target in rs){
30732             if(typeof rs[target] != "function"){
30733                 var p = rs[target].getPanel(panelId);
30734                 if(p){
30735                     return p;
30736                 }
30737             }
30738         }
30739         return null;
30740     },
30741
30742     /**
30743      * Searches all regions for a panel with the specified id and activates (shows) it.
30744      * @param {String/ContentPanel} panelId The panels id or the panel itself
30745      * @return {Roo.ContentPanel} The shown panel or null
30746      */
30747     showPanel : function(panelId) {
30748       var rs = this.regions;
30749       for(var target in rs){
30750          var r = rs[target];
30751          if(typeof r != "function"){
30752             if(r.hasPanel(panelId)){
30753                return r.showPanel(panelId);
30754             }
30755          }
30756       }
30757       return null;
30758    },
30759
30760    /**
30761      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
30762      * @param {Roo.state.Provider} provider (optional) An alternate state provider
30763      */
30764     restoreState : function(provider){
30765         if(!provider){
30766             provider = Roo.state.Manager;
30767         }
30768         var sm = new Roo.LayoutStateManager();
30769         sm.init(this, provider);
30770     },
30771
30772     /**
30773      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
30774      * object should contain properties for each region to add ContentPanels to, and each property's value should be
30775      * a valid ContentPanel config object.  Example:
30776      * <pre><code>
30777 // Create the main layout
30778 var layout = new Roo.BorderLayout('main-ct', {
30779     west: {
30780         split:true,
30781         minSize: 175,
30782         titlebar: true
30783     },
30784     center: {
30785         title:'Components'
30786     }
30787 }, 'main-ct');
30788
30789 // Create and add multiple ContentPanels at once via configs
30790 layout.batchAdd({
30791    west: {
30792        id: 'source-files',
30793        autoCreate:true,
30794        title:'Ext Source Files',
30795        autoScroll:true,
30796        fitToFrame:true
30797    },
30798    center : {
30799        el: cview,
30800        autoScroll:true,
30801        fitToFrame:true,
30802        toolbar: tb,
30803        resizeEl:'cbody'
30804    }
30805 });
30806 </code></pre>
30807      * @param {Object} regions An object containing ContentPanel configs by region name
30808      */
30809     batchAdd : function(regions){
30810         this.beginUpdate();
30811         for(var rname in regions){
30812             var lr = this.regions[rname];
30813             if(lr){
30814                 this.addTypedPanels(lr, regions[rname]);
30815             }
30816         }
30817         this.endUpdate();
30818     },
30819
30820     // private
30821     addTypedPanels : function(lr, ps){
30822         if(typeof ps == 'string'){
30823             lr.add(new Roo.ContentPanel(ps));
30824         }
30825         else if(ps instanceof Array){
30826             for(var i =0, len = ps.length; i < len; i++){
30827                 this.addTypedPanels(lr, ps[i]);
30828             }
30829         }
30830         else if(!ps.events){ // raw config?
30831             var el = ps.el;
30832             delete ps.el; // prevent conflict
30833             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
30834         }
30835         else {  // panel object assumed!
30836             lr.add(ps);
30837         }
30838     },
30839     /**
30840      * Adds a xtype elements to the layout.
30841      * <pre><code>
30842
30843 layout.addxtype({
30844        xtype : 'ContentPanel',
30845        region: 'west',
30846        items: [ .... ]
30847    }
30848 );
30849
30850 layout.addxtype({
30851         xtype : 'NestedLayoutPanel',
30852         region: 'west',
30853         layout: {
30854            center: { },
30855            west: { }   
30856         },
30857         items : [ ... list of content panels or nested layout panels.. ]
30858    }
30859 );
30860 </code></pre>
30861      * @param {Object} cfg Xtype definition of item to add.
30862      */
30863     addxtype : function(cfg)
30864     {
30865         // basically accepts a pannel...
30866         // can accept a layout region..!?!?
30867         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
30868         
30869         if (!cfg.xtype.match(/Panel$/)) {
30870             return false;
30871         }
30872         var ret = false;
30873         
30874         if (typeof(cfg.region) == 'undefined') {
30875             Roo.log("Failed to add Panel, region was not set");
30876             Roo.log(cfg);
30877             return false;
30878         }
30879         var region = cfg.region;
30880         delete cfg.region;
30881         
30882           
30883         var xitems = [];
30884         if (cfg.items) {
30885             xitems = cfg.items;
30886             delete cfg.items;
30887         }
30888         var nb = false;
30889         
30890         switch(cfg.xtype) 
30891         {
30892             case 'ContentPanel':  // ContentPanel (el, cfg)
30893             case 'ScrollPanel':  // ContentPanel (el, cfg)
30894                 if(cfg.autoCreate) {
30895                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
30896                 } else {
30897                     var el = this.el.createChild();
30898                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
30899                 }
30900                 
30901                 this.add(region, ret);
30902                 break;
30903             
30904             
30905             case 'TreePanel': // our new panel!
30906                 cfg.el = this.el.createChild();
30907                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
30908                 this.add(region, ret);
30909                 break;
30910             
30911             case 'NestedLayoutPanel': 
30912                 // create a new Layout (which is  a Border Layout...
30913                 var el = this.el.createChild();
30914                 var clayout = cfg.layout;
30915                 delete cfg.layout;
30916                 clayout.items   = clayout.items  || [];
30917                 // replace this exitems with the clayout ones..
30918                 xitems = clayout.items;
30919                  
30920                 
30921                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
30922                     cfg.background = false;
30923                 }
30924                 var layout = new Roo.BorderLayout(el, clayout);
30925                 
30926                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
30927                 //console.log('adding nested layout panel '  + cfg.toSource());
30928                 this.add(region, ret);
30929                 nb = {}; /// find first...
30930                 break;
30931                 
30932             case 'GridPanel': 
30933             
30934                 // needs grid and region
30935                 
30936                 //var el = this.getRegion(region).el.createChild();
30937                 var el = this.el.createChild();
30938                 // create the grid first...
30939                 
30940                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
30941                 delete cfg.grid;
30942                 if (region == 'center' && this.active ) {
30943                     cfg.background = false;
30944                 }
30945                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
30946                 
30947                 this.add(region, ret);
30948                 if (cfg.background) {
30949                     ret.on('activate', function(gp) {
30950                         if (!gp.grid.rendered) {
30951                             gp.grid.render();
30952                         }
30953                     });
30954                 } else {
30955                     grid.render();
30956                 }
30957                 break;
30958            
30959                
30960                 
30961                 
30962             default: 
30963                 alert("Can not add '" + cfg.xtype + "' to BorderLayout");
30964                 return null;
30965              // GridPanel (grid, cfg)
30966             
30967         }
30968         this.beginUpdate();
30969         // add children..
30970         var region = '';
30971         var abn = {};
30972         Roo.each(xitems, function(i)  {
30973             region = nb && i.region ? i.region : false;
30974             
30975             var add = ret.addxtype(i);
30976            
30977             if (region) {
30978                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
30979                 if (!i.background) {
30980                     abn[region] = nb[region] ;
30981                 }
30982             }
30983             
30984         });
30985         this.endUpdate();
30986
30987         // make the last non-background panel active..
30988         //if (nb) { Roo.log(abn); }
30989         if (nb) {
30990             
30991             for(var r in abn) {
30992                 region = this.getRegion(r);
30993                 if (region) {
30994                     // tried using nb[r], but it does not work..
30995                      
30996                     region.showPanel(abn[r]);
30997                    
30998                 }
30999             }
31000         }
31001         return ret;
31002         
31003     }
31004 });
31005
31006 /**
31007  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
31008  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
31009  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
31010  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
31011  * <pre><code>
31012 // shorthand
31013 var CP = Roo.ContentPanel;
31014
31015 var layout = Roo.BorderLayout.create({
31016     north: {
31017         initialSize: 25,
31018         titlebar: false,
31019         panels: [new CP("north", "North")]
31020     },
31021     west: {
31022         split:true,
31023         initialSize: 200,
31024         minSize: 175,
31025         maxSize: 400,
31026         titlebar: true,
31027         collapsible: true,
31028         panels: [new CP("west", {title: "West"})]
31029     },
31030     east: {
31031         split:true,
31032         initialSize: 202,
31033         minSize: 175,
31034         maxSize: 400,
31035         titlebar: true,
31036         collapsible: true,
31037         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
31038     },
31039     south: {
31040         split:true,
31041         initialSize: 100,
31042         minSize: 100,
31043         maxSize: 200,
31044         titlebar: true,
31045         collapsible: true,
31046         panels: [new CP("south", {title: "South", closable: true})]
31047     },
31048     center: {
31049         titlebar: true,
31050         autoScroll:true,
31051         resizeTabs: true,
31052         minTabWidth: 50,
31053         preferredTabWidth: 150,
31054         panels: [
31055             new CP("center1", {title: "Close Me", closable: true}),
31056             new CP("center2", {title: "Center Panel", closable: false})
31057         ]
31058     }
31059 }, document.body);
31060
31061 layout.getRegion("center").showPanel("center1");
31062 </code></pre>
31063  * @param config
31064  * @param targetEl
31065  */
31066 Roo.BorderLayout.create = function(config, targetEl){
31067     var layout = new Roo.BorderLayout(targetEl || document.body, config);
31068     layout.beginUpdate();
31069     var regions = Roo.BorderLayout.RegionFactory.validRegions;
31070     for(var j = 0, jlen = regions.length; j < jlen; j++){
31071         var lr = regions[j];
31072         if(layout.regions[lr] && config[lr].panels){
31073             var r = layout.regions[lr];
31074             var ps = config[lr].panels;
31075             layout.addTypedPanels(r, ps);
31076         }
31077     }
31078     layout.endUpdate();
31079     return layout;
31080 };
31081
31082 // private
31083 Roo.BorderLayout.RegionFactory = {
31084     // private
31085     validRegions : ["north","south","east","west","center"],
31086
31087     // private
31088     create : function(target, mgr, config){
31089         target = target.toLowerCase();
31090         if(config.lightweight || config.basic){
31091             return new Roo.BasicLayoutRegion(mgr, config, target);
31092         }
31093         switch(target){
31094             case "north":
31095                 return new Roo.NorthLayoutRegion(mgr, config);
31096             case "south":
31097                 return new Roo.SouthLayoutRegion(mgr, config);
31098             case "east":
31099                 return new Roo.EastLayoutRegion(mgr, config);
31100             case "west":
31101                 return new Roo.WestLayoutRegion(mgr, config);
31102             case "center":
31103                 return new Roo.CenterLayoutRegion(mgr, config);
31104         }
31105         throw 'Layout region "'+target+'" not supported.';
31106     }
31107 };/*
31108  * Based on:
31109  * Ext JS Library 1.1.1
31110  * Copyright(c) 2006-2007, Ext JS, LLC.
31111  *
31112  * Originally Released Under LGPL - original licence link has changed is not relivant.
31113  *
31114  * Fork - LGPL
31115  * <script type="text/javascript">
31116  */
31117  
31118 /**
31119  * @class Roo.BasicLayoutRegion
31120  * @extends Roo.util.Observable
31121  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
31122  * and does not have a titlebar, tabs or any other features. All it does is size and position 
31123  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
31124  */
31125 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
31126     this.mgr = mgr;
31127     this.position  = pos;
31128     this.events = {
31129         /**
31130          * @scope Roo.BasicLayoutRegion
31131          */
31132         
31133         /**
31134          * @event beforeremove
31135          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
31136          * @param {Roo.LayoutRegion} this
31137          * @param {Roo.ContentPanel} panel The panel
31138          * @param {Object} e The cancel event object
31139          */
31140         "beforeremove" : true,
31141         /**
31142          * @event invalidated
31143          * Fires when the layout for this region is changed.
31144          * @param {Roo.LayoutRegion} this
31145          */
31146         "invalidated" : true,
31147         /**
31148          * @event visibilitychange
31149          * Fires when this region is shown or hidden 
31150          * @param {Roo.LayoutRegion} this
31151          * @param {Boolean} visibility true or false
31152          */
31153         "visibilitychange" : true,
31154         /**
31155          * @event paneladded
31156          * Fires when a panel is added. 
31157          * @param {Roo.LayoutRegion} this
31158          * @param {Roo.ContentPanel} panel The panel
31159          */
31160         "paneladded" : true,
31161         /**
31162          * @event panelremoved
31163          * Fires when a panel is removed. 
31164          * @param {Roo.LayoutRegion} this
31165          * @param {Roo.ContentPanel} panel The panel
31166          */
31167         "panelremoved" : true,
31168         /**
31169          * @event collapsed
31170          * Fires when this region is collapsed.
31171          * @param {Roo.LayoutRegion} this
31172          */
31173         "collapsed" : true,
31174         /**
31175          * @event expanded
31176          * Fires when this region is expanded.
31177          * @param {Roo.LayoutRegion} this
31178          */
31179         "expanded" : true,
31180         /**
31181          * @event slideshow
31182          * Fires when this region is slid into view.
31183          * @param {Roo.LayoutRegion} this
31184          */
31185         "slideshow" : true,
31186         /**
31187          * @event slidehide
31188          * Fires when this region slides out of view. 
31189          * @param {Roo.LayoutRegion} this
31190          */
31191         "slidehide" : true,
31192         /**
31193          * @event panelactivated
31194          * Fires when a panel is activated. 
31195          * @param {Roo.LayoutRegion} this
31196          * @param {Roo.ContentPanel} panel The activated panel
31197          */
31198         "panelactivated" : true,
31199         /**
31200          * @event resized
31201          * Fires when the user resizes this region. 
31202          * @param {Roo.LayoutRegion} this
31203          * @param {Number} newSize The new size (width for east/west, height for north/south)
31204          */
31205         "resized" : true
31206     };
31207     /** A collection of panels in this region. @type Roo.util.MixedCollection */
31208     this.panels = new Roo.util.MixedCollection();
31209     this.panels.getKey = this.getPanelId.createDelegate(this);
31210     this.box = null;
31211     this.activePanel = null;
31212     // ensure listeners are added...
31213     
31214     if (config.listeners || config.events) {
31215         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
31216             listeners : config.listeners || {},
31217             events : config.events || {}
31218         });
31219     }
31220     
31221     if(skipConfig !== true){
31222         this.applyConfig(config);
31223     }
31224 };
31225
31226 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
31227     getPanelId : function(p){
31228         return p.getId();
31229     },
31230     
31231     applyConfig : function(config){
31232         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
31233         this.config = config;
31234         
31235     },
31236     
31237     /**
31238      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
31239      * the width, for horizontal (north, south) the height.
31240      * @param {Number} newSize The new width or height
31241      */
31242     resizeTo : function(newSize){
31243         var el = this.el ? this.el :
31244                  (this.activePanel ? this.activePanel.getEl() : null);
31245         if(el){
31246             switch(this.position){
31247                 case "east":
31248                 case "west":
31249                     el.setWidth(newSize);
31250                     this.fireEvent("resized", this, newSize);
31251                 break;
31252                 case "north":
31253                 case "south":
31254                     el.setHeight(newSize);
31255                     this.fireEvent("resized", this, newSize);
31256                 break;                
31257             }
31258         }
31259     },
31260     
31261     getBox : function(){
31262         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
31263     },
31264     
31265     getMargins : function(){
31266         return this.margins;
31267     },
31268     
31269     updateBox : function(box){
31270         this.box = box;
31271         var el = this.activePanel.getEl();
31272         el.dom.style.left = box.x + "px";
31273         el.dom.style.top = box.y + "px";
31274         this.activePanel.setSize(box.width, box.height);
31275     },
31276     
31277     /**
31278      * Returns the container element for this region.
31279      * @return {Roo.Element}
31280      */
31281     getEl : function(){
31282         return this.activePanel;
31283     },
31284     
31285     /**
31286      * Returns true if this region is currently visible.
31287      * @return {Boolean}
31288      */
31289     isVisible : function(){
31290         return this.activePanel ? true : false;
31291     },
31292     
31293     setActivePanel : function(panel){
31294         panel = this.getPanel(panel);
31295         if(this.activePanel && this.activePanel != panel){
31296             this.activePanel.setActiveState(false);
31297             this.activePanel.getEl().setLeftTop(-10000,-10000);
31298         }
31299         this.activePanel = panel;
31300         panel.setActiveState(true);
31301         if(this.box){
31302             panel.setSize(this.box.width, this.box.height);
31303         }
31304         this.fireEvent("panelactivated", this, panel);
31305         this.fireEvent("invalidated");
31306     },
31307     
31308     /**
31309      * Show the specified panel.
31310      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
31311      * @return {Roo.ContentPanel} The shown panel or null
31312      */
31313     showPanel : function(panel){
31314         if(panel = this.getPanel(panel)){
31315             this.setActivePanel(panel);
31316         }
31317         return panel;
31318     },
31319     
31320     /**
31321      * Get the active panel for this region.
31322      * @return {Roo.ContentPanel} The active panel or null
31323      */
31324     getActivePanel : function(){
31325         return this.activePanel;
31326     },
31327     
31328     /**
31329      * Add the passed ContentPanel(s)
31330      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
31331      * @return {Roo.ContentPanel} The panel added (if only one was added)
31332      */
31333     add : function(panel){
31334         if(arguments.length > 1){
31335             for(var i = 0, len = arguments.length; i < len; i++) {
31336                 this.add(arguments[i]);
31337             }
31338             return null;
31339         }
31340         if(this.hasPanel(panel)){
31341             this.showPanel(panel);
31342             return panel;
31343         }
31344         var el = panel.getEl();
31345         if(el.dom.parentNode != this.mgr.el.dom){
31346             this.mgr.el.dom.appendChild(el.dom);
31347         }
31348         if(panel.setRegion){
31349             panel.setRegion(this);
31350         }
31351         this.panels.add(panel);
31352         el.setStyle("position", "absolute");
31353         if(!panel.background){
31354             this.setActivePanel(panel);
31355             if(this.config.initialSize && this.panels.getCount()==1){
31356                 this.resizeTo(this.config.initialSize);
31357             }
31358         }
31359         this.fireEvent("paneladded", this, panel);
31360         return panel;
31361     },
31362     
31363     /**
31364      * Returns true if the panel is in this region.
31365      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
31366      * @return {Boolean}
31367      */
31368     hasPanel : function(panel){
31369         if(typeof panel == "object"){ // must be panel obj
31370             panel = panel.getId();
31371         }
31372         return this.getPanel(panel) ? true : false;
31373     },
31374     
31375     /**
31376      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
31377      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
31378      * @param {Boolean} preservePanel Overrides the config preservePanel option
31379      * @return {Roo.ContentPanel} The panel that was removed
31380      */
31381     remove : function(panel, preservePanel){
31382         panel = this.getPanel(panel);
31383         if(!panel){
31384             return null;
31385         }
31386         var e = {};
31387         this.fireEvent("beforeremove", this, panel, e);
31388         if(e.cancel === true){
31389             return null;
31390         }
31391         var panelId = panel.getId();
31392         this.panels.removeKey(panelId);
31393         return panel;
31394     },
31395     
31396     /**
31397      * Returns the panel specified or null if it's not in this region.
31398      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
31399      * @return {Roo.ContentPanel}
31400      */
31401     getPanel : function(id){
31402         if(typeof id == "object"){ // must be panel obj
31403             return id;
31404         }
31405         return this.panels.get(id);
31406     },
31407     
31408     /**
31409      * Returns this regions position (north/south/east/west/center).
31410      * @return {String} 
31411      */
31412     getPosition: function(){
31413         return this.position;    
31414     }
31415 });/*
31416  * Based on:
31417  * Ext JS Library 1.1.1
31418  * Copyright(c) 2006-2007, Ext JS, LLC.
31419  *
31420  * Originally Released Under LGPL - original licence link has changed is not relivant.
31421  *
31422  * Fork - LGPL
31423  * <script type="text/javascript">
31424  */
31425  
31426 /**
31427  * @class Roo.LayoutRegion
31428  * @extends Roo.BasicLayoutRegion
31429  * This class represents a region in a layout manager.
31430  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
31431  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
31432  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
31433  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
31434  * @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})
31435  * @cfg {String}    tabPosition     "top" or "bottom" (defaults to "bottom")
31436  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
31437  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
31438  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
31439  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
31440  * @cfg {String}    title           The title for the region (overrides panel titles)
31441  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
31442  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
31443  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
31444  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
31445  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
31446  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
31447  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
31448  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
31449  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
31450  * @cfg {Boolean}   showPin         True to show a pin button
31451  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
31452  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
31453  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
31454  * @cfg {Number}    width           For East/West panels
31455  * @cfg {Number}    height          For North/South panels
31456  * @cfg {Boolean}   split           To show the splitter
31457  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
31458  */
31459 Roo.LayoutRegion = function(mgr, config, pos){
31460     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
31461     var dh = Roo.DomHelper;
31462     /** This region's container element 
31463     * @type Roo.Element */
31464     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
31465     /** This region's title element 
31466     * @type Roo.Element */
31467
31468     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
31469         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
31470         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
31471     ]}, true);
31472     this.titleEl.enableDisplayMode();
31473     /** This region's title text element 
31474     * @type HTMLElement */
31475     this.titleTextEl = this.titleEl.dom.firstChild;
31476     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
31477     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
31478     this.closeBtn.enableDisplayMode();
31479     this.closeBtn.on("click", this.closeClicked, this);
31480     this.closeBtn.hide();
31481
31482     this.createBody(config);
31483     this.visible = true;
31484     this.collapsed = false;
31485
31486     if(config.hideWhenEmpty){
31487         this.hide();
31488         this.on("paneladded", this.validateVisibility, this);
31489         this.on("panelremoved", this.validateVisibility, this);
31490     }
31491     this.applyConfig(config);
31492 };
31493
31494 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
31495
31496     createBody : function(){
31497         /** This region's body element 
31498         * @type Roo.Element */
31499         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
31500     },
31501
31502     applyConfig : function(c){
31503         if(c.collapsible && this.position != "center" && !this.collapsedEl){
31504             var dh = Roo.DomHelper;
31505             if(c.titlebar !== false){
31506                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
31507                 this.collapseBtn.on("click", this.collapse, this);
31508                 this.collapseBtn.enableDisplayMode();
31509
31510                 if(c.showPin === true || this.showPin){
31511                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
31512                     this.stickBtn.enableDisplayMode();
31513                     this.stickBtn.on("click", this.expand, this);
31514                     this.stickBtn.hide();
31515                 }
31516             }
31517             /** This region's collapsed element
31518             * @type Roo.Element */
31519             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
31520                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
31521             ]}, true);
31522             if(c.floatable !== false){
31523                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
31524                this.collapsedEl.on("click", this.collapseClick, this);
31525             }
31526
31527             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
31528                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
31529                    id: "message", unselectable: "on", style:{"float":"left"}});
31530                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
31531              }
31532             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
31533             this.expandBtn.on("click", this.expand, this);
31534         }
31535         if(this.collapseBtn){
31536             this.collapseBtn.setVisible(c.collapsible == true);
31537         }
31538         this.cmargins = c.cmargins || this.cmargins ||
31539                          (this.position == "west" || this.position == "east" ?
31540                              {top: 0, left: 2, right:2, bottom: 0} :
31541                              {top: 2, left: 0, right:0, bottom: 2});
31542         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
31543         this.bottomTabs = c.tabPosition != "top";
31544         this.autoScroll = c.autoScroll || false;
31545         if(this.autoScroll){
31546             this.bodyEl.setStyle("overflow", "auto");
31547         }else{
31548             this.bodyEl.setStyle("overflow", "hidden");
31549         }
31550         //if(c.titlebar !== false){
31551             if((!c.titlebar && !c.title) || c.titlebar === false){
31552                 this.titleEl.hide();
31553             }else{
31554                 this.titleEl.show();
31555                 if(c.title){
31556                     this.titleTextEl.innerHTML = c.title;
31557                 }
31558             }
31559         //}
31560         this.duration = c.duration || .30;
31561         this.slideDuration = c.slideDuration || .45;
31562         this.config = c;
31563         if(c.collapsed){
31564             this.collapse(true);
31565         }
31566         if(c.hidden){
31567             this.hide();
31568         }
31569     },
31570     /**
31571      * Returns true if this region is currently visible.
31572      * @return {Boolean}
31573      */
31574     isVisible : function(){
31575         return this.visible;
31576     },
31577
31578     /**
31579      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
31580      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
31581      */
31582     setCollapsedTitle : function(title){
31583         title = title || "&#160;";
31584         if(this.collapsedTitleTextEl){
31585             this.collapsedTitleTextEl.innerHTML = title;
31586         }
31587     },
31588
31589     getBox : function(){
31590         var b;
31591         if(!this.collapsed){
31592             b = this.el.getBox(false, true);
31593         }else{
31594             b = this.collapsedEl.getBox(false, true);
31595         }
31596         return b;
31597     },
31598
31599     getMargins : function(){
31600         return this.collapsed ? this.cmargins : this.margins;
31601     },
31602
31603     highlight : function(){
31604         this.el.addClass("x-layout-panel-dragover");
31605     },
31606
31607     unhighlight : function(){
31608         this.el.removeClass("x-layout-panel-dragover");
31609     },
31610
31611     updateBox : function(box){
31612         this.box = box;
31613         if(!this.collapsed){
31614             this.el.dom.style.left = box.x + "px";
31615             this.el.dom.style.top = box.y + "px";
31616             this.updateBody(box.width, box.height);
31617         }else{
31618             this.collapsedEl.dom.style.left = box.x + "px";
31619             this.collapsedEl.dom.style.top = box.y + "px";
31620             this.collapsedEl.setSize(box.width, box.height);
31621         }
31622         if(this.tabs){
31623             this.tabs.autoSizeTabs();
31624         }
31625     },
31626
31627     updateBody : function(w, h){
31628         if(w !== null){
31629             this.el.setWidth(w);
31630             w -= this.el.getBorderWidth("rl");
31631             if(this.config.adjustments){
31632                 w += this.config.adjustments[0];
31633             }
31634         }
31635         if(h !== null){
31636             this.el.setHeight(h);
31637             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
31638             h -= this.el.getBorderWidth("tb");
31639             if(this.config.adjustments){
31640                 h += this.config.adjustments[1];
31641             }
31642             this.bodyEl.setHeight(h);
31643             if(this.tabs){
31644                 h = this.tabs.syncHeight(h);
31645             }
31646         }
31647         if(this.panelSize){
31648             w = w !== null ? w : this.panelSize.width;
31649             h = h !== null ? h : this.panelSize.height;
31650         }
31651         if(this.activePanel){
31652             var el = this.activePanel.getEl();
31653             w = w !== null ? w : el.getWidth();
31654             h = h !== null ? h : el.getHeight();
31655             this.panelSize = {width: w, height: h};
31656             this.activePanel.setSize(w, h);
31657         }
31658         if(Roo.isIE && this.tabs){
31659             this.tabs.el.repaint();
31660         }
31661     },
31662
31663     /**
31664      * Returns the container element for this region.
31665      * @return {Roo.Element}
31666      */
31667     getEl : function(){
31668         return this.el;
31669     },
31670
31671     /**
31672      * Hides this region.
31673      */
31674     hide : function(){
31675         if(!this.collapsed){
31676             this.el.dom.style.left = "-2000px";
31677             this.el.hide();
31678         }else{
31679             this.collapsedEl.dom.style.left = "-2000px";
31680             this.collapsedEl.hide();
31681         }
31682         this.visible = false;
31683         this.fireEvent("visibilitychange", this, false);
31684     },
31685
31686     /**
31687      * Shows this region if it was previously hidden.
31688      */
31689     show : function(){
31690         if(!this.collapsed){
31691             this.el.show();
31692         }else{
31693             this.collapsedEl.show();
31694         }
31695         this.visible = true;
31696         this.fireEvent("visibilitychange", this, true);
31697     },
31698
31699     closeClicked : function(){
31700         if(this.activePanel){
31701             this.remove(this.activePanel);
31702         }
31703     },
31704
31705     collapseClick : function(e){
31706         if(this.isSlid){
31707            e.stopPropagation();
31708            this.slideIn();
31709         }else{
31710            e.stopPropagation();
31711            this.slideOut();
31712         }
31713     },
31714
31715     /**
31716      * Collapses this region.
31717      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
31718      */
31719     collapse : function(skipAnim){
31720         if(this.collapsed) return;
31721         this.collapsed = true;
31722         if(this.split){
31723             this.split.el.hide();
31724         }
31725         if(this.config.animate && skipAnim !== true){
31726             this.fireEvent("invalidated", this);
31727             this.animateCollapse();
31728         }else{
31729             this.el.setLocation(-20000,-20000);
31730             this.el.hide();
31731             this.collapsedEl.show();
31732             this.fireEvent("collapsed", this);
31733             this.fireEvent("invalidated", this);
31734         }
31735     },
31736
31737     animateCollapse : function(){
31738         // overridden
31739     },
31740
31741     /**
31742      * Expands this region if it was previously collapsed.
31743      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
31744      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
31745      */
31746     expand : function(e, skipAnim){
31747         if(e) e.stopPropagation();
31748         if(!this.collapsed || this.el.hasActiveFx()) return;
31749         if(this.isSlid){
31750             this.afterSlideIn();
31751             skipAnim = true;
31752         }
31753         this.collapsed = false;
31754         if(this.config.animate && skipAnim !== true){
31755             this.animateExpand();
31756         }else{
31757             this.el.show();
31758             if(this.split){
31759                 this.split.el.show();
31760             }
31761             this.collapsedEl.setLocation(-2000,-2000);
31762             this.collapsedEl.hide();
31763             this.fireEvent("invalidated", this);
31764             this.fireEvent("expanded", this);
31765         }
31766     },
31767
31768     animateExpand : function(){
31769         // overridden
31770     },
31771
31772     initTabs : function()
31773     {
31774         this.bodyEl.setStyle("overflow", "hidden");
31775         var ts = new Roo.TabPanel(
31776                 this.bodyEl.dom,
31777                 {
31778                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
31779                     disableTooltips: this.config.disableTabTips,
31780                     toolbar : this.config.toolbar
31781                 }
31782         );
31783         if(this.config.hideTabs){
31784             ts.stripWrap.setDisplayed(false);
31785         }
31786         this.tabs = ts;
31787         ts.resizeTabs = this.config.resizeTabs === true;
31788         ts.minTabWidth = this.config.minTabWidth || 40;
31789         ts.maxTabWidth = this.config.maxTabWidth || 250;
31790         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
31791         ts.monitorResize = false;
31792         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
31793         ts.bodyEl.addClass('x-layout-tabs-body');
31794         this.panels.each(this.initPanelAsTab, this);
31795     },
31796
31797     initPanelAsTab : function(panel){
31798         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
31799                     this.config.closeOnTab && panel.isClosable());
31800         if(panel.tabTip !== undefined){
31801             ti.setTooltip(panel.tabTip);
31802         }
31803         ti.on("activate", function(){
31804               this.setActivePanel(panel);
31805         }, this);
31806         if(this.config.closeOnTab){
31807             ti.on("beforeclose", function(t, e){
31808                 e.cancel = true;
31809                 this.remove(panel);
31810             }, this);
31811         }
31812         return ti;
31813     },
31814
31815     updatePanelTitle : function(panel, title){
31816         if(this.activePanel == panel){
31817             this.updateTitle(title);
31818         }
31819         if(this.tabs){
31820             var ti = this.tabs.getTab(panel.getEl().id);
31821             ti.setText(title);
31822             if(panel.tabTip !== undefined){
31823                 ti.setTooltip(panel.tabTip);
31824             }
31825         }
31826     },
31827
31828     updateTitle : function(title){
31829         if(this.titleTextEl && !this.config.title){
31830             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
31831         }
31832     },
31833
31834     setActivePanel : function(panel){
31835         panel = this.getPanel(panel);
31836         if(this.activePanel && this.activePanel != panel){
31837             this.activePanel.setActiveState(false);
31838         }
31839         this.activePanel = panel;
31840         panel.setActiveState(true);
31841         if(this.panelSize){
31842             panel.setSize(this.panelSize.width, this.panelSize.height);
31843         }
31844         if(this.closeBtn){
31845             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
31846         }
31847         this.updateTitle(panel.getTitle());
31848         if(this.tabs){
31849             this.fireEvent("invalidated", this);
31850         }
31851         this.fireEvent("panelactivated", this, panel);
31852     },
31853
31854     /**
31855      * Shows the specified panel.
31856      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
31857      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
31858      */
31859     showPanel : function(panel){
31860         if(panel = this.getPanel(panel)){
31861             if(this.tabs){
31862                 var tab = this.tabs.getTab(panel.getEl().id);
31863                 if(tab.isHidden()){
31864                     this.tabs.unhideTab(tab.id);
31865                 }
31866                 tab.activate();
31867             }else{
31868                 this.setActivePanel(panel);
31869             }
31870         }
31871         return panel;
31872     },
31873
31874     /**
31875      * Get the active panel for this region.
31876      * @return {Roo.ContentPanel} The active panel or null
31877      */
31878     getActivePanel : function(){
31879         return this.activePanel;
31880     },
31881
31882     validateVisibility : function(){
31883         if(this.panels.getCount() < 1){
31884             this.updateTitle("&#160;");
31885             this.closeBtn.hide();
31886             this.hide();
31887         }else{
31888             if(!this.isVisible()){
31889                 this.show();
31890             }
31891         }
31892     },
31893
31894     /**
31895      * Adds the passed ContentPanel(s) to this region.
31896      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
31897      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
31898      */
31899     add : function(panel){
31900         if(arguments.length > 1){
31901             for(var i = 0, len = arguments.length; i < len; i++) {
31902                 this.add(arguments[i]);
31903             }
31904             return null;
31905         }
31906         if(this.hasPanel(panel)){
31907             this.showPanel(panel);
31908             return panel;
31909         }
31910         panel.setRegion(this);
31911         this.panels.add(panel);
31912         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
31913             this.bodyEl.dom.appendChild(panel.getEl().dom);
31914             if(panel.background !== true){
31915                 this.setActivePanel(panel);
31916             }
31917             this.fireEvent("paneladded", this, panel);
31918             return panel;
31919         }
31920         if(!this.tabs){
31921             this.initTabs();
31922         }else{
31923             this.initPanelAsTab(panel);
31924         }
31925         if(panel.background !== true){
31926             this.tabs.activate(panel.getEl().id);
31927         }
31928         this.fireEvent("paneladded", this, panel);
31929         return panel;
31930     },
31931
31932     /**
31933      * Hides the tab for the specified panel.
31934      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
31935      */
31936     hidePanel : function(panel){
31937         if(this.tabs && (panel = this.getPanel(panel))){
31938             this.tabs.hideTab(panel.getEl().id);
31939         }
31940     },
31941
31942     /**
31943      * Unhides the tab for a previously hidden panel.
31944      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
31945      */
31946     unhidePanel : function(panel){
31947         if(this.tabs && (panel = this.getPanel(panel))){
31948             this.tabs.unhideTab(panel.getEl().id);
31949         }
31950     },
31951
31952     clearPanels : function(){
31953         while(this.panels.getCount() > 0){
31954              this.remove(this.panels.first());
31955         }
31956     },
31957
31958     /**
31959      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
31960      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
31961      * @param {Boolean} preservePanel Overrides the config preservePanel option
31962      * @return {Roo.ContentPanel} The panel that was removed
31963      */
31964     remove : function(panel, preservePanel){
31965         panel = this.getPanel(panel);
31966         if(!panel){
31967             return null;
31968         }
31969         var e = {};
31970         this.fireEvent("beforeremove", this, panel, e);
31971         if(e.cancel === true){
31972             return null;
31973         }
31974         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
31975         var panelId = panel.getId();
31976         this.panels.removeKey(panelId);
31977         if(preservePanel){
31978             document.body.appendChild(panel.getEl().dom);
31979         }
31980         if(this.tabs){
31981             this.tabs.removeTab(panel.getEl().id);
31982         }else if (!preservePanel){
31983             this.bodyEl.dom.removeChild(panel.getEl().dom);
31984         }
31985         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
31986             var p = this.panels.first();
31987             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
31988             tempEl.appendChild(p.getEl().dom);
31989             this.bodyEl.update("");
31990             this.bodyEl.dom.appendChild(p.getEl().dom);
31991             tempEl = null;
31992             this.updateTitle(p.getTitle());
31993             this.tabs = null;
31994             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
31995             this.setActivePanel(p);
31996         }
31997         panel.setRegion(null);
31998         if(this.activePanel == panel){
31999             this.activePanel = null;
32000         }
32001         if(this.config.autoDestroy !== false && preservePanel !== true){
32002             try{panel.destroy();}catch(e){}
32003         }
32004         this.fireEvent("panelremoved", this, panel);
32005         return panel;
32006     },
32007
32008     /**
32009      * Returns the TabPanel component used by this region
32010      * @return {Roo.TabPanel}
32011      */
32012     getTabs : function(){
32013         return this.tabs;
32014     },
32015
32016     createTool : function(parentEl, className){
32017         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
32018             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
32019         btn.addClassOnOver("x-layout-tools-button-over");
32020         return btn;
32021     }
32022 });/*
32023  * Based on:
32024  * Ext JS Library 1.1.1
32025  * Copyright(c) 2006-2007, Ext JS, LLC.
32026  *
32027  * Originally Released Under LGPL - original licence link has changed is not relivant.
32028  *
32029  * Fork - LGPL
32030  * <script type="text/javascript">
32031  */
32032  
32033
32034
32035 /**
32036  * @class Roo.SplitLayoutRegion
32037  * @extends Roo.LayoutRegion
32038  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
32039  */
32040 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
32041     this.cursor = cursor;
32042     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
32043 };
32044
32045 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
32046     splitTip : "Drag to resize.",
32047     collapsibleSplitTip : "Drag to resize. Double click to hide.",
32048     useSplitTips : false,
32049
32050     applyConfig : function(config){
32051         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
32052         if(config.split){
32053             if(!this.split){
32054                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
32055                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
32056                 /** The SplitBar for this region 
32057                 * @type Roo.SplitBar */
32058                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
32059                 this.split.on("moved", this.onSplitMove, this);
32060                 this.split.useShim = config.useShim === true;
32061                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
32062                 if(this.useSplitTips){
32063                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
32064                 }
32065                 if(config.collapsible){
32066                     this.split.el.on("dblclick", this.collapse,  this);
32067                 }
32068             }
32069             if(typeof config.minSize != "undefined"){
32070                 this.split.minSize = config.minSize;
32071             }
32072             if(typeof config.maxSize != "undefined"){
32073                 this.split.maxSize = config.maxSize;
32074             }
32075             if(config.hideWhenEmpty || config.hidden || config.collapsed){
32076                 this.hideSplitter();
32077             }
32078         }
32079     },
32080
32081     getHMaxSize : function(){
32082          var cmax = this.config.maxSize || 10000;
32083          var center = this.mgr.getRegion("center");
32084          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
32085     },
32086
32087     getVMaxSize : function(){
32088          var cmax = this.config.maxSize || 10000;
32089          var center = this.mgr.getRegion("center");
32090          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
32091     },
32092
32093     onSplitMove : function(split, newSize){
32094         this.fireEvent("resized", this, newSize);
32095     },
32096     
32097     /** 
32098      * Returns the {@link Roo.SplitBar} for this region.
32099      * @return {Roo.SplitBar}
32100      */
32101     getSplitBar : function(){
32102         return this.split;
32103     },
32104     
32105     hide : function(){
32106         this.hideSplitter();
32107         Roo.SplitLayoutRegion.superclass.hide.call(this);
32108     },
32109
32110     hideSplitter : function(){
32111         if(this.split){
32112             this.split.el.setLocation(-2000,-2000);
32113             this.split.el.hide();
32114         }
32115     },
32116
32117     show : function(){
32118         if(this.split){
32119             this.split.el.show();
32120         }
32121         Roo.SplitLayoutRegion.superclass.show.call(this);
32122     },
32123     
32124     beforeSlide: function(){
32125         if(Roo.isGecko){// firefox overflow auto bug workaround
32126             this.bodyEl.clip();
32127             if(this.tabs) this.tabs.bodyEl.clip();
32128             if(this.activePanel){
32129                 this.activePanel.getEl().clip();
32130                 
32131                 if(this.activePanel.beforeSlide){
32132                     this.activePanel.beforeSlide();
32133                 }
32134             }
32135         }
32136     },
32137     
32138     afterSlide : function(){
32139         if(Roo.isGecko){// firefox overflow auto bug workaround
32140             this.bodyEl.unclip();
32141             if(this.tabs) this.tabs.bodyEl.unclip();
32142             if(this.activePanel){
32143                 this.activePanel.getEl().unclip();
32144                 if(this.activePanel.afterSlide){
32145                     this.activePanel.afterSlide();
32146                 }
32147             }
32148         }
32149     },
32150
32151     initAutoHide : function(){
32152         if(this.autoHide !== false){
32153             if(!this.autoHideHd){
32154                 var st = new Roo.util.DelayedTask(this.slideIn, this);
32155                 this.autoHideHd = {
32156                     "mouseout": function(e){
32157                         if(!e.within(this.el, true)){
32158                             st.delay(500);
32159                         }
32160                     },
32161                     "mouseover" : function(e){
32162                         st.cancel();
32163                     },
32164                     scope : this
32165                 };
32166             }
32167             this.el.on(this.autoHideHd);
32168         }
32169     },
32170
32171     clearAutoHide : function(){
32172         if(this.autoHide !== false){
32173             this.el.un("mouseout", this.autoHideHd.mouseout);
32174             this.el.un("mouseover", this.autoHideHd.mouseover);
32175         }
32176     },
32177
32178     clearMonitor : function(){
32179         Roo.get(document).un("click", this.slideInIf, this);
32180     },
32181
32182     // these names are backwards but not changed for compat
32183     slideOut : function(){
32184         if(this.isSlid || this.el.hasActiveFx()){
32185             return;
32186         }
32187         this.isSlid = true;
32188         if(this.collapseBtn){
32189             this.collapseBtn.hide();
32190         }
32191         this.closeBtnState = this.closeBtn.getStyle('display');
32192         this.closeBtn.hide();
32193         if(this.stickBtn){
32194             this.stickBtn.show();
32195         }
32196         this.el.show();
32197         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
32198         this.beforeSlide();
32199         this.el.setStyle("z-index", 10001);
32200         this.el.slideIn(this.getSlideAnchor(), {
32201             callback: function(){
32202                 this.afterSlide();
32203                 this.initAutoHide();
32204                 Roo.get(document).on("click", this.slideInIf, this);
32205                 this.fireEvent("slideshow", this);
32206             },
32207             scope: this,
32208             block: true
32209         });
32210     },
32211
32212     afterSlideIn : function(){
32213         this.clearAutoHide();
32214         this.isSlid = false;
32215         this.clearMonitor();
32216         this.el.setStyle("z-index", "");
32217         if(this.collapseBtn){
32218             this.collapseBtn.show();
32219         }
32220         this.closeBtn.setStyle('display', this.closeBtnState);
32221         if(this.stickBtn){
32222             this.stickBtn.hide();
32223         }
32224         this.fireEvent("slidehide", this);
32225     },
32226
32227     slideIn : function(cb){
32228         if(!this.isSlid || this.el.hasActiveFx()){
32229             Roo.callback(cb);
32230             return;
32231         }
32232         this.isSlid = false;
32233         this.beforeSlide();
32234         this.el.slideOut(this.getSlideAnchor(), {
32235             callback: function(){
32236                 this.el.setLeftTop(-10000, -10000);
32237                 this.afterSlide();
32238                 this.afterSlideIn();
32239                 Roo.callback(cb);
32240             },
32241             scope: this,
32242             block: true
32243         });
32244     },
32245     
32246     slideInIf : function(e){
32247         if(!e.within(this.el)){
32248             this.slideIn();
32249         }
32250     },
32251
32252     animateCollapse : function(){
32253         this.beforeSlide();
32254         this.el.setStyle("z-index", 20000);
32255         var anchor = this.getSlideAnchor();
32256         this.el.slideOut(anchor, {
32257             callback : function(){
32258                 this.el.setStyle("z-index", "");
32259                 this.collapsedEl.slideIn(anchor, {duration:.3});
32260                 this.afterSlide();
32261                 this.el.setLocation(-10000,-10000);
32262                 this.el.hide();
32263                 this.fireEvent("collapsed", this);
32264             },
32265             scope: this,
32266             block: true
32267         });
32268     },
32269
32270     animateExpand : function(){
32271         this.beforeSlide();
32272         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
32273         this.el.setStyle("z-index", 20000);
32274         this.collapsedEl.hide({
32275             duration:.1
32276         });
32277         this.el.slideIn(this.getSlideAnchor(), {
32278             callback : function(){
32279                 this.el.setStyle("z-index", "");
32280                 this.afterSlide();
32281                 if(this.split){
32282                     this.split.el.show();
32283                 }
32284                 this.fireEvent("invalidated", this);
32285                 this.fireEvent("expanded", this);
32286             },
32287             scope: this,
32288             block: true
32289         });
32290     },
32291
32292     anchors : {
32293         "west" : "left",
32294         "east" : "right",
32295         "north" : "top",
32296         "south" : "bottom"
32297     },
32298
32299     sanchors : {
32300         "west" : "l",
32301         "east" : "r",
32302         "north" : "t",
32303         "south" : "b"
32304     },
32305
32306     canchors : {
32307         "west" : "tl-tr",
32308         "east" : "tr-tl",
32309         "north" : "tl-bl",
32310         "south" : "bl-tl"
32311     },
32312
32313     getAnchor : function(){
32314         return this.anchors[this.position];
32315     },
32316
32317     getCollapseAnchor : function(){
32318         return this.canchors[this.position];
32319     },
32320
32321     getSlideAnchor : function(){
32322         return this.sanchors[this.position];
32323     },
32324
32325     getAlignAdj : function(){
32326         var cm = this.cmargins;
32327         switch(this.position){
32328             case "west":
32329                 return [0, 0];
32330             break;
32331             case "east":
32332                 return [0, 0];
32333             break;
32334             case "north":
32335                 return [0, 0];
32336             break;
32337             case "south":
32338                 return [0, 0];
32339             break;
32340         }
32341     },
32342
32343     getExpandAdj : function(){
32344         var c = this.collapsedEl, cm = this.cmargins;
32345         switch(this.position){
32346             case "west":
32347                 return [-(cm.right+c.getWidth()+cm.left), 0];
32348             break;
32349             case "east":
32350                 return [cm.right+c.getWidth()+cm.left, 0];
32351             break;
32352             case "north":
32353                 return [0, -(cm.top+cm.bottom+c.getHeight())];
32354             break;
32355             case "south":
32356                 return [0, cm.top+cm.bottom+c.getHeight()];
32357             break;
32358         }
32359     }
32360 });/*
32361  * Based on:
32362  * Ext JS Library 1.1.1
32363  * Copyright(c) 2006-2007, Ext JS, LLC.
32364  *
32365  * Originally Released Under LGPL - original licence link has changed is not relivant.
32366  *
32367  * Fork - LGPL
32368  * <script type="text/javascript">
32369  */
32370 /*
32371  * These classes are private internal classes
32372  */
32373 Roo.CenterLayoutRegion = function(mgr, config){
32374     Roo.LayoutRegion.call(this, mgr, config, "center");
32375     this.visible = true;
32376     this.minWidth = config.minWidth || 20;
32377     this.minHeight = config.minHeight || 20;
32378 };
32379
32380 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
32381     hide : function(){
32382         // center panel can't be hidden
32383     },
32384     
32385     show : function(){
32386         // center panel can't be hidden
32387     },
32388     
32389     getMinWidth: function(){
32390         return this.minWidth;
32391     },
32392     
32393     getMinHeight: function(){
32394         return this.minHeight;
32395     }
32396 });
32397
32398
32399 Roo.NorthLayoutRegion = function(mgr, config){
32400     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
32401     if(this.split){
32402         this.split.placement = Roo.SplitBar.TOP;
32403         this.split.orientation = Roo.SplitBar.VERTICAL;
32404         this.split.el.addClass("x-layout-split-v");
32405     }
32406     var size = config.initialSize || config.height;
32407     if(typeof size != "undefined"){
32408         this.el.setHeight(size);
32409     }
32410 };
32411 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
32412     orientation: Roo.SplitBar.VERTICAL,
32413     getBox : function(){
32414         if(this.collapsed){
32415             return this.collapsedEl.getBox();
32416         }
32417         var box = this.el.getBox();
32418         if(this.split){
32419             box.height += this.split.el.getHeight();
32420         }
32421         return box;
32422     },
32423     
32424     updateBox : function(box){
32425         if(this.split && !this.collapsed){
32426             box.height -= this.split.el.getHeight();
32427             this.split.el.setLeft(box.x);
32428             this.split.el.setTop(box.y+box.height);
32429             this.split.el.setWidth(box.width);
32430         }
32431         if(this.collapsed){
32432             this.updateBody(box.width, null);
32433         }
32434         Roo.LayoutRegion.prototype.updateBox.call(this, box);
32435     }
32436 });
32437
32438 Roo.SouthLayoutRegion = function(mgr, config){
32439     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
32440     if(this.split){
32441         this.split.placement = Roo.SplitBar.BOTTOM;
32442         this.split.orientation = Roo.SplitBar.VERTICAL;
32443         this.split.el.addClass("x-layout-split-v");
32444     }
32445     var size = config.initialSize || config.height;
32446     if(typeof size != "undefined"){
32447         this.el.setHeight(size);
32448     }
32449 };
32450 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
32451     orientation: Roo.SplitBar.VERTICAL,
32452     getBox : function(){
32453         if(this.collapsed){
32454             return this.collapsedEl.getBox();
32455         }
32456         var box = this.el.getBox();
32457         if(this.split){
32458             var sh = this.split.el.getHeight();
32459             box.height += sh;
32460             box.y -= sh;
32461         }
32462         return box;
32463     },
32464     
32465     updateBox : function(box){
32466         if(this.split && !this.collapsed){
32467             var sh = this.split.el.getHeight();
32468             box.height -= sh;
32469             box.y += sh;
32470             this.split.el.setLeft(box.x);
32471             this.split.el.setTop(box.y-sh);
32472             this.split.el.setWidth(box.width);
32473         }
32474         if(this.collapsed){
32475             this.updateBody(box.width, null);
32476         }
32477         Roo.LayoutRegion.prototype.updateBox.call(this, box);
32478     }
32479 });
32480
32481 Roo.EastLayoutRegion = function(mgr, config){
32482     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
32483     if(this.split){
32484         this.split.placement = Roo.SplitBar.RIGHT;
32485         this.split.orientation = Roo.SplitBar.HORIZONTAL;
32486         this.split.el.addClass("x-layout-split-h");
32487     }
32488     var size = config.initialSize || config.width;
32489     if(typeof size != "undefined"){
32490         this.el.setWidth(size);
32491     }
32492 };
32493 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
32494     orientation: Roo.SplitBar.HORIZONTAL,
32495     getBox : function(){
32496         if(this.collapsed){
32497             return this.collapsedEl.getBox();
32498         }
32499         var box = this.el.getBox();
32500         if(this.split){
32501             var sw = this.split.el.getWidth();
32502             box.width += sw;
32503             box.x -= sw;
32504         }
32505         return box;
32506     },
32507
32508     updateBox : function(box){
32509         if(this.split && !this.collapsed){
32510             var sw = this.split.el.getWidth();
32511             box.width -= sw;
32512             this.split.el.setLeft(box.x);
32513             this.split.el.setTop(box.y);
32514             this.split.el.setHeight(box.height);
32515             box.x += sw;
32516         }
32517         if(this.collapsed){
32518             this.updateBody(null, box.height);
32519         }
32520         Roo.LayoutRegion.prototype.updateBox.call(this, box);
32521     }
32522 });
32523
32524 Roo.WestLayoutRegion = function(mgr, config){
32525     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
32526     if(this.split){
32527         this.split.placement = Roo.SplitBar.LEFT;
32528         this.split.orientation = Roo.SplitBar.HORIZONTAL;
32529         this.split.el.addClass("x-layout-split-h");
32530     }
32531     var size = config.initialSize || config.width;
32532     if(typeof size != "undefined"){
32533         this.el.setWidth(size);
32534     }
32535 };
32536 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
32537     orientation: Roo.SplitBar.HORIZONTAL,
32538     getBox : function(){
32539         if(this.collapsed){
32540             return this.collapsedEl.getBox();
32541         }
32542         var box = this.el.getBox();
32543         if(this.split){
32544             box.width += this.split.el.getWidth();
32545         }
32546         return box;
32547     },
32548     
32549     updateBox : function(box){
32550         if(this.split && !this.collapsed){
32551             var sw = this.split.el.getWidth();
32552             box.width -= sw;
32553             this.split.el.setLeft(box.x+box.width);
32554             this.split.el.setTop(box.y);
32555             this.split.el.setHeight(box.height);
32556         }
32557         if(this.collapsed){
32558             this.updateBody(null, box.height);
32559         }
32560         Roo.LayoutRegion.prototype.updateBox.call(this, box);
32561     }
32562 });
32563 /*
32564  * Based on:
32565  * Ext JS Library 1.1.1
32566  * Copyright(c) 2006-2007, Ext JS, LLC.
32567  *
32568  * Originally Released Under LGPL - original licence link has changed is not relivant.
32569  *
32570  * Fork - LGPL
32571  * <script type="text/javascript">
32572  */
32573  
32574  
32575 /*
32576  * Private internal class for reading and applying state
32577  */
32578 Roo.LayoutStateManager = function(layout){
32579      // default empty state
32580      this.state = {
32581         north: {},
32582         south: {},
32583         east: {},
32584         west: {}       
32585     };
32586 };
32587
32588 Roo.LayoutStateManager.prototype = {
32589     init : function(layout, provider){
32590         this.provider = provider;
32591         var state = provider.get(layout.id+"-layout-state");
32592         if(state){
32593             var wasUpdating = layout.isUpdating();
32594             if(!wasUpdating){
32595                 layout.beginUpdate();
32596             }
32597             for(var key in state){
32598                 if(typeof state[key] != "function"){
32599                     var rstate = state[key];
32600                     var r = layout.getRegion(key);
32601                     if(r && rstate){
32602                         if(rstate.size){
32603                             r.resizeTo(rstate.size);
32604                         }
32605                         if(rstate.collapsed == true){
32606                             r.collapse(true);
32607                         }else{
32608                             r.expand(null, true);
32609                         }
32610                     }
32611                 }
32612             }
32613             if(!wasUpdating){
32614                 layout.endUpdate();
32615             }
32616             this.state = state; 
32617         }
32618         this.layout = layout;
32619         layout.on("regionresized", this.onRegionResized, this);
32620         layout.on("regioncollapsed", this.onRegionCollapsed, this);
32621         layout.on("regionexpanded", this.onRegionExpanded, this);
32622     },
32623     
32624     storeState : function(){
32625         this.provider.set(this.layout.id+"-layout-state", this.state);
32626     },
32627     
32628     onRegionResized : function(region, newSize){
32629         this.state[region.getPosition()].size = newSize;
32630         this.storeState();
32631     },
32632     
32633     onRegionCollapsed : function(region){
32634         this.state[region.getPosition()].collapsed = true;
32635         this.storeState();
32636     },
32637     
32638     onRegionExpanded : function(region){
32639         this.state[region.getPosition()].collapsed = false;
32640         this.storeState();
32641     }
32642 };/*
32643  * Based on:
32644  * Ext JS Library 1.1.1
32645  * Copyright(c) 2006-2007, Ext JS, LLC.
32646  *
32647  * Originally Released Under LGPL - original licence link has changed is not relivant.
32648  *
32649  * Fork - LGPL
32650  * <script type="text/javascript">
32651  */
32652 /**
32653  * @class Roo.ContentPanel
32654  * @extends Roo.util.Observable
32655  * A basic ContentPanel element.
32656  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
32657  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
32658  * @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
32659  * @cfg {Boolean}   closable      True if the panel can be closed/removed
32660  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
32661  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
32662  * @cfg {Toolbar}   toolbar       A toolbar for this panel
32663  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
32664  * @cfg {String} title          The title for this panel
32665  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
32666  * @cfg {String} url            Calls {@link #setUrl} with this value
32667  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
32668  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
32669  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
32670  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
32671
32672  * @constructor
32673  * Create a new ContentPanel.
32674  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
32675  * @param {String/Object} config A string to set only the title or a config object
32676  * @param {String} content (optional) Set the HTML content for this panel
32677  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
32678  */
32679 Roo.ContentPanel = function(el, config, content){
32680     
32681      
32682     /*
32683     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
32684         config = el;
32685         el = Roo.id();
32686     }
32687     if (config && config.parentLayout) { 
32688         el = config.parentLayout.el.createChild(); 
32689     }
32690     */
32691     if(el.autoCreate){ // xtype is available if this is called from factory
32692         config = el;
32693         el = Roo.id();
32694     }
32695     this.el = Roo.get(el);
32696     if(!this.el && config && config.autoCreate){
32697         if(typeof config.autoCreate == "object"){
32698             if(!config.autoCreate.id){
32699                 config.autoCreate.id = config.id||el;
32700             }
32701             this.el = Roo.DomHelper.append(document.body,
32702                         config.autoCreate, true);
32703         }else{
32704             this.el = Roo.DomHelper.append(document.body,
32705                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
32706         }
32707     }
32708     this.closable = false;
32709     this.loaded = false;
32710     this.active = false;
32711     if(typeof config == "string"){
32712         this.title = config;
32713     }else{
32714         Roo.apply(this, config);
32715     }
32716     
32717     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
32718         this.wrapEl = this.el.wrap();
32719         this.toolbar.container = this.el.insertSibling(false, 'before');
32720         this.toolbar = new Roo.Toolbar(this.toolbar);
32721     }
32722     
32723     
32724     
32725     if(this.resizeEl){
32726         this.resizeEl = Roo.get(this.resizeEl, true);
32727     }else{
32728         this.resizeEl = this.el;
32729     }
32730     this.addEvents({
32731         /**
32732          * @event activate
32733          * Fires when this panel is activated. 
32734          * @param {Roo.ContentPanel} this
32735          */
32736         "activate" : true,
32737         /**
32738          * @event deactivate
32739          * Fires when this panel is activated. 
32740          * @param {Roo.ContentPanel} this
32741          */
32742         "deactivate" : true,
32743
32744         /**
32745          * @event resize
32746          * Fires when this panel is resized if fitToFrame is true.
32747          * @param {Roo.ContentPanel} this
32748          * @param {Number} width The width after any component adjustments
32749          * @param {Number} height The height after any component adjustments
32750          */
32751         "resize" : true,
32752         
32753          /**
32754          * @event render
32755          * Fires when this tab is created
32756          * @param {Roo.ContentPanel} this
32757          */
32758         "render" : true
32759         
32760         
32761         
32762     });
32763     if(this.autoScroll){
32764         this.resizeEl.setStyle("overflow", "auto");
32765     } else {
32766         // fix randome scrolling
32767         this.el.on('scroll', function() {
32768             Roo.log('fix random scolling');
32769             this.scrollTo('top',0); 
32770         });
32771     }
32772     content = content || this.content;
32773     if(content){
32774         this.setContent(content);
32775     }
32776     if(config && config.url){
32777         this.setUrl(this.url, this.params, this.loadOnce);
32778     }
32779     
32780     
32781     
32782     Roo.ContentPanel.superclass.constructor.call(this);
32783     
32784     this.fireEvent('render', this);
32785 };
32786
32787 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
32788     tabTip:'',
32789     setRegion : function(region){
32790         this.region = region;
32791         if(region){
32792            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
32793         }else{
32794            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
32795         } 
32796     },
32797     
32798     /**
32799      * Returns the toolbar for this Panel if one was configured. 
32800      * @return {Roo.Toolbar} 
32801      */
32802     getToolbar : function(){
32803         return this.toolbar;
32804     },
32805     
32806     setActiveState : function(active){
32807         this.active = active;
32808         if(!active){
32809             this.fireEvent("deactivate", this);
32810         }else{
32811             this.fireEvent("activate", this);
32812         }
32813     },
32814     /**
32815      * Updates this panel's element
32816      * @param {String} content The new content
32817      * @param {Boolean} loadScripts (optional) true to look for and process scripts
32818     */
32819     setContent : function(content, loadScripts){
32820         this.el.update(content, loadScripts);
32821     },
32822
32823     ignoreResize : function(w, h){
32824         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
32825             return true;
32826         }else{
32827             this.lastSize = {width: w, height: h};
32828             return false;
32829         }
32830     },
32831     /**
32832      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
32833      * @return {Roo.UpdateManager} The UpdateManager
32834      */
32835     getUpdateManager : function(){
32836         return this.el.getUpdateManager();
32837     },
32838      /**
32839      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
32840      * @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:
32841 <pre><code>
32842 panel.load({
32843     url: "your-url.php",
32844     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
32845     callback: yourFunction,
32846     scope: yourObject, //(optional scope)
32847     discardUrl: false,
32848     nocache: false,
32849     text: "Loading...",
32850     timeout: 30,
32851     scripts: false
32852 });
32853 </code></pre>
32854      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
32855      * 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.
32856      * @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}
32857      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
32858      * @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.
32859      * @return {Roo.ContentPanel} this
32860      */
32861     load : function(){
32862         var um = this.el.getUpdateManager();
32863         um.update.apply(um, arguments);
32864         return this;
32865     },
32866
32867
32868     /**
32869      * 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.
32870      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
32871      * @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)
32872      * @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)
32873      * @return {Roo.UpdateManager} The UpdateManager
32874      */
32875     setUrl : function(url, params, loadOnce){
32876         if(this.refreshDelegate){
32877             this.removeListener("activate", this.refreshDelegate);
32878         }
32879         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
32880         this.on("activate", this.refreshDelegate);
32881         return this.el.getUpdateManager();
32882     },
32883     
32884     _handleRefresh : function(url, params, loadOnce){
32885         if(!loadOnce || !this.loaded){
32886             var updater = this.el.getUpdateManager();
32887             updater.update(url, params, this._setLoaded.createDelegate(this));
32888         }
32889     },
32890     
32891     _setLoaded : function(){
32892         this.loaded = true;
32893     }, 
32894     
32895     /**
32896      * Returns this panel's id
32897      * @return {String} 
32898      */
32899     getId : function(){
32900         return this.el.id;
32901     },
32902     
32903     /** 
32904      * Returns this panel's element - used by regiosn to add.
32905      * @return {Roo.Element} 
32906      */
32907     getEl : function(){
32908         return this.wrapEl || this.el;
32909     },
32910     
32911     adjustForComponents : function(width, height){
32912         if(this.resizeEl != this.el){
32913             width -= this.el.getFrameWidth('lr');
32914             height -= this.el.getFrameWidth('tb');
32915         }
32916         if(this.toolbar){
32917             var te = this.toolbar.getEl();
32918             height -= te.getHeight();
32919             te.setWidth(width);
32920         }
32921         if(this.adjustments){
32922             width += this.adjustments[0];
32923             height += this.adjustments[1];
32924         }
32925         return {"width": width, "height": height};
32926     },
32927     
32928     setSize : function(width, height){
32929         if(this.fitToFrame && !this.ignoreResize(width, height)){
32930             if(this.fitContainer && this.resizeEl != this.el){
32931                 this.el.setSize(width, height);
32932             }
32933             var size = this.adjustForComponents(width, height);
32934             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
32935             this.fireEvent('resize', this, size.width, size.height);
32936         }
32937     },
32938     
32939     /**
32940      * Returns this panel's title
32941      * @return {String} 
32942      */
32943     getTitle : function(){
32944         return this.title;
32945     },
32946     
32947     /**
32948      * Set this panel's title
32949      * @param {String} title
32950      */
32951     setTitle : function(title){
32952         this.title = title;
32953         if(this.region){
32954             this.region.updatePanelTitle(this, title);
32955         }
32956     },
32957     
32958     /**
32959      * Returns true is this panel was configured to be closable
32960      * @return {Boolean} 
32961      */
32962     isClosable : function(){
32963         return this.closable;
32964     },
32965     
32966     beforeSlide : function(){
32967         this.el.clip();
32968         this.resizeEl.clip();
32969     },
32970     
32971     afterSlide : function(){
32972         this.el.unclip();
32973         this.resizeEl.unclip();
32974     },
32975     
32976     /**
32977      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
32978      *   Will fail silently if the {@link #setUrl} method has not been called.
32979      *   This does not activate the panel, just updates its content.
32980      */
32981     refresh : function(){
32982         if(this.refreshDelegate){
32983            this.loaded = false;
32984            this.refreshDelegate();
32985         }
32986     },
32987     
32988     /**
32989      * Destroys this panel
32990      */
32991     destroy : function(){
32992         this.el.removeAllListeners();
32993         var tempEl = document.createElement("span");
32994         tempEl.appendChild(this.el.dom);
32995         tempEl.innerHTML = "";
32996         this.el.remove();
32997         this.el = null;
32998     },
32999     
33000     /**
33001      * form - if the content panel contains a form - this is a reference to it.
33002      * @type {Roo.form.Form}
33003      */
33004     form : false,
33005     /**
33006      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
33007      *    This contains a reference to it.
33008      * @type {Roo.View}
33009      */
33010     view : false,
33011     
33012       /**
33013      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
33014      * <pre><code>
33015
33016 layout.addxtype({
33017        xtype : 'Form',
33018        items: [ .... ]
33019    }
33020 );
33021
33022 </code></pre>
33023      * @param {Object} cfg Xtype definition of item to add.
33024      */
33025     
33026     addxtype : function(cfg) {
33027         // add form..
33028         if (cfg.xtype.match(/^Form$/)) {
33029             var el = this.el.createChild();
33030
33031             this.form = new  Roo.form.Form(cfg);
33032             
33033             
33034             if ( this.form.allItems.length) this.form.render(el.dom);
33035             return this.form;
33036         }
33037         // should only have one of theses..
33038         if (['View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
33039             // views..
33040             cfg.el = this.el.appendChild(document.createElement("div"));
33041             // factory?
33042             
33043             var ret = new Roo.factory(cfg);
33044             ret.render && ret.render(false, ''); // render blank..
33045             this.view = ret;
33046             return ret;
33047         }
33048         return false;
33049     }
33050 });
33051
33052 /**
33053  * @class Roo.GridPanel
33054  * @extends Roo.ContentPanel
33055  * @constructor
33056  * Create a new GridPanel.
33057  * @param {Roo.grid.Grid} grid The grid for this panel
33058  * @param {String/Object} config A string to set only the panel's title, or a config object
33059  */
33060 Roo.GridPanel = function(grid, config){
33061     
33062   
33063     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
33064         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
33065         
33066     this.wrapper.dom.appendChild(grid.getGridEl().dom);
33067     
33068     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
33069     
33070     if(this.toolbar){
33071         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
33072     }
33073     // xtype created footer. - not sure if will work as we normally have to render first..
33074     if (this.footer && !this.footer.el && this.footer.xtype) {
33075         
33076         this.footer.container = this.grid.getView().getFooterPanel(true);
33077         this.footer.dataSource = this.grid.dataSource;
33078         this.footer = Roo.factory(this.footer, Roo);
33079         
33080     }
33081     
33082     grid.monitorWindowResize = false; // turn off autosizing
33083     grid.autoHeight = false;
33084     grid.autoWidth = false;
33085     this.grid = grid;
33086     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
33087 };
33088
33089 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
33090     getId : function(){
33091         return this.grid.id;
33092     },
33093     
33094     /**
33095      * Returns the grid for this panel
33096      * @return {Roo.grid.Grid} 
33097      */
33098     getGrid : function(){
33099         return this.grid;    
33100     },
33101     
33102     setSize : function(width, height){
33103         if(!this.ignoreResize(width, height)){
33104             var grid = this.grid;
33105             var size = this.adjustForComponents(width, height);
33106             grid.getGridEl().setSize(size.width, size.height);
33107             grid.autoSize();
33108         }
33109     },
33110     
33111     beforeSlide : function(){
33112         this.grid.getView().scroller.clip();
33113     },
33114     
33115     afterSlide : function(){
33116         this.grid.getView().scroller.unclip();
33117     },
33118     
33119     destroy : function(){
33120         this.grid.destroy();
33121         delete this.grid;
33122         Roo.GridPanel.superclass.destroy.call(this); 
33123     }
33124 });
33125
33126
33127 /**
33128  * @class Roo.NestedLayoutPanel
33129  * @extends Roo.ContentPanel
33130  * @constructor
33131  * Create a new NestedLayoutPanel.
33132  * 
33133  * 
33134  * @param {Roo.BorderLayout} layout The layout for this panel
33135  * @param {String/Object} config A string to set only the title or a config object
33136  */
33137 Roo.NestedLayoutPanel = function(layout, config)
33138 {
33139     // construct with only one argument..
33140     /* FIXME - implement nicer consturctors
33141     if (layout.layout) {
33142         config = layout;
33143         layout = config.layout;
33144         delete config.layout;
33145     }
33146     if (layout.xtype && !layout.getEl) {
33147         // then layout needs constructing..
33148         layout = Roo.factory(layout, Roo);
33149     }
33150     */
33151     
33152     
33153     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
33154     
33155     layout.monitorWindowResize = false; // turn off autosizing
33156     this.layout = layout;
33157     this.layout.getEl().addClass("x-layout-nested-layout");
33158     
33159     
33160     
33161     
33162 };
33163
33164 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
33165
33166     setSize : function(width, height){
33167         if(!this.ignoreResize(width, height)){
33168             var size = this.adjustForComponents(width, height);
33169             var el = this.layout.getEl();
33170             el.setSize(size.width, size.height);
33171             var touch = el.dom.offsetWidth;
33172             this.layout.layout();
33173             // ie requires a double layout on the first pass
33174             if(Roo.isIE && !this.initialized){
33175                 this.initialized = true;
33176                 this.layout.layout();
33177             }
33178         }
33179     },
33180     
33181     // activate all subpanels if not currently active..
33182     
33183     setActiveState : function(active){
33184         this.active = active;
33185         if(!active){
33186             this.fireEvent("deactivate", this);
33187             return;
33188         }
33189         
33190         this.fireEvent("activate", this);
33191         // not sure if this should happen before or after..
33192         if (!this.layout) {
33193             return; // should not happen..
33194         }
33195         var reg = false;
33196         for (var r in this.layout.regions) {
33197             reg = this.layout.getRegion(r);
33198             if (reg.getActivePanel()) {
33199                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
33200                 reg.setActivePanel(reg.getActivePanel());
33201                 continue;
33202             }
33203             if (!reg.panels.length) {
33204                 continue;
33205             }
33206             reg.showPanel(reg.getPanel(0));
33207         }
33208         
33209         
33210         
33211         
33212     },
33213     
33214     /**
33215      * Returns the nested BorderLayout for this panel
33216      * @return {Roo.BorderLayout} 
33217      */
33218     getLayout : function(){
33219         return this.layout;
33220     },
33221     
33222      /**
33223      * Adds a xtype elements to the layout of the nested panel
33224      * <pre><code>
33225
33226 panel.addxtype({
33227        xtype : 'ContentPanel',
33228        region: 'west',
33229        items: [ .... ]
33230    }
33231 );
33232
33233 panel.addxtype({
33234         xtype : 'NestedLayoutPanel',
33235         region: 'west',
33236         layout: {
33237            center: { },
33238            west: { }   
33239         },
33240         items : [ ... list of content panels or nested layout panels.. ]
33241    }
33242 );
33243 </code></pre>
33244      * @param {Object} cfg Xtype definition of item to add.
33245      */
33246     addxtype : function(cfg) {
33247         return this.layout.addxtype(cfg);
33248     
33249     }
33250 });
33251
33252 Roo.ScrollPanel = function(el, config, content){
33253     config = config || {};
33254     config.fitToFrame = true;
33255     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
33256     
33257     this.el.dom.style.overflow = "hidden";
33258     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
33259     this.el.removeClass("x-layout-inactive-content");
33260     this.el.on("mousewheel", this.onWheel, this);
33261
33262     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
33263     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
33264     up.unselectable(); down.unselectable();
33265     up.on("click", this.scrollUp, this);
33266     down.on("click", this.scrollDown, this);
33267     up.addClassOnOver("x-scroller-btn-over");
33268     down.addClassOnOver("x-scroller-btn-over");
33269     up.addClassOnClick("x-scroller-btn-click");
33270     down.addClassOnClick("x-scroller-btn-click");
33271     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
33272
33273     this.resizeEl = this.el;
33274     this.el = wrap; this.up = up; this.down = down;
33275 };
33276
33277 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
33278     increment : 100,
33279     wheelIncrement : 5,
33280     scrollUp : function(){
33281         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
33282     },
33283
33284     scrollDown : function(){
33285         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
33286     },
33287
33288     afterScroll : function(){
33289         var el = this.resizeEl;
33290         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
33291         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
33292         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
33293     },
33294
33295     setSize : function(){
33296         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
33297         this.afterScroll();
33298     },
33299
33300     onWheel : function(e){
33301         var d = e.getWheelDelta();
33302         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
33303         this.afterScroll();
33304         e.stopEvent();
33305     },
33306
33307     setContent : function(content, loadScripts){
33308         this.resizeEl.update(content, loadScripts);
33309     }
33310
33311 });
33312
33313
33314
33315
33316
33317
33318
33319
33320
33321 /**
33322  * @class Roo.TreePanel
33323  * @extends Roo.ContentPanel
33324  * @constructor
33325  * Create a new TreePanel. - defaults to fit/scoll contents.
33326  * @param {String/Object} config A string to set only the panel's title, or a config object
33327  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
33328  */
33329 Roo.TreePanel = function(config){
33330     var el = config.el;
33331     var tree = config.tree;
33332     delete config.tree; 
33333     delete config.el; // hopefull!
33334     
33335     // wrapper for IE7 strict & safari scroll issue
33336     
33337     var treeEl = el.createChild();
33338     config.resizeEl = treeEl;
33339     
33340     
33341     
33342     Roo.TreePanel.superclass.constructor.call(this, el, config);
33343  
33344  
33345     this.tree = new Roo.tree.TreePanel(treeEl , tree);
33346     //console.log(tree);
33347     this.on('activate', function()
33348     {
33349         if (this.tree.rendered) {
33350             return;
33351         }
33352         //console.log('render tree');
33353         this.tree.render();
33354     });
33355     
33356     this.on('resize',  function (cp, w, h) {
33357             this.tree.innerCt.setWidth(w);
33358             this.tree.innerCt.setHeight(h);
33359             this.tree.innerCt.setStyle('overflow-y', 'auto');
33360     });
33361
33362         
33363     
33364 };
33365
33366 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
33367     fitToFrame : true,
33368     autoScroll : true
33369 });
33370
33371
33372
33373
33374
33375
33376
33377
33378
33379
33380
33381 /*
33382  * Based on:
33383  * Ext JS Library 1.1.1
33384  * Copyright(c) 2006-2007, Ext JS, LLC.
33385  *
33386  * Originally Released Under LGPL - original licence link has changed is not relivant.
33387  *
33388  * Fork - LGPL
33389  * <script type="text/javascript">
33390  */
33391  
33392
33393 /**
33394  * @class Roo.ReaderLayout
33395  * @extends Roo.BorderLayout
33396  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
33397  * center region containing two nested regions (a top one for a list view and one for item preview below),
33398  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
33399  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
33400  * expedites the setup of the overall layout and regions for this common application style.
33401  * Example:
33402  <pre><code>
33403 var reader = new Roo.ReaderLayout();
33404 var CP = Roo.ContentPanel;  // shortcut for adding
33405
33406 reader.beginUpdate();
33407 reader.add("north", new CP("north", "North"));
33408 reader.add("west", new CP("west", {title: "West"}));
33409 reader.add("east", new CP("east", {title: "East"}));
33410
33411 reader.regions.listView.add(new CP("listView", "List"));
33412 reader.regions.preview.add(new CP("preview", "Preview"));
33413 reader.endUpdate();
33414 </code></pre>
33415 * @constructor
33416 * Create a new ReaderLayout
33417 * @param {Object} config Configuration options
33418 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
33419 * document.body if omitted)
33420 */
33421 Roo.ReaderLayout = function(config, renderTo){
33422     var c = config || {size:{}};
33423     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
33424         north: c.north !== false ? Roo.apply({
33425             split:false,
33426             initialSize: 32,
33427             titlebar: false
33428         }, c.north) : false,
33429         west: c.west !== false ? Roo.apply({
33430             split:true,
33431             initialSize: 200,
33432             minSize: 175,
33433             maxSize: 400,
33434             titlebar: true,
33435             collapsible: true,
33436             animate: true,
33437             margins:{left:5,right:0,bottom:5,top:5},
33438             cmargins:{left:5,right:5,bottom:5,top:5}
33439         }, c.west) : false,
33440         east: c.east !== false ? Roo.apply({
33441             split:true,
33442             initialSize: 200,
33443             minSize: 175,
33444             maxSize: 400,
33445             titlebar: true,
33446             collapsible: true,
33447             animate: true,
33448             margins:{left:0,right:5,bottom:5,top:5},
33449             cmargins:{left:5,right:5,bottom:5,top:5}
33450         }, c.east) : false,
33451         center: Roo.apply({
33452             tabPosition: 'top',
33453             autoScroll:false,
33454             closeOnTab: true,
33455             titlebar:false,
33456             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
33457         }, c.center)
33458     });
33459
33460     this.el.addClass('x-reader');
33461
33462     this.beginUpdate();
33463
33464     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
33465         south: c.preview !== false ? Roo.apply({
33466             split:true,
33467             initialSize: 200,
33468             minSize: 100,
33469             autoScroll:true,
33470             collapsible:true,
33471             titlebar: true,
33472             cmargins:{top:5,left:0, right:0, bottom:0}
33473         }, c.preview) : false,
33474         center: Roo.apply({
33475             autoScroll:false,
33476             titlebar:false,
33477             minHeight:200
33478         }, c.listView)
33479     });
33480     this.add('center', new Roo.NestedLayoutPanel(inner,
33481             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
33482
33483     this.endUpdate();
33484
33485     this.regions.preview = inner.getRegion('south');
33486     this.regions.listView = inner.getRegion('center');
33487 };
33488
33489 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
33490  * Based on:
33491  * Ext JS Library 1.1.1
33492  * Copyright(c) 2006-2007, Ext JS, LLC.
33493  *
33494  * Originally Released Under LGPL - original licence link has changed is not relivant.
33495  *
33496  * Fork - LGPL
33497  * <script type="text/javascript">
33498  */
33499  
33500 /**
33501  * @class Roo.grid.Grid
33502  * @extends Roo.util.Observable
33503  * This class represents the primary interface of a component based grid control.
33504  * <br><br>Usage:<pre><code>
33505  var grid = new Roo.grid.Grid("my-container-id", {
33506      ds: myDataStore,
33507      cm: myColModel,
33508      selModel: mySelectionModel,
33509      autoSizeColumns: true,
33510      monitorWindowResize: false,
33511      trackMouseOver: true
33512  });
33513  // set any options
33514  grid.render();
33515  * </code></pre>
33516  * <b>Common Problems:</b><br/>
33517  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
33518  * element will correct this<br/>
33519  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
33520  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
33521  * are unpredictable.<br/>
33522  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
33523  * grid to calculate dimensions/offsets.<br/>
33524   * @constructor
33525  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
33526  * The container MUST have some type of size defined for the grid to fill. The container will be
33527  * automatically set to position relative if it isn't already.
33528  * @param {Object} config A config object that sets properties on this grid.
33529  */
33530 Roo.grid.Grid = function(container, config){
33531         // initialize the container
33532         this.container = Roo.get(container);
33533         this.container.update("");
33534         this.container.setStyle("overflow", "hidden");
33535     this.container.addClass('x-grid-container');
33536
33537     this.id = this.container.id;
33538
33539     Roo.apply(this, config);
33540     // check and correct shorthanded configs
33541     if(this.ds){
33542         this.dataSource = this.ds;
33543         delete this.ds;
33544     }
33545     if(this.cm){
33546         this.colModel = this.cm;
33547         delete this.cm;
33548     }
33549     if(this.sm){
33550         this.selModel = this.sm;
33551         delete this.sm;
33552     }
33553
33554     if (this.selModel) {
33555         this.selModel = Roo.factory(this.selModel, Roo.grid);
33556         this.sm = this.selModel;
33557         this.sm.xmodule = this.xmodule || false;
33558     }
33559     if (typeof(this.colModel.config) == 'undefined') {
33560         this.colModel = new Roo.grid.ColumnModel(this.colModel);
33561         this.cm = this.colModel;
33562         this.cm.xmodule = this.xmodule || false;
33563     }
33564     if (this.dataSource) {
33565         this.dataSource= Roo.factory(this.dataSource, Roo.data);
33566         this.ds = this.dataSource;
33567         this.ds.xmodule = this.xmodule || false;
33568          
33569     }
33570     
33571     
33572     
33573     if(this.width){
33574         this.container.setWidth(this.width);
33575     }
33576
33577     if(this.height){
33578         this.container.setHeight(this.height);
33579     }
33580     /** @private */
33581         this.addEvents({
33582         // raw events
33583         /**
33584          * @event click
33585          * The raw click event for the entire grid.
33586          * @param {Roo.EventObject} e
33587          */
33588         "click" : true,
33589         /**
33590          * @event dblclick
33591          * The raw dblclick event for the entire grid.
33592          * @param {Roo.EventObject} e
33593          */
33594         "dblclick" : true,
33595         /**
33596          * @event contextmenu
33597          * The raw contextmenu event for the entire grid.
33598          * @param {Roo.EventObject} e
33599          */
33600         "contextmenu" : true,
33601         /**
33602          * @event mousedown
33603          * The raw mousedown event for the entire grid.
33604          * @param {Roo.EventObject} e
33605          */
33606         "mousedown" : true,
33607         /**
33608          * @event mouseup
33609          * The raw mouseup event for the entire grid.
33610          * @param {Roo.EventObject} e
33611          */
33612         "mouseup" : true,
33613         /**
33614          * @event mouseover
33615          * The raw mouseover event for the entire grid.
33616          * @param {Roo.EventObject} e
33617          */
33618         "mouseover" : true,
33619         /**
33620          * @event mouseout
33621          * The raw mouseout event for the entire grid.
33622          * @param {Roo.EventObject} e
33623          */
33624         "mouseout" : true,
33625         /**
33626          * @event keypress
33627          * The raw keypress event for the entire grid.
33628          * @param {Roo.EventObject} e
33629          */
33630         "keypress" : true,
33631         /**
33632          * @event keydown
33633          * The raw keydown event for the entire grid.
33634          * @param {Roo.EventObject} e
33635          */
33636         "keydown" : true,
33637
33638         // custom events
33639
33640         /**
33641          * @event cellclick
33642          * Fires when a cell is clicked
33643          * @param {Grid} this
33644          * @param {Number} rowIndex
33645          * @param {Number} columnIndex
33646          * @param {Roo.EventObject} e
33647          */
33648         "cellclick" : true,
33649         /**
33650          * @event celldblclick
33651          * Fires when a cell is double clicked
33652          * @param {Grid} this
33653          * @param {Number} rowIndex
33654          * @param {Number} columnIndex
33655          * @param {Roo.EventObject} e
33656          */
33657         "celldblclick" : true,
33658         /**
33659          * @event rowclick
33660          * Fires when a row is clicked
33661          * @param {Grid} this
33662          * @param {Number} rowIndex
33663          * @param {Roo.EventObject} e
33664          */
33665         "rowclick" : true,
33666         /**
33667          * @event rowdblclick
33668          * Fires when a row is double clicked
33669          * @param {Grid} this
33670          * @param {Number} rowIndex
33671          * @param {Roo.EventObject} e
33672          */
33673         "rowdblclick" : true,
33674         /**
33675          * @event headerclick
33676          * Fires when a header is clicked
33677          * @param {Grid} this
33678          * @param {Number} columnIndex
33679          * @param {Roo.EventObject} e
33680          */
33681         "headerclick" : true,
33682         /**
33683          * @event headerdblclick
33684          * Fires when a header cell is double clicked
33685          * @param {Grid} this
33686          * @param {Number} columnIndex
33687          * @param {Roo.EventObject} e
33688          */
33689         "headerdblclick" : true,
33690         /**
33691          * @event rowcontextmenu
33692          * Fires when a row is right clicked
33693          * @param {Grid} this
33694          * @param {Number} rowIndex
33695          * @param {Roo.EventObject} e
33696          */
33697         "rowcontextmenu" : true,
33698         /**
33699          * @event cellcontextmenu
33700          * Fires when a cell is right clicked
33701          * @param {Grid} this
33702          * @param {Number} rowIndex
33703          * @param {Number} cellIndex
33704          * @param {Roo.EventObject} e
33705          */
33706          "cellcontextmenu" : true,
33707         /**
33708          * @event headercontextmenu
33709          * Fires when a header is right clicked
33710          * @param {Grid} this
33711          * @param {Number} columnIndex
33712          * @param {Roo.EventObject} e
33713          */
33714         "headercontextmenu" : true,
33715         /**
33716          * @event bodyscroll
33717          * Fires when the body element is scrolled
33718          * @param {Number} scrollLeft
33719          * @param {Number} scrollTop
33720          */
33721         "bodyscroll" : true,
33722         /**
33723          * @event columnresize
33724          * Fires when the user resizes a column
33725          * @param {Number} columnIndex
33726          * @param {Number} newSize
33727          */
33728         "columnresize" : true,
33729         /**
33730          * @event columnmove
33731          * Fires when the user moves a column
33732          * @param {Number} oldIndex
33733          * @param {Number} newIndex
33734          */
33735         "columnmove" : true,
33736         /**
33737          * @event startdrag
33738          * Fires when row(s) start being dragged
33739          * @param {Grid} this
33740          * @param {Roo.GridDD} dd The drag drop object
33741          * @param {event} e The raw browser event
33742          */
33743         "startdrag" : true,
33744         /**
33745          * @event enddrag
33746          * Fires when a drag operation is complete
33747          * @param {Grid} this
33748          * @param {Roo.GridDD} dd The drag drop object
33749          * @param {event} e The raw browser event
33750          */
33751         "enddrag" : true,
33752         /**
33753          * @event dragdrop
33754          * Fires when dragged row(s) are dropped on a valid DD target
33755          * @param {Grid} this
33756          * @param {Roo.GridDD} dd The drag drop object
33757          * @param {String} targetId The target drag drop object
33758          * @param {event} e The raw browser event
33759          */
33760         "dragdrop" : true,
33761         /**
33762          * @event dragover
33763          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
33764          * @param {Grid} this
33765          * @param {Roo.GridDD} dd The drag drop object
33766          * @param {String} targetId The target drag drop object
33767          * @param {event} e The raw browser event
33768          */
33769         "dragover" : true,
33770         /**
33771          * @event dragenter
33772          *  Fires when the dragged row(s) first cross another DD target while being dragged
33773          * @param {Grid} this
33774          * @param {Roo.GridDD} dd The drag drop object
33775          * @param {String} targetId The target drag drop object
33776          * @param {event} e The raw browser event
33777          */
33778         "dragenter" : true,
33779         /**
33780          * @event dragout
33781          * Fires when the dragged row(s) leave another DD target while being dragged
33782          * @param {Grid} this
33783          * @param {Roo.GridDD} dd The drag drop object
33784          * @param {String} targetId The target drag drop object
33785          * @param {event} e The raw browser event
33786          */
33787         "dragout" : true,
33788         /**
33789          * @event rowclass
33790          * Fires when a row is rendered, so you can change add a style to it.
33791          * @param {GridView} gridview   The grid view
33792          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
33793          */
33794         'rowclass' : true,
33795
33796         /**
33797          * @event render
33798          * Fires when the grid is rendered
33799          * @param {Grid} grid
33800          */
33801         'render' : true
33802     });
33803
33804     Roo.grid.Grid.superclass.constructor.call(this);
33805 };
33806 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
33807     
33808     /**
33809      * @cfg {String} ddGroup - drag drop group.
33810      */
33811
33812     /**
33813      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
33814      */
33815     minColumnWidth : 25,
33816
33817     /**
33818      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
33819      * <b>on initial render.</b> It is more efficient to explicitly size the columns
33820      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
33821      */
33822     autoSizeColumns : false,
33823
33824     /**
33825      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
33826      */
33827     autoSizeHeaders : true,
33828
33829     /**
33830      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
33831      */
33832     monitorWindowResize : true,
33833
33834     /**
33835      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
33836      * rows measured to get a columns size. Default is 0 (all rows).
33837      */
33838     maxRowsToMeasure : 0,
33839
33840     /**
33841      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
33842      */
33843     trackMouseOver : true,
33844
33845     /**
33846     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
33847     */
33848     
33849     /**
33850     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
33851     */
33852     enableDragDrop : false,
33853     
33854     /**
33855     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
33856     */
33857     enableColumnMove : true,
33858     
33859     /**
33860     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
33861     */
33862     enableColumnHide : true,
33863     
33864     /**
33865     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
33866     */
33867     enableRowHeightSync : false,
33868     
33869     /**
33870     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
33871     */
33872     stripeRows : true,
33873     
33874     /**
33875     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
33876     */
33877     autoHeight : false,
33878
33879     /**
33880      * @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.
33881      */
33882     autoExpandColumn : false,
33883
33884     /**
33885     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
33886     * Default is 50.
33887     */
33888     autoExpandMin : 50,
33889
33890     /**
33891     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
33892     */
33893     autoExpandMax : 1000,
33894
33895     /**
33896     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
33897     */
33898     view : null,
33899
33900     /**
33901     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
33902     */
33903     loadMask : false,
33904     /**
33905     * @cfg {Roo.dd.DropTarget} dragTarget An {@link Roo.dd.DragTarget} config
33906     */
33907     dropTarget: false,
33908     
33909    
33910     
33911     // private
33912     rendered : false,
33913
33914     /**
33915     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
33916     * of a fixed width. Default is false.
33917     */
33918     /**
33919     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
33920     */
33921     /**
33922      * Called once after all setup has been completed and the grid is ready to be rendered.
33923      * @return {Roo.grid.Grid} this
33924      */
33925     render : function()
33926     {
33927         var c = this.container;
33928         // try to detect autoHeight/width mode
33929         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
33930             this.autoHeight = true;
33931         }
33932         var view = this.getView();
33933         view.init(this);
33934
33935         c.on("click", this.onClick, this);
33936         c.on("dblclick", this.onDblClick, this);
33937         c.on("contextmenu", this.onContextMenu, this);
33938         c.on("keydown", this.onKeyDown, this);
33939
33940         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
33941
33942         this.getSelectionModel().init(this);
33943
33944         view.render();
33945
33946         if(this.loadMask){
33947             this.loadMask = new Roo.LoadMask(this.container,
33948                     Roo.apply({store:this.dataSource}, this.loadMask));
33949         }
33950         
33951         
33952         if (this.toolbar && this.toolbar.xtype) {
33953             this.toolbar.container = this.getView().getHeaderPanel(true);
33954             this.toolbar = new Roo.Toolbar(this.toolbar);
33955         }
33956         if (this.footer && this.footer.xtype) {
33957             this.footer.dataSource = this.getDataSource();
33958             this.footer.container = this.getView().getFooterPanel(true);
33959             this.footer = Roo.factory(this.footer, Roo);
33960         }
33961         if (this.dropTarget && this.dropTarget.xtype) {
33962             delete this.dropTarget.xtype;
33963             this.dropTarget =  new Ext.dd.DropTarget(this.getView().mainBody, this.dropTarget);
33964         }
33965         
33966         
33967         this.rendered = true;
33968         this.fireEvent('render', this);
33969         return this;
33970     },
33971
33972         /**
33973          * Reconfigures the grid to use a different Store and Column Model.
33974          * The View will be bound to the new objects and refreshed.
33975          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
33976          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
33977          */
33978     reconfigure : function(dataSource, colModel){
33979         if(this.loadMask){
33980             this.loadMask.destroy();
33981             this.loadMask = new Roo.LoadMask(this.container,
33982                     Roo.apply({store:dataSource}, this.loadMask));
33983         }
33984         this.view.bind(dataSource, colModel);
33985         this.dataSource = dataSource;
33986         this.colModel = colModel;
33987         this.view.refresh(true);
33988     },
33989
33990     // private
33991     onKeyDown : function(e){
33992         this.fireEvent("keydown", e);
33993     },
33994
33995     /**
33996      * Destroy this grid.
33997      * @param {Boolean} removeEl True to remove the element
33998      */
33999     destroy : function(removeEl, keepListeners){
34000         if(this.loadMask){
34001             this.loadMask.destroy();
34002         }
34003         var c = this.container;
34004         c.removeAllListeners();
34005         this.view.destroy();
34006         this.colModel.purgeListeners();
34007         if(!keepListeners){
34008             this.purgeListeners();
34009         }
34010         c.update("");
34011         if(removeEl === true){
34012             c.remove();
34013         }
34014     },
34015
34016     // private
34017     processEvent : function(name, e){
34018         this.fireEvent(name, e);
34019         var t = e.getTarget();
34020         var v = this.view;
34021         var header = v.findHeaderIndex(t);
34022         if(header !== false){
34023             this.fireEvent("header" + name, this, header, e);
34024         }else{
34025             var row = v.findRowIndex(t);
34026             var cell = v.findCellIndex(t);
34027             if(row !== false){
34028                 this.fireEvent("row" + name, this, row, e);
34029                 if(cell !== false){
34030                     this.fireEvent("cell" + name, this, row, cell, e);
34031                 }
34032             }
34033         }
34034     },
34035
34036     // private
34037     onClick : function(e){
34038         this.processEvent("click", e);
34039     },
34040
34041     // private
34042     onContextMenu : function(e, t){
34043         this.processEvent("contextmenu", e);
34044     },
34045
34046     // private
34047     onDblClick : function(e){
34048         this.processEvent("dblclick", e);
34049     },
34050
34051     // private
34052     walkCells : function(row, col, step, fn, scope){
34053         var cm = this.colModel, clen = cm.getColumnCount();
34054         var ds = this.dataSource, rlen = ds.getCount(), first = true;
34055         if(step < 0){
34056             if(col < 0){
34057                 row--;
34058                 first = false;
34059             }
34060             while(row >= 0){
34061                 if(!first){
34062                     col = clen-1;
34063                 }
34064                 first = false;
34065                 while(col >= 0){
34066                     if(fn.call(scope || this, row, col, cm) === true){
34067                         return [row, col];
34068                     }
34069                     col--;
34070                 }
34071                 row--;
34072             }
34073         } else {
34074             if(col >= clen){
34075                 row++;
34076                 first = false;
34077             }
34078             while(row < rlen){
34079                 if(!first){
34080                     col = 0;
34081                 }
34082                 first = false;
34083                 while(col < clen){
34084                     if(fn.call(scope || this, row, col, cm) === true){
34085                         return [row, col];
34086                     }
34087                     col++;
34088                 }
34089                 row++;
34090             }
34091         }
34092         return null;
34093     },
34094
34095     // private
34096     getSelections : function(){
34097         return this.selModel.getSelections();
34098     },
34099
34100     /**
34101      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
34102      * but if manual update is required this method will initiate it.
34103      */
34104     autoSize : function(){
34105         if(this.rendered){
34106             this.view.layout();
34107             if(this.view.adjustForScroll){
34108                 this.view.adjustForScroll();
34109             }
34110         }
34111     },
34112
34113     /**
34114      * Returns the grid's underlying element.
34115      * @return {Element} The element
34116      */
34117     getGridEl : function(){
34118         return this.container;
34119     },
34120
34121     // private for compatibility, overridden by editor grid
34122     stopEditing : function(){},
34123
34124     /**
34125      * Returns the grid's SelectionModel.
34126      * @return {SelectionModel}
34127      */
34128     getSelectionModel : function(){
34129         if(!this.selModel){
34130             this.selModel = new Roo.grid.RowSelectionModel();
34131         }
34132         return this.selModel;
34133     },
34134
34135     /**
34136      * Returns the grid's DataSource.
34137      * @return {DataSource}
34138      */
34139     getDataSource : function(){
34140         return this.dataSource;
34141     },
34142
34143     /**
34144      * Returns the grid's ColumnModel.
34145      * @return {ColumnModel}
34146      */
34147     getColumnModel : function(){
34148         return this.colModel;
34149     },
34150
34151     /**
34152      * Returns the grid's GridView object.
34153      * @return {GridView}
34154      */
34155     getView : function(){
34156         if(!this.view){
34157             this.view = new Roo.grid.GridView(this.viewConfig);
34158         }
34159         return this.view;
34160     },
34161     /**
34162      * Called to get grid's drag proxy text, by default returns this.ddText.
34163      * @return {String}
34164      */
34165     getDragDropText : function(){
34166         var count = this.selModel.getCount();
34167         return String.format(this.ddText, count, count == 1 ? '' : 's');
34168     }
34169 });
34170 /**
34171  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
34172  * %0 is replaced with the number of selected rows.
34173  * @type String
34174  */
34175 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
34176  * Based on:
34177  * Ext JS Library 1.1.1
34178  * Copyright(c) 2006-2007, Ext JS, LLC.
34179  *
34180  * Originally Released Under LGPL - original licence link has changed is not relivant.
34181  *
34182  * Fork - LGPL
34183  * <script type="text/javascript">
34184  */
34185  
34186 Roo.grid.AbstractGridView = function(){
34187         this.grid = null;
34188         
34189         this.events = {
34190             "beforerowremoved" : true,
34191             "beforerowsinserted" : true,
34192             "beforerefresh" : true,
34193             "rowremoved" : true,
34194             "rowsinserted" : true,
34195             "rowupdated" : true,
34196             "refresh" : true
34197         };
34198     Roo.grid.AbstractGridView.superclass.constructor.call(this);
34199 };
34200
34201 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
34202     rowClass : "x-grid-row",
34203     cellClass : "x-grid-cell",
34204     tdClass : "x-grid-td",
34205     hdClass : "x-grid-hd",
34206     splitClass : "x-grid-hd-split",
34207     
34208         init: function(grid){
34209         this.grid = grid;
34210                 var cid = this.grid.getGridEl().id;
34211         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
34212         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
34213         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
34214         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
34215         },
34216         
34217         getColumnRenderers : function(){
34218         var renderers = [];
34219         var cm = this.grid.colModel;
34220         var colCount = cm.getColumnCount();
34221         for(var i = 0; i < colCount; i++){
34222             renderers[i] = cm.getRenderer(i);
34223         }
34224         return renderers;
34225     },
34226     
34227     getColumnIds : function(){
34228         var ids = [];
34229         var cm = this.grid.colModel;
34230         var colCount = cm.getColumnCount();
34231         for(var i = 0; i < colCount; i++){
34232             ids[i] = cm.getColumnId(i);
34233         }
34234         return ids;
34235     },
34236     
34237     getDataIndexes : function(){
34238         if(!this.indexMap){
34239             this.indexMap = this.buildIndexMap();
34240         }
34241         return this.indexMap.colToData;
34242     },
34243     
34244     getColumnIndexByDataIndex : function(dataIndex){
34245         if(!this.indexMap){
34246             this.indexMap = this.buildIndexMap();
34247         }
34248         return this.indexMap.dataToCol[dataIndex];
34249     },
34250     
34251     /**
34252      * Set a css style for a column dynamically. 
34253      * @param {Number} colIndex The index of the column
34254      * @param {String} name The css property name
34255      * @param {String} value The css value
34256      */
34257     setCSSStyle : function(colIndex, name, value){
34258         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
34259         Roo.util.CSS.updateRule(selector, name, value);
34260     },
34261     
34262     generateRules : function(cm){
34263         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
34264         Roo.util.CSS.removeStyleSheet(rulesId);
34265         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34266             var cid = cm.getColumnId(i);
34267             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
34268                          this.tdSelector, cid, " {\n}\n",
34269                          this.hdSelector, cid, " {\n}\n",
34270                          this.splitSelector, cid, " {\n}\n");
34271         }
34272         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
34273     }
34274 });/*
34275  * Based on:
34276  * Ext JS Library 1.1.1
34277  * Copyright(c) 2006-2007, Ext JS, LLC.
34278  *
34279  * Originally Released Under LGPL - original licence link has changed is not relivant.
34280  *
34281  * Fork - LGPL
34282  * <script type="text/javascript">
34283  */
34284
34285 // private
34286 // This is a support class used internally by the Grid components
34287 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
34288     this.grid = grid;
34289     this.view = grid.getView();
34290     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
34291     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
34292     if(hd2){
34293         this.setHandleElId(Roo.id(hd));
34294         this.setOuterHandleElId(Roo.id(hd2));
34295     }
34296     this.scroll = false;
34297 };
34298 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
34299     maxDragWidth: 120,
34300     getDragData : function(e){
34301         var t = Roo.lib.Event.getTarget(e);
34302         var h = this.view.findHeaderCell(t);
34303         if(h){
34304             return {ddel: h.firstChild, header:h};
34305         }
34306         return false;
34307     },
34308
34309     onInitDrag : function(e){
34310         this.view.headersDisabled = true;
34311         var clone = this.dragData.ddel.cloneNode(true);
34312         clone.id = Roo.id();
34313         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
34314         this.proxy.update(clone);
34315         return true;
34316     },
34317
34318     afterValidDrop : function(){
34319         var v = this.view;
34320         setTimeout(function(){
34321             v.headersDisabled = false;
34322         }, 50);
34323     },
34324
34325     afterInvalidDrop : function(){
34326         var v = this.view;
34327         setTimeout(function(){
34328             v.headersDisabled = false;
34329         }, 50);
34330     }
34331 });
34332 /*
34333  * Based on:
34334  * Ext JS Library 1.1.1
34335  * Copyright(c) 2006-2007, Ext JS, LLC.
34336  *
34337  * Originally Released Under LGPL - original licence link has changed is not relivant.
34338  *
34339  * Fork - LGPL
34340  * <script type="text/javascript">
34341  */
34342 // private
34343 // This is a support class used internally by the Grid components
34344 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
34345     this.grid = grid;
34346     this.view = grid.getView();
34347     // split the proxies so they don't interfere with mouse events
34348     this.proxyTop = Roo.DomHelper.append(document.body, {
34349         cls:"col-move-top", html:"&#160;"
34350     }, true);
34351     this.proxyBottom = Roo.DomHelper.append(document.body, {
34352         cls:"col-move-bottom", html:"&#160;"
34353     }, true);
34354     this.proxyTop.hide = this.proxyBottom.hide = function(){
34355         this.setLeftTop(-100,-100);
34356         this.setStyle("visibility", "hidden");
34357     };
34358     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
34359     // temporarily disabled
34360     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
34361     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
34362 };
34363 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
34364     proxyOffsets : [-4, -9],
34365     fly: Roo.Element.fly,
34366
34367     getTargetFromEvent : function(e){
34368         var t = Roo.lib.Event.getTarget(e);
34369         var cindex = this.view.findCellIndex(t);
34370         if(cindex !== false){
34371             return this.view.getHeaderCell(cindex);
34372         }
34373         return null;
34374     },
34375
34376     nextVisible : function(h){
34377         var v = this.view, cm = this.grid.colModel;
34378         h = h.nextSibling;
34379         while(h){
34380             if(!cm.isHidden(v.getCellIndex(h))){
34381                 return h;
34382             }
34383             h = h.nextSibling;
34384         }
34385         return null;
34386     },
34387
34388     prevVisible : function(h){
34389         var v = this.view, cm = this.grid.colModel;
34390         h = h.prevSibling;
34391         while(h){
34392             if(!cm.isHidden(v.getCellIndex(h))){
34393                 return h;
34394             }
34395             h = h.prevSibling;
34396         }
34397         return null;
34398     },
34399
34400     positionIndicator : function(h, n, e){
34401         var x = Roo.lib.Event.getPageX(e);
34402         var r = Roo.lib.Dom.getRegion(n.firstChild);
34403         var px, pt, py = r.top + this.proxyOffsets[1];
34404         if((r.right - x) <= (r.right-r.left)/2){
34405             px = r.right+this.view.borderWidth;
34406             pt = "after";
34407         }else{
34408             px = r.left;
34409             pt = "before";
34410         }
34411         var oldIndex = this.view.getCellIndex(h);
34412         var newIndex = this.view.getCellIndex(n);
34413
34414         if(this.grid.colModel.isFixed(newIndex)){
34415             return false;
34416         }
34417
34418         var locked = this.grid.colModel.isLocked(newIndex);
34419
34420         if(pt == "after"){
34421             newIndex++;
34422         }
34423         if(oldIndex < newIndex){
34424             newIndex--;
34425         }
34426         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
34427             return false;
34428         }
34429         px +=  this.proxyOffsets[0];
34430         this.proxyTop.setLeftTop(px, py);
34431         this.proxyTop.show();
34432         if(!this.bottomOffset){
34433             this.bottomOffset = this.view.mainHd.getHeight();
34434         }
34435         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
34436         this.proxyBottom.show();
34437         return pt;
34438     },
34439
34440     onNodeEnter : function(n, dd, e, data){
34441         if(data.header != n){
34442             this.positionIndicator(data.header, n, e);
34443         }
34444     },
34445
34446     onNodeOver : function(n, dd, e, data){
34447         var result = false;
34448         if(data.header != n){
34449             result = this.positionIndicator(data.header, n, e);
34450         }
34451         if(!result){
34452             this.proxyTop.hide();
34453             this.proxyBottom.hide();
34454         }
34455         return result ? this.dropAllowed : this.dropNotAllowed;
34456     },
34457
34458     onNodeOut : function(n, dd, e, data){
34459         this.proxyTop.hide();
34460         this.proxyBottom.hide();
34461     },
34462
34463     onNodeDrop : function(n, dd, e, data){
34464         var h = data.header;
34465         if(h != n){
34466             var cm = this.grid.colModel;
34467             var x = Roo.lib.Event.getPageX(e);
34468             var r = Roo.lib.Dom.getRegion(n.firstChild);
34469             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
34470             var oldIndex = this.view.getCellIndex(h);
34471             var newIndex = this.view.getCellIndex(n);
34472             var locked = cm.isLocked(newIndex);
34473             if(pt == "after"){
34474                 newIndex++;
34475             }
34476             if(oldIndex < newIndex){
34477                 newIndex--;
34478             }
34479             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
34480                 return false;
34481             }
34482             cm.setLocked(oldIndex, locked, true);
34483             cm.moveColumn(oldIndex, newIndex);
34484             this.grid.fireEvent("columnmove", oldIndex, newIndex);
34485             return true;
34486         }
34487         return false;
34488     }
34489 });
34490 /*
34491  * Based on:
34492  * Ext JS Library 1.1.1
34493  * Copyright(c) 2006-2007, Ext JS, LLC.
34494  *
34495  * Originally Released Under LGPL - original licence link has changed is not relivant.
34496  *
34497  * Fork - LGPL
34498  * <script type="text/javascript">
34499  */
34500   
34501 /**
34502  * @class Roo.grid.GridView
34503  * @extends Roo.util.Observable
34504  *
34505  * @constructor
34506  * @param {Object} config
34507  */
34508 Roo.grid.GridView = function(config){
34509     Roo.grid.GridView.superclass.constructor.call(this);
34510     this.el = null;
34511
34512     Roo.apply(this, config);
34513 };
34514
34515 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
34516
34517     
34518     rowClass : "x-grid-row",
34519
34520     cellClass : "x-grid-col",
34521
34522     tdClass : "x-grid-td",
34523
34524     hdClass : "x-grid-hd",
34525
34526     splitClass : "x-grid-split",
34527
34528     sortClasses : ["sort-asc", "sort-desc"],
34529
34530     enableMoveAnim : false,
34531
34532     hlColor: "C3DAF9",
34533
34534     dh : Roo.DomHelper,
34535
34536     fly : Roo.Element.fly,
34537
34538     css : Roo.util.CSS,
34539
34540     borderWidth: 1,
34541
34542     splitOffset: 3,
34543
34544     scrollIncrement : 22,
34545
34546     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
34547
34548     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
34549
34550     bind : function(ds, cm){
34551         if(this.ds){
34552             this.ds.un("load", this.onLoad, this);
34553             this.ds.un("datachanged", this.onDataChange, this);
34554             this.ds.un("add", this.onAdd, this);
34555             this.ds.un("remove", this.onRemove, this);
34556             this.ds.un("update", this.onUpdate, this);
34557             this.ds.un("clear", this.onClear, this);
34558         }
34559         if(ds){
34560             ds.on("load", this.onLoad, this);
34561             ds.on("datachanged", this.onDataChange, this);
34562             ds.on("add", this.onAdd, this);
34563             ds.on("remove", this.onRemove, this);
34564             ds.on("update", this.onUpdate, this);
34565             ds.on("clear", this.onClear, this);
34566         }
34567         this.ds = ds;
34568
34569         if(this.cm){
34570             this.cm.un("widthchange", this.onColWidthChange, this);
34571             this.cm.un("headerchange", this.onHeaderChange, this);
34572             this.cm.un("hiddenchange", this.onHiddenChange, this);
34573             this.cm.un("columnmoved", this.onColumnMove, this);
34574             this.cm.un("columnlockchange", this.onColumnLock, this);
34575         }
34576         if(cm){
34577             this.generateRules(cm);
34578             cm.on("widthchange", this.onColWidthChange, this);
34579             cm.on("headerchange", this.onHeaderChange, this);
34580             cm.on("hiddenchange", this.onHiddenChange, this);
34581             cm.on("columnmoved", this.onColumnMove, this);
34582             cm.on("columnlockchange", this.onColumnLock, this);
34583         }
34584         this.cm = cm;
34585     },
34586
34587     init: function(grid){
34588         Roo.grid.GridView.superclass.init.call(this, grid);
34589
34590         this.bind(grid.dataSource, grid.colModel);
34591
34592         grid.on("headerclick", this.handleHeaderClick, this);
34593
34594         if(grid.trackMouseOver){
34595             grid.on("mouseover", this.onRowOver, this);
34596             grid.on("mouseout", this.onRowOut, this);
34597         }
34598         grid.cancelTextSelection = function(){};
34599         this.gridId = grid.id;
34600
34601         var tpls = this.templates || {};
34602
34603         if(!tpls.master){
34604             tpls.master = new Roo.Template(
34605                '<div class="x-grid" hidefocus="true">',
34606                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
34607                   '<div class="x-grid-topbar"></div>',
34608                   '<div class="x-grid-scroller"><div></div></div>',
34609                   '<div class="x-grid-locked">',
34610                       '<div class="x-grid-header">{lockedHeader}</div>',
34611                       '<div class="x-grid-body">{lockedBody}</div>',
34612                   "</div>",
34613                   '<div class="x-grid-viewport">',
34614                       '<div class="x-grid-header">{header}</div>',
34615                       '<div class="x-grid-body">{body}</div>',
34616                   "</div>",
34617                   '<div class="x-grid-bottombar"></div>',
34618                  
34619                   '<div class="x-grid-resize-proxy">&#160;</div>',
34620                "</div>"
34621             );
34622             tpls.master.disableformats = true;
34623         }
34624
34625         if(!tpls.header){
34626             tpls.header = new Roo.Template(
34627                '<table border="0" cellspacing="0" cellpadding="0">',
34628                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
34629                "</table>{splits}"
34630             );
34631             tpls.header.disableformats = true;
34632         }
34633         tpls.header.compile();
34634
34635         if(!tpls.hcell){
34636             tpls.hcell = new Roo.Template(
34637                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
34638                 '<div class="x-grid-hd-text" unselectable="on">{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
34639                 "</div></td>"
34640              );
34641              tpls.hcell.disableFormats = true;
34642         }
34643         tpls.hcell.compile();
34644
34645         if(!tpls.hsplit){
34646             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style}" unselectable="on">&#160;</div>');
34647             tpls.hsplit.disableFormats = true;
34648         }
34649         tpls.hsplit.compile();
34650
34651         if(!tpls.body){
34652             tpls.body = new Roo.Template(
34653                '<table border="0" cellspacing="0" cellpadding="0">',
34654                "<tbody>{rows}</tbody>",
34655                "</table>"
34656             );
34657             tpls.body.disableFormats = true;
34658         }
34659         tpls.body.compile();
34660
34661         if(!tpls.row){
34662             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
34663             tpls.row.disableFormats = true;
34664         }
34665         tpls.row.compile();
34666
34667         if(!tpls.cell){
34668             tpls.cell = new Roo.Template(
34669                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
34670                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text" unselectable="on" {attr}>{value}</div></div>',
34671                 "</td>"
34672             );
34673             tpls.cell.disableFormats = true;
34674         }
34675         tpls.cell.compile();
34676
34677         this.templates = tpls;
34678     },
34679
34680     // remap these for backwards compat
34681     onColWidthChange : function(){
34682         this.updateColumns.apply(this, arguments);
34683     },
34684     onHeaderChange : function(){
34685         this.updateHeaders.apply(this, arguments);
34686     }, 
34687     onHiddenChange : function(){
34688         this.handleHiddenChange.apply(this, arguments);
34689     },
34690     onColumnMove : function(){
34691         this.handleColumnMove.apply(this, arguments);
34692     },
34693     onColumnLock : function(){
34694         this.handleLockChange.apply(this, arguments);
34695     },
34696
34697     onDataChange : function(){
34698         this.refresh();
34699         this.updateHeaderSortState();
34700     },
34701
34702     onClear : function(){
34703         this.refresh();
34704     },
34705
34706     onUpdate : function(ds, record){
34707         this.refreshRow(record);
34708     },
34709
34710     refreshRow : function(record){
34711         var ds = this.ds, index;
34712         if(typeof record == 'number'){
34713             index = record;
34714             record = ds.getAt(index);
34715         }else{
34716             index = ds.indexOf(record);
34717         }
34718         this.insertRows(ds, index, index, true);
34719         this.onRemove(ds, record, index+1, true);
34720         this.syncRowHeights(index, index);
34721         this.layout();
34722         this.fireEvent("rowupdated", this, index, record);
34723     },
34724
34725     onAdd : function(ds, records, index){
34726         this.insertRows(ds, index, index + (records.length-1));
34727     },
34728
34729     onRemove : function(ds, record, index, isUpdate){
34730         if(isUpdate !== true){
34731             this.fireEvent("beforerowremoved", this, index, record);
34732         }
34733         var bt = this.getBodyTable(), lt = this.getLockedTable();
34734         if(bt.rows[index]){
34735             bt.firstChild.removeChild(bt.rows[index]);
34736         }
34737         if(lt.rows[index]){
34738             lt.firstChild.removeChild(lt.rows[index]);
34739         }
34740         if(isUpdate !== true){
34741             this.stripeRows(index);
34742             this.syncRowHeights(index, index);
34743             this.layout();
34744             this.fireEvent("rowremoved", this, index, record);
34745         }
34746     },
34747
34748     onLoad : function(){
34749         this.scrollToTop();
34750     },
34751
34752     /**
34753      * Scrolls the grid to the top
34754      */
34755     scrollToTop : function(){
34756         if(this.scroller){
34757             this.scroller.dom.scrollTop = 0;
34758             this.syncScroll();
34759         }
34760     },
34761
34762     /**
34763      * Gets a panel in the header of the grid that can be used for toolbars etc.
34764      * After modifying the contents of this panel a call to grid.autoSize() may be
34765      * required to register any changes in size.
34766      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
34767      * @return Roo.Element
34768      */
34769     getHeaderPanel : function(doShow){
34770         if(doShow){
34771             this.headerPanel.show();
34772         }
34773         return this.headerPanel;
34774     },
34775
34776     /**
34777      * Gets a panel in the footer of the grid that can be used for toolbars etc.
34778      * After modifying the contents of this panel a call to grid.autoSize() may be
34779      * required to register any changes in size.
34780      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
34781      * @return Roo.Element
34782      */
34783     getFooterPanel : function(doShow){
34784         if(doShow){
34785             this.footerPanel.show();
34786         }
34787         return this.footerPanel;
34788     },
34789
34790     initElements : function(){
34791         var E = Roo.Element;
34792         var el = this.grid.getGridEl().dom.firstChild;
34793         var cs = el.childNodes;
34794
34795         this.el = new E(el);
34796         
34797          this.focusEl = new E(el.firstChild);
34798         this.focusEl.swallowEvent("click", true);
34799         
34800         this.headerPanel = new E(cs[1]);
34801         this.headerPanel.enableDisplayMode("block");
34802
34803         this.scroller = new E(cs[2]);
34804         this.scrollSizer = new E(this.scroller.dom.firstChild);
34805
34806         this.lockedWrap = new E(cs[3]);
34807         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
34808         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
34809
34810         this.mainWrap = new E(cs[4]);
34811         this.mainHd = new E(this.mainWrap.dom.firstChild);
34812         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
34813
34814         this.footerPanel = new E(cs[5]);
34815         this.footerPanel.enableDisplayMode("block");
34816
34817         this.resizeProxy = new E(cs[6]);
34818
34819         this.headerSelector = String.format(
34820            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
34821            this.lockedHd.id, this.mainHd.id
34822         );
34823
34824         this.splitterSelector = String.format(
34825            '#{0} div.x-grid-split, #{1} div.x-grid-split',
34826            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
34827         );
34828     },
34829     idToCssName : function(s)
34830     {
34831         return s.replace(/[^a-z0-9]+/ig, '-');
34832     },
34833
34834     getHeaderCell : function(index){
34835         return Roo.DomQuery.select(this.headerSelector)[index];
34836     },
34837
34838     getHeaderCellMeasure : function(index){
34839         return this.getHeaderCell(index).firstChild;
34840     },
34841
34842     getHeaderCellText : function(index){
34843         return this.getHeaderCell(index).firstChild.firstChild;
34844     },
34845
34846     getLockedTable : function(){
34847         return this.lockedBody.dom.firstChild;
34848     },
34849
34850     getBodyTable : function(){
34851         return this.mainBody.dom.firstChild;
34852     },
34853
34854     getLockedRow : function(index){
34855         return this.getLockedTable().rows[index];
34856     },
34857
34858     getRow : function(index){
34859         return this.getBodyTable().rows[index];
34860     },
34861
34862     getRowComposite : function(index){
34863         if(!this.rowEl){
34864             this.rowEl = new Roo.CompositeElementLite();
34865         }
34866         var els = [], lrow, mrow;
34867         if(lrow = this.getLockedRow(index)){
34868             els.push(lrow);
34869         }
34870         if(mrow = this.getRow(index)){
34871             els.push(mrow);
34872         }
34873         this.rowEl.elements = els;
34874         return this.rowEl;
34875     },
34876     /**
34877      * Gets the 'td' of the cell
34878      * 
34879      * @param {Integer} rowIndex row to select
34880      * @param {Integer} colIndex column to select
34881      * 
34882      * @return {Object} 
34883      */
34884     getCell : function(rowIndex, colIndex){
34885         var locked = this.cm.getLockedCount();
34886         var source;
34887         if(colIndex < locked){
34888             source = this.lockedBody.dom.firstChild;
34889         }else{
34890             source = this.mainBody.dom.firstChild;
34891             colIndex -= locked;
34892         }
34893         return source.rows[rowIndex].childNodes[colIndex];
34894     },
34895
34896     getCellText : function(rowIndex, colIndex){
34897         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
34898     },
34899
34900     getCellBox : function(cell){
34901         var b = this.fly(cell).getBox();
34902         if(Roo.isOpera){ // opera fails to report the Y
34903             b.y = cell.offsetTop + this.mainBody.getY();
34904         }
34905         return b;
34906     },
34907
34908     getCellIndex : function(cell){
34909         var id = String(cell.className).match(this.cellRE);
34910         if(id){
34911             return parseInt(id[1], 10);
34912         }
34913         return 0;
34914     },
34915
34916     findHeaderIndex : function(n){
34917         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
34918         return r ? this.getCellIndex(r) : false;
34919     },
34920
34921     findHeaderCell : function(n){
34922         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
34923         return r ? r : false;
34924     },
34925
34926     findRowIndex : function(n){
34927         if(!n){
34928             return false;
34929         }
34930         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
34931         return r ? r.rowIndex : false;
34932     },
34933
34934     findCellIndex : function(node){
34935         var stop = this.el.dom;
34936         while(node && node != stop){
34937             if(this.findRE.test(node.className)){
34938                 return this.getCellIndex(node);
34939             }
34940             node = node.parentNode;
34941         }
34942         return false;
34943     },
34944
34945     getColumnId : function(index){
34946         return this.cm.getColumnId(index);
34947     },
34948
34949     getSplitters : function()
34950     {
34951         if(this.splitterSelector){
34952            return Roo.DomQuery.select(this.splitterSelector);
34953         }else{
34954             return null;
34955       }
34956     },
34957
34958     getSplitter : function(index){
34959         return this.getSplitters()[index];
34960     },
34961
34962     onRowOver : function(e, t){
34963         var row;
34964         if((row = this.findRowIndex(t)) !== false){
34965             this.getRowComposite(row).addClass("x-grid-row-over");
34966         }
34967     },
34968
34969     onRowOut : function(e, t){
34970         var row;
34971         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
34972             this.getRowComposite(row).removeClass("x-grid-row-over");
34973         }
34974     },
34975
34976     renderHeaders : function(){
34977         var cm = this.cm;
34978         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
34979         var cb = [], lb = [], sb = [], lsb = [], p = {};
34980         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
34981             p.cellId = "x-grid-hd-0-" + i;
34982             p.splitId = "x-grid-csplit-0-" + i;
34983             p.id = cm.getColumnId(i);
34984             p.title = cm.getColumnTooltip(i) || "";
34985             p.value = cm.getColumnHeader(i) || "";
34986             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
34987             if(!cm.isLocked(i)){
34988                 cb[cb.length] = ct.apply(p);
34989                 sb[sb.length] = st.apply(p);
34990             }else{
34991                 lb[lb.length] = ct.apply(p);
34992                 lsb[lsb.length] = st.apply(p);
34993             }
34994         }
34995         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
34996                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
34997     },
34998
34999     updateHeaders : function(){
35000         var html = this.renderHeaders();
35001         this.lockedHd.update(html[0]);
35002         this.mainHd.update(html[1]);
35003     },
35004
35005     /**
35006      * Focuses the specified row.
35007      * @param {Number} row The row index
35008      */
35009     focusRow : function(row)
35010     {
35011         //Roo.log('GridView.focusRow');
35012         var x = this.scroller.dom.scrollLeft;
35013         this.focusCell(row, 0, false);
35014         this.scroller.dom.scrollLeft = x;
35015     },
35016
35017     /**
35018      * Focuses the specified cell.
35019      * @param {Number} row The row index
35020      * @param {Number} col The column index
35021      * @param {Boolean} hscroll false to disable horizontal scrolling
35022      */
35023     focusCell : function(row, col, hscroll)
35024     {
35025         //Roo.log('GridView.focusCell');
35026         var el = this.ensureVisible(row, col, hscroll);
35027         this.focusEl.alignTo(el, "tl-tl");
35028         if(Roo.isGecko){
35029             this.focusEl.focus();
35030         }else{
35031             this.focusEl.focus.defer(1, this.focusEl);
35032         }
35033     },
35034
35035     /**
35036      * Scrolls the specified cell into view
35037      * @param {Number} row The row index
35038      * @param {Number} col The column index
35039      * @param {Boolean} hscroll false to disable horizontal scrolling
35040      */
35041     ensureVisible : function(row, col, hscroll)
35042     {
35043         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
35044         //return null; //disable for testing.
35045         if(typeof row != "number"){
35046             row = row.rowIndex;
35047         }
35048         if(row < 0 && row >= this.ds.getCount()){
35049             return  null;
35050         }
35051         col = (col !== undefined ? col : 0);
35052         var cm = this.grid.colModel;
35053         while(cm.isHidden(col)){
35054             col++;
35055         }
35056
35057         var el = this.getCell(row, col);
35058         if(!el){
35059             return null;
35060         }
35061         var c = this.scroller.dom;
35062
35063         var ctop = parseInt(el.offsetTop, 10);
35064         var cleft = parseInt(el.offsetLeft, 10);
35065         var cbot = ctop + el.offsetHeight;
35066         var cright = cleft + el.offsetWidth;
35067         
35068         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
35069         var stop = parseInt(c.scrollTop, 10);
35070         var sleft = parseInt(c.scrollLeft, 10);
35071         var sbot = stop + ch;
35072         var sright = sleft + c.clientWidth;
35073         /*
35074         Roo.log('GridView.ensureVisible:' +
35075                 ' ctop:' + ctop +
35076                 ' c.clientHeight:' + c.clientHeight +
35077                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
35078                 ' stop:' + stop +
35079                 ' cbot:' + cbot +
35080                 ' sbot:' + sbot +
35081                 ' ch:' + ch  
35082                 );
35083         */
35084         if(ctop < stop){
35085              c.scrollTop = ctop;
35086             //Roo.log("set scrolltop to ctop DISABLE?");
35087         }else if(cbot > sbot){
35088             //Roo.log("set scrolltop to cbot-ch");
35089             c.scrollTop = cbot-ch;
35090         }
35091         
35092         if(hscroll !== false){
35093             if(cleft < sleft){
35094                 c.scrollLeft = cleft;
35095             }else if(cright > sright){
35096                 c.scrollLeft = cright-c.clientWidth;
35097             }
35098         }
35099          
35100         return el;
35101     },
35102
35103     updateColumns : function(){
35104         this.grid.stopEditing();
35105         var cm = this.grid.colModel, colIds = this.getColumnIds();
35106         //var totalWidth = cm.getTotalWidth();
35107         var pos = 0;
35108         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
35109             //if(cm.isHidden(i)) continue;
35110             var w = cm.getColumnWidth(i);
35111             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
35112             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
35113         }
35114         this.updateSplitters();
35115     },
35116
35117     generateRules : function(cm){
35118         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
35119         Roo.util.CSS.removeStyleSheet(rulesId);
35120         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
35121             var cid = cm.getColumnId(i);
35122             var align = '';
35123             if(cm.config[i].align){
35124                 align = 'text-align:'+cm.config[i].align+';';
35125             }
35126             var hidden = '';
35127             if(cm.isHidden(i)){
35128                 hidden = 'display:none;';
35129             }
35130             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
35131             ruleBuf.push(
35132                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
35133                     this.hdSelector, cid, " {\n", align, width, "}\n",
35134                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
35135                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
35136         }
35137         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
35138     },
35139
35140     updateSplitters : function(){
35141         var cm = this.cm, s = this.getSplitters();
35142         if(s){ // splitters not created yet
35143             var pos = 0, locked = true;
35144             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
35145                 if(cm.isHidden(i)) continue;
35146                 var w = cm.getColumnWidth(i); // make sure it's a number
35147                 if(!cm.isLocked(i) && locked){
35148                     pos = 0;
35149                     locked = false;
35150                 }
35151                 pos += w;
35152                 s[i].style.left = (pos-this.splitOffset) + "px";
35153             }
35154         }
35155     },
35156
35157     handleHiddenChange : function(colModel, colIndex, hidden){
35158         if(hidden){
35159             this.hideColumn(colIndex);
35160         }else{
35161             this.unhideColumn(colIndex);
35162         }
35163     },
35164
35165     hideColumn : function(colIndex){
35166         var cid = this.getColumnId(colIndex);
35167         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
35168         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
35169         if(Roo.isSafari){
35170             this.updateHeaders();
35171         }
35172         this.updateSplitters();
35173         this.layout();
35174     },
35175
35176     unhideColumn : function(colIndex){
35177         var cid = this.getColumnId(colIndex);
35178         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
35179         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
35180
35181         if(Roo.isSafari){
35182             this.updateHeaders();
35183         }
35184         this.updateSplitters();
35185         this.layout();
35186     },
35187
35188     insertRows : function(dm, firstRow, lastRow, isUpdate){
35189         if(firstRow == 0 && lastRow == dm.getCount()-1){
35190             this.refresh();
35191         }else{
35192             if(!isUpdate){
35193                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
35194             }
35195             var s = this.getScrollState();
35196             var markup = this.renderRows(firstRow, lastRow);
35197             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
35198             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
35199             this.restoreScroll(s);
35200             if(!isUpdate){
35201                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
35202                 this.syncRowHeights(firstRow, lastRow);
35203                 this.stripeRows(firstRow);
35204                 this.layout();
35205             }
35206         }
35207     },
35208
35209     bufferRows : function(markup, target, index){
35210         var before = null, trows = target.rows, tbody = target.tBodies[0];
35211         if(index < trows.length){
35212             before = trows[index];
35213         }
35214         var b = document.createElement("div");
35215         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
35216         var rows = b.firstChild.rows;
35217         for(var i = 0, len = rows.length; i < len; i++){
35218             if(before){
35219                 tbody.insertBefore(rows[0], before);
35220             }else{
35221                 tbody.appendChild(rows[0]);
35222             }
35223         }
35224         b.innerHTML = "";
35225         b = null;
35226     },
35227
35228     deleteRows : function(dm, firstRow, lastRow){
35229         if(dm.getRowCount()<1){
35230             this.fireEvent("beforerefresh", this);
35231             this.mainBody.update("");
35232             this.lockedBody.update("");
35233             this.fireEvent("refresh", this);
35234         }else{
35235             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
35236             var bt = this.getBodyTable();
35237             var tbody = bt.firstChild;
35238             var rows = bt.rows;
35239             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
35240                 tbody.removeChild(rows[firstRow]);
35241             }
35242             this.stripeRows(firstRow);
35243             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
35244         }
35245     },
35246
35247     updateRows : function(dataSource, firstRow, lastRow){
35248         var s = this.getScrollState();
35249         this.refresh();
35250         this.restoreScroll(s);
35251     },
35252
35253     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
35254         if(!noRefresh){
35255            this.refresh();
35256         }
35257         this.updateHeaderSortState();
35258     },
35259
35260     getScrollState : function(){
35261         
35262         var sb = this.scroller.dom;
35263         return {left: sb.scrollLeft, top: sb.scrollTop};
35264     },
35265
35266     stripeRows : function(startRow){
35267         if(!this.grid.stripeRows || this.ds.getCount() < 1){
35268             return;
35269         }
35270         startRow = startRow || 0;
35271         var rows = this.getBodyTable().rows;
35272         var lrows = this.getLockedTable().rows;
35273         var cls = ' x-grid-row-alt ';
35274         for(var i = startRow, len = rows.length; i < len; i++){
35275             var row = rows[i], lrow = lrows[i];
35276             var isAlt = ((i+1) % 2 == 0);
35277             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
35278             if(isAlt == hasAlt){
35279                 continue;
35280             }
35281             if(isAlt){
35282                 row.className += " x-grid-row-alt";
35283             }else{
35284                 row.className = row.className.replace("x-grid-row-alt", "");
35285             }
35286             if(lrow){
35287                 lrow.className = row.className;
35288             }
35289         }
35290     },
35291
35292     restoreScroll : function(state){
35293         //Roo.log('GridView.restoreScroll');
35294         var sb = this.scroller.dom;
35295         sb.scrollLeft = state.left;
35296         sb.scrollTop = state.top;
35297         this.syncScroll();
35298     },
35299
35300     syncScroll : function(){
35301         //Roo.log('GridView.syncScroll');
35302         var sb = this.scroller.dom;
35303         var sh = this.mainHd.dom;
35304         var bs = this.mainBody.dom;
35305         var lv = this.lockedBody.dom;
35306         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
35307         lv.scrollTop = bs.scrollTop = sb.scrollTop;
35308     },
35309
35310     handleScroll : function(e){
35311         this.syncScroll();
35312         var sb = this.scroller.dom;
35313         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
35314         e.stopEvent();
35315     },
35316
35317     handleWheel : function(e){
35318         var d = e.getWheelDelta();
35319         this.scroller.dom.scrollTop -= d*22;
35320         // set this here to prevent jumpy scrolling on large tables
35321         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
35322         e.stopEvent();
35323     },
35324
35325     renderRows : function(startRow, endRow){
35326         // pull in all the crap needed to render rows
35327         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
35328         var colCount = cm.getColumnCount();
35329
35330         if(ds.getCount() < 1){
35331             return ["", ""];
35332         }
35333
35334         // build a map for all the columns
35335         var cs = [];
35336         for(var i = 0; i < colCount; i++){
35337             var name = cm.getDataIndex(i);
35338             cs[i] = {
35339                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
35340                 renderer : cm.getRenderer(i),
35341                 id : cm.getColumnId(i),
35342                 locked : cm.isLocked(i)
35343             };
35344         }
35345
35346         startRow = startRow || 0;
35347         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
35348
35349         // records to render
35350         var rs = ds.getRange(startRow, endRow);
35351
35352         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
35353     },
35354
35355     // As much as I hate to duplicate code, this was branched because FireFox really hates
35356     // [].join("") on strings. The performance difference was substantial enough to
35357     // branch this function
35358     doRender : Roo.isGecko ?
35359             function(cs, rs, ds, startRow, colCount, stripe){
35360                 var ts = this.templates, ct = ts.cell, rt = ts.row;
35361                 // buffers
35362                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
35363                 
35364                 var hasListener = this.grid.hasListener('rowclass');
35365                 var rowcfg = {};
35366                 for(var j = 0, len = rs.length; j < len; j++){
35367                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
35368                     for(var i = 0; i < colCount; i++){
35369                         c = cs[i];
35370                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
35371                         p.id = c.id;
35372                         p.css = p.attr = "";
35373                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
35374                         if(p.value == undefined || p.value === "") p.value = "&#160;";
35375                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
35376                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
35377                         }
35378                         var markup = ct.apply(p);
35379                         if(!c.locked){
35380                             cb+= markup;
35381                         }else{
35382                             lcb+= markup;
35383                         }
35384                     }
35385                     var alt = [];
35386                     if(stripe && ((rowIndex+1) % 2 == 0)){
35387                         alt.push("x-grid-row-alt")
35388                     }
35389                     if(r.dirty){
35390                         alt.push(  " x-grid-dirty-row");
35391                     }
35392                     rp.cells = lcb;
35393                     if(this.getRowClass){
35394                         alt.push(this.getRowClass(r, rowIndex));
35395                     }
35396                     if (hasListener) {
35397                         rowcfg = {
35398                              
35399                             record: r,
35400                             rowIndex : rowIndex,
35401                             rowClass : ''
35402                         }
35403                         this.grid.fireEvent('rowclass', this, rowcfg);
35404                         alt.push(rowcfg.rowClass);
35405                     }
35406                     rp.alt = alt.join(" ");
35407                     lbuf+= rt.apply(rp);
35408                     rp.cells = cb;
35409                     buf+=  rt.apply(rp);
35410                 }
35411                 return [lbuf, buf];
35412             } :
35413             function(cs, rs, ds, startRow, colCount, stripe){
35414                 var ts = this.templates, ct = ts.cell, rt = ts.row;
35415                 // buffers
35416                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
35417                 var hasListener = this.grid.hasListener('rowclass');
35418  
35419                 var rowcfg = {};
35420                 for(var j = 0, len = rs.length; j < len; j++){
35421                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
35422                     for(var i = 0; i < colCount; i++){
35423                         c = cs[i];
35424                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
35425                         p.id = c.id;
35426                         p.css = p.attr = "";
35427                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
35428                         if(p.value == undefined || p.value === "") p.value = "&#160;";
35429                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
35430                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
35431                         }
35432                         
35433                         var markup = ct.apply(p);
35434                         if(!c.locked){
35435                             cb[cb.length] = markup;
35436                         }else{
35437                             lcb[lcb.length] = markup;
35438                         }
35439                     }
35440                     var alt = [];
35441                     if(stripe && ((rowIndex+1) % 2 == 0)){
35442                         alt.push( "x-grid-row-alt");
35443                     }
35444                     if(r.dirty){
35445                         alt.push(" x-grid-dirty-row");
35446                     }
35447                     rp.cells = lcb;
35448                     if(this.getRowClass){
35449                         alt.push( this.getRowClass(r, rowIndex));
35450                     }
35451                     if (hasListener) {
35452                         rowcfg = {
35453                              
35454                             record: r,
35455                             rowIndex : rowIndex,
35456                             rowClass : ''
35457                         }
35458                         this.grid.fireEvent('rowclass', this, rowcfg);
35459                         alt.push(rowcfg.rowClass);
35460                     }
35461                     rp.alt = alt.join(" ");
35462                     rp.cells = lcb.join("");
35463                     lbuf[lbuf.length] = rt.apply(rp);
35464                     rp.cells = cb.join("");
35465                     buf[buf.length] =  rt.apply(rp);
35466                 }
35467                 return [lbuf.join(""), buf.join("")];
35468             },
35469
35470     renderBody : function(){
35471         var markup = this.renderRows();
35472         var bt = this.templates.body;
35473         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
35474     },
35475
35476     /**
35477      * Refreshes the grid
35478      * @param {Boolean} headersToo
35479      */
35480     refresh : function(headersToo){
35481         this.fireEvent("beforerefresh", this);
35482         this.grid.stopEditing();
35483         var result = this.renderBody();
35484         this.lockedBody.update(result[0]);
35485         this.mainBody.update(result[1]);
35486         if(headersToo === true){
35487             this.updateHeaders();
35488             this.updateColumns();
35489             this.updateSplitters();
35490             this.updateHeaderSortState();
35491         }
35492         this.syncRowHeights();
35493         this.layout();
35494         this.fireEvent("refresh", this);
35495     },
35496
35497     handleColumnMove : function(cm, oldIndex, newIndex){
35498         this.indexMap = null;
35499         var s = this.getScrollState();
35500         this.refresh(true);
35501         this.restoreScroll(s);
35502         this.afterMove(newIndex);
35503     },
35504
35505     afterMove : function(colIndex){
35506         if(this.enableMoveAnim && Roo.enableFx){
35507             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
35508         }
35509         // if multisort - fix sortOrder, and reload..
35510         if (this.grid.dataSource.multiSort) {
35511             // the we can call sort again..
35512             var dm = this.grid.dataSource;
35513             var cm = this.grid.colModel;
35514             var so = [];
35515             for(var i = 0; i < cm.config.length; i++ ) {
35516                 
35517                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
35518                     continue; // dont' bother, it's not in sort list or being set.
35519                 }
35520                 
35521                 so.push(cm.config[i].dataIndex);
35522             };
35523             dm.sortOrder = so;
35524             dm.load(dm.lastOptions);
35525             
35526             
35527         }
35528         
35529     },
35530
35531     updateCell : function(dm, rowIndex, dataIndex){
35532         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
35533         if(typeof colIndex == "undefined"){ // not present in grid
35534             return;
35535         }
35536         var cm = this.grid.colModel;
35537         var cell = this.getCell(rowIndex, colIndex);
35538         var cellText = this.getCellText(rowIndex, colIndex);
35539
35540         var p = {
35541             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
35542             id : cm.getColumnId(colIndex),
35543             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
35544         };
35545         var renderer = cm.getRenderer(colIndex);
35546         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
35547         if(typeof val == "undefined" || val === "") val = "&#160;";
35548         cellText.innerHTML = val;
35549         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
35550         this.syncRowHeights(rowIndex, rowIndex);
35551     },
35552
35553     calcColumnWidth : function(colIndex, maxRowsToMeasure){
35554         var maxWidth = 0;
35555         if(this.grid.autoSizeHeaders){
35556             var h = this.getHeaderCellMeasure(colIndex);
35557             maxWidth = Math.max(maxWidth, h.scrollWidth);
35558         }
35559         var tb, index;
35560         if(this.cm.isLocked(colIndex)){
35561             tb = this.getLockedTable();
35562             index = colIndex;
35563         }else{
35564             tb = this.getBodyTable();
35565             index = colIndex - this.cm.getLockedCount();
35566         }
35567         if(tb && tb.rows){
35568             var rows = tb.rows;
35569             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
35570             for(var i = 0; i < stopIndex; i++){
35571                 var cell = rows[i].childNodes[index].firstChild;
35572                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
35573             }
35574         }
35575         return maxWidth + /*margin for error in IE*/ 5;
35576     },
35577     /**
35578      * Autofit a column to its content.
35579      * @param {Number} colIndex
35580      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
35581      */
35582      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
35583          if(this.cm.isHidden(colIndex)){
35584              return; // can't calc a hidden column
35585          }
35586         if(forceMinSize){
35587             var cid = this.cm.getColumnId(colIndex);
35588             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
35589            if(this.grid.autoSizeHeaders){
35590                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
35591            }
35592         }
35593         var newWidth = this.calcColumnWidth(colIndex);
35594         this.cm.setColumnWidth(colIndex,
35595             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
35596         if(!suppressEvent){
35597             this.grid.fireEvent("columnresize", colIndex, newWidth);
35598         }
35599     },
35600
35601     /**
35602      * Autofits all columns to their content and then expands to fit any extra space in the grid
35603      */
35604      autoSizeColumns : function(){
35605         var cm = this.grid.colModel;
35606         var colCount = cm.getColumnCount();
35607         for(var i = 0; i < colCount; i++){
35608             this.autoSizeColumn(i, true, true);
35609         }
35610         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
35611             this.fitColumns();
35612         }else{
35613             this.updateColumns();
35614             this.layout();
35615         }
35616     },
35617
35618     /**
35619      * Autofits all columns to the grid's width proportionate with their current size
35620      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
35621      */
35622     fitColumns : function(reserveScrollSpace){
35623         var cm = this.grid.colModel;
35624         var colCount = cm.getColumnCount();
35625         var cols = [];
35626         var width = 0;
35627         var i, w;
35628         for (i = 0; i < colCount; i++){
35629             if(!cm.isHidden(i) && !cm.isFixed(i)){
35630                 w = cm.getColumnWidth(i);
35631                 cols.push(i);
35632                 cols.push(w);
35633                 width += w;
35634             }
35635         }
35636         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
35637         if(reserveScrollSpace){
35638             avail -= 17;
35639         }
35640         var frac = (avail - cm.getTotalWidth())/width;
35641         while (cols.length){
35642             w = cols.pop();
35643             i = cols.pop();
35644             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
35645         }
35646         this.updateColumns();
35647         this.layout();
35648     },
35649
35650     onRowSelect : function(rowIndex){
35651         var row = this.getRowComposite(rowIndex);
35652         row.addClass("x-grid-row-selected");
35653     },
35654
35655     onRowDeselect : function(rowIndex){
35656         var row = this.getRowComposite(rowIndex);
35657         row.removeClass("x-grid-row-selected");
35658     },
35659
35660     onCellSelect : function(row, col){
35661         var cell = this.getCell(row, col);
35662         if(cell){
35663             Roo.fly(cell).addClass("x-grid-cell-selected");
35664         }
35665     },
35666
35667     onCellDeselect : function(row, col){
35668         var cell = this.getCell(row, col);
35669         if(cell){
35670             Roo.fly(cell).removeClass("x-grid-cell-selected");
35671         }
35672     },
35673
35674     updateHeaderSortState : function(){
35675         
35676         // sort state can be single { field: xxx, direction : yyy}
35677         // or   { xxx=>ASC , yyy : DESC ..... }
35678         
35679         var mstate = {};
35680         if (!this.ds.multiSort) { 
35681             var state = this.ds.getSortState();
35682             if(!state){
35683                 return;
35684             }
35685             mstate[state.field] = state.direction;
35686             // FIXME... - this is not used here.. but might be elsewhere..
35687             this.sortState = state;
35688             
35689         } else {
35690             mstate = this.ds.sortToggle;
35691         }
35692         //remove existing sort classes..
35693         
35694         var sc = this.sortClasses;
35695         var hds = this.el.select(this.headerSelector).removeClass(sc);
35696         
35697         for(var f in mstate) {
35698         
35699             var sortColumn = this.cm.findColumnIndex(f);
35700             
35701             if(sortColumn != -1){
35702                 var sortDir = mstate[f];        
35703                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
35704             }
35705         }
35706         
35707          
35708         
35709     },
35710
35711
35712     handleHeaderClick : function(g, index){
35713         if(this.headersDisabled){
35714             return;
35715         }
35716         var dm = g.dataSource, cm = g.colModel;
35717         if(!cm.isSortable(index)){
35718             return;
35719         }
35720         g.stopEditing();
35721         
35722         if (dm.multiSort) {
35723             // update the sortOrder
35724             var so = [];
35725             for(var i = 0; i < cm.config.length; i++ ) {
35726                 
35727                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
35728                     continue; // dont' bother, it's not in sort list or being set.
35729                 }
35730                 
35731                 so.push(cm.config[i].dataIndex);
35732             };
35733             dm.sortOrder = so;
35734         }
35735         
35736         
35737         dm.sort(cm.getDataIndex(index));
35738     },
35739
35740
35741     destroy : function(){
35742         if(this.colMenu){
35743             this.colMenu.removeAll();
35744             Roo.menu.MenuMgr.unregister(this.colMenu);
35745             this.colMenu.getEl().remove();
35746             delete this.colMenu;
35747         }
35748         if(this.hmenu){
35749             this.hmenu.removeAll();
35750             Roo.menu.MenuMgr.unregister(this.hmenu);
35751             this.hmenu.getEl().remove();
35752             delete this.hmenu;
35753         }
35754         if(this.grid.enableColumnMove){
35755             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
35756             if(dds){
35757                 for(var dd in dds){
35758                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
35759                         var elid = dds[dd].dragElId;
35760                         dds[dd].unreg();
35761                         Roo.get(elid).remove();
35762                     } else if(dds[dd].config.isTarget){
35763                         dds[dd].proxyTop.remove();
35764                         dds[dd].proxyBottom.remove();
35765                         dds[dd].unreg();
35766                     }
35767                     if(Roo.dd.DDM.locationCache[dd]){
35768                         delete Roo.dd.DDM.locationCache[dd];
35769                     }
35770                 }
35771                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
35772             }
35773         }
35774         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
35775         this.bind(null, null);
35776         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
35777     },
35778
35779     handleLockChange : function(){
35780         this.refresh(true);
35781     },
35782
35783     onDenyColumnLock : function(){
35784
35785     },
35786
35787     onDenyColumnHide : function(){
35788
35789     },
35790
35791     handleHdMenuClick : function(item){
35792         var index = this.hdCtxIndex;
35793         var cm = this.cm, ds = this.ds;
35794         switch(item.id){
35795             case "asc":
35796                 ds.sort(cm.getDataIndex(index), "ASC");
35797                 break;
35798             case "desc":
35799                 ds.sort(cm.getDataIndex(index), "DESC");
35800                 break;
35801             case "lock":
35802                 var lc = cm.getLockedCount();
35803                 if(cm.getColumnCount(true) <= lc+1){
35804                     this.onDenyColumnLock();
35805                     return;
35806                 }
35807                 if(lc != index){
35808                     cm.setLocked(index, true, true);
35809                     cm.moveColumn(index, lc);
35810                     this.grid.fireEvent("columnmove", index, lc);
35811                 }else{
35812                     cm.setLocked(index, true);
35813                 }
35814             break;
35815             case "unlock":
35816                 var lc = cm.getLockedCount();
35817                 if((lc-1) != index){
35818                     cm.setLocked(index, false, true);
35819                     cm.moveColumn(index, lc-1);
35820                     this.grid.fireEvent("columnmove", index, lc-1);
35821                 }else{
35822                     cm.setLocked(index, false);
35823                 }
35824             break;
35825             default:
35826                 index = cm.getIndexById(item.id.substr(4));
35827                 if(index != -1){
35828                     if(item.checked && cm.getColumnCount(true) <= 1){
35829                         this.onDenyColumnHide();
35830                         return false;
35831                     }
35832                     cm.setHidden(index, item.checked);
35833                 }
35834         }
35835         return true;
35836     },
35837
35838     beforeColMenuShow : function(){
35839         var cm = this.cm,  colCount = cm.getColumnCount();
35840         this.colMenu.removeAll();
35841         for(var i = 0; i < colCount; i++){
35842             this.colMenu.add(new Roo.menu.CheckItem({
35843                 id: "col-"+cm.getColumnId(i),
35844                 text: cm.getColumnHeader(i),
35845                 checked: !cm.isHidden(i),
35846                 hideOnClick:false
35847             }));
35848         }
35849     },
35850
35851     handleHdCtx : function(g, index, e){
35852         e.stopEvent();
35853         var hd = this.getHeaderCell(index);
35854         this.hdCtxIndex = index;
35855         var ms = this.hmenu.items, cm = this.cm;
35856         ms.get("asc").setDisabled(!cm.isSortable(index));
35857         ms.get("desc").setDisabled(!cm.isSortable(index));
35858         if(this.grid.enableColLock !== false){
35859             ms.get("lock").setDisabled(cm.isLocked(index));
35860             ms.get("unlock").setDisabled(!cm.isLocked(index));
35861         }
35862         this.hmenu.show(hd, "tl-bl");
35863     },
35864
35865     handleHdOver : function(e){
35866         var hd = this.findHeaderCell(e.getTarget());
35867         if(hd && !this.headersDisabled){
35868             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
35869                this.fly(hd).addClass("x-grid-hd-over");
35870             }
35871         }
35872     },
35873
35874     handleHdOut : function(e){
35875         var hd = this.findHeaderCell(e.getTarget());
35876         if(hd){
35877             this.fly(hd).removeClass("x-grid-hd-over");
35878         }
35879     },
35880
35881     handleSplitDblClick : function(e, t){
35882         var i = this.getCellIndex(t);
35883         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
35884             this.autoSizeColumn(i, true);
35885             this.layout();
35886         }
35887     },
35888
35889     render : function(){
35890
35891         var cm = this.cm;
35892         var colCount = cm.getColumnCount();
35893
35894         if(this.grid.monitorWindowResize === true){
35895             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35896         }
35897         var header = this.renderHeaders();
35898         var body = this.templates.body.apply({rows:""});
35899         var html = this.templates.master.apply({
35900             lockedBody: body,
35901             body: body,
35902             lockedHeader: header[0],
35903             header: header[1]
35904         });
35905
35906         //this.updateColumns();
35907
35908         this.grid.getGridEl().dom.innerHTML = html;
35909
35910         this.initElements();
35911         
35912         // a kludge to fix the random scolling effect in webkit
35913         this.el.on("scroll", function() {
35914             this.el.dom.scrollTop=0; // hopefully not recursive..
35915         },this);
35916
35917         this.scroller.on("scroll", this.handleScroll, this);
35918         this.lockedBody.on("mousewheel", this.handleWheel, this);
35919         this.mainBody.on("mousewheel", this.handleWheel, this);
35920
35921         this.mainHd.on("mouseover", this.handleHdOver, this);
35922         this.mainHd.on("mouseout", this.handleHdOut, this);
35923         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
35924                 {delegate: "."+this.splitClass});
35925
35926         this.lockedHd.on("mouseover", this.handleHdOver, this);
35927         this.lockedHd.on("mouseout", this.handleHdOut, this);
35928         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
35929                 {delegate: "."+this.splitClass});
35930
35931         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
35932             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35933         }
35934
35935         this.updateSplitters();
35936
35937         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
35938             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35939             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
35940         }
35941
35942         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
35943             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
35944             this.hmenu.add(
35945                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
35946                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
35947             );
35948             if(this.grid.enableColLock !== false){
35949                 this.hmenu.add('-',
35950                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
35951                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
35952                 );
35953             }
35954             if(this.grid.enableColumnHide !== false){
35955
35956                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
35957                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
35958                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
35959
35960                 this.hmenu.add('-',
35961                     {id:"columns", text: this.columnsText, menu: this.colMenu}
35962                 );
35963             }
35964             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
35965
35966             this.grid.on("headercontextmenu", this.handleHdCtx, this);
35967         }
35968
35969         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
35970             this.dd = new Roo.grid.GridDragZone(this.grid, {
35971                 ddGroup : this.grid.ddGroup || 'GridDD'
35972             });
35973         }
35974
35975         /*
35976         for(var i = 0; i < colCount; i++){
35977             if(cm.isHidden(i)){
35978                 this.hideColumn(i);
35979             }
35980             if(cm.config[i].align){
35981                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
35982                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
35983             }
35984         }*/
35985         
35986         this.updateHeaderSortState();
35987
35988         this.beforeInitialResize();
35989         this.layout(true);
35990
35991         // two part rendering gives faster view to the user
35992         this.renderPhase2.defer(1, this);
35993     },
35994
35995     renderPhase2 : function(){
35996         // render the rows now
35997         this.refresh();
35998         if(this.grid.autoSizeColumns){
35999             this.autoSizeColumns();
36000         }
36001     },
36002
36003     beforeInitialResize : function(){
36004
36005     },
36006
36007     onColumnSplitterMoved : function(i, w){
36008         this.userResized = true;
36009         var cm = this.grid.colModel;
36010         cm.setColumnWidth(i, w, true);
36011         var cid = cm.getColumnId(i);
36012         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
36013         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
36014         this.updateSplitters();
36015         this.layout();
36016         this.grid.fireEvent("columnresize", i, w);
36017     },
36018
36019     syncRowHeights : function(startIndex, endIndex){
36020         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
36021             startIndex = startIndex || 0;
36022             var mrows = this.getBodyTable().rows;
36023             var lrows = this.getLockedTable().rows;
36024             var len = mrows.length-1;
36025             endIndex = Math.min(endIndex || len, len);
36026             for(var i = startIndex; i <= endIndex; i++){
36027                 var m = mrows[i], l = lrows[i];
36028                 var h = Math.max(m.offsetHeight, l.offsetHeight);
36029                 m.style.height = l.style.height = h + "px";
36030             }
36031         }
36032     },
36033
36034     layout : function(initialRender, is2ndPass){
36035         var g = this.grid;
36036         var auto = g.autoHeight;
36037         var scrollOffset = 16;
36038         var c = g.getGridEl(), cm = this.cm,
36039                 expandCol = g.autoExpandColumn,
36040                 gv = this;
36041         //c.beginMeasure();
36042
36043         if(!c.dom.offsetWidth){ // display:none?
36044             if(initialRender){
36045                 this.lockedWrap.show();
36046                 this.mainWrap.show();
36047             }
36048             return;
36049         }
36050
36051         var hasLock = this.cm.isLocked(0);
36052
36053         var tbh = this.headerPanel.getHeight();
36054         var bbh = this.footerPanel.getHeight();
36055
36056         if(auto){
36057             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
36058             var newHeight = ch + c.getBorderWidth("tb");
36059             if(g.maxHeight){
36060                 newHeight = Math.min(g.maxHeight, newHeight);
36061             }
36062             c.setHeight(newHeight);
36063         }
36064
36065         if(g.autoWidth){
36066             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
36067         }
36068
36069         var s = this.scroller;
36070
36071         var csize = c.getSize(true);
36072
36073         this.el.setSize(csize.width, csize.height);
36074
36075         this.headerPanel.setWidth(csize.width);
36076         this.footerPanel.setWidth(csize.width);
36077
36078         var hdHeight = this.mainHd.getHeight();
36079         var vw = csize.width;
36080         var vh = csize.height - (tbh + bbh);
36081
36082         s.setSize(vw, vh);
36083
36084         var bt = this.getBodyTable();
36085         var ltWidth = hasLock ?
36086                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
36087
36088         var scrollHeight = bt.offsetHeight;
36089         var scrollWidth = ltWidth + bt.offsetWidth;
36090         var vscroll = false, hscroll = false;
36091
36092         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
36093
36094         var lw = this.lockedWrap, mw = this.mainWrap;
36095         var lb = this.lockedBody, mb = this.mainBody;
36096
36097         setTimeout(function(){
36098             var t = s.dom.offsetTop;
36099             var w = s.dom.clientWidth,
36100                 h = s.dom.clientHeight;
36101
36102             lw.setTop(t);
36103             lw.setSize(ltWidth, h);
36104
36105             mw.setLeftTop(ltWidth, t);
36106             mw.setSize(w-ltWidth, h);
36107
36108             lb.setHeight(h-hdHeight);
36109             mb.setHeight(h-hdHeight);
36110
36111             if(is2ndPass !== true && !gv.userResized && expandCol){
36112                 // high speed resize without full column calculation
36113                 
36114                 var ci = cm.getIndexById(expandCol);
36115                 if (ci < 0) {
36116                     ci = cm.findColumnIndex(expandCol);
36117                 }
36118                 ci = Math.max(0, ci); // make sure it's got at least the first col.
36119                 var expandId = cm.getColumnId(ci);
36120                 var  tw = cm.getTotalWidth(false);
36121                 var currentWidth = cm.getColumnWidth(ci);
36122                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
36123                 if(currentWidth != cw){
36124                     cm.setColumnWidth(ci, cw, true);
36125                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
36126                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
36127                     gv.updateSplitters();
36128                     gv.layout(false, true);
36129                 }
36130             }
36131
36132             if(initialRender){
36133                 lw.show();
36134                 mw.show();
36135             }
36136             //c.endMeasure();
36137         }, 10);
36138     },
36139
36140     onWindowResize : function(){
36141         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
36142             return;
36143         }
36144         this.layout();
36145     },
36146
36147     appendFooter : function(parentEl){
36148         return null;
36149     },
36150
36151     sortAscText : "Sort Ascending",
36152     sortDescText : "Sort Descending",
36153     lockText : "Lock Column",
36154     unlockText : "Unlock Column",
36155     columnsText : "Columns"
36156 });
36157
36158
36159 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
36160     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
36161     this.proxy.el.addClass('x-grid3-col-dd');
36162 };
36163
36164 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
36165     handleMouseDown : function(e){
36166
36167     },
36168
36169     callHandleMouseDown : function(e){
36170         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
36171     }
36172 });
36173 /*
36174  * Based on:
36175  * Ext JS Library 1.1.1
36176  * Copyright(c) 2006-2007, Ext JS, LLC.
36177  *
36178  * Originally Released Under LGPL - original licence link has changed is not relivant.
36179  *
36180  * Fork - LGPL
36181  * <script type="text/javascript">
36182  */
36183  
36184 // private
36185 // This is a support class used internally by the Grid components
36186 Roo.grid.SplitDragZone = function(grid, hd, hd2){
36187     this.grid = grid;
36188     this.view = grid.getView();
36189     this.proxy = this.view.resizeProxy;
36190     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
36191         "gridSplitters" + this.grid.getGridEl().id, {
36192         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
36193     });
36194     this.setHandleElId(Roo.id(hd));
36195     this.setOuterHandleElId(Roo.id(hd2));
36196     this.scroll = false;
36197 };
36198 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
36199     fly: Roo.Element.fly,
36200
36201     b4StartDrag : function(x, y){
36202         this.view.headersDisabled = true;
36203         this.proxy.setHeight(this.view.mainWrap.getHeight());
36204         var w = this.cm.getColumnWidth(this.cellIndex);
36205         var minw = Math.max(w-this.grid.minColumnWidth, 0);
36206         this.resetConstraints();
36207         this.setXConstraint(minw, 1000);
36208         this.setYConstraint(0, 0);
36209         this.minX = x - minw;
36210         this.maxX = x + 1000;
36211         this.startPos = x;
36212         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
36213     },
36214
36215
36216     handleMouseDown : function(e){
36217         ev = Roo.EventObject.setEvent(e);
36218         var t = this.fly(ev.getTarget());
36219         if(t.hasClass("x-grid-split")){
36220             this.cellIndex = this.view.getCellIndex(t.dom);
36221             this.split = t.dom;
36222             this.cm = this.grid.colModel;
36223             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
36224                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
36225             }
36226         }
36227     },
36228
36229     endDrag : function(e){
36230         this.view.headersDisabled = false;
36231         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
36232         var diff = endX - this.startPos;
36233         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
36234     },
36235
36236     autoOffset : function(){
36237         this.setDelta(0,0);
36238     }
36239 });/*
36240  * Based on:
36241  * Ext JS Library 1.1.1
36242  * Copyright(c) 2006-2007, Ext JS, LLC.
36243  *
36244  * Originally Released Under LGPL - original licence link has changed is not relivant.
36245  *
36246  * Fork - LGPL
36247  * <script type="text/javascript">
36248  */
36249  
36250 // private
36251 // This is a support class used internally by the Grid components
36252 Roo.grid.GridDragZone = function(grid, config){
36253     this.view = grid.getView();
36254     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
36255     if(this.view.lockedBody){
36256         this.setHandleElId(Roo.id(this.view.mainBody.dom));
36257         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
36258     }
36259     this.scroll = false;
36260     this.grid = grid;
36261     this.ddel = document.createElement('div');
36262     this.ddel.className = 'x-grid-dd-wrap';
36263 };
36264
36265 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
36266     ddGroup : "GridDD",
36267
36268     getDragData : function(e){
36269         var t = Roo.lib.Event.getTarget(e);
36270         var rowIndex = this.view.findRowIndex(t);
36271         if(rowIndex !== false){
36272             var sm = this.grid.selModel;
36273             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
36274               //  sm.mouseDown(e, t);
36275             //}
36276             if (e.hasModifier()){
36277                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
36278             }
36279             return {grid: this.grid, ddel: this.ddel, rowIndex: rowIndex, selections:sm.getSelections()};
36280         }
36281         return false;
36282     },
36283
36284     onInitDrag : function(e){
36285         var data = this.dragData;
36286         this.ddel.innerHTML = this.grid.getDragDropText();
36287         this.proxy.update(this.ddel);
36288         // fire start drag?
36289     },
36290
36291     afterRepair : function(){
36292         this.dragging = false;
36293     },
36294
36295     getRepairXY : function(e, data){
36296         return false;
36297     },
36298
36299     onEndDrag : function(data, e){
36300         // fire end drag?
36301     },
36302
36303     onValidDrop : function(dd, e, id){
36304         // fire drag drop?
36305         this.hideProxy();
36306     },
36307
36308     beforeInvalidDrop : function(e, id){
36309
36310     }
36311 });/*
36312  * Based on:
36313  * Ext JS Library 1.1.1
36314  * Copyright(c) 2006-2007, Ext JS, LLC.
36315  *
36316  * Originally Released Under LGPL - original licence link has changed is not relivant.
36317  *
36318  * Fork - LGPL
36319  * <script type="text/javascript">
36320  */
36321  
36322
36323 /**
36324  * @class Roo.grid.ColumnModel
36325  * @extends Roo.util.Observable
36326  * This is the default implementation of a ColumnModel used by the Grid. It defines
36327  * the columns in the grid.
36328  * <br>Usage:<br>
36329  <pre><code>
36330  var colModel = new Roo.grid.ColumnModel([
36331         {header: "Ticker", width: 60, sortable: true, locked: true},
36332         {header: "Company Name", width: 150, sortable: true},
36333         {header: "Market Cap.", width: 100, sortable: true},
36334         {header: "$ Sales", width: 100, sortable: true, renderer: money},
36335         {header: "Employees", width: 100, sortable: true, resizable: false}
36336  ]);
36337  </code></pre>
36338  * <p>
36339  
36340  * The config options listed for this class are options which may appear in each
36341  * individual column definition.
36342  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
36343  * @constructor
36344  * @param {Object} config An Array of column config objects. See this class's
36345  * config objects for details.
36346 */
36347 Roo.grid.ColumnModel = function(config){
36348         /**
36349      * The config passed into the constructor
36350      */
36351     this.config = config;
36352     this.lookup = {};
36353
36354     // if no id, create one
36355     // if the column does not have a dataIndex mapping,
36356     // map it to the order it is in the config
36357     for(var i = 0, len = config.length; i < len; i++){
36358         var c = config[i];
36359         if(typeof c.dataIndex == "undefined"){
36360             c.dataIndex = i;
36361         }
36362         if(typeof c.renderer == "string"){
36363             c.renderer = Roo.util.Format[c.renderer];
36364         }
36365         if(typeof c.id == "undefined"){
36366             c.id = Roo.id();
36367         }
36368         if(c.editor && c.editor.xtype){
36369             c.editor  = Roo.factory(c.editor, Roo.grid);
36370         }
36371         if(c.editor && c.editor.isFormField){
36372             c.editor = new Roo.grid.GridEditor(c.editor);
36373         }
36374         this.lookup[c.id] = c;
36375     }
36376
36377     /**
36378      * The width of columns which have no width specified (defaults to 100)
36379      * @type Number
36380      */
36381     this.defaultWidth = 100;
36382
36383     /**
36384      * Default sortable of columns which have no sortable specified (defaults to false)
36385      * @type Boolean
36386      */
36387     this.defaultSortable = false;
36388
36389     this.addEvents({
36390         /**
36391              * @event widthchange
36392              * Fires when the width of a column changes.
36393              * @param {ColumnModel} this
36394              * @param {Number} columnIndex The column index
36395              * @param {Number} newWidth The new width
36396              */
36397             "widthchange": true,
36398         /**
36399              * @event headerchange
36400              * Fires when the text of a header changes.
36401              * @param {ColumnModel} this
36402              * @param {Number} columnIndex The column index
36403              * @param {Number} newText The new header text
36404              */
36405             "headerchange": true,
36406         /**
36407              * @event hiddenchange
36408              * Fires when a column is hidden or "unhidden".
36409              * @param {ColumnModel} this
36410              * @param {Number} columnIndex The column index
36411              * @param {Boolean} hidden true if hidden, false otherwise
36412              */
36413             "hiddenchange": true,
36414             /**
36415          * @event columnmoved
36416          * Fires when a column is moved.
36417          * @param {ColumnModel} this
36418          * @param {Number} oldIndex
36419          * @param {Number} newIndex
36420          */
36421         "columnmoved" : true,
36422         /**
36423          * @event columlockchange
36424          * Fires when a column's locked state is changed
36425          * @param {ColumnModel} this
36426          * @param {Number} colIndex
36427          * @param {Boolean} locked true if locked
36428          */
36429         "columnlockchange" : true
36430     });
36431     Roo.grid.ColumnModel.superclass.constructor.call(this);
36432 };
36433 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
36434     /**
36435      * @cfg {String} header The header text to display in the Grid view.
36436      */
36437     /**
36438      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
36439      * {@link Roo.data.Record} definition from which to draw the column's value. If not
36440      * specified, the column's index is used as an index into the Record's data Array.
36441      */
36442     /**
36443      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
36444      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
36445      */
36446     /**
36447      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
36448      * Defaults to the value of the {@link #defaultSortable} property.
36449      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
36450      */
36451     /**
36452      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
36453      */
36454     /**
36455      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
36456      */
36457     /**
36458      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
36459      */
36460     /**
36461      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
36462      */
36463     /**
36464      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
36465      * given the cell's data value. See {@link #setRenderer}. If not specified, the
36466      * default renderer uses the raw data value.
36467      */
36468        /**
36469      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
36470      */
36471     /**
36472      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
36473      */
36474
36475     /**
36476      * Returns the id of the column at the specified index.
36477      * @param {Number} index The column index
36478      * @return {String} the id
36479      */
36480     getColumnId : function(index){
36481         return this.config[index].id;
36482     },
36483
36484     /**
36485      * Returns the column for a specified id.
36486      * @param {String} id The column id
36487      * @return {Object} the column
36488      */
36489     getColumnById : function(id){
36490         return this.lookup[id];
36491     },
36492
36493     
36494     /**
36495      * Returns the column for a specified dataIndex.
36496      * @param {String} dataIndex The column dataIndex
36497      * @return {Object|Boolean} the column or false if not found
36498      */
36499     getColumnByDataIndex: function(dataIndex){
36500         var index = this.findColumnIndex(dataIndex);
36501         return index > -1 ? this.config[index] : false;
36502     },
36503     
36504     /**
36505      * Returns the index for a specified column id.
36506      * @param {String} id The column id
36507      * @return {Number} the index, or -1 if not found
36508      */
36509     getIndexById : function(id){
36510         for(var i = 0, len = this.config.length; i < len; i++){
36511             if(this.config[i].id == id){
36512                 return i;
36513             }
36514         }
36515         return -1;
36516     },
36517     
36518     /**
36519      * Returns the index for a specified column dataIndex.
36520      * @param {String} dataIndex The column dataIndex
36521      * @return {Number} the index, or -1 if not found
36522      */
36523     
36524     findColumnIndex : function(dataIndex){
36525         for(var i = 0, len = this.config.length; i < len; i++){
36526             if(this.config[i].dataIndex == dataIndex){
36527                 return i;
36528             }
36529         }
36530         return -1;
36531     },
36532     
36533     
36534     moveColumn : function(oldIndex, newIndex){
36535         var c = this.config[oldIndex];
36536         this.config.splice(oldIndex, 1);
36537         this.config.splice(newIndex, 0, c);
36538         this.dataMap = null;
36539         this.fireEvent("columnmoved", this, oldIndex, newIndex);
36540     },
36541
36542     isLocked : function(colIndex){
36543         return this.config[colIndex].locked === true;
36544     },
36545
36546     setLocked : function(colIndex, value, suppressEvent){
36547         if(this.isLocked(colIndex) == value){
36548             return;
36549         }
36550         this.config[colIndex].locked = value;
36551         if(!suppressEvent){
36552             this.fireEvent("columnlockchange", this, colIndex, value);
36553         }
36554     },
36555
36556     getTotalLockedWidth : function(){
36557         var totalWidth = 0;
36558         for(var i = 0; i < this.config.length; i++){
36559             if(this.isLocked(i) && !this.isHidden(i)){
36560                 this.totalWidth += this.getColumnWidth(i);
36561             }
36562         }
36563         return totalWidth;
36564     },
36565
36566     getLockedCount : function(){
36567         for(var i = 0, len = this.config.length; i < len; i++){
36568             if(!this.isLocked(i)){
36569                 return i;
36570             }
36571         }
36572     },
36573
36574     /**
36575      * Returns the number of columns.
36576      * @return {Number}
36577      */
36578     getColumnCount : function(visibleOnly){
36579         if(visibleOnly === true){
36580             var c = 0;
36581             for(var i = 0, len = this.config.length; i < len; i++){
36582                 if(!this.isHidden(i)){
36583                     c++;
36584                 }
36585             }
36586             return c;
36587         }
36588         return this.config.length;
36589     },
36590
36591     /**
36592      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
36593      * @param {Function} fn
36594      * @param {Object} scope (optional)
36595      * @return {Array} result
36596      */
36597     getColumnsBy : function(fn, scope){
36598         var r = [];
36599         for(var i = 0, len = this.config.length; i < len; i++){
36600             var c = this.config[i];
36601             if(fn.call(scope||this, c, i) === true){
36602                 r[r.length] = c;
36603             }
36604         }
36605         return r;
36606     },
36607
36608     /**
36609      * Returns true if the specified column is sortable.
36610      * @param {Number} col The column index
36611      * @return {Boolean}
36612      */
36613     isSortable : function(col){
36614         if(typeof this.config[col].sortable == "undefined"){
36615             return this.defaultSortable;
36616         }
36617         return this.config[col].sortable;
36618     },
36619
36620     /**
36621      * Returns the rendering (formatting) function defined for the column.
36622      * @param {Number} col The column index.
36623      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
36624      */
36625     getRenderer : function(col){
36626         if(!this.config[col].renderer){
36627             return Roo.grid.ColumnModel.defaultRenderer;
36628         }
36629         return this.config[col].renderer;
36630     },
36631
36632     /**
36633      * Sets the rendering (formatting) function for a column.
36634      * @param {Number} col The column index
36635      * @param {Function} fn The function to use to process the cell's raw data
36636      * to return HTML markup for the grid view. The render function is called with
36637      * the following parameters:<ul>
36638      * <li>Data value.</li>
36639      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
36640      * <li>css A CSS style string to apply to the table cell.</li>
36641      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
36642      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
36643      * <li>Row index</li>
36644      * <li>Column index</li>
36645      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
36646      */
36647     setRenderer : function(col, fn){
36648         this.config[col].renderer = fn;
36649     },
36650
36651     /**
36652      * Returns the width for the specified column.
36653      * @param {Number} col The column index
36654      * @return {Number}
36655      */
36656     getColumnWidth : function(col){
36657         return this.config[col].width * 1 || this.defaultWidth;
36658     },
36659
36660     /**
36661      * Sets the width for a column.
36662      * @param {Number} col The column index
36663      * @param {Number} width The new width
36664      */
36665     setColumnWidth : function(col, width, suppressEvent){
36666         this.config[col].width = width;
36667         this.totalWidth = null;
36668         if(!suppressEvent){
36669              this.fireEvent("widthchange", this, col, width);
36670         }
36671     },
36672
36673     /**
36674      * Returns the total width of all columns.
36675      * @param {Boolean} includeHidden True to include hidden column widths
36676      * @return {Number}
36677      */
36678     getTotalWidth : function(includeHidden){
36679         if(!this.totalWidth){
36680             this.totalWidth = 0;
36681             for(var i = 0, len = this.config.length; i < len; i++){
36682                 if(includeHidden || !this.isHidden(i)){
36683                     this.totalWidth += this.getColumnWidth(i);
36684                 }
36685             }
36686         }
36687         return this.totalWidth;
36688     },
36689
36690     /**
36691      * Returns the header for the specified column.
36692      * @param {Number} col The column index
36693      * @return {String}
36694      */
36695     getColumnHeader : function(col){
36696         return this.config[col].header;
36697     },
36698
36699     /**
36700      * Sets the header for a column.
36701      * @param {Number} col The column index
36702      * @param {String} header The new header
36703      */
36704     setColumnHeader : function(col, header){
36705         this.config[col].header = header;
36706         this.fireEvent("headerchange", this, col, header);
36707     },
36708
36709     /**
36710      * Returns the tooltip for the specified column.
36711      * @param {Number} col The column index
36712      * @return {String}
36713      */
36714     getColumnTooltip : function(col){
36715             return this.config[col].tooltip;
36716     },
36717     /**
36718      * Sets the tooltip for a column.
36719      * @param {Number} col The column index
36720      * @param {String} tooltip The new tooltip
36721      */
36722     setColumnTooltip : function(col, tooltip){
36723             this.config[col].tooltip = tooltip;
36724     },
36725
36726     /**
36727      * Returns the dataIndex for the specified column.
36728      * @param {Number} col The column index
36729      * @return {Number}
36730      */
36731     getDataIndex : function(col){
36732         return this.config[col].dataIndex;
36733     },
36734
36735     /**
36736      * Sets the dataIndex for a column.
36737      * @param {Number} col The column index
36738      * @param {Number} dataIndex The new dataIndex
36739      */
36740     setDataIndex : function(col, dataIndex){
36741         this.config[col].dataIndex = dataIndex;
36742     },
36743
36744     
36745     
36746     /**
36747      * Returns true if the cell is editable.
36748      * @param {Number} colIndex The column index
36749      * @param {Number} rowIndex The row index
36750      * @return {Boolean}
36751      */
36752     isCellEditable : function(colIndex, rowIndex){
36753         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
36754     },
36755
36756     /**
36757      * Returns the editor defined for the cell/column.
36758      * return false or null to disable editing.
36759      * @param {Number} colIndex The column index
36760      * @param {Number} rowIndex The row index
36761      * @return {Object}
36762      */
36763     getCellEditor : function(colIndex, rowIndex){
36764         return this.config[colIndex].editor;
36765     },
36766
36767     /**
36768      * Sets if a column is editable.
36769      * @param {Number} col The column index
36770      * @param {Boolean} editable True if the column is editable
36771      */
36772     setEditable : function(col, editable){
36773         this.config[col].editable = editable;
36774     },
36775
36776
36777     /**
36778      * Returns true if the column is hidden.
36779      * @param {Number} colIndex The column index
36780      * @return {Boolean}
36781      */
36782     isHidden : function(colIndex){
36783         return this.config[colIndex].hidden;
36784     },
36785
36786
36787     /**
36788      * Returns true if the column width cannot be changed
36789      */
36790     isFixed : function(colIndex){
36791         return this.config[colIndex].fixed;
36792     },
36793
36794     /**
36795      * Returns true if the column can be resized
36796      * @return {Boolean}
36797      */
36798     isResizable : function(colIndex){
36799         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
36800     },
36801     /**
36802      * Sets if a column is hidden.
36803      * @param {Number} colIndex The column index
36804      * @param {Boolean} hidden True if the column is hidden
36805      */
36806     setHidden : function(colIndex, hidden){
36807         this.config[colIndex].hidden = hidden;
36808         this.totalWidth = null;
36809         this.fireEvent("hiddenchange", this, colIndex, hidden);
36810     },
36811
36812     /**
36813      * Sets the editor for a column.
36814      * @param {Number} col The column index
36815      * @param {Object} editor The editor object
36816      */
36817     setEditor : function(col, editor){
36818         this.config[col].editor = editor;
36819     }
36820 });
36821
36822 Roo.grid.ColumnModel.defaultRenderer = function(value){
36823         if(typeof value == "string" && value.length < 1){
36824             return "&#160;";
36825         }
36826         return value;
36827 };
36828
36829 // Alias for backwards compatibility
36830 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
36831 /*
36832  * Based on:
36833  * Ext JS Library 1.1.1
36834  * Copyright(c) 2006-2007, Ext JS, LLC.
36835  *
36836  * Originally Released Under LGPL - original licence link has changed is not relivant.
36837  *
36838  * Fork - LGPL
36839  * <script type="text/javascript">
36840  */
36841
36842 /**
36843  * @class Roo.grid.AbstractSelectionModel
36844  * @extends Roo.util.Observable
36845  * Abstract base class for grid SelectionModels.  It provides the interface that should be
36846  * implemented by descendant classes.  This class should not be directly instantiated.
36847  * @constructor
36848  */
36849 Roo.grid.AbstractSelectionModel = function(){
36850     this.locked = false;
36851     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
36852 };
36853
36854 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
36855     /** @ignore Called by the grid automatically. Do not call directly. */
36856     init : function(grid){
36857         this.grid = grid;
36858         this.initEvents();
36859     },
36860
36861     /**
36862      * Locks the selections.
36863      */
36864     lock : function(){
36865         this.locked = true;
36866     },
36867
36868     /**
36869      * Unlocks the selections.
36870      */
36871     unlock : function(){
36872         this.locked = false;
36873     },
36874
36875     /**
36876      * Returns true if the selections are locked.
36877      * @return {Boolean}
36878      */
36879     isLocked : function(){
36880         return this.locked;
36881     }
36882 });/*
36883  * Based on:
36884  * Ext JS Library 1.1.1
36885  * Copyright(c) 2006-2007, Ext JS, LLC.
36886  *
36887  * Originally Released Under LGPL - original licence link has changed is not relivant.
36888  *
36889  * Fork - LGPL
36890  * <script type="text/javascript">
36891  */
36892 /**
36893  * @extends Roo.grid.AbstractSelectionModel
36894  * @class Roo.grid.RowSelectionModel
36895  * The default SelectionModel used by {@link Roo.grid.Grid}.
36896  * It supports multiple selections and keyboard selection/navigation. 
36897  * @constructor
36898  * @param {Object} config
36899  */
36900 Roo.grid.RowSelectionModel = function(config){
36901     Roo.apply(this, config);
36902     this.selections = new Roo.util.MixedCollection(false, function(o){
36903         return o.id;
36904     });
36905
36906     this.last = false;
36907     this.lastActive = false;
36908
36909     this.addEvents({
36910         /**
36911              * @event selectionchange
36912              * Fires when the selection changes
36913              * @param {SelectionModel} this
36914              */
36915             "selectionchange" : true,
36916         /**
36917              * @event afterselectionchange
36918              * Fires after the selection changes (eg. by key press or clicking)
36919              * @param {SelectionModel} this
36920              */
36921             "afterselectionchange" : true,
36922         /**
36923              * @event beforerowselect
36924              * Fires when a row is selected being selected, return false to cancel.
36925              * @param {SelectionModel} this
36926              * @param {Number} rowIndex The selected index
36927              * @param {Boolean} keepExisting False if other selections will be cleared
36928              */
36929             "beforerowselect" : true,
36930         /**
36931              * @event rowselect
36932              * Fires when a row is selected.
36933              * @param {SelectionModel} this
36934              * @param {Number} rowIndex The selected index
36935              * @param {Roo.data.Record} r The record
36936              */
36937             "rowselect" : true,
36938         /**
36939              * @event rowdeselect
36940              * Fires when a row is deselected.
36941              * @param {SelectionModel} this
36942              * @param {Number} rowIndex The selected index
36943              */
36944         "rowdeselect" : true
36945     });
36946     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
36947     this.locked = false;
36948 };
36949
36950 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
36951     /**
36952      * @cfg {Boolean} singleSelect
36953      * True to allow selection of only one row at a time (defaults to false)
36954      */
36955     singleSelect : false,
36956
36957     // private
36958     initEvents : function(){
36959
36960         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
36961             this.grid.on("mousedown", this.handleMouseDown, this);
36962         }else{ // allow click to work like normal
36963             this.grid.on("rowclick", this.handleDragableRowClick, this);
36964         }
36965
36966         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
36967             "up" : function(e){
36968                 if(!e.shiftKey){
36969                     this.selectPrevious(e.shiftKey);
36970                 }else if(this.last !== false && this.lastActive !== false){
36971                     var last = this.last;
36972                     this.selectRange(this.last,  this.lastActive-1);
36973                     this.grid.getView().focusRow(this.lastActive);
36974                     if(last !== false){
36975                         this.last = last;
36976                     }
36977                 }else{
36978                     this.selectFirstRow();
36979                 }
36980                 this.fireEvent("afterselectionchange", this);
36981             },
36982             "down" : function(e){
36983                 if(!e.shiftKey){
36984                     this.selectNext(e.shiftKey);
36985                 }else if(this.last !== false && this.lastActive !== false){
36986                     var last = this.last;
36987                     this.selectRange(this.last,  this.lastActive+1);
36988                     this.grid.getView().focusRow(this.lastActive);
36989                     if(last !== false){
36990                         this.last = last;
36991                     }
36992                 }else{
36993                     this.selectFirstRow();
36994                 }
36995                 this.fireEvent("afterselectionchange", this);
36996             },
36997             scope: this
36998         });
36999
37000         var view = this.grid.view;
37001         view.on("refresh", this.onRefresh, this);
37002         view.on("rowupdated", this.onRowUpdated, this);
37003         view.on("rowremoved", this.onRemove, this);
37004     },
37005
37006     // private
37007     onRefresh : function(){
37008         var ds = this.grid.dataSource, i, v = this.grid.view;
37009         var s = this.selections;
37010         s.each(function(r){
37011             if((i = ds.indexOfId(r.id)) != -1){
37012                 v.onRowSelect(i);
37013             }else{
37014                 s.remove(r);
37015             }
37016         });
37017     },
37018
37019     // private
37020     onRemove : function(v, index, r){
37021         this.selections.remove(r);
37022     },
37023
37024     // private
37025     onRowUpdated : function(v, index, r){
37026         if(this.isSelected(r)){
37027             v.onRowSelect(index);
37028         }
37029     },
37030
37031     /**
37032      * Select records.
37033      * @param {Array} records The records to select
37034      * @param {Boolean} keepExisting (optional) True to keep existing selections
37035      */
37036     selectRecords : function(records, keepExisting){
37037         if(!keepExisting){
37038             this.clearSelections();
37039         }
37040         var ds = this.grid.dataSource;
37041         for(var i = 0, len = records.length; i < len; i++){
37042             this.selectRow(ds.indexOf(records[i]), true);
37043         }
37044     },
37045
37046     /**
37047      * Gets the number of selected rows.
37048      * @return {Number}
37049      */
37050     getCount : function(){
37051         return this.selections.length;
37052     },
37053
37054     /**
37055      * Selects the first row in the grid.
37056      */
37057     selectFirstRow : function(){
37058         this.selectRow(0);
37059     },
37060
37061     /**
37062      * Select the last row.
37063      * @param {Boolean} keepExisting (optional) True to keep existing selections
37064      */
37065     selectLastRow : function(keepExisting){
37066         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
37067     },
37068
37069     /**
37070      * Selects the row immediately following the last selected row.
37071      * @param {Boolean} keepExisting (optional) True to keep existing selections
37072      */
37073     selectNext : function(keepExisting){
37074         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
37075             this.selectRow(this.last+1, keepExisting);
37076             this.grid.getView().focusRow(this.last);
37077         }
37078     },
37079
37080     /**
37081      * Selects the row that precedes the last selected row.
37082      * @param {Boolean} keepExisting (optional) True to keep existing selections
37083      */
37084     selectPrevious : function(keepExisting){
37085         if(this.last){
37086             this.selectRow(this.last-1, keepExisting);
37087             this.grid.getView().focusRow(this.last);
37088         }
37089     },
37090
37091     /**
37092      * Returns the selected records
37093      * @return {Array} Array of selected records
37094      */
37095     getSelections : function(){
37096         return [].concat(this.selections.items);
37097     },
37098
37099     /**
37100      * Returns the first selected record.
37101      * @return {Record}
37102      */
37103     getSelected : function(){
37104         return this.selections.itemAt(0);
37105     },
37106
37107
37108     /**
37109      * Clears all selections.
37110      */
37111     clearSelections : function(fast){
37112         if(this.locked) return;
37113         if(fast !== true){
37114             var ds = this.grid.dataSource;
37115             var s = this.selections;
37116             s.each(function(r){
37117                 this.deselectRow(ds.indexOfId(r.id));
37118             }, this);
37119             s.clear();
37120         }else{
37121             this.selections.clear();
37122         }
37123         this.last = false;
37124     },
37125
37126
37127     /**
37128      * Selects all rows.
37129      */
37130     selectAll : function(){
37131         if(this.locked) return;
37132         this.selections.clear();
37133         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
37134             this.selectRow(i, true);
37135         }
37136     },
37137
37138     /**
37139      * Returns True if there is a selection.
37140      * @return {Boolean}
37141      */
37142     hasSelection : function(){
37143         return this.selections.length > 0;
37144     },
37145
37146     /**
37147      * Returns True if the specified row is selected.
37148      * @param {Number/Record} record The record or index of the record to check
37149      * @return {Boolean}
37150      */
37151     isSelected : function(index){
37152         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
37153         return (r && this.selections.key(r.id) ? true : false);
37154     },
37155
37156     /**
37157      * Returns True if the specified record id is selected.
37158      * @param {String} id The id of record to check
37159      * @return {Boolean}
37160      */
37161     isIdSelected : function(id){
37162         return (this.selections.key(id) ? true : false);
37163     },
37164
37165     // private
37166     handleMouseDown : function(e, t){
37167         var view = this.grid.getView(), rowIndex;
37168         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
37169             return;
37170         };
37171         if(e.shiftKey && this.last !== false){
37172             var last = this.last;
37173             this.selectRange(last, rowIndex, e.ctrlKey);
37174             this.last = last; // reset the last
37175             view.focusRow(rowIndex);
37176         }else{
37177             var isSelected = this.isSelected(rowIndex);
37178             if(e.button !== 0 && isSelected){
37179                 view.focusRow(rowIndex);
37180             }else if(e.ctrlKey && isSelected){
37181                 this.deselectRow(rowIndex);
37182             }else if(!isSelected){
37183                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
37184                 view.focusRow(rowIndex);
37185             }
37186         }
37187         this.fireEvent("afterselectionchange", this);
37188     },
37189     // private
37190     handleDragableRowClick :  function(grid, rowIndex, e) 
37191     {
37192         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
37193             this.selectRow(rowIndex, false);
37194             grid.view.focusRow(rowIndex);
37195              this.fireEvent("afterselectionchange", this);
37196         }
37197     },
37198     
37199     /**
37200      * Selects multiple rows.
37201      * @param {Array} rows Array of the indexes of the row to select
37202      * @param {Boolean} keepExisting (optional) True to keep existing selections
37203      */
37204     selectRows : function(rows, keepExisting){
37205         if(!keepExisting){
37206             this.clearSelections();
37207         }
37208         for(var i = 0, len = rows.length; i < len; i++){
37209             this.selectRow(rows[i], true);
37210         }
37211     },
37212
37213     /**
37214      * Selects a range of rows. All rows in between startRow and endRow are also selected.
37215      * @param {Number} startRow The index of the first row in the range
37216      * @param {Number} endRow The index of the last row in the range
37217      * @param {Boolean} keepExisting (optional) True to retain existing selections
37218      */
37219     selectRange : function(startRow, endRow, keepExisting){
37220         if(this.locked) return;
37221         if(!keepExisting){
37222             this.clearSelections();
37223         }
37224         if(startRow <= endRow){
37225             for(var i = startRow; i <= endRow; i++){
37226                 this.selectRow(i, true);
37227             }
37228         }else{
37229             for(var i = startRow; i >= endRow; i--){
37230                 this.selectRow(i, true);
37231             }
37232         }
37233     },
37234
37235     /**
37236      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
37237      * @param {Number} startRow The index of the first row in the range
37238      * @param {Number} endRow The index of the last row in the range
37239      */
37240     deselectRange : function(startRow, endRow, preventViewNotify){
37241         if(this.locked) return;
37242         for(var i = startRow; i <= endRow; i++){
37243             this.deselectRow(i, preventViewNotify);
37244         }
37245     },
37246
37247     /**
37248      * Selects a row.
37249      * @param {Number} row The index of the row to select
37250      * @param {Boolean} keepExisting (optional) True to keep existing selections
37251      */
37252     selectRow : function(index, keepExisting, preventViewNotify){
37253         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) return;
37254         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
37255             if(!keepExisting || this.singleSelect){
37256                 this.clearSelections();
37257             }
37258             var r = this.grid.dataSource.getAt(index);
37259             this.selections.add(r);
37260             this.last = this.lastActive = index;
37261             if(!preventViewNotify){
37262                 this.grid.getView().onRowSelect(index);
37263             }
37264             this.fireEvent("rowselect", this, index, r);
37265             this.fireEvent("selectionchange", this);
37266         }
37267     },
37268
37269     /**
37270      * Deselects a row.
37271      * @param {Number} row The index of the row to deselect
37272      */
37273     deselectRow : function(index, preventViewNotify){
37274         if(this.locked) return;
37275         if(this.last == index){
37276             this.last = false;
37277         }
37278         if(this.lastActive == index){
37279             this.lastActive = false;
37280         }
37281         var r = this.grid.dataSource.getAt(index);
37282         this.selections.remove(r);
37283         if(!preventViewNotify){
37284             this.grid.getView().onRowDeselect(index);
37285         }
37286         this.fireEvent("rowdeselect", this, index);
37287         this.fireEvent("selectionchange", this);
37288     },
37289
37290     // private
37291     restoreLast : function(){
37292         if(this._last){
37293             this.last = this._last;
37294         }
37295     },
37296
37297     // private
37298     acceptsNav : function(row, col, cm){
37299         return !cm.isHidden(col) && cm.isCellEditable(col, row);
37300     },
37301
37302     // private
37303     onEditorKey : function(field, e){
37304         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
37305         if(k == e.TAB){
37306             e.stopEvent();
37307             ed.completeEdit();
37308             if(e.shiftKey){
37309                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
37310             }else{
37311                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
37312             }
37313         }else if(k == e.ENTER && !e.ctrlKey){
37314             e.stopEvent();
37315             ed.completeEdit();
37316             if(e.shiftKey){
37317                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
37318             }else{
37319                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
37320             }
37321         }else if(k == e.ESC){
37322             ed.cancelEdit();
37323         }
37324         if(newCell){
37325             g.startEditing(newCell[0], newCell[1]);
37326         }
37327     }
37328 });/*
37329  * Based on:
37330  * Ext JS Library 1.1.1
37331  * Copyright(c) 2006-2007, Ext JS, LLC.
37332  *
37333  * Originally Released Under LGPL - original licence link has changed is not relivant.
37334  *
37335  * Fork - LGPL
37336  * <script type="text/javascript">
37337  */
37338 /**
37339  * @class Roo.grid.CellSelectionModel
37340  * @extends Roo.grid.AbstractSelectionModel
37341  * This class provides the basic implementation for cell selection in a grid.
37342  * @constructor
37343  * @param {Object} config The object containing the configuration of this model.
37344  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
37345  */
37346 Roo.grid.CellSelectionModel = function(config){
37347     Roo.apply(this, config);
37348
37349     this.selection = null;
37350
37351     this.addEvents({
37352         /**
37353              * @event beforerowselect
37354              * Fires before a cell is selected.
37355              * @param {SelectionModel} this
37356              * @param {Number} rowIndex The selected row index
37357              * @param {Number} colIndex The selected cell index
37358              */
37359             "beforecellselect" : true,
37360         /**
37361              * @event cellselect
37362              * Fires when a cell is selected.
37363              * @param {SelectionModel} this
37364              * @param {Number} rowIndex The selected row index
37365              * @param {Number} colIndex The selected cell index
37366              */
37367             "cellselect" : true,
37368         /**
37369              * @event selectionchange
37370              * Fires when the active selection changes.
37371              * @param {SelectionModel} this
37372              * @param {Object} selection null for no selection or an object (o) with two properties
37373                 <ul>
37374                 <li>o.record: the record object for the row the selection is in</li>
37375                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
37376                 </ul>
37377              */
37378             "selectionchange" : true,
37379         /**
37380              * @event tabend
37381              * Fires when the tab (or enter) was pressed on the last editable cell
37382              * You can use this to trigger add new row.
37383              * @param {SelectionModel} this
37384              */
37385             "tabend" : true,
37386          /**
37387              * @event beforeeditnext
37388              * Fires before the next editable sell is made active
37389              * You can use this to skip to another cell or fire the tabend
37390              *    if you set cell to false
37391              * @param {Object} eventdata object : { cell : [ row, col ] } 
37392              */
37393             "beforeeditnext" : true
37394     });
37395     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
37396 };
37397
37398 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
37399     
37400     enter_is_tab: false,
37401
37402     /** @ignore */
37403     initEvents : function(){
37404         this.grid.on("mousedown", this.handleMouseDown, this);
37405         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
37406         var view = this.grid.view;
37407         view.on("refresh", this.onViewChange, this);
37408         view.on("rowupdated", this.onRowUpdated, this);
37409         view.on("beforerowremoved", this.clearSelections, this);
37410         view.on("beforerowsinserted", this.clearSelections, this);
37411         if(this.grid.isEditor){
37412             this.grid.on("beforeedit", this.beforeEdit,  this);
37413         }
37414     },
37415
37416         //private
37417     beforeEdit : function(e){
37418         this.select(e.row, e.column, false, true, e.record);
37419     },
37420
37421         //private
37422     onRowUpdated : function(v, index, r){
37423         if(this.selection && this.selection.record == r){
37424             v.onCellSelect(index, this.selection.cell[1]);
37425         }
37426     },
37427
37428         //private
37429     onViewChange : function(){
37430         this.clearSelections(true);
37431     },
37432
37433         /**
37434          * Returns the currently selected cell,.
37435          * @return {Array} The selected cell (row, column) or null if none selected.
37436          */
37437     getSelectedCell : function(){
37438         return this.selection ? this.selection.cell : null;
37439     },
37440
37441     /**
37442      * Clears all selections.
37443      * @param {Boolean} true to prevent the gridview from being notified about the change.
37444      */
37445     clearSelections : function(preventNotify){
37446         var s = this.selection;
37447         if(s){
37448             if(preventNotify !== true){
37449                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
37450             }
37451             this.selection = null;
37452             this.fireEvent("selectionchange", this, null);
37453         }
37454     },
37455
37456     /**
37457      * Returns true if there is a selection.
37458      * @return {Boolean}
37459      */
37460     hasSelection : function(){
37461         return this.selection ? true : false;
37462     },
37463
37464     /** @ignore */
37465     handleMouseDown : function(e, t){
37466         var v = this.grid.getView();
37467         if(this.isLocked()){
37468             return;
37469         };
37470         var row = v.findRowIndex(t);
37471         var cell = v.findCellIndex(t);
37472         if(row !== false && cell !== false){
37473             this.select(row, cell);
37474         }
37475     },
37476
37477     /**
37478      * Selects a cell.
37479      * @param {Number} rowIndex
37480      * @param {Number} collIndex
37481      */
37482     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
37483         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
37484             this.clearSelections();
37485             r = r || this.grid.dataSource.getAt(rowIndex);
37486             this.selection = {
37487                 record : r,
37488                 cell : [rowIndex, colIndex]
37489             };
37490             if(!preventViewNotify){
37491                 var v = this.grid.getView();
37492                 v.onCellSelect(rowIndex, colIndex);
37493                 if(preventFocus !== true){
37494                     v.focusCell(rowIndex, colIndex);
37495                 }
37496             }
37497             this.fireEvent("cellselect", this, rowIndex, colIndex);
37498             this.fireEvent("selectionchange", this, this.selection);
37499         }
37500     },
37501
37502         //private
37503     isSelectable : function(rowIndex, colIndex, cm){
37504         return !cm.isHidden(colIndex);
37505     },
37506
37507     /** @ignore */
37508     handleKeyDown : function(e){
37509         //Roo.log('Cell Sel Model handleKeyDown');
37510         if(!e.isNavKeyPress()){
37511             return;
37512         }
37513         var g = this.grid, s = this.selection;
37514         if(!s){
37515             e.stopEvent();
37516             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
37517             if(cell){
37518                 this.select(cell[0], cell[1]);
37519             }
37520             return;
37521         }
37522         var sm = this;
37523         var walk = function(row, col, step){
37524             return g.walkCells(row, col, step, sm.isSelectable,  sm);
37525         };
37526         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
37527         var newCell;
37528
37529       
37530
37531         switch(k){
37532             case e.TAB:
37533                 // handled by onEditorKey
37534                 if (g.isEditor && g.editing) {
37535                     return;
37536                 }
37537                 if(e.shiftKey) {
37538                     newCell = walk(r, c-1, -1);
37539                 } else {
37540                     newCell = walk(r, c+1, 1);
37541                 }
37542                 break;
37543             
37544             case e.DOWN:
37545                newCell = walk(r+1, c, 1);
37546                 break;
37547             
37548             case e.UP:
37549                 newCell = walk(r-1, c, -1);
37550                 break;
37551             
37552             case e.RIGHT:
37553                 newCell = walk(r, c+1, 1);
37554                 break;
37555             
37556             case e.LEFT:
37557                 newCell = walk(r, c-1, -1);
37558                 break;
37559             
37560             case e.ENTER:
37561                 
37562                 if(g.isEditor && !g.editing){
37563                    g.startEditing(r, c);
37564                    e.stopEvent();
37565                    return;
37566                 }
37567                 
37568                 
37569              break;
37570         };
37571         if(newCell){
37572             this.select(newCell[0], newCell[1]);
37573             e.stopEvent();
37574             
37575         }
37576     },
37577
37578     acceptsNav : function(row, col, cm){
37579         return !cm.isHidden(col) && cm.isCellEditable(col, row);
37580     },
37581     /**
37582      * Selects a cell.
37583      * @param {Number} field (not used) - as it's normally used as a listener
37584      * @param {Number} e - event - fake it by using
37585      *
37586      * var e = Roo.EventObjectImpl.prototype;
37587      * e.keyCode = e.TAB
37588      *
37589      * 
37590      */
37591     onEditorKey : function(field, e){
37592         
37593         var k = e.getKey(),
37594             newCell,
37595             g = this.grid,
37596             ed = g.activeEditor,
37597             forward = false;
37598         ///Roo.log('onEditorKey' + k);
37599         
37600         
37601         if (this.enter_is_tab && k == e.ENTER) {
37602             k = e.TAB;
37603         }
37604         
37605         if(k == e.TAB){
37606             if(e.shiftKey){
37607                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
37608             }else{
37609                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
37610                 forward = true;
37611             }
37612             
37613             e.stopEvent();
37614             
37615         } else if(k == e.ENTER &&  !e.ctrlKey){
37616             ed.completeEdit();
37617             e.stopEvent();
37618             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
37619         
37620                 } else if(k == e.ESC){
37621             ed.cancelEdit();
37622         }
37623                 
37624         if (newCell) {
37625             var ecall = { cell : newCell, forward : forward };
37626             this.fireEvent('beforeeditnext', ecall );
37627             newCell = ecall.cell;
37628                         forward = ecall.forward;
37629         }
37630                 
37631         if(newCell){
37632             //Roo.log('next cell after edit');
37633             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
37634         } else if (forward) {
37635             // tabbed past last
37636             this.fireEvent.defer(100, this, ['tabend',this]);
37637         }
37638     }
37639 });/*
37640  * Based on:
37641  * Ext JS Library 1.1.1
37642  * Copyright(c) 2006-2007, Ext JS, LLC.
37643  *
37644  * Originally Released Under LGPL - original licence link has changed is not relivant.
37645  *
37646  * Fork - LGPL
37647  * <script type="text/javascript">
37648  */
37649  
37650 /**
37651  * @class Roo.grid.EditorGrid
37652  * @extends Roo.grid.Grid
37653  * Class for creating and editable grid.
37654  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
37655  * The container MUST have some type of size defined for the grid to fill. The container will be 
37656  * automatically set to position relative if it isn't already.
37657  * @param {Object} dataSource The data model to bind to
37658  * @param {Object} colModel The column model with info about this grid's columns
37659  */
37660 Roo.grid.EditorGrid = function(container, config){
37661     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
37662     this.getGridEl().addClass("xedit-grid");
37663
37664     if(!this.selModel){
37665         this.selModel = new Roo.grid.CellSelectionModel();
37666     }
37667
37668     this.activeEditor = null;
37669
37670         this.addEvents({
37671             /**
37672              * @event beforeedit
37673              * Fires before cell editing is triggered. The edit event object has the following properties <br />
37674              * <ul style="padding:5px;padding-left:16px;">
37675              * <li>grid - This grid</li>
37676              * <li>record - The record being edited</li>
37677              * <li>field - The field name being edited</li>
37678              * <li>value - The value for the field being edited.</li>
37679              * <li>row - The grid row index</li>
37680              * <li>column - The grid column index</li>
37681              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
37682              * </ul>
37683              * @param {Object} e An edit event (see above for description)
37684              */
37685             "beforeedit" : true,
37686             /**
37687              * @event afteredit
37688              * Fires after a cell is edited. <br />
37689              * <ul style="padding:5px;padding-left:16px;">
37690              * <li>grid - This grid</li>
37691              * <li>record - The record being edited</li>
37692              * <li>field - The field name being edited</li>
37693              * <li>value - The value being set</li>
37694              * <li>originalValue - The original value for the field, before the edit.</li>
37695              * <li>row - The grid row index</li>
37696              * <li>column - The grid column index</li>
37697              * </ul>
37698              * @param {Object} e An edit event (see above for description)
37699              */
37700             "afteredit" : true,
37701             /**
37702              * @event validateedit
37703              * Fires after a cell is edited, but before the value is set in the record. 
37704          * You can use this to modify the value being set in the field, Return false
37705              * to cancel the change. The edit event object has the following properties <br />
37706              * <ul style="padding:5px;padding-left:16px;">
37707          * <li>editor - This editor</li>
37708              * <li>grid - This grid</li>
37709              * <li>record - The record being edited</li>
37710              * <li>field - The field name being edited</li>
37711              * <li>value - The value being set</li>
37712              * <li>originalValue - The original value for the field, before the edit.</li>
37713              * <li>row - The grid row index</li>
37714              * <li>column - The grid column index</li>
37715              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
37716              * </ul>
37717              * @param {Object} e An edit event (see above for description)
37718              */
37719             "validateedit" : true
37720         });
37721     this.on("bodyscroll", this.stopEditing,  this);
37722     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
37723 };
37724
37725 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
37726     /**
37727      * @cfg {Number} clicksToEdit
37728      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
37729      */
37730     clicksToEdit: 2,
37731
37732     // private
37733     isEditor : true,
37734     // private
37735     trackMouseOver: false, // causes very odd FF errors
37736
37737     onCellDblClick : function(g, row, col){
37738         this.startEditing(row, col);
37739     },
37740
37741     onEditComplete : function(ed, value, startValue){
37742         this.editing = false;
37743         this.activeEditor = null;
37744         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
37745         var r = ed.record;
37746         var field = this.colModel.getDataIndex(ed.col);
37747         var e = {
37748             grid: this,
37749             record: r,
37750             field: field,
37751             originalValue: startValue,
37752             value: value,
37753             row: ed.row,
37754             column: ed.col,
37755             cancel:false,
37756             editor: ed
37757         };
37758         var cell = Roo.get(this.view.getCell(ed.row,ed.col))
37759         cell.show();
37760           
37761         if(String(value) !== String(startValue)){
37762             
37763             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
37764                 r.set(field, e.value);
37765                 // if we are dealing with a combo box..
37766                 // then we also set the 'name' colum to be the displayField
37767                 if (ed.field.displayField && ed.field.name) {
37768                     r.set(ed.field.name, ed.field.el.dom.value);
37769                 }
37770                 
37771                 delete e.cancel; //?? why!!!
37772                 this.fireEvent("afteredit", e);
37773             }
37774         } else {
37775             this.fireEvent("afteredit", e); // always fire it!
37776         }
37777         this.view.focusCell(ed.row, ed.col);
37778     },
37779
37780     /**
37781      * Starts editing the specified for the specified row/column
37782      * @param {Number} rowIndex
37783      * @param {Number} colIndex
37784      */
37785     startEditing : function(row, col){
37786         this.stopEditing();
37787         if(this.colModel.isCellEditable(col, row)){
37788             this.view.ensureVisible(row, col, true);
37789           
37790             var r = this.dataSource.getAt(row);
37791             var field = this.colModel.getDataIndex(col);
37792             var cell = Roo.get(this.view.getCell(row,col));
37793             var e = {
37794                 grid: this,
37795                 record: r,
37796                 field: field,
37797                 value: r.data[field],
37798                 row: row,
37799                 column: col,
37800                 cancel:false 
37801             };
37802             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
37803                 this.editing = true;
37804                 var ed = this.colModel.getCellEditor(col, row);
37805                 
37806                 if (!ed) {
37807                     return;
37808                 }
37809                 if(!ed.rendered){
37810                     ed.render(ed.parentEl || document.body);
37811                 }
37812                 ed.field.reset();
37813                
37814                 cell.hide();
37815                 
37816                 (function(){ // complex but required for focus issues in safari, ie and opera
37817                     ed.row = row;
37818                     ed.col = col;
37819                     ed.record = r;
37820                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
37821                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
37822                     this.activeEditor = ed;
37823                     var v = r.data[field];
37824                     ed.startEdit(this.view.getCell(row, col), v);
37825                     // combo's with 'displayField and name set
37826                     if (ed.field.displayField && ed.field.name) {
37827                         ed.field.el.dom.value = r.data[ed.field.name];
37828                     }
37829                     
37830                     
37831                 }).defer(50, this);
37832             }
37833         }
37834     },
37835         
37836     /**
37837      * Stops any active editing
37838      */
37839     stopEditing : function(){
37840         if(this.activeEditor){
37841             this.activeEditor.completeEdit();
37842         }
37843         this.activeEditor = null;
37844     }
37845 });/*
37846  * Based on:
37847  * Ext JS Library 1.1.1
37848  * Copyright(c) 2006-2007, Ext JS, LLC.
37849  *
37850  * Originally Released Under LGPL - original licence link has changed is not relivant.
37851  *
37852  * Fork - LGPL
37853  * <script type="text/javascript">
37854  */
37855
37856 // private - not really -- you end up using it !
37857 // This is a support class used internally by the Grid components
37858
37859 /**
37860  * @class Roo.grid.GridEditor
37861  * @extends Roo.Editor
37862  * Class for creating and editable grid elements.
37863  * @param {Object} config any settings (must include field)
37864  */
37865 Roo.grid.GridEditor = function(field, config){
37866     if (!config && field.field) {
37867         config = field;
37868         field = Roo.factory(config.field, Roo.form);
37869     }
37870     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
37871     field.monitorTab = false;
37872 };
37873
37874 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
37875     
37876     /**
37877      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
37878      */
37879     
37880     alignment: "tl-tl",
37881     autoSize: "width",
37882     hideEl : false,
37883     cls: "x-small-editor x-grid-editor",
37884     shim:false,
37885     shadow:"frame"
37886 });/*
37887  * Based on:
37888  * Ext JS Library 1.1.1
37889  * Copyright(c) 2006-2007, Ext JS, LLC.
37890  *
37891  * Originally Released Under LGPL - original licence link has changed is not relivant.
37892  *
37893  * Fork - LGPL
37894  * <script type="text/javascript">
37895  */
37896   
37897
37898   
37899 Roo.grid.PropertyRecord = Roo.data.Record.create([
37900     {name:'name',type:'string'},  'value'
37901 ]);
37902
37903
37904 Roo.grid.PropertyStore = function(grid, source){
37905     this.grid = grid;
37906     this.store = new Roo.data.Store({
37907         recordType : Roo.grid.PropertyRecord
37908     });
37909     this.store.on('update', this.onUpdate,  this);
37910     if(source){
37911         this.setSource(source);
37912     }
37913     Roo.grid.PropertyStore.superclass.constructor.call(this);
37914 };
37915
37916
37917
37918 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
37919     setSource : function(o){
37920         this.source = o;
37921         this.store.removeAll();
37922         var data = [];
37923         for(var k in o){
37924             if(this.isEditableValue(o[k])){
37925                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
37926             }
37927         }
37928         this.store.loadRecords({records: data}, {}, true);
37929     },
37930
37931     onUpdate : function(ds, record, type){
37932         if(type == Roo.data.Record.EDIT){
37933             var v = record.data['value'];
37934             var oldValue = record.modified['value'];
37935             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
37936                 this.source[record.id] = v;
37937                 record.commit();
37938                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
37939             }else{
37940                 record.reject();
37941             }
37942         }
37943     },
37944
37945     getProperty : function(row){
37946        return this.store.getAt(row);
37947     },
37948
37949     isEditableValue: function(val){
37950         if(val && val instanceof Date){
37951             return true;
37952         }else if(typeof val == 'object' || typeof val == 'function'){
37953             return false;
37954         }
37955         return true;
37956     },
37957
37958     setValue : function(prop, value){
37959         this.source[prop] = value;
37960         this.store.getById(prop).set('value', value);
37961     },
37962
37963     getSource : function(){
37964         return this.source;
37965     }
37966 });
37967
37968 Roo.grid.PropertyColumnModel = function(grid, store){
37969     this.grid = grid;
37970     var g = Roo.grid;
37971     g.PropertyColumnModel.superclass.constructor.call(this, [
37972         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
37973         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
37974     ]);
37975     this.store = store;
37976     this.bselect = Roo.DomHelper.append(document.body, {
37977         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
37978             {tag: 'option', value: 'true', html: 'true'},
37979             {tag: 'option', value: 'false', html: 'false'}
37980         ]
37981     });
37982     Roo.id(this.bselect);
37983     var f = Roo.form;
37984     this.editors = {
37985         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
37986         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
37987         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
37988         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
37989         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
37990     };
37991     this.renderCellDelegate = this.renderCell.createDelegate(this);
37992     this.renderPropDelegate = this.renderProp.createDelegate(this);
37993 };
37994
37995 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
37996     
37997     
37998     nameText : 'Name',
37999     valueText : 'Value',
38000     
38001     dateFormat : 'm/j/Y',
38002     
38003     
38004     renderDate : function(dateVal){
38005         return dateVal.dateFormat(this.dateFormat);
38006     },
38007
38008     renderBool : function(bVal){
38009         return bVal ? 'true' : 'false';
38010     },
38011
38012     isCellEditable : function(colIndex, rowIndex){
38013         return colIndex == 1;
38014     },
38015
38016     getRenderer : function(col){
38017         return col == 1 ?
38018             this.renderCellDelegate : this.renderPropDelegate;
38019     },
38020
38021     renderProp : function(v){
38022         return this.getPropertyName(v);
38023     },
38024
38025     renderCell : function(val){
38026         var rv = val;
38027         if(val instanceof Date){
38028             rv = this.renderDate(val);
38029         }else if(typeof val == 'boolean'){
38030             rv = this.renderBool(val);
38031         }
38032         return Roo.util.Format.htmlEncode(rv);
38033     },
38034
38035     getPropertyName : function(name){
38036         var pn = this.grid.propertyNames;
38037         return pn && pn[name] ? pn[name] : name;
38038     },
38039
38040     getCellEditor : function(colIndex, rowIndex){
38041         var p = this.store.getProperty(rowIndex);
38042         var n = p.data['name'], val = p.data['value'];
38043         
38044         if(typeof(this.grid.customEditors[n]) == 'string'){
38045             return this.editors[this.grid.customEditors[n]];
38046         }
38047         if(typeof(this.grid.customEditors[n]) != 'undefined'){
38048             return this.grid.customEditors[n];
38049         }
38050         if(val instanceof Date){
38051             return this.editors['date'];
38052         }else if(typeof val == 'number'){
38053             return this.editors['number'];
38054         }else if(typeof val == 'boolean'){
38055             return this.editors['boolean'];
38056         }else{
38057             return this.editors['string'];
38058         }
38059     }
38060 });
38061
38062 /**
38063  * @class Roo.grid.PropertyGrid
38064  * @extends Roo.grid.EditorGrid
38065  * This class represents the  interface of a component based property grid control.
38066  * <br><br>Usage:<pre><code>
38067  var grid = new Roo.grid.PropertyGrid("my-container-id", {
38068       
38069  });
38070  // set any options
38071  grid.render();
38072  * </code></pre>
38073   
38074  * @constructor
38075  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
38076  * The container MUST have some type of size defined for the grid to fill. The container will be
38077  * automatically set to position relative if it isn't already.
38078  * @param {Object} config A config object that sets properties on this grid.
38079  */
38080 Roo.grid.PropertyGrid = function(container, config){
38081     config = config || {};
38082     var store = new Roo.grid.PropertyStore(this);
38083     this.store = store;
38084     var cm = new Roo.grid.PropertyColumnModel(this, store);
38085     store.store.sort('name', 'ASC');
38086     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
38087         ds: store.store,
38088         cm: cm,
38089         enableColLock:false,
38090         enableColumnMove:false,
38091         stripeRows:false,
38092         trackMouseOver: false,
38093         clicksToEdit:1
38094     }, config));
38095     this.getGridEl().addClass('x-props-grid');
38096     this.lastEditRow = null;
38097     this.on('columnresize', this.onColumnResize, this);
38098     this.addEvents({
38099          /**
38100              * @event beforepropertychange
38101              * Fires before a property changes (return false to stop?)
38102              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
38103              * @param {String} id Record Id
38104              * @param {String} newval New Value
38105          * @param {String} oldval Old Value
38106              */
38107         "beforepropertychange": true,
38108         /**
38109              * @event propertychange
38110              * Fires after a property changes
38111              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
38112              * @param {String} id Record Id
38113              * @param {String} newval New Value
38114          * @param {String} oldval Old Value
38115              */
38116         "propertychange": true
38117     });
38118     this.customEditors = this.customEditors || {};
38119 };
38120 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
38121     
38122      /**
38123      * @cfg {Object} customEditors map of colnames=> custom editors.
38124      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
38125      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
38126      * false disables editing of the field.
38127          */
38128     
38129       /**
38130      * @cfg {Object} propertyNames map of property Names to their displayed value
38131          */
38132     
38133     render : function(){
38134         Roo.grid.PropertyGrid.superclass.render.call(this);
38135         this.autoSize.defer(100, this);
38136     },
38137
38138     autoSize : function(){
38139         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
38140         if(this.view){
38141             this.view.fitColumns();
38142         }
38143     },
38144
38145     onColumnResize : function(){
38146         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
38147         this.autoSize();
38148     },
38149     /**
38150      * Sets the data for the Grid
38151      * accepts a Key => Value object of all the elements avaiable.
38152      * @param {Object} data  to appear in grid.
38153      */
38154     setSource : function(source){
38155         this.store.setSource(source);
38156         //this.autoSize();
38157     },
38158     /**
38159      * Gets all the data from the grid.
38160      * @return {Object} data  data stored in grid
38161      */
38162     getSource : function(){
38163         return this.store.getSource();
38164     }
38165 });/*
38166  * Based on:
38167  * Ext JS Library 1.1.1
38168  * Copyright(c) 2006-2007, Ext JS, LLC.
38169  *
38170  * Originally Released Under LGPL - original licence link has changed is not relivant.
38171  *
38172  * Fork - LGPL
38173  * <script type="text/javascript">
38174  */
38175  
38176 /**
38177  * @class Roo.LoadMask
38178  * A simple utility class for generically masking elements while loading data.  If the element being masked has
38179  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
38180  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
38181  * element's UpdateManager load indicator and will be destroyed after the initial load.
38182  * @constructor
38183  * Create a new LoadMask
38184  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
38185  * @param {Object} config The config object
38186  */
38187 Roo.LoadMask = function(el, config){
38188     this.el = Roo.get(el);
38189     Roo.apply(this, config);
38190     if(this.store){
38191         this.store.on('beforeload', this.onBeforeLoad, this);
38192         this.store.on('load', this.onLoad, this);
38193         this.store.on('loadexception', this.onLoadException, this);
38194         this.removeMask = false;
38195     }else{
38196         var um = this.el.getUpdateManager();
38197         um.showLoadIndicator = false; // disable the default indicator
38198         um.on('beforeupdate', this.onBeforeLoad, this);
38199         um.on('update', this.onLoad, this);
38200         um.on('failure', this.onLoad, this);
38201         this.removeMask = true;
38202     }
38203 };
38204
38205 Roo.LoadMask.prototype = {
38206     /**
38207      * @cfg {Boolean} removeMask
38208      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
38209      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
38210      */
38211     /**
38212      * @cfg {String} msg
38213      * The text to display in a centered loading message box (defaults to 'Loading...')
38214      */
38215     msg : 'Loading...',
38216     /**
38217      * @cfg {String} msgCls
38218      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
38219      */
38220     msgCls : 'x-mask-loading',
38221
38222     /**
38223      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
38224      * @type Boolean
38225      */
38226     disabled: false,
38227
38228     /**
38229      * Disables the mask to prevent it from being displayed
38230      */
38231     disable : function(){
38232        this.disabled = true;
38233     },
38234
38235     /**
38236      * Enables the mask so that it can be displayed
38237      */
38238     enable : function(){
38239         this.disabled = false;
38240     },
38241     
38242     onLoadException : function()
38243     {
38244         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
38245             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
38246         }
38247         this.el.unmask(this.removeMask);
38248     },
38249     // private
38250     onLoad : function()
38251     {
38252         this.el.unmask(this.removeMask);
38253     },
38254
38255     // private
38256     onBeforeLoad : function(){
38257         if(!this.disabled){
38258             this.el.mask(this.msg, this.msgCls);
38259         }
38260     },
38261
38262     // private
38263     destroy : function(){
38264         if(this.store){
38265             this.store.un('beforeload', this.onBeforeLoad, this);
38266             this.store.un('load', this.onLoad, this);
38267             this.store.un('loadexception', this.onLoadException, this);
38268         }else{
38269             var um = this.el.getUpdateManager();
38270             um.un('beforeupdate', this.onBeforeLoad, this);
38271             um.un('update', this.onLoad, this);
38272             um.un('failure', this.onLoad, this);
38273         }
38274     }
38275 };/*
38276  * Based on:
38277  * Ext JS Library 1.1.1
38278  * Copyright(c) 2006-2007, Ext JS, LLC.
38279  *
38280  * Originally Released Under LGPL - original licence link has changed is not relivant.
38281  *
38282  * Fork - LGPL
38283  * <script type="text/javascript">
38284  */
38285
38286
38287 /**
38288  * @class Roo.XTemplate
38289  * @extends Roo.Template
38290  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
38291 <pre><code>
38292 var t = new Roo.XTemplate(
38293         '&lt;select name="{name}"&gt;',
38294                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
38295         '&lt;/select&gt;'
38296 );
38297  
38298 // then append, applying the master template values
38299  </code></pre>
38300  *
38301  * Supported features:
38302  *
38303  *  Tags:
38304
38305 <pre><code>
38306       {a_variable} - output encoded.
38307       {a_variable.format:("Y-m-d")} - call a method on the variable
38308       {a_variable:raw} - unencoded output
38309       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
38310       {a_variable:this.method_on_template(...)} - call a method on the template object.
38311  
38312 </code></pre>
38313  *  The tpl tag:
38314 <pre><code>
38315         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
38316         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
38317         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
38318         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
38319   
38320         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
38321         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
38322 </code></pre>
38323  *      
38324  */
38325 Roo.XTemplate = function()
38326 {
38327     Roo.XTemplate.superclass.constructor.apply(this, arguments);
38328     if (this.html) {
38329         this.compile();
38330     }
38331 };
38332
38333
38334 Roo.extend(Roo.XTemplate, Roo.Template, {
38335
38336     /**
38337      * The various sub templates
38338      */
38339     tpls : false,
38340     /**
38341      *
38342      * basic tag replacing syntax
38343      * WORD:WORD()
38344      *
38345      * // you can fake an object call by doing this
38346      *  x.t:(test,tesT) 
38347      * 
38348      */
38349     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
38350
38351     /**
38352      * compile the template
38353      *
38354      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
38355      *
38356      */
38357     compile: function()
38358     {
38359         var s = this.html;
38360      
38361         s = ['<tpl>', s, '</tpl>'].join('');
38362     
38363         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
38364             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
38365             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
38366             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
38367             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
38368             m,
38369             id     = 0,
38370             tpls   = [];
38371     
38372         while(true == !!(m = s.match(re))){
38373             var forMatch   = m[0].match(nameRe),
38374                 ifMatch   = m[0].match(ifRe),
38375                 execMatch   = m[0].match(execRe),
38376                 namedMatch   = m[0].match(namedRe),
38377                 
38378                 exp  = null, 
38379                 fn   = null,
38380                 exec = null,
38381                 name = forMatch && forMatch[1] ? forMatch[1] : '';
38382                 
38383             if (ifMatch) {
38384                 // if - puts fn into test..
38385                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
38386                 if(exp){
38387                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
38388                 }
38389             }
38390             
38391             if (execMatch) {
38392                 // exec - calls a function... returns empty if true is  returned.
38393                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
38394                 if(exp){
38395                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
38396                 }
38397             }
38398             
38399             
38400             if (name) {
38401                 // for = 
38402                 switch(name){
38403                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
38404                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
38405                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
38406                 }
38407             }
38408             var uid = namedMatch ? namedMatch[1] : id;
38409             
38410             
38411             tpls.push({
38412                 id:     namedMatch ? namedMatch[1] : id,
38413                 target: name,
38414                 exec:   exec,
38415                 test:   fn,
38416                 body:   m[1] || ''
38417             });
38418             if (namedMatch) {
38419                 s = s.replace(m[0], '');
38420             } else { 
38421                 s = s.replace(m[0], '{xtpl'+ id + '}');
38422             }
38423             ++id;
38424         }
38425         this.tpls = [];
38426         for(var i = tpls.length-1; i >= 0; --i){
38427             this.compileTpl(tpls[i]);
38428             this.tpls[tpls[i].id] = tpls[i];
38429         }
38430         this.master = tpls[tpls.length-1];
38431         return this;
38432     },
38433     /**
38434      * same as applyTemplate, except it's done to one of the subTemplates
38435      * when using named templates, you can do:
38436      *
38437      * var str = pl.applySubTemplate('your-name', values);
38438      *
38439      * 
38440      * @param {Number} id of the template
38441      * @param {Object} values to apply to template
38442      * @param {Object} parent (normaly the instance of this object)
38443      */
38444     applySubTemplate : function(id, values, parent)
38445     {
38446         
38447         
38448         var t = this.tpls[id];
38449         
38450         
38451         try { 
38452             if(t.test && !t.test.call(this, values, parent)){
38453                 return '';
38454             }
38455         } catch(e) {
38456             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
38457             Roo.log(e.toString());
38458             Roo.log(t.test);
38459             return ''
38460         }
38461         try { 
38462             
38463             if(t.exec && t.exec.call(this, values, parent)){
38464                 return '';
38465             }
38466         } catch(e) {
38467             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
38468             Roo.log(e.toString());
38469             Roo.log(t.exec);
38470             return ''
38471         }
38472         try {
38473             var vs = t.target ? t.target.call(this, values, parent) : values;
38474             parent = t.target ? values : parent;
38475             if(t.target && vs instanceof Array){
38476                 var buf = [];
38477                 for(var i = 0, len = vs.length; i < len; i++){
38478                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
38479                 }
38480                 return buf.join('');
38481             }
38482             return t.compiled.call(this, vs, parent);
38483         } catch (e) {
38484             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
38485             Roo.log(e.toString());
38486             Roo.log(t.compiled);
38487             return '';
38488         }
38489     },
38490
38491     compileTpl : function(tpl)
38492     {
38493         var fm = Roo.util.Format;
38494         var useF = this.disableFormats !== true;
38495         var sep = Roo.isGecko ? "+" : ",";
38496         var undef = function(str) {
38497             Roo.log("Property not found :"  + str);
38498             return '';
38499         };
38500         
38501         var fn = function(m, name, format, args)
38502         {
38503             //Roo.log(arguments);
38504             args = args ? args.replace(/\\'/g,"'") : args;
38505             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
38506             if (typeof(format) == 'undefined') {
38507                 format= 'htmlEncode';
38508             }
38509             if (format == 'raw' ) {
38510                 format = false;
38511             }
38512             
38513             if(name.substr(0, 4) == 'xtpl'){
38514                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
38515             }
38516             
38517             // build an array of options to determine if value is undefined..
38518             
38519             // basically get 'xxxx.yyyy' then do
38520             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
38521             //    (function () { Roo.log("Property not found"); return ''; })() :
38522             //    ......
38523             
38524             var udef_ar = [];
38525             var lookfor = '';
38526             Roo.each(name.split('.'), function(st) {
38527                 lookfor += (lookfor.length ? '.': '') + st;
38528                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
38529             });
38530             
38531             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
38532             
38533             
38534             if(format && useF){
38535                 
38536                 args = args ? ',' + args : "";
38537                  
38538                 if(format.substr(0, 5) != "this."){
38539                     format = "fm." + format + '(';
38540                 }else{
38541                     format = 'this.call("'+ format.substr(5) + '", ';
38542                     args = ", values";
38543                 }
38544                 
38545                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
38546             }
38547              
38548             if (args.length) {
38549                 // called with xxyx.yuu:(test,test)
38550                 // change to ()
38551                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
38552             }
38553             // raw.. - :raw modifier..
38554             return "'"+ sep + udef_st  + name + ")"+sep+"'";
38555             
38556         };
38557         var body;
38558         // branched to use + in gecko and [].join() in others
38559         if(Roo.isGecko){
38560             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
38561                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
38562                     "';};};";
38563         }else{
38564             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
38565             body.push(tpl.body.replace(/(\r\n|\n)/g,
38566                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
38567             body.push("'].join('');};};");
38568             body = body.join('');
38569         }
38570         
38571         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
38572        
38573         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
38574         eval(body);
38575         
38576         return this;
38577     },
38578
38579     applyTemplate : function(values){
38580         return this.master.compiled.call(this, values, {});
38581         //var s = this.subs;
38582     },
38583
38584     apply : function(){
38585         return this.applyTemplate.apply(this, arguments);
38586     }
38587
38588  });
38589
38590 Roo.XTemplate.from = function(el){
38591     el = Roo.getDom(el);
38592     return new Roo.XTemplate(el.value || el.innerHTML);
38593 };/*
38594  * Original code for Roojs - LGPL
38595  * <script type="text/javascript">
38596  */
38597  
38598 /**
38599  * @class Roo.XComponent
38600  * A delayed Element creator...
38601  * Or a way to group chunks of interface together.
38602  * 
38603  * Mypart.xyx = new Roo.XComponent({
38604
38605     parent : 'Mypart.xyz', // empty == document.element.!!
38606     order : '001',
38607     name : 'xxxx'
38608     region : 'xxxx'
38609     disabled : function() {} 
38610      
38611     tree : function() { // return an tree of xtype declared components
38612         var MODULE = this;
38613         return 
38614         {
38615             xtype : 'NestedLayoutPanel',
38616             // technicall
38617         }
38618      ]
38619  *})
38620  *
38621  *
38622  * It can be used to build a big heiracy, with parent etc.
38623  * or you can just use this to render a single compoent to a dom element
38624  * MYPART.render(Roo.Element | String(id) | dom_element )
38625  * 
38626  * @extends Roo.util.Observable
38627  * @constructor
38628  * @param cfg {Object} configuration of component
38629  * 
38630  */
38631 Roo.XComponent = function(cfg) {
38632     Roo.apply(this, cfg);
38633     this.addEvents({ 
38634         /**
38635              * @event built
38636              * Fires when this the componnt is built
38637              * @param {Roo.XComponent} c the component
38638              */
38639         'built' : true
38640         
38641     });
38642     this.region = this.region || 'center'; // default..
38643     Roo.XComponent.register(this);
38644     this.modules = false;
38645     this.el = false; // where the layout goes..
38646     
38647     
38648 }
38649 Roo.extend(Roo.XComponent, Roo.util.Observable, {
38650     /**
38651      * @property el
38652      * The created element (with Roo.factory())
38653      * @type {Roo.Layout}
38654      */
38655     el  : false,
38656     
38657     /**
38658      * @property el
38659      * for BC  - use el in new code
38660      * @type {Roo.Layout}
38661      */
38662     panel : false,
38663     
38664     /**
38665      * @property layout
38666      * for BC  - use el in new code
38667      * @type {Roo.Layout}
38668      */
38669     layout : false,
38670     
38671      /**
38672      * @cfg {Function|boolean} disabled
38673      * If this module is disabled by some rule, return true from the funtion
38674      */
38675     disabled : false,
38676     
38677     /**
38678      * @cfg {String} parent 
38679      * Name of parent element which it get xtype added to..
38680      */
38681     parent: false,
38682     
38683     /**
38684      * @cfg {String} order
38685      * Used to set the order in which elements are created (usefull for multiple tabs)
38686      */
38687     
38688     order : false,
38689     /**
38690      * @cfg {String} name
38691      * String to display while loading.
38692      */
38693     name : false,
38694     /**
38695      * @cfg {String} region
38696      * Region to render component to (defaults to center)
38697      */
38698     region : 'center',
38699     
38700     /**
38701      * @cfg {Array} items
38702      * A single item array - the first element is the root of the tree..
38703      * It's done this way to stay compatible with the Xtype system...
38704      */
38705     items : false,
38706     
38707     /**
38708      * @property _tree
38709      * The method that retuns the tree of parts that make up this compoennt 
38710      * @type {function}
38711      */
38712     _tree  : false,
38713     
38714      /**
38715      * render
38716      * render element to dom or tree
38717      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
38718      */
38719     
38720     render : function(el)
38721     {
38722         
38723         el = el || false;
38724         var hp = this.parent ? 1 : 0;
38725         
38726         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
38727             // if parent is a '#.....' string, then let's use that..
38728             var ename = this.parent.substr(1)
38729             this.parent = false;
38730             el = Roo.get(ename);
38731             if (!el) {
38732                 Roo.log("Warning - element can not be found :#" + ename );
38733                 return;
38734             }
38735         }
38736         
38737         
38738         if (!this.parent) {
38739             
38740             el = el ? Roo.get(el) : false;      
38741             
38742             // it's a top level one..
38743             this.parent =  {
38744                 el : new Roo.BorderLayout(el || document.body, {
38745                 
38746                      center: {
38747                          titlebar: false,
38748                          autoScroll:false,
38749                          closeOnTab: true,
38750                          tabPosition: 'top',
38751                           //resizeTabs: true,
38752                          alwaysShowTabs: el && hp? false :  true,
38753                          hideTabs: el || !hp ? true :  false,
38754                          minTabWidth: 140
38755                      }
38756                  })
38757             }
38758         }
38759         
38760                 
38761                 // The 'tree' method is  '_tree now' 
38762             
38763         var tree = this._tree ? this._tree() : this.tree();
38764         tree.region = tree.region || this.region;
38765         this.el = this.parent.el.addxtype(tree);
38766         this.fireEvent('built', this);
38767         
38768         this.panel = this.el;
38769         this.layout = this.panel.layout;
38770                 this.parentLayout = this.parent.layout  || false;  
38771          
38772     }
38773     
38774 });
38775
38776 Roo.apply(Roo.XComponent, {
38777     
38778     /**
38779      * @property  buildCompleted
38780      * True when the builder has completed building the interface.
38781      * @type Boolean
38782      */
38783     buildCompleted : false,
38784      
38785     /**
38786      * @property  topModule
38787      * the upper most module - uses document.element as it's constructor.
38788      * @type Object
38789      */
38790      
38791     topModule  : false,
38792       
38793     /**
38794      * @property  modules
38795      * array of modules to be created by registration system.
38796      * @type {Array} of Roo.XComponent
38797      */
38798     
38799     modules : [],
38800     /**
38801      * @property  elmodules
38802      * array of modules to be created by which use #ID 
38803      * @type {Array} of Roo.XComponent
38804      */
38805      
38806     elmodules : [],
38807
38808     
38809     /**
38810      * Register components to be built later.
38811      *
38812      * This solves the following issues
38813      * - Building is not done on page load, but after an authentication process has occured.
38814      * - Interface elements are registered on page load
38815      * - Parent Interface elements may not be loaded before child, so this handles that..
38816      * 
38817      *
38818      * example:
38819      * 
38820      * MyApp.register({
38821           order : '000001',
38822           module : 'Pman.Tab.projectMgr',
38823           region : 'center',
38824           parent : 'Pman.layout',
38825           disabled : false,  // or use a function..
38826         })
38827      
38828      * * @param {Object} details about module
38829      */
38830     register : function(obj) {
38831                 
38832                 Roo.XComponent.event.fireEvent('register', obj);
38833                 switch(typeof(obj.disabled) ) {
38834                         
38835                         case 'undefined':
38836                                 break;
38837                         
38838                         case 'function':
38839                                 if ( obj.disabled() ) {
38840                                         return;
38841                                 }
38842                                 break;
38843                         default:
38844                                 if (obj.disabled) {
38845                                         return;
38846                                 }
38847                                 break;
38848                 }
38849                 
38850         this.modules.push(obj);
38851          
38852     },
38853     /**
38854      * convert a string to an object..
38855      * eg. 'AAA.BBB' -> finds AAA.BBB
38856
38857      */
38858     
38859     toObject : function(str)
38860     {
38861         if (!str || typeof(str) == 'object') {
38862             return str;
38863         }
38864         if (str.substring(0,1) == '#') {
38865             return str;
38866         }
38867
38868         var ar = str.split('.');
38869         var rt, o;
38870         rt = ar.shift();
38871             /** eval:var:o */
38872         try {
38873             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
38874         } catch (e) {
38875             throw "Module not found : " + str;
38876         }
38877         
38878         if (o === false) {
38879             throw "Module not found : " + str;
38880         }
38881         Roo.each(ar, function(e) {
38882             if (typeof(o[e]) == 'undefined') {
38883                 throw "Module not found : " + str;
38884             }
38885             o = o[e];
38886         });
38887         
38888         return o;
38889         
38890     },
38891     
38892     
38893     /**
38894      * move modules into their correct place in the tree..
38895      * 
38896      */
38897     preBuild : function ()
38898     {
38899         var _t = this;
38900         Roo.each(this.modules , function (obj)
38901         {
38902             var opar = obj.parent;
38903             try { 
38904                 obj.parent = this.toObject(opar);
38905             } catch(e) {
38906                 Roo.log("parent:toObject failed: " + e.toString());
38907                 return;
38908             }
38909             
38910             if (!obj.parent) {
38911                                 Roo.debug && Roo.log("GOT top level module");
38912                                 Roo.debug && Roo.log(obj);
38913                                 obj.modules = new Roo.util.MixedCollection(false, 
38914                     function(o) { return o.order + '' }
38915                 );
38916                 this.topModule = obj;
38917                 return;
38918             }
38919                         // parent is a string (usually a dom element name..)
38920             if (typeof(obj.parent) == 'string') {
38921                 this.elmodules.push(obj);
38922                 return;
38923             }
38924             if (obj.parent.constructor != Roo.XComponent) {
38925                 Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
38926             }
38927             if (!obj.parent.modules) {
38928                 obj.parent.modules = new Roo.util.MixedCollection(false, 
38929                     function(o) { return o.order + '' }
38930                 );
38931             }
38932             
38933             obj.parent.modules.add(obj);
38934         }, this);
38935     },
38936     
38937      /**
38938      * make a list of modules to build.
38939      * @return {Array} list of modules. 
38940      */ 
38941     
38942     buildOrder : function()
38943     {
38944         var _this = this;
38945         var cmp = function(a,b) {   
38946             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
38947         };
38948         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
38949             throw "No top level modules to build";
38950         }
38951         
38952         // make a flat list in order of modules to build.
38953         var mods = this.topModule ? [ this.topModule ] : [];
38954                 
38955                 // elmodules (is a list of DOM based modules )
38956         Roo.each(this.elmodules,function(e) { mods.push(e) });
38957
38958         
38959         // add modules to their parents..
38960         var addMod = function(m) {
38961                         Roo.debug && Roo.log("build Order: add: " + m.name);
38962             
38963             mods.push(m);
38964             if (m.modules) {
38965                                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
38966                 m.modules.keySort('ASC',  cmp );
38967                                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
38968
38969                 m.modules.each(addMod);
38970             } else {
38971                                 Roo.debug && Roo.log("build Order: no child modules");
38972                         }
38973             // not sure if this is used any more..
38974             if (m.finalize) {
38975                 m.finalize.name = m.name + " (clean up) ";
38976                 mods.push(m.finalize);
38977             }
38978             
38979         }
38980         if (this.topModule) { 
38981             this.topModule.modules.keySort('ASC',  cmp );
38982             this.topModule.modules.each(addMod);
38983         }
38984         return mods;
38985     },
38986     
38987      /**
38988      * Build the registered modules.
38989      * @param {Object} parent element.
38990      * @param {Function} optional method to call after module has been added.
38991      * 
38992      */ 
38993    
38994     build : function() 
38995     {
38996         
38997         this.preBuild();
38998         var mods = this.buildOrder();
38999       
39000         //this.allmods = mods;
39001         //Roo.debug && Roo.log(mods);
39002         //return;
39003         if (!mods.length) { // should not happen
39004             throw "NO modules!!!";
39005         }
39006         
39007         
39008         var msg = "Building Interface...";
39009         // flash it up as modal - so we store the mask!?
39010         Roo.MessageBox.show({ title: 'loading' });
39011         Roo.MessageBox.show({
39012            title: "Please wait...",
39013            msg: msg,
39014            width:450,
39015            progress:true,
39016            closable:false,
39017            modal: false
39018           
39019         });
39020         var total = mods.length;
39021         
39022         var _this = this;
39023         var progressRun = function() {
39024             if (!mods.length) {
39025                 Roo.debug && Roo.log('hide?');
39026                 Roo.MessageBox.hide();
39027                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
39028                 
39029                 // THE END...
39030                 return false;   
39031             }
39032             
39033             var m = mods.shift();
39034             
39035             
39036             Roo.debug && Roo.log(m);
39037             // not sure if this is supported any more.. - modules that are are just function
39038             if (typeof(m) == 'function') { 
39039                 m.call(this);
39040                 return progressRun.defer(10, _this);
39041             } 
39042             
39043             
39044             msg = "Building Interface " + (total  - mods.length) + 
39045                     " of " + total + 
39046                     (m.name ? (' - ' + m.name) : '');
39047                         Roo.debug && Roo.log(msg);
39048             Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
39049             
39050          
39051             // is the module disabled?
39052             var disabled = (typeof(m.disabled) == 'function') ?
39053                 m.disabled.call(m.module.disabled) : m.disabled;    
39054             
39055             
39056             if (disabled) {
39057                 return progressRun(); // we do not update the display!
39058             }
39059             
39060             // now build 
39061             
39062                         
39063                         
39064             m.render();
39065             // it's 10 on top level, and 1 on others??? why...
39066             return progressRun.defer(10, _this);
39067              
39068         }
39069         progressRun.defer(1, _this);
39070      
39071         
39072         
39073     },
39074         
39075         
39076         /**
39077          * Event Object.
39078          *
39079          *
39080          */
39081         event: false, 
39082     /**
39083          * wrapper for event.on - aliased later..  
39084          * Typically use to register a event handler for register:
39085          *
39086          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
39087          *
39088          */
39089     on : false
39090    
39091     
39092     
39093 });
39094
39095 Roo.XComponent.event = new Roo.util.Observable({
39096                 events : { 
39097                         /**
39098                          * @event register
39099                          * Fires when an Component is registered,
39100                          * set the disable property on the Component to stop registration.
39101                          * @param {Roo.XComponent} c the component being registerd.
39102                          * 
39103                          */
39104                         'register' : true,
39105                         /**
39106                          * @event buildcomplete
39107                          * Fires on the top level element when all elements have been built
39108                          * @param {Roo.XComponent} the top level component.
39109                          */
39110                         'buildcomplete' : true
39111                         
39112                 }
39113 });
39114
39115 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
39116  //<script type="text/javascript">
39117
39118
39119 /**
39120  * @class Roo.Login
39121  * @extends Roo.LayoutDialog
39122  * A generic Login Dialog..... - only one needed in theory!?!?
39123  *
39124  * Fires XComponent builder on success...
39125  * 
39126  * Sends 
39127  *    username,password, lang = for login actions.
39128  *    check = 1 for periodic checking that sesion is valid.
39129  *    passwordRequest = email request password
39130  *    logout = 1 = to logout
39131  * 
39132  * Affects: (this id="????" elements)
39133  *   loading  (removed) (used to indicate application is loading)
39134  *   loading-mask (hides) (used to hide application when it's building loading)
39135  *   
39136  * 
39137  * Usage: 
39138  *    
39139  * 
39140  * Myapp.login = Roo.Login({
39141      url: xxxx,
39142    
39143      realm : 'Myapp', 
39144      
39145      
39146      method : 'POST',
39147      
39148      
39149      * 
39150  })
39151  * 
39152  * 
39153  * 
39154  **/
39155  
39156 Roo.Login = function(cfg)
39157 {
39158     this.addEvents({
39159         'refreshed' : true
39160     });
39161     
39162     Roo.apply(this,cfg);
39163     
39164     Roo.onReady(function() {
39165         this.onLoad();
39166     }, this);
39167     // call parent..
39168     
39169    
39170     Roo.Login.superclass.constructor.call(this, this);
39171     //this.addxtype(this.items[0]);
39172     
39173     
39174 }
39175
39176
39177 Roo.extend(Roo.Login, Roo.LayoutDialog, {
39178     
39179     /**
39180      * @cfg {String} method
39181      * Method used to query for login details.
39182      */
39183     
39184     method : 'POST',
39185     /**
39186      * @cfg {String} url
39187      * URL to query login data. - eg. baseURL + '/Login.php'
39188      */
39189     url : '',
39190     
39191     /**
39192      * @property user
39193      * The user data - if user.id < 0 then login will be bypassed. (used for inital setup situation.
39194      * @type {Object} 
39195      */
39196     user : false,
39197     /**
39198      * @property checkFails
39199      * Number of times we have attempted to get authentication check, and failed.
39200      * @type {Number} 
39201      */
39202     checkFails : 0,
39203       /**
39204      * @property intervalID
39205      * The window interval that does the constant login checking.
39206      * @type {Number} 
39207      */
39208     intervalID : 0,
39209     
39210     
39211     onLoad : function() // called on page load...
39212     {
39213         // load 
39214          
39215         if (Roo.get('loading')) { // clear any loading indicator..
39216             Roo.get('loading').remove();
39217         }
39218         
39219         //this.switchLang('en'); // set the language to english..
39220        
39221         this.check({
39222             success:  function(response, opts)  {  // check successfull...
39223             
39224                 var res = this.processResponse(response);
39225                 this.checkFails =0;
39226                 if (!res.success) { // error!
39227                     this.checkFails = 5;
39228                     //console.log('call failure');
39229                     return this.failure(response,opts);
39230                 }
39231                 
39232                 if (!res.data.id) { // id=0 == login failure.
39233                     return this.show();
39234                 }
39235                 
39236                               
39237                         //console.log(success);
39238                 this.fillAuth(res.data);   
39239                 this.checkFails =0;
39240                 Roo.XComponent.build();
39241             },
39242             failure : this.show
39243         });
39244         
39245     }, 
39246     
39247     
39248     check: function(cfg) // called every so often to refresh cookie etc..
39249     {
39250         if (cfg.again) { // could be undefined..
39251             this.checkFails++;
39252         } else {
39253             this.checkFails = 0;
39254         }
39255         var _this = this;
39256         if (this.sending) {
39257             if ( this.checkFails > 4) {
39258                 Roo.MessageBox.alert("Error",  
39259                     "Error getting authentication status. - try reloading, or wait a while", function() {
39260                         _this.sending = false;
39261                     }); 
39262                 return;
39263             }
39264             cfg.again = true;
39265             _this.check.defer(10000, _this, [ cfg ]); // check in 10 secs.
39266             return;
39267         }
39268         this.sending = true;
39269         
39270         Roo.Ajax.request({  
39271             url: this.url,
39272             params: {
39273                 getAuthUser: true
39274             },  
39275             method: this.method,
39276             success:  cfg.success || this.success,
39277             failure : cfg.failure || this.failure,
39278             scope : this,
39279             callCfg : cfg
39280               
39281         });  
39282     }, 
39283     
39284     
39285     logout: function()
39286     {
39287         window.onbeforeunload = function() { }; // false does not work for IE..
39288         this.user = false;
39289         var _this = this;
39290         
39291         Roo.Ajax.request({  
39292             url: this.url,
39293             params: {
39294                 logout: 1
39295             },  
39296             method: 'GET',
39297             failure : function() {
39298                 Roo.MessageBox.alert("Error", "Error logging out. - continuing anyway.", function() {
39299                     document.location = document.location.toString() + '?ts=' + Math.random();
39300                 });
39301                 
39302             },
39303             success : function() {
39304                 _this.user = false;
39305                 this.checkFails =0;
39306                 // fixme..
39307                 document.location = document.location.toString() + '?ts=' + Math.random();
39308             }
39309               
39310               
39311         }); 
39312     },
39313     
39314     processResponse : function (response)
39315     {
39316         var res = '';
39317         try {
39318             res = Roo.decode(response.responseText);
39319             // oops...
39320             if (typeof(res) != 'object') {
39321                 res = { success : false, errorMsg : res, errors : true };
39322             }
39323             if (typeof(res.success) == 'undefined') {
39324                 res.success = false;
39325             }
39326             
39327         } catch(e) {
39328             res = { success : false,  errorMsg : response.responseText, errors : true };
39329         }
39330         return res;
39331     },
39332     
39333     success : function(response, opts)  // check successfull...
39334     {  
39335         this.sending = false;
39336         var res = this.processResponse(response);
39337         if (!res.success) {
39338             return this.failure(response, opts);
39339         }
39340         if (!res.data || !res.data.id) {
39341             return this.failure(response,opts);
39342         }
39343         //console.log(res);
39344         this.fillAuth(res.data);
39345         
39346         this.checkFails =0;
39347         
39348     },
39349     
39350     
39351     failure : function (response, opts) // called if login 'check' fails.. (causes re-check)
39352     {
39353         this.authUser = -1;
39354         this.sending = false;
39355         var res = this.processResponse(response);
39356         //console.log(res);
39357         if ( this.checkFails > 2) {
39358         
39359             Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : 
39360                 "Error getting authentication status. - try reloading"); 
39361             return;
39362         }
39363         opts.callCfg.again = true;
39364         this.check.defer(1000, this, [ opts.callCfg ]);
39365         return;  
39366     },
39367     
39368     
39369     
39370     fillAuth: function(au) {
39371         this.startAuthCheck();
39372         this.authUserId = au.id;
39373         this.authUser = au;
39374         this.lastChecked = new Date();
39375         this.fireEvent('refreshed', au);
39376         //Pman.Tab.FaxQueue.newMaxId(au.faxMax);
39377         //Pman.Tab.FaxTab.setTitle(au.faxNumPending);
39378         au.lang = au.lang || 'en';
39379         //this.switchLang(Roo.state.Manager.get('Pman.Login.lang', 'en'));
39380         Roo.state.Manager.set( this.realm + 'lang' , au.lang);
39381         this.switchLang(au.lang );
39382         
39383      
39384         // open system... - -on setyp..
39385         if (this.authUserId  < 0) {
39386             Roo.MessageBox.alert("Warning", 
39387                 "This is an open system - please set up a admin user with a password.");  
39388         }
39389          
39390         //Pman.onload(); // which should do nothing if it's a re-auth result...
39391         
39392              
39393     },
39394     
39395     startAuthCheck : function() // starter for timeout checking..
39396     {
39397         if (this.intervalID) { // timer already in place...
39398             return false;
39399         }
39400         var _this = this;
39401         this.intervalID =  window.setInterval(function() {
39402               _this.check(false);
39403             }, 120000); // every 120 secs = 2mins..
39404         
39405         
39406     },
39407          
39408     
39409     switchLang : function (lang) 
39410     {
39411         _T = typeof(_T) == 'undefined' ? false : _T;
39412           if (!_T || !lang.length) {
39413             return;
39414         }
39415         
39416         if (!_T && lang != 'en') {
39417             Roo.MessageBox.alert("Sorry", "Language not available yet (" + lang +')');
39418             return;
39419         }
39420         
39421         if (typeof(_T.en) == 'undefined') {
39422             _T.en = {};
39423             Roo.apply(_T.en, _T);
39424         }
39425         
39426         if (typeof(_T[lang]) == 'undefined') {
39427             Roo.MessageBox.alert("Sorry", "Language not available yet (" + lang +')');
39428             return;
39429         }
39430         
39431         
39432         Roo.apply(_T, _T[lang]);
39433         // just need to set the text values for everything...
39434         var _this = this;
39435         /* this will not work ...
39436         if (this.form) { 
39437             
39438                
39439             function formLabel(name, val) {
39440                 _this.form.findField(name).fieldEl.child('label').dom.innerHTML  = val;
39441             }
39442             
39443             formLabel('password', "Password"+':');
39444             formLabel('username', "Email Address"+':');
39445             formLabel('lang', "Language"+':');
39446             this.dialog.setTitle("Login");
39447             this.dialog.buttons[0].setText("Forgot Password");
39448             this.dialog.buttons[1].setText("Login");
39449         }
39450         */
39451         
39452         
39453     },
39454     
39455     
39456     title: "Login",
39457     modal: true,
39458     width:  350,
39459     //height: 230,
39460     height: 180,
39461     shadow: true,
39462     minWidth:200,
39463     minHeight:180,
39464     //proxyDrag: true,
39465     closable: false,
39466     draggable: false,
39467     collapsible: false,
39468     resizable: false,
39469     center: {  // needed??
39470         autoScroll:false,
39471         titlebar: false,
39472        // tabPosition: 'top',
39473         hideTabs: true,
39474         closeOnTab: true,
39475         alwaysShowTabs: false
39476     } ,
39477     listeners : {
39478         
39479         show  : function(dlg)
39480         {
39481             //console.log(this);
39482             this.form = this.layout.getRegion('center').activePanel.form;
39483             this.form.dialog = dlg;
39484             this.buttons[0].form = this.form;
39485             this.buttons[0].dialog = dlg;
39486             this.buttons[1].form = this.form;
39487             this.buttons[1].dialog = dlg;
39488            
39489            //this.resizeToLogo.defer(1000,this);
39490             // this is all related to resizing for logos..
39491             //var sz = Roo.get(Pman.Login.form.el.query('img')[0]).getSize();
39492            //// if (!sz) {
39493              //   this.resizeToLogo.defer(1000,this);
39494              //   return;
39495            // }
39496             //var w = Ext.lib.Dom.getViewWidth() - 100;
39497             //var h = Ext.lib.Dom.getViewHeight() - 100;
39498             //this.resizeTo(Math.max(350, Math.min(sz.width + 30, w)),Math.min(sz.height+200, h));
39499             //this.center();
39500             if (this.disabled) {
39501                 this.hide();
39502                 return;
39503             }
39504             
39505             if (this.user.id < 0) { // used for inital setup situations.
39506                 return;
39507             }
39508             
39509             if (this.intervalID) {
39510                 // remove the timer
39511                 window.clearInterval(this.intervalID);
39512                 this.intervalID = false;
39513             }
39514             
39515             
39516             if (Roo.get('loading')) {
39517                 Roo.get('loading').remove();
39518             }
39519             if (Roo.get('loading-mask')) {
39520                 Roo.get('loading-mask').hide();
39521             }
39522             
39523             //incomming._node = tnode;
39524             this.form.reset();
39525             //this.dialog.modal = !modal;
39526             //this.dialog.show();
39527             this.el.unmask(); 
39528             
39529             
39530             this.form.setValues({
39531                 'username' : Roo.state.Manager.get(this.realm + '.username', ''),
39532                 'lang' : Roo.state.Manager.get(this.realm + '.lang', 'en')
39533             });
39534             
39535             this.switchLang(Roo.state.Manager.get(this.realm + '.lang', 'en'));
39536             if (this.form.findField('username').getValue().length > 0 ){
39537                 this.form.findField('password').focus();
39538             } else {
39539                this.form.findField('username').focus();
39540             }
39541     
39542         }
39543     },
39544     items : [
39545          {
39546        
39547             xtype : 'ContentPanel',
39548             xns : Roo,
39549             region: 'center',
39550             fitToFrame : true,
39551             
39552             items : [
39553     
39554                 {
39555                
39556                     xtype : 'Form',
39557                     xns : Roo.form,
39558                     labelWidth: 100,
39559                     style : 'margin: 10px;',
39560                     
39561                     listeners : {
39562                         actionfailed : function(f, act) {
39563                             // form can return { errors: .... }
39564                                 
39565                             //act.result.errors // invalid form element list...
39566                             //act.result.errorMsg// invalid form element list...
39567                             
39568                             this.dialog.el.unmask();
39569                             Roo.MessageBox.alert("Error", act.result.errorMsg ? act.result.errorMsg : 
39570                                         "Login failed - communication error - try again.");
39571                                       
39572                         },
39573                         actioncomplete: function(re, act) {
39574                              
39575                             Roo.state.Manager.set(
39576                                 this.dialog.realm + '.username',  
39577                                     this.findField('username').getValue()
39578                             );
39579                             Roo.state.Manager.set(
39580                                 this.dialog.realm + '.lang',  
39581                                 this.findField('lang').getValue() 
39582                             );
39583                             
39584                             this.dialog.fillAuth(act.result.data);
39585                               
39586                             this.dialog.hide();
39587                             
39588                             if (Roo.get('loading-mask')) {
39589                                 Roo.get('loading-mask').show();
39590                             }
39591                             Roo.XComponent.build();
39592                             
39593                              
39594                             
39595                         }
39596                     },
39597                     items : [
39598                         {
39599                             xtype : 'TextField',
39600                             xns : Roo.form,
39601                             fieldLabel: "Email Address",
39602                             name: 'username',
39603                             width:200,
39604                             autoCreate : {tag: "input", type: "text", size: "20"}
39605                         },
39606                         {
39607                             xtype : 'TextField',
39608                             xns : Roo.form,
39609                             fieldLabel: "Password",
39610                             inputType: 'password',
39611                             name: 'password',
39612                             width:200,
39613                             autoCreate : {tag: "input", type: "text", size: "20"},
39614                             listeners : {
39615                                 specialkey : function(e,ev) {
39616                                     if (ev.keyCode == 13) {
39617                                         this.form.dialog.el.mask("Logging in");
39618                                         this.form.doAction('submit', {
39619                                             url: this.form.dialog.url,
39620                                             method: this.form.dialog.method
39621                                         });
39622                                     }
39623                                 }
39624                             }  
39625                         },
39626                         {
39627                             xtype : 'ComboBox',
39628                             xns : Roo.form,
39629                             fieldLabel: "Language",
39630                             name : 'langdisp',
39631                             store: {
39632                                 xtype : 'SimpleStore',
39633                                 fields: ['lang', 'ldisp'],
39634                                 data : [
39635                                     [ 'en', 'English' ],
39636                                     [ 'zh_HK' , '\u7E41\u4E2D' ],
39637                                     [ 'zh_CN', '\u7C21\u4E2D' ]
39638                                 ]
39639                             },
39640                             
39641                             valueField : 'lang',
39642                             hiddenName:  'lang',
39643                             width: 200,
39644                             displayField:'ldisp',
39645                             typeAhead: false,
39646                             editable: false,
39647                             mode: 'local',
39648                             triggerAction: 'all',
39649                             emptyText:'Select a Language...',
39650                             selectOnFocus:true,
39651                             listeners : {
39652                                 select :  function(cb, rec, ix) {
39653                                     this.form.switchLang(rec.data.lang);
39654                                 }
39655                             }
39656                         
39657                         }
39658                     ]
39659                 }
39660                   
39661                 
39662             ]
39663         }
39664     ],
39665     buttons : [
39666         {
39667             xtype : 'Button',
39668             xns : 'Roo',
39669             text : "Forgot Password",
39670             listeners : {
39671                 click : function() {
39672                     //console.log(this);
39673                     var n = this.form.findField('username').getValue();
39674                     if (!n.length) {
39675                         Roo.MessageBox.alert("Error", "Fill in your email address");
39676                         return;
39677                     }
39678                     Roo.Ajax.request({
39679                         url: this.dialog.url,
39680                         params: {
39681                             passwordRequest: n
39682                         },
39683                         method: this.dialog.method,
39684                         success:  function(response, opts)  {  // check successfull...
39685                         
39686                             var res = this.dialog.processResponse(response);
39687                             if (!res.success) { // error!
39688                                Roo.MessageBox.alert("Error" ,
39689                                     res.errorMsg ? res.errorMsg  : "Problem Requesting Password Reset");
39690                                return;
39691                             }
39692                             Roo.MessageBox.alert("Notice" ,
39693                                 "Please check you email for the Password Reset message");
39694                         },
39695                         failure : function() {
39696                             Roo.MessageBox.alert("Error" , "Problem Requesting Password Reset");
39697                         }
39698                         
39699                     });
39700                 }
39701             }
39702         },
39703         {
39704             xtype : 'Button',
39705             xns : 'Roo',
39706             text : "Login",
39707             listeners : {
39708                 
39709                 click : function () {
39710                         
39711                     this.dialog.el.mask("Logging in");
39712                     this.form.doAction('submit', {
39713                             url: this.dialog.url,
39714                             method: this.dialog.method
39715                     });
39716                 }
39717             }
39718         }
39719     ]
39720   
39721   
39722 })
39723  
39724
39725
39726