roojs-core.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         if (!Roo.isTouch) {
569             Event.on(this.id, "mousedown", this.handleMouseDown, this);
570         }
571         Event.on(this.id, "touchstart", this.handleMouseDown, this);
572         // Event.on(this.id, "selectstart", Event.preventDefault);
573     },
574
575     /**
576      * Initializes Targeting functionality only... the object does not
577      * get a mousedown handler.
578      * @method initTarget
579      * @param id the id of the linked element
580      * @param {String} sGroup the group of related items
581      * @param {object} config configuration attributes
582      */
583     initTarget: function(id, sGroup, config) {
584
585         // configuration attributes
586         this.config = config || {};
587
588         // create a local reference to the drag and drop manager
589         this.DDM = Roo.dd.DDM;
590         // initialize the groups array
591         this.groups = {};
592
593         // assume that we have an element reference instead of an id if the
594         // parameter is not a string
595         if (typeof id !== "string") {
596             id = Roo.id(id);
597         }
598
599         // set the id
600         this.id = id;
601
602         // add to an interaction group
603         this.addToGroup((sGroup) ? sGroup : "default");
604
605         // We don't want to register this as the handle with the manager
606         // so we just set the id rather than calling the setter.
607         this.handleElId = id;
608
609         // the linked element is the element that gets dragged by default
610         this.setDragElId(id);
611
612         // by default, clicked anchors will not start drag operations.
613         this.invalidHandleTypes = { A: "A" };
614         this.invalidHandleIds = {};
615         this.invalidHandleClasses = [];
616
617         this.applyConfig();
618
619         this.handleOnAvailable();
620     },
621
622     /**
623      * Applies the configuration parameters that were passed into the constructor.
624      * This is supposed to happen at each level through the inheritance chain.  So
625      * a DDProxy implentation will execute apply config on DDProxy, DD, and
626      * DragDrop in order to get all of the parameters that are available in
627      * each object.
628      * @method applyConfig
629      */
630     applyConfig: function() {
631
632         // configurable properties:
633         //    padding, isTarget, maintainOffset, primaryButtonOnly
634         this.padding           = this.config.padding || [0, 0, 0, 0];
635         this.isTarget          = (this.config.isTarget !== false);
636         this.maintainOffset    = (this.config.maintainOffset);
637         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
638
639     },
640
641     /**
642      * Executed when the linked element is available
643      * @method handleOnAvailable
644      * @private
645      */
646     handleOnAvailable: function() {
647         this.available = true;
648         this.resetConstraints();
649         this.onAvailable();
650     },
651
652      /**
653      * Configures the padding for the target zone in px.  Effectively expands
654      * (or reduces) the virtual object size for targeting calculations.
655      * Supports css-style shorthand; if only one parameter is passed, all sides
656      * will have that padding, and if only two are passed, the top and bottom
657      * will have the first param, the left and right the second.
658      * @method setPadding
659      * @param {int} iTop    Top pad
660      * @param {int} iRight  Right pad
661      * @param {int} iBot    Bot pad
662      * @param {int} iLeft   Left pad
663      */
664     setPadding: function(iTop, iRight, iBot, iLeft) {
665         // this.padding = [iLeft, iRight, iTop, iBot];
666         if (!iRight && 0 !== iRight) {
667             this.padding = [iTop, iTop, iTop, iTop];
668         } else if (!iBot && 0 !== iBot) {
669             this.padding = [iTop, iRight, iTop, iRight];
670         } else {
671             this.padding = [iTop, iRight, iBot, iLeft];
672         }
673     },
674
675     /**
676      * Stores the initial placement of the linked element.
677      * @method setInitialPosition
678      * @param {int} diffX   the X offset, default 0
679      * @param {int} diffY   the Y offset, default 0
680      */
681     setInitPosition: function(diffX, diffY) {
682         var el = this.getEl();
683
684         if (!this.DDM.verifyEl(el)) {
685             return;
686         }
687
688         var dx = diffX || 0;
689         var dy = diffY || 0;
690
691         var p = Dom.getXY( el );
692
693         this.initPageX = p[0] - dx;
694         this.initPageY = p[1] - dy;
695
696         this.lastPageX = p[0];
697         this.lastPageY = p[1];
698
699
700         this.setStartPosition(p);
701     },
702
703     /**
704      * Sets the start position of the element.  This is set when the obj
705      * is initialized, the reset when a drag is started.
706      * @method setStartPosition
707      * @param pos current position (from previous lookup)
708      * @private
709      */
710     setStartPosition: function(pos) {
711         var p = pos || Dom.getXY( this.getEl() );
712         this.deltaSetXY = null;
713
714         this.startPageX = p[0];
715         this.startPageY = p[1];
716     },
717
718     /**
719      * Add this instance to a group of related drag/drop objects.  All
720      * instances belong to at least one group, and can belong to as many
721      * groups as needed.
722      * @method addToGroup
723      * @param sGroup {string} the name of the group
724      */
725     addToGroup: function(sGroup) {
726         this.groups[sGroup] = true;
727         this.DDM.regDragDrop(this, sGroup);
728     },
729
730     /**
731      * Remove's this instance from the supplied interaction group
732      * @method removeFromGroup
733      * @param {string}  sGroup  The group to drop
734      */
735     removeFromGroup: function(sGroup) {
736         if (this.groups[sGroup]) {
737             delete this.groups[sGroup];
738         }
739
740         this.DDM.removeDDFromGroup(this, sGroup);
741     },
742
743     /**
744      * Allows you to specify that an element other than the linked element
745      * will be moved with the cursor during a drag
746      * @method setDragElId
747      * @param id {string} the id of the element that will be used to initiate the drag
748      */
749     setDragElId: function(id) {
750         this.dragElId = id;
751     },
752
753     /**
754      * Allows you to specify a child of the linked element that should be
755      * used to initiate the drag operation.  An example of this would be if
756      * you have a content div with text and links.  Clicking anywhere in the
757      * content area would normally start the drag operation.  Use this method
758      * to specify that an element inside of the content div is the element
759      * that starts the drag operation.
760      * @method setHandleElId
761      * @param id {string} the id of the element that will be used to
762      * initiate the drag.
763      */
764     setHandleElId: function(id) {
765         if (typeof id !== "string") {
766             id = Roo.id(id);
767         }
768         this.handleElId = id;
769         this.DDM.regHandle(this.id, id);
770     },
771
772     /**
773      * Allows you to set an element outside of the linked element as a drag
774      * handle
775      * @method setOuterHandleElId
776      * @param id the id of the element that will be used to initiate the drag
777      */
778     setOuterHandleElId: function(id) {
779         if (typeof id !== "string") {
780             id = Roo.id(id);
781         }
782         Event.on(id, "mousedown",
783                 this.handleMouseDown, this);
784         this.setHandleElId(id);
785
786         this.hasOuterHandles = true;
787     },
788
789     /**
790      * Remove all drag and drop hooks for this element
791      * @method unreg
792      */
793     unreg: function() {
794         Event.un(this.id, "mousedown",
795                 this.handleMouseDown);
796         Event.un(this.id, "touchstart",
797                 this.handleMouseDown);
798         this._domRef = null;
799         this.DDM._remove(this);
800     },
801
802     destroy : function(){
803         this.unreg();
804     },
805
806     /**
807      * Returns true if this instance is locked, or the drag drop mgr is locked
808      * (meaning that all drag/drop is disabled on the page.)
809      * @method isLocked
810      * @return {boolean} true if this obj or all drag/drop is locked, else
811      * false
812      */
813     isLocked: function() {
814         return (this.DDM.isLocked() || this.locked);
815     },
816
817     /**
818      * Fired when this object is clicked
819      * @method handleMouseDown
820      * @param {Event} e
821      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
822      * @private
823      */
824     handleMouseDown: function(e, oDD){
825      
826         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
827             //Roo.log('not touch/ button !=0');
828             return;
829         }
830         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
831             return; // double touch..
832         }
833         
834
835         if (this.isLocked()) {
836             //Roo.log('locked');
837             return;
838         }
839
840         this.DDM.refreshCache(this.groups);
841 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
842         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
843         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
844             //Roo.log('no outer handes or not over target');
845                 // do nothing.
846         } else {
847 //            Roo.log('check validator');
848             if (this.clickValidator(e)) {
849 //                Roo.log('validate success');
850                 // set the initial element position
851                 this.setStartPosition();
852
853
854                 this.b4MouseDown(e);
855                 this.onMouseDown(e);
856
857                 this.DDM.handleMouseDown(e, this);
858
859                 this.DDM.stopEvent(e);
860             } else {
861
862
863             }
864         }
865     },
866
867     clickValidator: function(e) {
868         var target = e.getTarget();
869         return ( this.isValidHandleChild(target) &&
870                     (this.id == this.handleElId ||
871                         this.DDM.handleWasClicked(target, this.id)) );
872     },
873
874     /**
875      * Allows you to specify a tag name that should not start a drag operation
876      * when clicked.  This is designed to facilitate embedding links within a
877      * drag handle that do something other than start the drag.
878      * @method addInvalidHandleType
879      * @param {string} tagName the type of element to exclude
880      */
881     addInvalidHandleType: function(tagName) {
882         var type = tagName.toUpperCase();
883         this.invalidHandleTypes[type] = type;
884     },
885
886     /**
887      * Lets you to specify an element id for a child of a drag handle
888      * that should not initiate a drag
889      * @method addInvalidHandleId
890      * @param {string} id the element id of the element you wish to ignore
891      */
892     addInvalidHandleId: function(id) {
893         if (typeof id !== "string") {
894             id = Roo.id(id);
895         }
896         this.invalidHandleIds[id] = id;
897     },
898
899     /**
900      * Lets you specify a css class of elements that will not initiate a drag
901      * @method addInvalidHandleClass
902      * @param {string} cssClass the class of the elements you wish to ignore
903      */
904     addInvalidHandleClass: function(cssClass) {
905         this.invalidHandleClasses.push(cssClass);
906     },
907
908     /**
909      * Unsets an excluded tag name set by addInvalidHandleType
910      * @method removeInvalidHandleType
911      * @param {string} tagName the type of element to unexclude
912      */
913     removeInvalidHandleType: function(tagName) {
914         var type = tagName.toUpperCase();
915         // this.invalidHandleTypes[type] = null;
916         delete this.invalidHandleTypes[type];
917     },
918
919     /**
920      * Unsets an invalid handle id
921      * @method removeInvalidHandleId
922      * @param {string} id the id of the element to re-enable
923      */
924     removeInvalidHandleId: function(id) {
925         if (typeof id !== "string") {
926             id = Roo.id(id);
927         }
928         delete this.invalidHandleIds[id];
929     },
930
931     /**
932      * Unsets an invalid css class
933      * @method removeInvalidHandleClass
934      * @param {string} cssClass the class of the element(s) you wish to
935      * re-enable
936      */
937     removeInvalidHandleClass: function(cssClass) {
938         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
939             if (this.invalidHandleClasses[i] == cssClass) {
940                 delete this.invalidHandleClasses[i];
941             }
942         }
943     },
944
945     /**
946      * Checks the tag exclusion list to see if this click should be ignored
947      * @method isValidHandleChild
948      * @param {HTMLElement} node the HTMLElement to evaluate
949      * @return {boolean} true if this is a valid tag type, false if not
950      */
951     isValidHandleChild: function(node) {
952
953         var valid = true;
954         // var n = (node.nodeName == "#text") ? node.parentNode : node;
955         var nodeName;
956         try {
957             nodeName = node.nodeName.toUpperCase();
958         } catch(e) {
959             nodeName = node.nodeName;
960         }
961         valid = valid && !this.invalidHandleTypes[nodeName];
962         valid = valid && !this.invalidHandleIds[node.id];
963
964         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
965             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
966         }
967
968
969         return valid;
970
971     },
972
973     /**
974      * Create the array of horizontal tick marks if an interval was specified
975      * in setXConstraint().
976      * @method setXTicks
977      * @private
978      */
979     setXTicks: function(iStartX, iTickSize) {
980         this.xTicks = [];
981         this.xTickSize = iTickSize;
982
983         var tickMap = {};
984
985         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
986             if (!tickMap[i]) {
987                 this.xTicks[this.xTicks.length] = i;
988                 tickMap[i] = true;
989             }
990         }
991
992         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
993             if (!tickMap[i]) {
994                 this.xTicks[this.xTicks.length] = i;
995                 tickMap[i] = true;
996             }
997         }
998
999         this.xTicks.sort(this.DDM.numericSort) ;
1000     },
1001
1002     /**
1003      * Create the array of vertical tick marks if an interval was specified in
1004      * setYConstraint().
1005      * @method setYTicks
1006      * @private
1007      */
1008     setYTicks: function(iStartY, iTickSize) {
1009         this.yTicks = [];
1010         this.yTickSize = iTickSize;
1011
1012         var tickMap = {};
1013
1014         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
1015             if (!tickMap[i]) {
1016                 this.yTicks[this.yTicks.length] = i;
1017                 tickMap[i] = true;
1018             }
1019         }
1020
1021         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
1022             if (!tickMap[i]) {
1023                 this.yTicks[this.yTicks.length] = i;
1024                 tickMap[i] = true;
1025             }
1026         }
1027
1028         this.yTicks.sort(this.DDM.numericSort) ;
1029     },
1030
1031     /**
1032      * By default, the element can be dragged any place on the screen.  Use
1033      * this method to limit the horizontal travel of the element.  Pass in
1034      * 0,0 for the parameters if you want to lock the drag to the y axis.
1035      * @method setXConstraint
1036      * @param {int} iLeft the number of pixels the element can move to the left
1037      * @param {int} iRight the number of pixels the element can move to the
1038      * right
1039      * @param {int} iTickSize optional parameter for specifying that the
1040      * element
1041      * should move iTickSize pixels at a time.
1042      */
1043     setXConstraint: function(iLeft, iRight, iTickSize) {
1044         this.leftConstraint = iLeft;
1045         this.rightConstraint = iRight;
1046
1047         this.minX = this.initPageX - iLeft;
1048         this.maxX = this.initPageX + iRight;
1049         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
1050
1051         this.constrainX = true;
1052     },
1053
1054     /**
1055      * Clears any constraints applied to this instance.  Also clears ticks
1056      * since they can't exist independent of a constraint at this time.
1057      * @method clearConstraints
1058      */
1059     clearConstraints: function() {
1060         this.constrainX = false;
1061         this.constrainY = false;
1062         this.clearTicks();
1063     },
1064
1065     /**
1066      * Clears any tick interval defined for this instance
1067      * @method clearTicks
1068      */
1069     clearTicks: function() {
1070         this.xTicks = null;
1071         this.yTicks = null;
1072         this.xTickSize = 0;
1073         this.yTickSize = 0;
1074     },
1075
1076     /**
1077      * By default, the element can be dragged any place on the screen.  Set
1078      * this to limit the vertical travel of the element.  Pass in 0,0 for the
1079      * parameters if you want to lock the drag to the x axis.
1080      * @method setYConstraint
1081      * @param {int} iUp the number of pixels the element can move up
1082      * @param {int} iDown the number of pixels the element can move down
1083      * @param {int} iTickSize optional parameter for specifying that the
1084      * element should move iTickSize pixels at a time.
1085      */
1086     setYConstraint: function(iUp, iDown, iTickSize) {
1087         this.topConstraint = iUp;
1088         this.bottomConstraint = iDown;
1089
1090         this.minY = this.initPageY - iUp;
1091         this.maxY = this.initPageY + iDown;
1092         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
1093
1094         this.constrainY = true;
1095
1096     },
1097
1098     /**
1099      * resetConstraints must be called if you manually reposition a dd element.
1100      * @method resetConstraints
1101      * @param {boolean} maintainOffset
1102      */
1103     resetConstraints: function() {
1104
1105
1106         // Maintain offsets if necessary
1107         if (this.initPageX || this.initPageX === 0) {
1108             // figure out how much this thing has moved
1109             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
1110             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
1111
1112             this.setInitPosition(dx, dy);
1113
1114         // This is the first time we have detected the element's position
1115         } else {
1116             this.setInitPosition();
1117         }
1118
1119         if (this.constrainX) {
1120             this.setXConstraint( this.leftConstraint,
1121                                  this.rightConstraint,
1122                                  this.xTickSize        );
1123         }
1124
1125         if (this.constrainY) {
1126             this.setYConstraint( this.topConstraint,
1127                                  this.bottomConstraint,
1128                                  this.yTickSize         );
1129         }
1130     },
1131
1132     /**
1133      * Normally the drag element is moved pixel by pixel, but we can specify
1134      * that it move a number of pixels at a time.  This method resolves the
1135      * location when we have it set up like this.
1136      * @method getTick
1137      * @param {int} val where we want to place the object
1138      * @param {int[]} tickArray sorted array of valid points
1139      * @return {int} the closest tick
1140      * @private
1141      */
1142     getTick: function(val, tickArray) {
1143
1144         if (!tickArray) {
1145             // If tick interval is not defined, it is effectively 1 pixel,
1146             // so we return the value passed to us.
1147             return val;
1148         } else if (tickArray[0] >= val) {
1149             // The value is lower than the first tick, so we return the first
1150             // tick.
1151             return tickArray[0];
1152         } else {
1153             for (var i=0, len=tickArray.length; i<len; ++i) {
1154                 var next = i + 1;
1155                 if (tickArray[next] && tickArray[next] >= val) {
1156                     var diff1 = val - tickArray[i];
1157                     var diff2 = tickArray[next] - val;
1158                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
1159                 }
1160             }
1161
1162             // The value is larger than the last tick, so we return the last
1163             // tick.
1164             return tickArray[tickArray.length - 1];
1165         }
1166     },
1167
1168     /**
1169      * toString method
1170      * @method toString
1171      * @return {string} string representation of the dd obj
1172      */
1173     toString: function() {
1174         return ("DragDrop " + this.id);
1175     }
1176
1177 });
1178
1179 })();
1180 /*
1181  * Based on:
1182  * Ext JS Library 1.1.1
1183  * Copyright(c) 2006-2007, Ext JS, LLC.
1184  *
1185  * Originally Released Under LGPL - original licence link has changed is not relivant.
1186  *
1187  * Fork - LGPL
1188  * <script type="text/javascript">
1189  */
1190
1191
1192 /**
1193  * The drag and drop utility provides a framework for building drag and drop
1194  * applications.  In addition to enabling drag and drop for specific elements,
1195  * the drag and drop elements are tracked by the manager class, and the
1196  * interactions between the various elements are tracked during the drag and
1197  * the implementing code is notified about these important moments.
1198  */
1199
1200 // Only load the library once.  Rewriting the manager class would orphan
1201 // existing drag and drop instances.
1202 if (!Roo.dd.DragDropMgr) {
1203
1204 /**
1205  * @class Roo.dd.DragDropMgr
1206  * DragDropMgr is a singleton that tracks the element interaction for
1207  * all DragDrop items in the window.  Generally, you will not call
1208  * this class directly, but it does have helper methods that could
1209  * be useful in your DragDrop implementations.
1210  * @singleton
1211  */
1212 Roo.dd.DragDropMgr = function() {
1213
1214     var Event = Roo.EventManager;
1215
1216     return {
1217
1218         /**
1219          * Two dimensional Array of registered DragDrop objects.  The first
1220          * dimension is the DragDrop item group, the second the DragDrop
1221          * object.
1222          * @property ids
1223          * @type {string: string}
1224          * @private
1225          * @static
1226          */
1227         ids: {},
1228
1229         /**
1230          * Array of element ids defined as drag handles.  Used to determine
1231          * if the element that generated the mousedown event is actually the
1232          * handle and not the html element itself.
1233          * @property handleIds
1234          * @type {string: string}
1235          * @private
1236          * @static
1237          */
1238         handleIds: {},
1239
1240         /**
1241          * the DragDrop object that is currently being dragged
1242          * @property dragCurrent
1243          * @type DragDrop
1244          * @private
1245          * @static
1246          **/
1247         dragCurrent: null,
1248
1249         /**
1250          * the DragDrop object(s) that are being hovered over
1251          * @property dragOvers
1252          * @type Array
1253          * @private
1254          * @static
1255          */
1256         dragOvers: {},
1257
1258         /**
1259          * the X distance between the cursor and the object being dragged
1260          * @property deltaX
1261          * @type int
1262          * @private
1263          * @static
1264          */
1265         deltaX: 0,
1266
1267         /**
1268          * the Y distance between the cursor and the object being dragged
1269          * @property deltaY
1270          * @type int
1271          * @private
1272          * @static
1273          */
1274         deltaY: 0,
1275
1276         /**
1277          * Flag to determine if we should prevent the default behavior of the
1278          * events we define. By default this is true, but this can be set to
1279          * false if you need the default behavior (not recommended)
1280          * @property preventDefault
1281          * @type boolean
1282          * @static
1283          */
1284         preventDefault: true,
1285
1286         /**
1287          * Flag to determine if we should stop the propagation of the events
1288          * we generate. This is true by default but you may want to set it to
1289          * false if the html element contains other features that require the
1290          * mouse click.
1291          * @property stopPropagation
1292          * @type boolean
1293          * @static
1294          */
1295         stopPropagation: true,
1296
1297         /**
1298          * Internal flag that is set to true when drag and drop has been
1299          * intialized
1300          * @property initialized
1301          * @private
1302          * @static
1303          */
1304         initalized: false,
1305
1306         /**
1307          * All drag and drop can be disabled.
1308          * @property locked
1309          * @private
1310          * @static
1311          */
1312         locked: false,
1313
1314         /**
1315          * Called the first time an element is registered.
1316          * @method init
1317          * @private
1318          * @static
1319          */
1320         init: function() {
1321             this.initialized = true;
1322         },
1323
1324         /**
1325          * In point mode, drag and drop interaction is defined by the
1326          * location of the cursor during the drag/drop
1327          * @property POINT
1328          * @type int
1329          * @static
1330          */
1331         POINT: 0,
1332
1333         /**
1334          * In intersect mode, drag and drop interactio nis defined by the
1335          * overlap of two or more drag and drop objects.
1336          * @property INTERSECT
1337          * @type int
1338          * @static
1339          */
1340         INTERSECT: 1,
1341
1342         /**
1343          * The current drag and drop mode.  Default: POINT
1344          * @property mode
1345          * @type int
1346          * @static
1347          */
1348         mode: 0,
1349
1350         /**
1351          * Runs method on all drag and drop objects
1352          * @method _execOnAll
1353          * @private
1354          * @static
1355          */
1356         _execOnAll: function(sMethod, args) {
1357             for (var i in this.ids) {
1358                 for (var j in this.ids[i]) {
1359                     var oDD = this.ids[i][j];
1360                     if (! this.isTypeOfDD(oDD)) {
1361                         continue;
1362                     }
1363                     oDD[sMethod].apply(oDD, args);
1364                 }
1365             }
1366         },
1367
1368         /**
1369          * Drag and drop initialization.  Sets up the global event handlers
1370          * @method _onLoad
1371          * @private
1372          * @static
1373          */
1374         _onLoad: function() {
1375
1376             this.init();
1377
1378             if (!Roo.isTouch) {
1379                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
1380                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
1381             }
1382             Event.on(document, "touchend",   this.handleMouseUp, this, true);
1383             Event.on(document, "touchmove", this.handleMouseMove, this, true);
1384             
1385             Event.on(window,   "unload",    this._onUnload, this, true);
1386             Event.on(window,   "resize",    this._onResize, this, true);
1387             // Event.on(window,   "mouseout",    this._test);
1388
1389         },
1390
1391         /**
1392          * Reset constraints on all drag and drop objs
1393          * @method _onResize
1394          * @private
1395          * @static
1396          */
1397         _onResize: function(e) {
1398             this._execOnAll("resetConstraints", []);
1399         },
1400
1401         /**
1402          * Lock all drag and drop functionality
1403          * @method lock
1404          * @static
1405          */
1406         lock: function() { this.locked = true; },
1407
1408         /**
1409          * Unlock all drag and drop functionality
1410          * @method unlock
1411          * @static
1412          */
1413         unlock: function() { this.locked = false; },
1414
1415         /**
1416          * Is drag and drop locked?
1417          * @method isLocked
1418          * @return {boolean} True if drag and drop is locked, false otherwise.
1419          * @static
1420          */
1421         isLocked: function() { return this.locked; },
1422
1423         /**
1424          * Location cache that is set for all drag drop objects when a drag is
1425          * initiated, cleared when the drag is finished.
1426          * @property locationCache
1427          * @private
1428          * @static
1429          */
1430         locationCache: {},
1431
1432         /**
1433          * Set useCache to false if you want to force object the lookup of each
1434          * drag and drop linked element constantly during a drag.
1435          * @property useCache
1436          * @type boolean
1437          * @static
1438          */
1439         useCache: true,
1440
1441         /**
1442          * The number of pixels that the mouse needs to move after the
1443          * mousedown before the drag is initiated.  Default=3;
1444          * @property clickPixelThresh
1445          * @type int
1446          * @static
1447          */
1448         clickPixelThresh: 3,
1449
1450         /**
1451          * The number of milliseconds after the mousedown event to initiate the
1452          * drag if we don't get a mouseup event. Default=1000
1453          * @property clickTimeThresh
1454          * @type int
1455          * @static
1456          */
1457         clickTimeThresh: 350,
1458
1459         /**
1460          * Flag that indicates that either the drag pixel threshold or the
1461          * mousdown time threshold has been met
1462          * @property dragThreshMet
1463          * @type boolean
1464          * @private
1465          * @static
1466          */
1467         dragThreshMet: false,
1468
1469         /**
1470          * Timeout used for the click time threshold
1471          * @property clickTimeout
1472          * @type Object
1473          * @private
1474          * @static
1475          */
1476         clickTimeout: null,
1477
1478         /**
1479          * The X position of the mousedown event stored for later use when a
1480          * drag threshold is met.
1481          * @property startX
1482          * @type int
1483          * @private
1484          * @static
1485          */
1486         startX: 0,
1487
1488         /**
1489          * The Y position of the mousedown event stored for later use when a
1490          * drag threshold is met.
1491          * @property startY
1492          * @type int
1493          * @private
1494          * @static
1495          */
1496         startY: 0,
1497
1498         /**
1499          * Each DragDrop instance must be registered with the DragDropMgr.
1500          * This is executed in DragDrop.init()
1501          * @method regDragDrop
1502          * @param {DragDrop} oDD the DragDrop object to register
1503          * @param {String} sGroup the name of the group this element belongs to
1504          * @static
1505          */
1506         regDragDrop: function(oDD, sGroup) {
1507             if (!this.initialized) { this.init(); }
1508
1509             if (!this.ids[sGroup]) {
1510                 this.ids[sGroup] = {};
1511             }
1512             this.ids[sGroup][oDD.id] = oDD;
1513         },
1514
1515         /**
1516          * Removes the supplied dd instance from the supplied group. Executed
1517          * by DragDrop.removeFromGroup, so don't call this function directly.
1518          * @method removeDDFromGroup
1519          * @private
1520          * @static
1521          */
1522         removeDDFromGroup: function(oDD, sGroup) {
1523             if (!this.ids[sGroup]) {
1524                 this.ids[sGroup] = {};
1525             }
1526
1527             var obj = this.ids[sGroup];
1528             if (obj && obj[oDD.id]) {
1529                 delete obj[oDD.id];
1530             }
1531         },
1532
1533         /**
1534          * Unregisters a drag and drop item.  This is executed in
1535          * DragDrop.unreg, use that method instead of calling this directly.
1536          * @method _remove
1537          * @private
1538          * @static
1539          */
1540         _remove: function(oDD) {
1541             for (var g in oDD.groups) {
1542                 if (g && this.ids[g][oDD.id]) {
1543                     delete this.ids[g][oDD.id];
1544                 }
1545             }
1546             delete this.handleIds[oDD.id];
1547         },
1548
1549         /**
1550          * Each DragDrop handle element must be registered.  This is done
1551          * automatically when executing DragDrop.setHandleElId()
1552          * @method regHandle
1553          * @param {String} sDDId the DragDrop id this element is a handle for
1554          * @param {String} sHandleId the id of the element that is the drag
1555          * handle
1556          * @static
1557          */
1558         regHandle: function(sDDId, sHandleId) {
1559             if (!this.handleIds[sDDId]) {
1560                 this.handleIds[sDDId] = {};
1561             }
1562             this.handleIds[sDDId][sHandleId] = sHandleId;
1563         },
1564
1565         /**
1566          * Utility function to determine if a given element has been
1567          * registered as a drag drop item.
1568          * @method isDragDrop
1569          * @param {String} id the element id to check
1570          * @return {boolean} true if this element is a DragDrop item,
1571          * false otherwise
1572          * @static
1573          */
1574         isDragDrop: function(id) {
1575             return ( this.getDDById(id) ) ? true : false;
1576         },
1577
1578         /**
1579          * Returns the drag and drop instances that are in all groups the
1580          * passed in instance belongs to.
1581          * @method getRelated
1582          * @param {DragDrop} p_oDD the obj to get related data for
1583          * @param {boolean} bTargetsOnly if true, only return targetable objs
1584          * @return {DragDrop[]} the related instances
1585          * @static
1586          */
1587         getRelated: function(p_oDD, bTargetsOnly) {
1588             var oDDs = [];
1589             for (var i in p_oDD.groups) {
1590                 for (j in this.ids[i]) {
1591                     var dd = this.ids[i][j];
1592                     if (! this.isTypeOfDD(dd)) {
1593                         continue;
1594                     }
1595                     if (!bTargetsOnly || dd.isTarget) {
1596                         oDDs[oDDs.length] = dd;
1597                     }
1598                 }
1599             }
1600
1601             return oDDs;
1602         },
1603
1604         /**
1605          * Returns true if the specified dd target is a legal target for
1606          * the specifice drag obj
1607          * @method isLegalTarget
1608          * @param {DragDrop} the drag obj
1609          * @param {DragDrop} the target
1610          * @return {boolean} true if the target is a legal target for the
1611          * dd obj
1612          * @static
1613          */
1614         isLegalTarget: function (oDD, oTargetDD) {
1615             var targets = this.getRelated(oDD, true);
1616             for (var i=0, len=targets.length;i<len;++i) {
1617                 if (targets[i].id == oTargetDD.id) {
1618                     return true;
1619                 }
1620             }
1621
1622             return false;
1623         },
1624
1625         /**
1626          * My goal is to be able to transparently determine if an object is
1627          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
1628          * returns "object", oDD.constructor.toString() always returns
1629          * "DragDrop" and not the name of the subclass.  So for now it just
1630          * evaluates a well-known variable in DragDrop.
1631          * @method isTypeOfDD
1632          * @param {Object} the object to evaluate
1633          * @return {boolean} true if typeof oDD = DragDrop
1634          * @static
1635          */
1636         isTypeOfDD: function (oDD) {
1637             return (oDD && oDD.__ygDragDrop);
1638         },
1639
1640         /**
1641          * Utility function to determine if a given element has been
1642          * registered as a drag drop handle for the given Drag Drop object.
1643          * @method isHandle
1644          * @param {String} id the element id to check
1645          * @return {boolean} true if this element is a DragDrop handle, false
1646          * otherwise
1647          * @static
1648          */
1649         isHandle: function(sDDId, sHandleId) {
1650             return ( this.handleIds[sDDId] &&
1651                             this.handleIds[sDDId][sHandleId] );
1652         },
1653
1654         /**
1655          * Returns the DragDrop instance for a given id
1656          * @method getDDById
1657          * @param {String} id the id of the DragDrop object
1658          * @return {DragDrop} the drag drop object, null if it is not found
1659          * @static
1660          */
1661         getDDById: function(id) {
1662             for (var i in this.ids) {
1663                 if (this.ids[i][id]) {
1664                     return this.ids[i][id];
1665                 }
1666             }
1667             return null;
1668         },
1669
1670         /**
1671          * Fired after a registered DragDrop object gets the mousedown event.
1672          * Sets up the events required to track the object being dragged
1673          * @method handleMouseDown
1674          * @param {Event} e the event
1675          * @param oDD the DragDrop object being dragged
1676          * @private
1677          * @static
1678          */
1679         handleMouseDown: function(e, oDD) {
1680             if(Roo.QuickTips){
1681                 Roo.QuickTips.disable();
1682             }
1683             this.currentTarget = e.getTarget();
1684
1685             this.dragCurrent = oDD;
1686
1687             var el = oDD.getEl();
1688
1689             // track start position
1690             this.startX = e.getPageX();
1691             this.startY = e.getPageY();
1692
1693             this.deltaX = this.startX - el.offsetLeft;
1694             this.deltaY = this.startY - el.offsetTop;
1695
1696             this.dragThreshMet = false;
1697
1698             this.clickTimeout = setTimeout(
1699                     function() {
1700                         var DDM = Roo.dd.DDM;
1701                         DDM.startDrag(DDM.startX, DDM.startY);
1702                     },
1703                     this.clickTimeThresh );
1704         },
1705
1706         /**
1707          * Fired when either the drag pixel threshol or the mousedown hold
1708          * time threshold has been met.
1709          * @method startDrag
1710          * @param x {int} the X position of the original mousedown
1711          * @param y {int} the Y position of the original mousedown
1712          * @static
1713          */
1714         startDrag: function(x, y) {
1715             clearTimeout(this.clickTimeout);
1716             if (this.dragCurrent) {
1717                 this.dragCurrent.b4StartDrag(x, y);
1718                 this.dragCurrent.startDrag(x, y);
1719             }
1720             this.dragThreshMet = true;
1721         },
1722
1723         /**
1724          * Internal function to handle the mouseup event.  Will be invoked
1725          * from the context of the document.
1726          * @method handleMouseUp
1727          * @param {Event} e the event
1728          * @private
1729          * @static
1730          */
1731         handleMouseUp: function(e) {
1732
1733             if(Roo.QuickTips){
1734                 Roo.QuickTips.enable();
1735             }
1736             if (! this.dragCurrent) {
1737                 return;
1738             }
1739
1740             clearTimeout(this.clickTimeout);
1741
1742             if (this.dragThreshMet) {
1743                 this.fireEvents(e, true);
1744             } else {
1745             }
1746
1747             this.stopDrag(e);
1748
1749             this.stopEvent(e);
1750         },
1751
1752         /**
1753          * Utility to stop event propagation and event default, if these
1754          * features are turned on.
1755          * @method stopEvent
1756          * @param {Event} e the event as returned by this.getEvent()
1757          * @static
1758          */
1759         stopEvent: function(e){
1760             if(this.stopPropagation) {
1761                 e.stopPropagation();
1762             }
1763
1764             if (this.preventDefault) {
1765                 e.preventDefault();
1766             }
1767         },
1768
1769         /**
1770          * Internal function to clean up event handlers after the drag
1771          * operation is complete
1772          * @method stopDrag
1773          * @param {Event} e the event
1774          * @private
1775          * @static
1776          */
1777         stopDrag: function(e) {
1778             // Fire the drag end event for the item that was dragged
1779             if (this.dragCurrent) {
1780                 if (this.dragThreshMet) {
1781                     this.dragCurrent.b4EndDrag(e);
1782                     this.dragCurrent.endDrag(e);
1783                 }
1784
1785                 this.dragCurrent.onMouseUp(e);
1786             }
1787
1788             this.dragCurrent = null;
1789             this.dragOvers = {};
1790         },
1791
1792         /**
1793          * Internal function to handle the mousemove event.  Will be invoked
1794          * from the context of the html element.
1795          *
1796          * @TODO figure out what we can do about mouse events lost when the
1797          * user drags objects beyond the window boundary.  Currently we can
1798          * detect this in internet explorer by verifying that the mouse is
1799          * down during the mousemove event.  Firefox doesn't give us the
1800          * button state on the mousemove event.
1801          * @method handleMouseMove
1802          * @param {Event} e the event
1803          * @private
1804          * @static
1805          */
1806         handleMouseMove: function(e) {
1807             if (! this.dragCurrent) {
1808                 return true;
1809             }
1810
1811             // var button = e.which || e.button;
1812
1813             // check for IE mouseup outside of page boundary
1814             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
1815                 this.stopEvent(e);
1816                 return this.handleMouseUp(e);
1817             }
1818
1819             if (!this.dragThreshMet) {
1820                 var diffX = Math.abs(this.startX - e.getPageX());
1821                 var diffY = Math.abs(this.startY - e.getPageY());
1822                 if (diffX > this.clickPixelThresh ||
1823                             diffY > this.clickPixelThresh) {
1824                     this.startDrag(this.startX, this.startY);
1825                 }
1826             }
1827
1828             if (this.dragThreshMet) {
1829                 this.dragCurrent.b4Drag(e);
1830                 this.dragCurrent.onDrag(e);
1831                 if(!this.dragCurrent.moveOnly){
1832                     this.fireEvents(e, false);
1833                 }
1834             }
1835
1836             this.stopEvent(e);
1837
1838             return true;
1839         },
1840
1841         /**
1842          * Iterates over all of the DragDrop elements to find ones we are
1843          * hovering over or dropping on
1844          * @method fireEvents
1845          * @param {Event} e the event
1846          * @param {boolean} isDrop is this a drop op or a mouseover op?
1847          * @private
1848          * @static
1849          */
1850         fireEvents: function(e, isDrop) {
1851             var dc = this.dragCurrent;
1852
1853             // If the user did the mouse up outside of the window, we could
1854             // get here even though we have ended the drag.
1855             if (!dc || dc.isLocked()) {
1856                 return;
1857             }
1858
1859             var pt = e.getPoint();
1860
1861             // cache the previous dragOver array
1862             var oldOvers = [];
1863
1864             var outEvts   = [];
1865             var overEvts  = [];
1866             var dropEvts  = [];
1867             var enterEvts = [];
1868
1869             // Check to see if the object(s) we were hovering over is no longer
1870             // being hovered over so we can fire the onDragOut event
1871             for (var i in this.dragOvers) {
1872
1873                 var ddo = this.dragOvers[i];
1874
1875                 if (! this.isTypeOfDD(ddo)) {
1876                     continue;
1877                 }
1878
1879                 if (! this.isOverTarget(pt, ddo, this.mode)) {
1880                     outEvts.push( ddo );
1881                 }
1882
1883                 oldOvers[i] = true;
1884                 delete this.dragOvers[i];
1885             }
1886
1887             for (var sGroup in dc.groups) {
1888
1889                 if ("string" != typeof sGroup) {
1890                     continue;
1891                 }
1892
1893                 for (i in this.ids[sGroup]) {
1894                     var oDD = this.ids[sGroup][i];
1895                     if (! this.isTypeOfDD(oDD)) {
1896                         continue;
1897                     }
1898
1899                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
1900                         if (this.isOverTarget(pt, oDD, this.mode)) {
1901                             // look for drop interactions
1902                             if (isDrop) {
1903                                 dropEvts.push( oDD );
1904                             // look for drag enter and drag over interactions
1905                             } else {
1906
1907                                 // initial drag over: dragEnter fires
1908                                 if (!oldOvers[oDD.id]) {
1909                                     enterEvts.push( oDD );
1910                                 // subsequent drag overs: dragOver fires
1911                                 } else {
1912                                     overEvts.push( oDD );
1913                                 }
1914
1915                                 this.dragOvers[oDD.id] = oDD;
1916                             }
1917                         }
1918                     }
1919                 }
1920             }
1921
1922             if (this.mode) {
1923                 if (outEvts.length) {
1924                     dc.b4DragOut(e, outEvts);
1925                     dc.onDragOut(e, outEvts);
1926                 }
1927
1928                 if (enterEvts.length) {
1929                     dc.onDragEnter(e, enterEvts);
1930                 }
1931
1932                 if (overEvts.length) {
1933                     dc.b4DragOver(e, overEvts);
1934                     dc.onDragOver(e, overEvts);
1935                 }
1936
1937                 if (dropEvts.length) {
1938                     dc.b4DragDrop(e, dropEvts);
1939                     dc.onDragDrop(e, dropEvts);
1940                 }
1941
1942             } else {
1943                 // fire dragout events
1944                 var len = 0;
1945                 for (i=0, len=outEvts.length; i<len; ++i) {
1946                     dc.b4DragOut(e, outEvts[i].id);
1947                     dc.onDragOut(e, outEvts[i].id);
1948                 }
1949
1950                 // fire enter events
1951                 for (i=0,len=enterEvts.length; i<len; ++i) {
1952                     // dc.b4DragEnter(e, oDD.id);
1953                     dc.onDragEnter(e, enterEvts[i].id);
1954                 }
1955
1956                 // fire over events
1957                 for (i=0,len=overEvts.length; i<len; ++i) {
1958                     dc.b4DragOver(e, overEvts[i].id);
1959                     dc.onDragOver(e, overEvts[i].id);
1960                 }
1961
1962                 // fire drop events
1963                 for (i=0, len=dropEvts.length; i<len; ++i) {
1964                     dc.b4DragDrop(e, dropEvts[i].id);
1965                     dc.onDragDrop(e, dropEvts[i].id);
1966                 }
1967
1968             }
1969
1970             // notify about a drop that did not find a target
1971             if (isDrop && !dropEvts.length) {
1972                 dc.onInvalidDrop(e);
1973             }
1974
1975         },
1976
1977         /**
1978          * Helper function for getting the best match from the list of drag
1979          * and drop objects returned by the drag and drop events when we are
1980          * in INTERSECT mode.  It returns either the first object that the
1981          * cursor is over, or the object that has the greatest overlap with
1982          * the dragged element.
1983          * @method getBestMatch
1984          * @param  {DragDrop[]} dds The array of drag and drop objects
1985          * targeted
1986          * @return {DragDrop}       The best single match
1987          * @static
1988          */
1989         getBestMatch: function(dds) {
1990             var winner = null;
1991             // Return null if the input is not what we expect
1992             //if (!dds || !dds.length || dds.length == 0) {
1993                // winner = null;
1994             // If there is only one item, it wins
1995             //} else if (dds.length == 1) {
1996
1997             var len = dds.length;
1998
1999             if (len == 1) {
2000                 winner = dds[0];
2001             } else {
2002                 // Loop through the targeted items
2003                 for (var i=0; i<len; ++i) {
2004                     var dd = dds[i];
2005                     // If the cursor is over the object, it wins.  If the
2006                     // cursor is over multiple matches, the first one we come
2007                     // to wins.
2008                     if (dd.cursorIsOver) {
2009                         winner = dd;
2010                         break;
2011                     // Otherwise the object with the most overlap wins
2012                     } else {
2013                         if (!winner ||
2014                             winner.overlap.getArea() < dd.overlap.getArea()) {
2015                             winner = dd;
2016                         }
2017                     }
2018                 }
2019             }
2020
2021             return winner;
2022         },
2023
2024         /**
2025          * Refreshes the cache of the top-left and bottom-right points of the
2026          * drag and drop objects in the specified group(s).  This is in the
2027          * format that is stored in the drag and drop instance, so typical
2028          * usage is:
2029          * <code>
2030          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
2031          * </code>
2032          * Alternatively:
2033          * <code>
2034          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
2035          * </code>
2036          * @TODO this really should be an indexed array.  Alternatively this
2037          * method could accept both.
2038          * @method refreshCache
2039          * @param {Object} groups an associative array of groups to refresh
2040          * @static
2041          */
2042         refreshCache: function(groups) {
2043             for (var sGroup in groups) {
2044                 if ("string" != typeof sGroup) {
2045                     continue;
2046                 }
2047                 for (var i in this.ids[sGroup]) {
2048                     var oDD = this.ids[sGroup][i];
2049
2050                     if (this.isTypeOfDD(oDD)) {
2051                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
2052                         var loc = this.getLocation(oDD);
2053                         if (loc) {
2054                             this.locationCache[oDD.id] = loc;
2055                         } else {
2056                             delete this.locationCache[oDD.id];
2057                             // this will unregister the drag and drop object if
2058                             // the element is not in a usable state
2059                             // oDD.unreg();
2060                         }
2061                     }
2062                 }
2063             }
2064         },
2065
2066         /**
2067          * This checks to make sure an element exists and is in the DOM.  The
2068          * main purpose is to handle cases where innerHTML is used to remove
2069          * drag and drop objects from the DOM.  IE provides an 'unspecified
2070          * error' when trying to access the offsetParent of such an element
2071          * @method verifyEl
2072          * @param {HTMLElement} el the element to check
2073          * @return {boolean} true if the element looks usable
2074          * @static
2075          */
2076         verifyEl: function(el) {
2077             if (el) {
2078                 var parent;
2079                 if(Roo.isIE){
2080                     try{
2081                         parent = el.offsetParent;
2082                     }catch(e){}
2083                 }else{
2084                     parent = el.offsetParent;
2085                 }
2086                 if (parent) {
2087                     return true;
2088                 }
2089             }
2090
2091             return false;
2092         },
2093
2094         /**
2095          * Returns a Region object containing the drag and drop element's position
2096          * and size, including the padding configured for it
2097          * @method getLocation
2098          * @param {DragDrop} oDD the drag and drop object to get the
2099          *                       location for
2100          * @return {Roo.lib.Region} a Region object representing the total area
2101          *                             the element occupies, including any padding
2102          *                             the instance is configured for.
2103          * @static
2104          */
2105         getLocation: function(oDD) {
2106             if (! this.isTypeOfDD(oDD)) {
2107                 return null;
2108             }
2109
2110             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
2111
2112             try {
2113                 pos= Roo.lib.Dom.getXY(el);
2114             } catch (e) { }
2115
2116             if (!pos) {
2117                 return null;
2118             }
2119
2120             x1 = pos[0];
2121             x2 = x1 + el.offsetWidth;
2122             y1 = pos[1];
2123             y2 = y1 + el.offsetHeight;
2124
2125             t = y1 - oDD.padding[0];
2126             r = x2 + oDD.padding[1];
2127             b = y2 + oDD.padding[2];
2128             l = x1 - oDD.padding[3];
2129
2130             return new Roo.lib.Region( t, r, b, l );
2131         },
2132
2133         /**
2134          * Checks the cursor location to see if it over the target
2135          * @method isOverTarget
2136          * @param {Roo.lib.Point} pt The point to evaluate
2137          * @param {DragDrop} oTarget the DragDrop object we are inspecting
2138          * @return {boolean} true if the mouse is over the target
2139          * @private
2140          * @static
2141          */
2142         isOverTarget: function(pt, oTarget, intersect) {
2143             // use cache if available
2144             var loc = this.locationCache[oTarget.id];
2145             if (!loc || !this.useCache) {
2146                 loc = this.getLocation(oTarget);
2147                 this.locationCache[oTarget.id] = loc;
2148
2149             }
2150
2151             if (!loc) {
2152                 return false;
2153             }
2154
2155             oTarget.cursorIsOver = loc.contains( pt );
2156
2157             // DragDrop is using this as a sanity check for the initial mousedown
2158             // in this case we are done.  In POINT mode, if the drag obj has no
2159             // contraints, we are also done. Otherwise we need to evaluate the
2160             // location of the target as related to the actual location of the
2161             // dragged element.
2162             var dc = this.dragCurrent;
2163             if (!dc || !dc.getTargetCoord ||
2164                     (!intersect && !dc.constrainX && !dc.constrainY)) {
2165                 return oTarget.cursorIsOver;
2166             }
2167
2168             oTarget.overlap = null;
2169
2170             // Get the current location of the drag element, this is the
2171             // location of the mouse event less the delta that represents
2172             // where the original mousedown happened on the element.  We
2173             // need to consider constraints and ticks as well.
2174             var pos = dc.getTargetCoord(pt.x, pt.y);
2175
2176             var el = dc.getDragEl();
2177             var curRegion = new Roo.lib.Region( pos.y,
2178                                                    pos.x + el.offsetWidth,
2179                                                    pos.y + el.offsetHeight,
2180                                                    pos.x );
2181
2182             var overlap = curRegion.intersect(loc);
2183
2184             if (overlap) {
2185                 oTarget.overlap = overlap;
2186                 return (intersect) ? true : oTarget.cursorIsOver;
2187             } else {
2188                 return false;
2189             }
2190         },
2191
2192         /**
2193          * unload event handler
2194          * @method _onUnload
2195          * @private
2196          * @static
2197          */
2198         _onUnload: function(e, me) {
2199             Roo.dd.DragDropMgr.unregAll();
2200         },
2201
2202         /**
2203          * Cleans up the drag and drop events and objects.
2204          * @method unregAll
2205          * @private
2206          * @static
2207          */
2208         unregAll: function() {
2209
2210             if (this.dragCurrent) {
2211                 this.stopDrag();
2212                 this.dragCurrent = null;
2213             }
2214
2215             this._execOnAll("unreg", []);
2216
2217             for (i in this.elementCache) {
2218                 delete this.elementCache[i];
2219             }
2220
2221             this.elementCache = {};
2222             this.ids = {};
2223         },
2224
2225         /**
2226          * A cache of DOM elements
2227          * @property elementCache
2228          * @private
2229          * @static
2230          */
2231         elementCache: {},
2232
2233         /**
2234          * Get the wrapper for the DOM element specified
2235          * @method getElWrapper
2236          * @param {String} id the id of the element to get
2237          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
2238          * @private
2239          * @deprecated This wrapper isn't that useful
2240          * @static
2241          */
2242         getElWrapper: function(id) {
2243             var oWrapper = this.elementCache[id];
2244             if (!oWrapper || !oWrapper.el) {
2245                 oWrapper = this.elementCache[id] =
2246                     new this.ElementWrapper(Roo.getDom(id));
2247             }
2248             return oWrapper;
2249         },
2250
2251         /**
2252          * Returns the actual DOM element
2253          * @method getElement
2254          * @param {String} id the id of the elment to get
2255          * @return {Object} The element
2256          * @deprecated use Roo.getDom instead
2257          * @static
2258          */
2259         getElement: function(id) {
2260             return Roo.getDom(id);
2261         },
2262
2263         /**
2264          * Returns the style property for the DOM element (i.e.,
2265          * document.getElById(id).style)
2266          * @method getCss
2267          * @param {String} id the id of the elment to get
2268          * @return {Object} The style property of the element
2269          * @deprecated use Roo.getDom instead
2270          * @static
2271          */
2272         getCss: function(id) {
2273             var el = Roo.getDom(id);
2274             return (el) ? el.style : null;
2275         },
2276
2277         /**
2278          * Inner class for cached elements
2279          * @class DragDropMgr.ElementWrapper
2280          * @for DragDropMgr
2281          * @private
2282          * @deprecated
2283          */
2284         ElementWrapper: function(el) {
2285                 /**
2286                  * The element
2287                  * @property el
2288                  */
2289                 this.el = el || null;
2290                 /**
2291                  * The element id
2292                  * @property id
2293                  */
2294                 this.id = this.el && el.id;
2295                 /**
2296                  * A reference to the style property
2297                  * @property css
2298                  */
2299                 this.css = this.el && el.style;
2300             },
2301
2302         /**
2303          * Returns the X position of an html element
2304          * @method getPosX
2305          * @param el the element for which to get the position
2306          * @return {int} the X coordinate
2307          * @for DragDropMgr
2308          * @deprecated use Roo.lib.Dom.getX instead
2309          * @static
2310          */
2311         getPosX: function(el) {
2312             return Roo.lib.Dom.getX(el);
2313         },
2314
2315         /**
2316          * Returns the Y position of an html element
2317          * @method getPosY
2318          * @param el the element for which to get the position
2319          * @return {int} the Y coordinate
2320          * @deprecated use Roo.lib.Dom.getY instead
2321          * @static
2322          */
2323         getPosY: function(el) {
2324             return Roo.lib.Dom.getY(el);
2325         },
2326
2327         /**
2328          * Swap two nodes.  In IE, we use the native method, for others we
2329          * emulate the IE behavior
2330          * @method swapNode
2331          * @param n1 the first node to swap
2332          * @param n2 the other node to swap
2333          * @static
2334          */
2335         swapNode: function(n1, n2) {
2336             if (n1.swapNode) {
2337                 n1.swapNode(n2);
2338             } else {
2339                 var p = n2.parentNode;
2340                 var s = n2.nextSibling;
2341
2342                 if (s == n1) {
2343                     p.insertBefore(n1, n2);
2344                 } else if (n2 == n1.nextSibling) {
2345                     p.insertBefore(n2, n1);
2346                 } else {
2347                     n1.parentNode.replaceChild(n2, n1);
2348                     p.insertBefore(n1, s);
2349                 }
2350             }
2351         },
2352
2353         /**
2354          * Returns the current scroll position
2355          * @method getScroll
2356          * @private
2357          * @static
2358          */
2359         getScroll: function () {
2360             var t, l, dde=document.documentElement, db=document.body;
2361             if (dde && (dde.scrollTop || dde.scrollLeft)) {
2362                 t = dde.scrollTop;
2363                 l = dde.scrollLeft;
2364             } else if (db) {
2365                 t = db.scrollTop;
2366                 l = db.scrollLeft;
2367             } else {
2368
2369             }
2370             return { top: t, left: l };
2371         },
2372
2373         /**
2374          * Returns the specified element style property
2375          * @method getStyle
2376          * @param {HTMLElement} el          the element
2377          * @param {string}      styleProp   the style property
2378          * @return {string} The value of the style property
2379          * @deprecated use Roo.lib.Dom.getStyle
2380          * @static
2381          */
2382         getStyle: function(el, styleProp) {
2383             return Roo.fly(el).getStyle(styleProp);
2384         },
2385
2386         /**
2387          * Gets the scrollTop
2388          * @method getScrollTop
2389          * @return {int} the document's scrollTop
2390          * @static
2391          */
2392         getScrollTop: function () { return this.getScroll().top; },
2393
2394         /**
2395          * Gets the scrollLeft
2396          * @method getScrollLeft
2397          * @return {int} the document's scrollTop
2398          * @static
2399          */
2400         getScrollLeft: function () { return this.getScroll().left; },
2401
2402         /**
2403          * Sets the x/y position of an element to the location of the
2404          * target element.
2405          * @method moveToEl
2406          * @param {HTMLElement} moveEl      The element to move
2407          * @param {HTMLElement} targetEl    The position reference element
2408          * @static
2409          */
2410         moveToEl: function (moveEl, targetEl) {
2411             var aCoord = Roo.lib.Dom.getXY(targetEl);
2412             Roo.lib.Dom.setXY(moveEl, aCoord);
2413         },
2414
2415         /**
2416          * Numeric array sort function
2417          * @method numericSort
2418          * @static
2419          */
2420         numericSort: function(a, b) { return (a - b); },
2421
2422         /**
2423          * Internal counter
2424          * @property _timeoutCount
2425          * @private
2426          * @static
2427          */
2428         _timeoutCount: 0,
2429
2430         /**
2431          * Trying to make the load order less important.  Without this we get
2432          * an error if this file is loaded before the Event Utility.
2433          * @method _addListeners
2434          * @private
2435          * @static
2436          */
2437         _addListeners: function() {
2438             var DDM = Roo.dd.DDM;
2439             if ( Roo.lib.Event && document ) {
2440                 DDM._onLoad();
2441             } else {
2442                 if (DDM._timeoutCount > 2000) {
2443                 } else {
2444                     setTimeout(DDM._addListeners, 10);
2445                     if (document && document.body) {
2446                         DDM._timeoutCount += 1;
2447                     }
2448                 }
2449             }
2450         },
2451
2452         /**
2453          * Recursively searches the immediate parent and all child nodes for
2454          * the handle element in order to determine wheter or not it was
2455          * clicked.
2456          * @method handleWasClicked
2457          * @param node the html element to inspect
2458          * @static
2459          */
2460         handleWasClicked: function(node, id) {
2461             if (this.isHandle(id, node.id)) {
2462                 return true;
2463             } else {
2464                 // check to see if this is a text node child of the one we want
2465                 var p = node.parentNode;
2466
2467                 while (p) {
2468                     if (this.isHandle(id, p.id)) {
2469                         return true;
2470                     } else {
2471                         p = p.parentNode;
2472                     }
2473                 }
2474             }
2475
2476             return false;
2477         }
2478
2479     };
2480
2481 }();
2482
2483 // shorter alias, save a few bytes
2484 Roo.dd.DDM = Roo.dd.DragDropMgr;
2485 Roo.dd.DDM._addListeners();
2486
2487 }/*
2488  * Based on:
2489  * Ext JS Library 1.1.1
2490  * Copyright(c) 2006-2007, Ext JS, LLC.
2491  *
2492  * Originally Released Under LGPL - original licence link has changed is not relivant.
2493  *
2494  * Fork - LGPL
2495  * <script type="text/javascript">
2496  */
2497
2498 /**
2499  * @class Roo.dd.DD
2500  * A DragDrop implementation where the linked element follows the
2501  * mouse cursor during a drag.
2502  * @extends Roo.dd.DragDrop
2503  * @constructor
2504  * @param {String} id the id of the linked element
2505  * @param {String} sGroup the group of related DragDrop items
2506  * @param {object} config an object containing configurable attributes
2507  *                Valid properties for DD:
2508  *                    scroll
2509  */
2510 Roo.dd.DD = function(id, sGroup, config) {
2511     if (id) {
2512         this.init(id, sGroup, config);
2513     }
2514 };
2515
2516 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
2517
2518     /**
2519      * When set to true, the utility automatically tries to scroll the browser
2520      * window wehn a drag and drop element is dragged near the viewport boundary.
2521      * Defaults to true.
2522      * @property scroll
2523      * @type boolean
2524      */
2525     scroll: true,
2526
2527     /**
2528      * Sets the pointer offset to the distance between the linked element's top
2529      * left corner and the location the element was clicked
2530      * @method autoOffset
2531      * @param {int} iPageX the X coordinate of the click
2532      * @param {int} iPageY the Y coordinate of the click
2533      */
2534     autoOffset: function(iPageX, iPageY) {
2535         var x = iPageX - this.startPageX;
2536         var y = iPageY - this.startPageY;
2537         this.setDelta(x, y);
2538     },
2539
2540     /**
2541      * Sets the pointer offset.  You can call this directly to force the
2542      * offset to be in a particular location (e.g., pass in 0,0 to set it
2543      * to the center of the object)
2544      * @method setDelta
2545      * @param {int} iDeltaX the distance from the left
2546      * @param {int} iDeltaY the distance from the top
2547      */
2548     setDelta: function(iDeltaX, iDeltaY) {
2549         this.deltaX = iDeltaX;
2550         this.deltaY = iDeltaY;
2551     },
2552
2553     /**
2554      * Sets the drag element to the location of the mousedown or click event,
2555      * maintaining the cursor location relative to the location on the element
2556      * that was clicked.  Override this if you want to place the element in a
2557      * location other than where the cursor is.
2558      * @method setDragElPos
2559      * @param {int} iPageX the X coordinate of the mousedown or drag event
2560      * @param {int} iPageY the Y coordinate of the mousedown or drag event
2561      */
2562     setDragElPos: function(iPageX, iPageY) {
2563         // the first time we do this, we are going to check to make sure
2564         // the element has css positioning
2565
2566         var el = this.getDragEl();
2567         this.alignElWithMouse(el, iPageX, iPageY);
2568     },
2569
2570     /**
2571      * Sets the element to the location of the mousedown or click event,
2572      * maintaining the cursor location relative to the location on the element
2573      * that was clicked.  Override this if you want to place the element in a
2574      * location other than where the cursor is.
2575      * @method alignElWithMouse
2576      * @param {HTMLElement} el the element to move
2577      * @param {int} iPageX the X coordinate of the mousedown or drag event
2578      * @param {int} iPageY the Y coordinate of the mousedown or drag event
2579      */
2580     alignElWithMouse: function(el, iPageX, iPageY) {
2581         var oCoord = this.getTargetCoord(iPageX, iPageY);
2582         var fly = el.dom ? el : Roo.fly(el);
2583         if (!this.deltaSetXY) {
2584             var aCoord = [oCoord.x, oCoord.y];
2585             fly.setXY(aCoord);
2586             var newLeft = fly.getLeft(true);
2587             var newTop  = fly.getTop(true);
2588             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
2589         } else {
2590             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
2591         }
2592
2593         this.cachePosition(oCoord.x, oCoord.y);
2594         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
2595         return oCoord;
2596     },
2597
2598     /**
2599      * Saves the most recent position so that we can reset the constraints and
2600      * tick marks on-demand.  We need to know this so that we can calculate the
2601      * number of pixels the element is offset from its original position.
2602      * @method cachePosition
2603      * @param iPageX the current x position (optional, this just makes it so we
2604      * don't have to look it up again)
2605      * @param iPageY the current y position (optional, this just makes it so we
2606      * don't have to look it up again)
2607      */
2608     cachePosition: function(iPageX, iPageY) {
2609         if (iPageX) {
2610             this.lastPageX = iPageX;
2611             this.lastPageY = iPageY;
2612         } else {
2613             var aCoord = Roo.lib.Dom.getXY(this.getEl());
2614             this.lastPageX = aCoord[0];
2615             this.lastPageY = aCoord[1];
2616         }
2617     },
2618
2619     /**
2620      * Auto-scroll the window if the dragged object has been moved beyond the
2621      * visible window boundary.
2622      * @method autoScroll
2623      * @param {int} x the drag element's x position
2624      * @param {int} y the drag element's y position
2625      * @param {int} h the height of the drag element
2626      * @param {int} w the width of the drag element
2627      * @private
2628      */
2629     autoScroll: function(x, y, h, w) {
2630
2631         if (this.scroll) {
2632             // The client height
2633             var clientH = Roo.lib.Dom.getViewWidth();
2634
2635             // The client width
2636             var clientW = Roo.lib.Dom.getViewHeight();
2637
2638             // The amt scrolled down
2639             var st = this.DDM.getScrollTop();
2640
2641             // The amt scrolled right
2642             var sl = this.DDM.getScrollLeft();
2643
2644             // Location of the bottom of the element
2645             var bot = h + y;
2646
2647             // Location of the right of the element
2648             var right = w + x;
2649
2650             // The distance from the cursor to the bottom of the visible area,
2651             // adjusted so that we don't scroll if the cursor is beyond the
2652             // element drag constraints
2653             var toBot = (clientH + st - y - this.deltaY);
2654
2655             // The distance from the cursor to the right of the visible area
2656             var toRight = (clientW + sl - x - this.deltaX);
2657
2658
2659             // How close to the edge the cursor must be before we scroll
2660             // var thresh = (document.all) ? 100 : 40;
2661             var thresh = 40;
2662
2663             // How many pixels to scroll per autoscroll op.  This helps to reduce
2664             // clunky scrolling. IE is more sensitive about this ... it needs this
2665             // value to be higher.
2666             var scrAmt = (document.all) ? 80 : 30;
2667
2668             // Scroll down if we are near the bottom of the visible page and the
2669             // obj extends below the crease
2670             if ( bot > clientH && toBot < thresh ) {
2671                 window.scrollTo(sl, st + scrAmt);
2672             }
2673
2674             // Scroll up if the window is scrolled down and the top of the object
2675             // goes above the top border
2676             if ( y < st && st > 0 && y - st < thresh ) {
2677                 window.scrollTo(sl, st - scrAmt);
2678             }
2679
2680             // Scroll right if the obj is beyond the right border and the cursor is
2681             // near the border.
2682             if ( right > clientW && toRight < thresh ) {
2683                 window.scrollTo(sl + scrAmt, st);
2684             }
2685
2686             // Scroll left if the window has been scrolled to the right and the obj
2687             // extends past the left border
2688             if ( x < sl && sl > 0 && x - sl < thresh ) {
2689                 window.scrollTo(sl - scrAmt, st);
2690             }
2691         }
2692     },
2693
2694     /**
2695      * Finds the location the element should be placed if we want to move
2696      * it to where the mouse location less the click offset would place us.
2697      * @method getTargetCoord
2698      * @param {int} iPageX the X coordinate of the click
2699      * @param {int} iPageY the Y coordinate of the click
2700      * @return an object that contains the coordinates (Object.x and Object.y)
2701      * @private
2702      */
2703     getTargetCoord: function(iPageX, iPageY) {
2704
2705
2706         var x = iPageX - this.deltaX;
2707         var y = iPageY - this.deltaY;
2708
2709         if (this.constrainX) {
2710             if (x < this.minX) { x = this.minX; }
2711             if (x > this.maxX) { x = this.maxX; }
2712         }
2713
2714         if (this.constrainY) {
2715             if (y < this.minY) { y = this.minY; }
2716             if (y > this.maxY) { y = this.maxY; }
2717         }
2718
2719         x = this.getTick(x, this.xTicks);
2720         y = this.getTick(y, this.yTicks);
2721
2722
2723         return {x:x, y:y};
2724     },
2725
2726     /*
2727      * Sets up config options specific to this class. Overrides
2728      * Roo.dd.DragDrop, but all versions of this method through the
2729      * inheritance chain are called
2730      */
2731     applyConfig: function() {
2732         Roo.dd.DD.superclass.applyConfig.call(this);
2733         this.scroll = (this.config.scroll !== false);
2734     },
2735
2736     /*
2737      * Event that fires prior to the onMouseDown event.  Overrides
2738      * Roo.dd.DragDrop.
2739      */
2740     b4MouseDown: function(e) {
2741         // this.resetConstraints();
2742         this.autoOffset(e.getPageX(),
2743                             e.getPageY());
2744     },
2745
2746     /*
2747      * Event that fires prior to the onDrag event.  Overrides
2748      * Roo.dd.DragDrop.
2749      */
2750     b4Drag: function(e) {
2751         this.setDragElPos(e.getPageX(),
2752                             e.getPageY());
2753     },
2754
2755     toString: function() {
2756         return ("DD " + this.id);
2757     }
2758
2759     //////////////////////////////////////////////////////////////////////////
2760     // Debugging ygDragDrop events that can be overridden
2761     //////////////////////////////////////////////////////////////////////////
2762     /*
2763     startDrag: function(x, y) {
2764     },
2765
2766     onDrag: function(e) {
2767     },
2768
2769     onDragEnter: function(e, id) {
2770     },
2771
2772     onDragOver: function(e, id) {
2773     },
2774
2775     onDragOut: function(e, id) {
2776     },
2777
2778     onDragDrop: function(e, id) {
2779     },
2780
2781     endDrag: function(e) {
2782     }
2783
2784     */
2785
2786 });/*
2787  * Based on:
2788  * Ext JS Library 1.1.1
2789  * Copyright(c) 2006-2007, Ext JS, LLC.
2790  *
2791  * Originally Released Under LGPL - original licence link has changed is not relivant.
2792  *
2793  * Fork - LGPL
2794  * <script type="text/javascript">
2795  */
2796
2797 /**
2798  * @class Roo.dd.DDProxy
2799  * A DragDrop implementation that inserts an empty, bordered div into
2800  * the document that follows the cursor during drag operations.  At the time of
2801  * the click, the frame div is resized to the dimensions of the linked html
2802  * element, and moved to the exact location of the linked element.
2803  *
2804  * References to the "frame" element refer to the single proxy element that
2805  * was created to be dragged in place of all DDProxy elements on the
2806  * page.
2807  *
2808  * @extends Roo.dd.DD
2809  * @constructor
2810  * @param {String} id the id of the linked html element
2811  * @param {String} sGroup the group of related DragDrop objects
2812  * @param {object} config an object containing configurable attributes
2813  *                Valid properties for DDProxy in addition to those in DragDrop:
2814  *                   resizeFrame, centerFrame, dragElId
2815  */
2816 Roo.dd.DDProxy = function(id, sGroup, config) {
2817     if (id) {
2818         this.init(id, sGroup, config);
2819         this.initFrame();
2820     }
2821 };
2822
2823 /**
2824  * The default drag frame div id
2825  * @property Roo.dd.DDProxy.dragElId
2826  * @type String
2827  * @static
2828  */
2829 Roo.dd.DDProxy.dragElId = "ygddfdiv";
2830
2831 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
2832
2833     /**
2834      * By default we resize the drag frame to be the same size as the element
2835      * we want to drag (this is to get the frame effect).  We can turn it off
2836      * if we want a different behavior.
2837      * @property resizeFrame
2838      * @type boolean
2839      */
2840     resizeFrame: true,
2841
2842     /**
2843      * By default the frame is positioned exactly where the drag element is, so
2844      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
2845      * you do not have constraints on the obj is to have the drag frame centered
2846      * around the cursor.  Set centerFrame to true for this effect.
2847      * @property centerFrame
2848      * @type boolean
2849      */
2850     centerFrame: false,
2851
2852     /**
2853      * Creates the proxy element if it does not yet exist
2854      * @method createFrame
2855      */
2856     createFrame: function() {
2857         var self = this;
2858         var body = document.body;
2859
2860         if (!body || !body.firstChild) {
2861             setTimeout( function() { self.createFrame(); }, 50 );
2862             return;
2863         }
2864
2865         var div = this.getDragEl();
2866
2867         if (!div) {
2868             div    = document.createElement("div");
2869             div.id = this.dragElId;
2870             var s  = div.style;
2871
2872             s.position   = "absolute";
2873             s.visibility = "hidden";
2874             s.cursor     = "move";
2875             s.border     = "2px solid #aaa";
2876             s.zIndex     = 999;
2877
2878             // appendChild can blow up IE if invoked prior to the window load event
2879             // while rendering a table.  It is possible there are other scenarios
2880             // that would cause this to happen as well.
2881             body.insertBefore(div, body.firstChild);
2882         }
2883     },
2884
2885     /**
2886      * Initialization for the drag frame element.  Must be called in the
2887      * constructor of all subclasses
2888      * @method initFrame
2889      */
2890     initFrame: function() {
2891         this.createFrame();
2892     },
2893
2894     applyConfig: function() {
2895         Roo.dd.DDProxy.superclass.applyConfig.call(this);
2896
2897         this.resizeFrame = (this.config.resizeFrame !== false);
2898         this.centerFrame = (this.config.centerFrame);
2899         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
2900     },
2901
2902     /**
2903      * Resizes the drag frame to the dimensions of the clicked object, positions
2904      * it over the object, and finally displays it
2905      * @method showFrame
2906      * @param {int} iPageX X click position
2907      * @param {int} iPageY Y click position
2908      * @private
2909      */
2910     showFrame: function(iPageX, iPageY) {
2911         var el = this.getEl();
2912         var dragEl = this.getDragEl();
2913         var s = dragEl.style;
2914
2915         this._resizeProxy();
2916
2917         if (this.centerFrame) {
2918             this.setDelta( Math.round(parseInt(s.width,  10)/2),
2919                            Math.round(parseInt(s.height, 10)/2) );
2920         }
2921
2922         this.setDragElPos(iPageX, iPageY);
2923
2924         Roo.fly(dragEl).show();
2925     },
2926
2927     /**
2928      * The proxy is automatically resized to the dimensions of the linked
2929      * element when a drag is initiated, unless resizeFrame is set to false
2930      * @method _resizeProxy
2931      * @private
2932      */
2933     _resizeProxy: function() {
2934         if (this.resizeFrame) {
2935             var el = this.getEl();
2936             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
2937         }
2938     },
2939
2940     // overrides Roo.dd.DragDrop
2941     b4MouseDown: function(e) {
2942         var x = e.getPageX();
2943         var y = e.getPageY();
2944         this.autoOffset(x, y);
2945         this.setDragElPos(x, y);
2946     },
2947
2948     // overrides Roo.dd.DragDrop
2949     b4StartDrag: function(x, y) {
2950         // show the drag frame
2951         this.showFrame(x, y);
2952     },
2953
2954     // overrides Roo.dd.DragDrop
2955     b4EndDrag: function(e) {
2956         Roo.fly(this.getDragEl()).hide();
2957     },
2958
2959     // overrides Roo.dd.DragDrop
2960     // By default we try to move the element to the last location of the frame.
2961     // This is so that the default behavior mirrors that of Roo.dd.DD.
2962     endDrag: function(e) {
2963
2964         var lel = this.getEl();
2965         var del = this.getDragEl();
2966
2967         // Show the drag frame briefly so we can get its position
2968         del.style.visibility = "";
2969
2970         this.beforeMove();
2971         // Hide the linked element before the move to get around a Safari
2972         // rendering bug.
2973         lel.style.visibility = "hidden";
2974         Roo.dd.DDM.moveToEl(lel, del);
2975         del.style.visibility = "hidden";
2976         lel.style.visibility = "";
2977
2978         this.afterDrag();
2979     },
2980
2981     beforeMove : function(){
2982
2983     },
2984
2985     afterDrag : function(){
2986
2987     },
2988
2989     toString: function() {
2990         return ("DDProxy " + this.id);
2991     }
2992
2993 });
2994 /*
2995  * Based on:
2996  * Ext JS Library 1.1.1
2997  * Copyright(c) 2006-2007, Ext JS, LLC.
2998  *
2999  * Originally Released Under LGPL - original licence link has changed is not relivant.
3000  *
3001  * Fork - LGPL
3002  * <script type="text/javascript">
3003  */
3004
3005  /**
3006  * @class Roo.dd.DDTarget
3007  * A DragDrop implementation that does not move, but can be a drop
3008  * target.  You would get the same result by simply omitting implementation
3009  * for the event callbacks, but this way we reduce the processing cost of the
3010  * event listener and the callbacks.
3011  * @extends Roo.dd.DragDrop
3012  * @constructor
3013  * @param {String} id the id of the element that is a drop target
3014  * @param {String} sGroup the group of related DragDrop objects
3015  * @param {object} config an object containing configurable attributes
3016  *                 Valid properties for DDTarget in addition to those in
3017  *                 DragDrop:
3018  *                    none
3019  */
3020 Roo.dd.DDTarget = function(id, sGroup, config) {
3021     if (id) {
3022         this.initTarget(id, sGroup, config);
3023     }
3024     if (config.listeners || config.events) { 
3025        Roo.dd.DragDrop.superclass.constructor.call(this,  { 
3026             listeners : config.listeners || {}, 
3027             events : config.events || {} 
3028         });    
3029     }
3030 };
3031
3032 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
3033 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
3034     toString: function() {
3035         return ("DDTarget " + this.id);
3036     }
3037 });
3038 /*
3039  * Based on:
3040  * Ext JS Library 1.1.1
3041  * Copyright(c) 2006-2007, Ext JS, LLC.
3042  *
3043  * Originally Released Under LGPL - original licence link has changed is not relivant.
3044  *
3045  * Fork - LGPL
3046  * <script type="text/javascript">
3047  */
3048  
3049
3050 /**
3051  * @class Roo.dd.ScrollManager
3052  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
3053  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
3054  * @singleton
3055  */
3056 Roo.dd.ScrollManager = function(){
3057     var ddm = Roo.dd.DragDropMgr;
3058     var els = {};
3059     var dragEl = null;
3060     var proc = {};
3061     
3062     
3063     
3064     var onStop = function(e){
3065         dragEl = null;
3066         clearProc();
3067     };
3068     
3069     var triggerRefresh = function(){
3070         if(ddm.dragCurrent){
3071              ddm.refreshCache(ddm.dragCurrent.groups);
3072         }
3073     };
3074     
3075     var doScroll = function(){
3076         if(ddm.dragCurrent){
3077             var dds = Roo.dd.ScrollManager;
3078             if(!dds.animate){
3079                 if(proc.el.scroll(proc.dir, dds.increment)){
3080                     triggerRefresh();
3081                 }
3082             }else{
3083                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
3084             }
3085         }
3086     };
3087     
3088     var clearProc = function(){
3089         if(proc.id){
3090             clearInterval(proc.id);
3091         }
3092         proc.id = 0;
3093         proc.el = null;
3094         proc.dir = "";
3095     };
3096     
3097     var startProc = function(el, dir){
3098          Roo.log('scroll startproc');
3099         clearProc();
3100         proc.el = el;
3101         proc.dir = dir;
3102         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
3103     };
3104     
3105     var onFire = function(e, isDrop){
3106        
3107         if(isDrop || !ddm.dragCurrent){ return; }
3108         var dds = Roo.dd.ScrollManager;
3109         if(!dragEl || dragEl != ddm.dragCurrent){
3110             dragEl = ddm.dragCurrent;
3111             // refresh regions on drag start
3112             dds.refreshCache();
3113         }
3114         
3115         var xy = Roo.lib.Event.getXY(e);
3116         var pt = new Roo.lib.Point(xy[0], xy[1]);
3117         for(var id in els){
3118             var el = els[id], r = el._region;
3119             if(r && r.contains(pt) && el.isScrollable()){
3120                 if(r.bottom - pt.y <= dds.thresh){
3121                     if(proc.el != el){
3122                         startProc(el, "down");
3123                     }
3124                     return;
3125                 }else if(r.right - pt.x <= dds.thresh){
3126                     if(proc.el != el){
3127                         startProc(el, "left");
3128                     }
3129                     return;
3130                 }else if(pt.y - r.top <= dds.thresh){
3131                     if(proc.el != el){
3132                         startProc(el, "up");
3133                     }
3134                     return;
3135                 }else if(pt.x - r.left <= dds.thresh){
3136                     if(proc.el != el){
3137                         startProc(el, "right");
3138                     }
3139                     return;
3140                 }
3141             }
3142         }
3143         clearProc();
3144     };
3145     
3146     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
3147     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
3148     
3149     return {
3150         /**
3151          * Registers new overflow element(s) to auto scroll
3152          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
3153          */
3154         register : function(el){
3155             if(el instanceof Array){
3156                 for(var i = 0, len = el.length; i < len; i++) {
3157                         this.register(el[i]);
3158                 }
3159             }else{
3160                 el = Roo.get(el);
3161                 els[el.id] = el;
3162             }
3163             Roo.dd.ScrollManager.els = els;
3164         },
3165         
3166         /**
3167          * Unregisters overflow element(s) so they are no longer scrolled
3168          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
3169          */
3170         unregister : function(el){
3171             if(el instanceof Array){
3172                 for(var i = 0, len = el.length; i < len; i++) {
3173                         this.unregister(el[i]);
3174                 }
3175             }else{
3176                 el = Roo.get(el);
3177                 delete els[el.id];
3178             }
3179         },
3180         
3181         /**
3182          * The number of pixels from the edge of a container the pointer needs to be to 
3183          * trigger scrolling (defaults to 25)
3184          * @type Number
3185          */
3186         thresh : 25,
3187         
3188         /**
3189          * The number of pixels to scroll in each scroll increment (defaults to 50)
3190          * @type Number
3191          */
3192         increment : 100,
3193         
3194         /**
3195          * The frequency of scrolls in milliseconds (defaults to 500)
3196          * @type Number
3197          */
3198         frequency : 500,
3199         
3200         /**
3201          * True to animate the scroll (defaults to true)
3202          * @type Boolean
3203          */
3204         animate: true,
3205         
3206         /**
3207          * The animation duration in seconds - 
3208          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
3209          * @type Number
3210          */
3211         animDuration: .4,
3212         
3213         /**
3214          * Manually trigger a cache refresh.
3215          */
3216         refreshCache : function(){
3217             for(var id in els){
3218                 if(typeof els[id] == 'object'){ // for people extending the object prototype
3219                     els[id]._region = els[id].getRegion();
3220                 }
3221             }
3222         }
3223     };
3224 }();/*
3225  * Based on:
3226  * Ext JS Library 1.1.1
3227  * Copyright(c) 2006-2007, Ext JS, LLC.
3228  *
3229  * Originally Released Under LGPL - original licence link has changed is not relivant.
3230  *
3231  * Fork - LGPL
3232  * <script type="text/javascript">
3233  */
3234  
3235
3236 /**
3237  * @class Roo.dd.Registry
3238  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
3239  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
3240  * @singleton
3241  */
3242 Roo.dd.Registry = function(){
3243     var elements = {}; 
3244     var handles = {}; 
3245     var autoIdSeed = 0;
3246
3247     var getId = function(el, autogen){
3248         if(typeof el == "string"){
3249             return el;
3250         }
3251         var id = el.id;
3252         if(!id && autogen !== false){
3253             id = "roodd-" + (++autoIdSeed);
3254             el.id = id;
3255         }
3256         return id;
3257     };
3258     
3259     return {
3260     /**
3261      * Register a drag drop element
3262      * @param {String|HTMLElement} element The id or DOM node to register
3263      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
3264      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
3265      * knows how to interpret, plus there are some specific properties known to the Registry that should be
3266      * populated in the data object (if applicable):
3267      * <pre>
3268 Value      Description<br />
3269 ---------  ------------------------------------------<br />
3270 handles    Array of DOM nodes that trigger dragging<br />
3271            for the element being registered<br />
3272 isHandle   True if the element passed in triggers<br />
3273            dragging itself, else false
3274 </pre>
3275      */
3276         register : function(el, data){
3277             data = data || {};
3278             if(typeof el == "string"){
3279                 el = document.getElementById(el);
3280             }
3281             data.ddel = el;
3282             elements[getId(el)] = data;
3283             if(data.isHandle !== false){
3284                 handles[data.ddel.id] = data;
3285             }
3286             if(data.handles){
3287                 var hs = data.handles;
3288                 for(var i = 0, len = hs.length; i < len; i++){
3289                         handles[getId(hs[i])] = data;
3290                 }
3291             }
3292         },
3293
3294     /**
3295      * Unregister a drag drop element
3296      * @param {String|HTMLElement}  element The id or DOM node to unregister
3297      */
3298         unregister : function(el){
3299             var id = getId(el, false);
3300             var data = elements[id];
3301             if(data){
3302                 delete elements[id];
3303                 if(data.handles){
3304                     var hs = data.handles;
3305                     for(var i = 0, len = hs.length; i < len; i++){
3306                         delete handles[getId(hs[i], false)];
3307                     }
3308                 }
3309             }
3310         },
3311
3312     /**
3313      * Returns the handle registered for a DOM Node by id
3314      * @param {String|HTMLElement} id The DOM node or id to look up
3315      * @return {Object} handle The custom handle data
3316      */
3317         getHandle : function(id){
3318             if(typeof id != "string"){ // must be element?
3319                 id = id.id;
3320             }
3321             return handles[id];
3322         },
3323
3324     /**
3325      * Returns the handle that is registered for the DOM node that is the target of the event
3326      * @param {Event} e The event
3327      * @return {Object} handle The custom handle data
3328      */
3329         getHandleFromEvent : function(e){
3330             var t = Roo.lib.Event.getTarget(e);
3331             return t ? handles[t.id] : null;
3332         },
3333
3334     /**
3335      * Returns a custom data object that is registered for a DOM node by id
3336      * @param {String|HTMLElement} id The DOM node or id to look up
3337      * @return {Object} data The custom data
3338      */
3339         getTarget : function(id){
3340             if(typeof id != "string"){ // must be element?
3341                 id = id.id;
3342             }
3343             return elements[id];
3344         },
3345
3346     /**
3347      * Returns a custom data object that is registered for the DOM node that is the target of the event
3348      * @param {Event} e The event
3349      * @return {Object} data The custom data
3350      */
3351         getTargetFromEvent : function(e){
3352             var t = Roo.lib.Event.getTarget(e);
3353             return t ? elements[t.id] || handles[t.id] : null;
3354         }
3355     };
3356 }();/*
3357  * Based on:
3358  * Ext JS Library 1.1.1
3359  * Copyright(c) 2006-2007, Ext JS, LLC.
3360  *
3361  * Originally Released Under LGPL - original licence link has changed is not relivant.
3362  *
3363  * Fork - LGPL
3364  * <script type="text/javascript">
3365  */
3366  
3367
3368 /**
3369  * @class Roo.dd.StatusProxy
3370  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
3371  * default drag proxy used by all Roo.dd components.
3372  * @constructor
3373  * @param {Object} config
3374  */
3375 Roo.dd.StatusProxy = function(config){
3376     Roo.apply(this, config);
3377     this.id = this.id || Roo.id();
3378     this.el = new Roo.Layer({
3379         dh: {
3380             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
3381                 {tag: "div", cls: "x-dd-drop-icon"},
3382                 {tag: "div", cls: "x-dd-drag-ghost"}
3383             ]
3384         }, 
3385         shadow: !config || config.shadow !== false
3386     });
3387     this.ghost = Roo.get(this.el.dom.childNodes[1]);
3388     this.dropStatus = this.dropNotAllowed;
3389 };
3390
3391 Roo.dd.StatusProxy.prototype = {
3392     /**
3393      * @cfg {String} dropAllowed
3394      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
3395      */
3396     dropAllowed : "x-dd-drop-ok",
3397     /**
3398      * @cfg {String} dropNotAllowed
3399      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
3400      */
3401     dropNotAllowed : "x-dd-drop-nodrop",
3402
3403     /**
3404      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
3405      * over the current target element.
3406      * @param {String} cssClass The css class for the new drop status indicator image
3407      */
3408     setStatus : function(cssClass){
3409         cssClass = cssClass || this.dropNotAllowed;
3410         if(this.dropStatus != cssClass){
3411             this.el.replaceClass(this.dropStatus, cssClass);
3412             this.dropStatus = cssClass;
3413         }
3414     },
3415
3416     /**
3417      * Resets the status indicator to the default dropNotAllowed value
3418      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
3419      */
3420     reset : function(clearGhost){
3421         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
3422         this.dropStatus = this.dropNotAllowed;
3423         if(clearGhost){
3424             this.ghost.update("");
3425         }
3426     },
3427
3428     /**
3429      * Updates the contents of the ghost element
3430      * @param {String} html The html that will replace the current innerHTML of the ghost element
3431      */
3432     update : function(html){
3433         if(typeof html == "string"){
3434             this.ghost.update(html);
3435         }else{
3436             this.ghost.update("");
3437             html.style.margin = "0";
3438             this.ghost.dom.appendChild(html);
3439         }
3440         // ensure float = none set?? cant remember why though.
3441         var el = this.ghost.dom.firstChild;
3442                 if(el){
3443                         Roo.fly(el).setStyle('float', 'none');
3444                 }
3445     },
3446     
3447     /**
3448      * Returns the underlying proxy {@link Roo.Layer}
3449      * @return {Roo.Layer} el
3450     */
3451     getEl : function(){
3452         return this.el;
3453     },
3454
3455     /**
3456      * Returns the ghost element
3457      * @return {Roo.Element} el
3458      */
3459     getGhost : function(){
3460         return this.ghost;
3461     },
3462
3463     /**
3464      * Hides the proxy
3465      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
3466      */
3467     hide : function(clear){
3468         this.el.hide();
3469         if(clear){
3470             this.reset(true);
3471         }
3472     },
3473
3474     /**
3475      * Stops the repair animation if it's currently running
3476      */
3477     stop : function(){
3478         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
3479             this.anim.stop();
3480         }
3481     },
3482
3483     /**
3484      * Displays this proxy
3485      */
3486     show : function(){
3487         this.el.show();
3488     },
3489
3490     /**
3491      * Force the Layer to sync its shadow and shim positions to the element
3492      */
3493     sync : function(){
3494         this.el.sync();
3495     },
3496
3497     /**
3498      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
3499      * invalid drop operation by the item being dragged.
3500      * @param {Array} xy The XY position of the element ([x, y])
3501      * @param {Function} callback The function to call after the repair is complete
3502      * @param {Object} scope The scope in which to execute the callback
3503      */
3504     repair : function(xy, callback, scope){
3505         this.callback = callback;
3506         this.scope = scope;
3507         if(xy && this.animRepair !== false){
3508             this.el.addClass("x-dd-drag-repair");
3509             this.el.hideUnders(true);
3510             this.anim = this.el.shift({
3511                 duration: this.repairDuration || .5,
3512                 easing: 'easeOut',
3513                 xy: xy,
3514                 stopFx: true,
3515                 callback: this.afterRepair,
3516                 scope: this
3517             });
3518         }else{
3519             this.afterRepair();
3520         }
3521     },
3522
3523     // private
3524     afterRepair : function(){
3525         this.hide(true);
3526         if(typeof this.callback == "function"){
3527             this.callback.call(this.scope || this);
3528         }
3529         this.callback = null;
3530         this.scope = null;
3531     }
3532 };/*
3533  * Based on:
3534  * Ext JS Library 1.1.1
3535  * Copyright(c) 2006-2007, Ext JS, LLC.
3536  *
3537  * Originally Released Under LGPL - original licence link has changed is not relivant.
3538  *
3539  * Fork - LGPL
3540  * <script type="text/javascript">
3541  */
3542
3543 /**
3544  * @class Roo.dd.DragSource
3545  * @extends Roo.dd.DDProxy
3546  * A simple class that provides the basic implementation needed to make any element draggable.
3547  * @constructor
3548  * @param {String/HTMLElement/Element} el The container element
3549  * @param {Object} config
3550  */
3551 Roo.dd.DragSource = function(el, config){
3552     this.el = Roo.get(el);
3553     this.dragData = {};
3554     
3555     Roo.apply(this, config);
3556     
3557     if(!this.proxy){
3558         this.proxy = new Roo.dd.StatusProxy();
3559     }
3560
3561     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
3562           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
3563     
3564     this.dragging = false;
3565 };
3566
3567 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
3568     /**
3569      * @cfg {String} dropAllowed
3570      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
3571      */
3572     dropAllowed : "x-dd-drop-ok",
3573     /**
3574      * @cfg {String} dropNotAllowed
3575      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
3576      */
3577     dropNotAllowed : "x-dd-drop-nodrop",
3578
3579     /**
3580      * Returns the data object associated with this drag source
3581      * @return {Object} data An object containing arbitrary data
3582      */
3583     getDragData : function(e){
3584         return this.dragData;
3585     },
3586
3587     // private
3588     onDragEnter : function(e, id){
3589         var target = Roo.dd.DragDropMgr.getDDById(id);
3590         this.cachedTarget = target;
3591         if(this.beforeDragEnter(target, e, id) !== false){
3592             if(target.isNotifyTarget){
3593                 var status = target.notifyEnter(this, e, this.dragData);
3594                 this.proxy.setStatus(status);
3595             }else{
3596                 this.proxy.setStatus(this.dropAllowed);
3597             }
3598             
3599             if(this.afterDragEnter){
3600                 /**
3601                  * An empty function by default, but provided so that you can perform a custom action
3602                  * when the dragged item enters the drop target by providing an implementation.
3603                  * @param {Roo.dd.DragDrop} target The drop target
3604                  * @param {Event} e The event object
3605                  * @param {String} id The id of the dragged element
3606                  * @method afterDragEnter
3607                  */
3608                 this.afterDragEnter(target, e, id);
3609             }
3610         }
3611     },
3612
3613     /**
3614      * An empty function by default, but provided so that you can perform a custom action
3615      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
3616      * @param {Roo.dd.DragDrop} target The drop target
3617      * @param {Event} e The event object
3618      * @param {String} id The id of the dragged element
3619      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3620      */
3621     beforeDragEnter : function(target, e, id){
3622         return true;
3623     },
3624
3625     // private
3626     alignElWithMouse: function() {
3627         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
3628         this.proxy.sync();
3629     },
3630
3631     // private
3632     onDragOver : function(e, id){
3633         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3634         if(this.beforeDragOver(target, e, id) !== false){
3635             if(target.isNotifyTarget){
3636                 var status = target.notifyOver(this, e, this.dragData);
3637                 this.proxy.setStatus(status);
3638             }
3639
3640             if(this.afterDragOver){
3641                 /**
3642                  * An empty function by default, but provided so that you can perform a custom action
3643                  * while the dragged item is over the drop target by providing an implementation.
3644                  * @param {Roo.dd.DragDrop} target The drop target
3645                  * @param {Event} e The event object
3646                  * @param {String} id The id of the dragged element
3647                  * @method afterDragOver
3648                  */
3649                 this.afterDragOver(target, e, id);
3650             }
3651         }
3652     },
3653
3654     /**
3655      * An empty function by default, but provided so that you can perform a custom action
3656      * while the dragged item is over the drop target and optionally cancel the onDragOver.
3657      * @param {Roo.dd.DragDrop} target The drop target
3658      * @param {Event} e The event object
3659      * @param {String} id The id of the dragged element
3660      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3661      */
3662     beforeDragOver : function(target, e, id){
3663         return true;
3664     },
3665
3666     // private
3667     onDragOut : function(e, id){
3668         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3669         if(this.beforeDragOut(target, e, id) !== false){
3670             if(target.isNotifyTarget){
3671                 target.notifyOut(this, e, this.dragData);
3672             }
3673             this.proxy.reset();
3674             if(this.afterDragOut){
3675                 /**
3676                  * An empty function by default, but provided so that you can perform a custom action
3677                  * after the dragged item is dragged out of the target without dropping.
3678                  * @param {Roo.dd.DragDrop} target The drop target
3679                  * @param {Event} e The event object
3680                  * @param {String} id The id of the dragged element
3681                  * @method afterDragOut
3682                  */
3683                 this.afterDragOut(target, e, id);
3684             }
3685         }
3686         this.cachedTarget = null;
3687     },
3688
3689     /**
3690      * An empty function by default, but provided so that you can perform a custom action before the dragged
3691      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
3692      * @param {Roo.dd.DragDrop} target The drop target
3693      * @param {Event} e The event object
3694      * @param {String} id The id of the dragged element
3695      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3696      */
3697     beforeDragOut : function(target, e, id){
3698         return true;
3699     },
3700     
3701     // private
3702     onDragDrop : function(e, id){
3703         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
3704         if(this.beforeDragDrop(target, e, id) !== false){
3705             if(target.isNotifyTarget){
3706                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
3707                     this.onValidDrop(target, e, id);
3708                 }else{
3709                     this.onInvalidDrop(target, e, id);
3710                 }
3711             }else{
3712                 this.onValidDrop(target, e, id);
3713             }
3714             
3715             if(this.afterDragDrop){
3716                 /**
3717                  * An empty function by default, but provided so that you can perform a custom action
3718                  * after a valid drag drop has occurred by providing an implementation.
3719                  * @param {Roo.dd.DragDrop} target The drop target
3720                  * @param {Event} e The event object
3721                  * @param {String} id The id of the dropped element
3722                  * @method afterDragDrop
3723                  */
3724                 this.afterDragDrop(target, e, id);
3725             }
3726         }
3727         delete this.cachedTarget;
3728     },
3729
3730     /**
3731      * An empty function by default, but provided so that you can perform a custom action before the dragged
3732      * item is dropped onto the target and optionally cancel the onDragDrop.
3733      * @param {Roo.dd.DragDrop} target The drop target
3734      * @param {Event} e The event object
3735      * @param {String} id The id of the dragged element
3736      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
3737      */
3738     beforeDragDrop : function(target, e, id){
3739         return true;
3740     },
3741
3742     // private
3743     onValidDrop : function(target, e, id){
3744         this.hideProxy();
3745         if(this.afterValidDrop){
3746             /**
3747              * An empty function by default, but provided so that you can perform a custom action
3748              * after a valid drop has occurred by providing an implementation.
3749              * @param {Object} target The target DD 
3750              * @param {Event} e The event object
3751              * @param {String} id The id of the dropped element
3752              * @method afterInvalidDrop
3753              */
3754             this.afterValidDrop(target, e, id);
3755         }
3756     },
3757
3758     // private
3759     getRepairXY : function(e, data){
3760         return this.el.getXY();  
3761     },
3762
3763     // private
3764     onInvalidDrop : function(target, e, id){
3765         this.beforeInvalidDrop(target, e, id);
3766         if(this.cachedTarget){
3767             if(this.cachedTarget.isNotifyTarget){
3768                 this.cachedTarget.notifyOut(this, e, this.dragData);
3769             }
3770             this.cacheTarget = null;
3771         }
3772         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
3773
3774         if(this.afterInvalidDrop){
3775             /**
3776              * An empty function by default, but provided so that you can perform a custom action
3777              * after an invalid drop has occurred by providing an implementation.
3778              * @param {Event} e The event object
3779              * @param {String} id The id of the dropped element
3780              * @method afterInvalidDrop
3781              */
3782             this.afterInvalidDrop(e, id);
3783         }
3784     },
3785
3786     // private
3787     afterRepair : function(){
3788         if(Roo.enableFx){
3789             this.el.highlight(this.hlColor || "c3daf9");
3790         }
3791         this.dragging = false;
3792     },
3793
3794     /**
3795      * An empty function by default, but provided so that you can perform a custom action after an invalid
3796      * drop has occurred.
3797      * @param {Roo.dd.DragDrop} target The drop target
3798      * @param {Event} e The event object
3799      * @param {String} id The id of the dragged element
3800      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
3801      */
3802     beforeInvalidDrop : function(target, e, id){
3803         return true;
3804     },
3805
3806     // private
3807     handleMouseDown : function(e){
3808         if(this.dragging) {
3809             return;
3810         }
3811         var data = this.getDragData(e);
3812         if(data && this.onBeforeDrag(data, e) !== false){
3813             this.dragData = data;
3814             this.proxy.stop();
3815             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
3816         } 
3817     },
3818
3819     /**
3820      * An empty function by default, but provided so that you can perform a custom action before the initial
3821      * drag event begins and optionally cancel it.
3822      * @param {Object} data An object containing arbitrary data to be shared with drop targets
3823      * @param {Event} e The event object
3824      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
3825      */
3826     onBeforeDrag : function(data, e){
3827         return true;
3828     },
3829
3830     /**
3831      * An empty function by default, but provided so that you can perform a custom action once the initial
3832      * drag event has begun.  The drag cannot be canceled from this function.
3833      * @param {Number} x The x position of the click on the dragged object
3834      * @param {Number} y The y position of the click on the dragged object
3835      */
3836     onStartDrag : Roo.emptyFn,
3837
3838     // private - YUI override
3839     startDrag : function(x, y){
3840         this.proxy.reset();
3841         this.dragging = true;
3842         this.proxy.update("");
3843         this.onInitDrag(x, y);
3844         this.proxy.show();
3845     },
3846
3847     // private
3848     onInitDrag : function(x, y){
3849         var clone = this.el.dom.cloneNode(true);
3850         clone.id = Roo.id(); // prevent duplicate ids
3851         this.proxy.update(clone);
3852         this.onStartDrag(x, y);
3853         return true;
3854     },
3855
3856     /**
3857      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
3858      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
3859      */
3860     getProxy : function(){
3861         return this.proxy;  
3862     },
3863
3864     /**
3865      * Hides the drag source's {@link Roo.dd.StatusProxy}
3866      */
3867     hideProxy : function(){
3868         this.proxy.hide();  
3869         this.proxy.reset(true);
3870         this.dragging = false;
3871     },
3872
3873     // private
3874     triggerCacheRefresh : function(){
3875         Roo.dd.DDM.refreshCache(this.groups);
3876     },
3877
3878     // private - override to prevent hiding
3879     b4EndDrag: function(e) {
3880     },
3881
3882     // private - override to prevent moving
3883     endDrag : function(e){
3884         this.onEndDrag(this.dragData, e);
3885     },
3886
3887     // private
3888     onEndDrag : function(data, e){
3889     },
3890     
3891     // private - pin to cursor
3892     autoOffset : function(x, y) {
3893         this.setDelta(-12, -20);
3894     }    
3895 });/*
3896  * Based on:
3897  * Ext JS Library 1.1.1
3898  * Copyright(c) 2006-2007, Ext JS, LLC.
3899  *
3900  * Originally Released Under LGPL - original licence link has changed is not relivant.
3901  *
3902  * Fork - LGPL
3903  * <script type="text/javascript">
3904  */
3905
3906
3907 /**
3908  * @class Roo.dd.DropTarget
3909  * @extends Roo.dd.DDTarget
3910  * A simple class that provides the basic implementation needed to make any element a drop target that can have
3911  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
3912  * @constructor
3913  * @param {String/HTMLElement/Element} el The container element
3914  * @param {Object} config
3915  */
3916 Roo.dd.DropTarget = function(el, config){
3917     this.el = Roo.get(el);
3918     
3919     var listeners = false; ;
3920     if (config && config.listeners) {
3921         listeners= config.listeners;
3922         delete config.listeners;
3923     }
3924     Roo.apply(this, config);
3925     
3926     if(this.containerScroll){
3927         Roo.dd.ScrollManager.register(this.el);
3928     }
3929     this.addEvents( {
3930          /**
3931          * @scope Roo.dd.DropTarget
3932          */
3933          
3934          /**
3935          * @event enter
3936          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
3937          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
3938          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
3939          * 
3940          * IMPORTANT : it should set this.overClass and this.dropAllowed
3941          * 
3942          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3943          * @param {Event} e The event
3944          * @param {Object} data An object containing arbitrary data supplied by the drag source
3945          */
3946         "enter" : true,
3947         
3948          /**
3949          * @event over
3950          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
3951          * This method will be called on every mouse movement while the drag source is over the drop target.
3952          * This default implementation simply returns the dropAllowed config value.
3953          * 
3954          * IMPORTANT : it should set this.dropAllowed
3955          * 
3956          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3957          * @param {Event} e The event
3958          * @param {Object} data An object containing arbitrary data supplied by the drag source
3959          
3960          */
3961         "over" : true,
3962         /**
3963          * @event out
3964          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
3965          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
3966          * overClass (if any) from the drop element.
3967          * 
3968          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3969          * @param {Event} e The event
3970          * @param {Object} data An object containing arbitrary data supplied by the drag source
3971          */
3972          "out" : true,
3973          
3974         /**
3975          * @event drop
3976          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
3977          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
3978          * implementation that does something to process the drop event and returns true so that the drag source's
3979          * repair action does not run.
3980          * 
3981          * IMPORTANT : it should set this.success
3982          * 
3983          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
3984          * @param {Event} e The event
3985          * @param {Object} data An object containing arbitrary data supplied by the drag source
3986         */
3987          "drop" : true
3988     });
3989             
3990      
3991     Roo.dd.DropTarget.superclass.constructor.call(  this, 
3992         this.el.dom, 
3993         this.ddGroup || this.group,
3994         {
3995             isTarget: true,
3996             listeners : listeners || {} 
3997            
3998         
3999         }
4000     );
4001
4002 };
4003
4004 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
4005     /**
4006      * @cfg {String} overClass
4007      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
4008      */
4009      /**
4010      * @cfg {String} ddGroup
4011      * The drag drop group to handle drop events for
4012      */
4013      
4014     /**
4015      * @cfg {String} dropAllowed
4016      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
4017      */
4018     dropAllowed : "x-dd-drop-ok",
4019     /**
4020      * @cfg {String} dropNotAllowed
4021      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
4022      */
4023     dropNotAllowed : "x-dd-drop-nodrop",
4024     /**
4025      * @cfg {boolean} success
4026      * set this after drop listener.. 
4027      */
4028     success : false,
4029     /**
4030      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
4031      * if the drop point is valid for over/enter..
4032      */
4033     valid : false,
4034     // private
4035     isTarget : true,
4036
4037     // private
4038     isNotifyTarget : true,
4039     
4040     /**
4041      * @hide
4042      */
4043     notifyEnter : function(dd, e, data)
4044     {
4045         this.valid = true;
4046         this.fireEvent('enter', dd, e, data);
4047         if(this.overClass){
4048             this.el.addClass(this.overClass);
4049         }
4050         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
4051             this.valid ? this.dropAllowed : this.dropNotAllowed
4052         );
4053     },
4054
4055     /**
4056      * @hide
4057      */
4058     notifyOver : function(dd, e, data)
4059     {
4060         this.valid = true;
4061         this.fireEvent('over', dd, e, data);
4062         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
4063             this.valid ? this.dropAllowed : this.dropNotAllowed
4064         );
4065     },
4066
4067     /**
4068      * @hide
4069      */
4070     notifyOut : function(dd, e, data)
4071     {
4072         this.fireEvent('out', dd, e, data);
4073         if(this.overClass){
4074             this.el.removeClass(this.overClass);
4075         }
4076     },
4077
4078     /**
4079      * @hide
4080      */
4081     notifyDrop : function(dd, e, data)
4082     {
4083         this.success = false;
4084         this.fireEvent('drop', dd, e, data);
4085         return this.success;
4086     }
4087 });/*
4088  * Based on:
4089  * Ext JS Library 1.1.1
4090  * Copyright(c) 2006-2007, Ext JS, LLC.
4091  *
4092  * Originally Released Under LGPL - original licence link has changed is not relivant.
4093  *
4094  * Fork - LGPL
4095  * <script type="text/javascript">
4096  */
4097
4098
4099 /**
4100  * @class Roo.dd.DragZone
4101  * @extends Roo.dd.DragSource
4102  * This class provides a container DD instance that proxies for multiple child node sources.<br />
4103  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
4104  * @constructor
4105  * @param {String/HTMLElement/Element} el The container element
4106  * @param {Object} config
4107  */
4108 Roo.dd.DragZone = function(el, config){
4109     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
4110     if(this.containerScroll){
4111         Roo.dd.ScrollManager.register(this.el);
4112     }
4113 };
4114
4115 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
4116     /**
4117      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
4118      * for auto scrolling during drag operations.
4119      */
4120     /**
4121      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
4122      * method after a failed drop (defaults to "c3daf9" - light blue)
4123      */
4124
4125     /**
4126      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
4127      * for a valid target to drag based on the mouse down. Override this method
4128      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
4129      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
4130      * @param {EventObject} e The mouse down event
4131      * @return {Object} The dragData
4132      */
4133     getDragData : function(e){
4134         return Roo.dd.Registry.getHandleFromEvent(e);
4135     },
4136     
4137     /**
4138      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
4139      * this.dragData.ddel
4140      * @param {Number} x The x position of the click on the dragged object
4141      * @param {Number} y The y position of the click on the dragged object
4142      * @return {Boolean} true to continue the drag, false to cancel
4143      */
4144     onInitDrag : function(x, y){
4145         this.proxy.update(this.dragData.ddel.cloneNode(true));
4146         this.onStartDrag(x, y);
4147         return true;
4148     },
4149     
4150     /**
4151      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
4152      */
4153     afterRepair : function(){
4154         if(Roo.enableFx){
4155             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
4156         }
4157         this.dragging = false;
4158     },
4159
4160     /**
4161      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
4162      * the XY of this.dragData.ddel
4163      * @param {EventObject} e The mouse up event
4164      * @return {Array} The xy location (e.g. [100, 200])
4165      */
4166     getRepairXY : function(e){
4167         return Roo.Element.fly(this.dragData.ddel).getXY();  
4168     }
4169 });/*
4170  * Based on:
4171  * Ext JS Library 1.1.1
4172  * Copyright(c) 2006-2007, Ext JS, LLC.
4173  *
4174  * Originally Released Under LGPL - original licence link has changed is not relivant.
4175  *
4176  * Fork - LGPL
4177  * <script type="text/javascript">
4178  */
4179 /**
4180  * @class Roo.dd.DropZone
4181  * @extends Roo.dd.DropTarget
4182  * This class provides a container DD instance that proxies for multiple child node targets.<br />
4183  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
4184  * @constructor
4185  * @param {String/HTMLElement/Element} el The container element
4186  * @param {Object} config
4187  */
4188 Roo.dd.DropZone = function(el, config){
4189     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
4190 };
4191
4192 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
4193     /**
4194      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
4195      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
4196      * provide your own custom lookup.
4197      * @param {Event} e The event
4198      * @return {Object} data The custom data
4199      */
4200     getTargetFromEvent : function(e){
4201         return Roo.dd.Registry.getTargetFromEvent(e);
4202     },
4203
4204     /**
4205      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
4206      * that it has registered.  This method has no default implementation and should be overridden to provide
4207      * node-specific processing if necessary.
4208      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
4209      * {@link #getTargetFromEvent} for this node)
4210      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4211      * @param {Event} e The event
4212      * @param {Object} data An object containing arbitrary data supplied by the drag source
4213      */
4214     onNodeEnter : function(n, dd, e, data){
4215         
4216     },
4217
4218     /**
4219      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
4220      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
4221      * overridden to provide the proper feedback.
4222      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4223      * {@link #getTargetFromEvent} for this node)
4224      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4225      * @param {Event} e The event
4226      * @param {Object} data An object containing arbitrary data supplied by the drag source
4227      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4228      * underlying {@link Roo.dd.StatusProxy} can be updated
4229      */
4230     onNodeOver : function(n, dd, e, data){
4231         return this.dropAllowed;
4232     },
4233
4234     /**
4235      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
4236      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
4237      * node-specific processing if necessary.
4238      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4239      * {@link #getTargetFromEvent} for this node)
4240      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4241      * @param {Event} e The event
4242      * @param {Object} data An object containing arbitrary data supplied by the drag source
4243      */
4244     onNodeOut : function(n, dd, e, data){
4245         
4246     },
4247
4248     /**
4249      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
4250      * the drop node.  The default implementation returns false, so it should be overridden to provide the
4251      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
4252      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
4253      * {@link #getTargetFromEvent} for this node)
4254      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4255      * @param {Event} e The event
4256      * @param {Object} data An object containing arbitrary data supplied by the drag source
4257      * @return {Boolean} True if the drop was valid, else false
4258      */
4259     onNodeDrop : function(n, dd, e, data){
4260         return false;
4261     },
4262
4263     /**
4264      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
4265      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
4266      * it should be overridden to provide the proper feedback if necessary.
4267      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4268      * @param {Event} e The event
4269      * @param {Object} data An object containing arbitrary data supplied by the drag source
4270      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4271      * underlying {@link Roo.dd.StatusProxy} can be updated
4272      */
4273     onContainerOver : function(dd, e, data){
4274         return this.dropNotAllowed;
4275     },
4276
4277     /**
4278      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
4279      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
4280      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
4281      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
4282      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4283      * @param {Event} e The event
4284      * @param {Object} data An object containing arbitrary data supplied by the drag source
4285      * @return {Boolean} True if the drop was valid, else false
4286      */
4287     onContainerDrop : function(dd, e, data){
4288         return false;
4289     },
4290
4291     /**
4292      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
4293      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
4294      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
4295      * you should override this method and provide a custom implementation.
4296      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4297      * @param {Event} e The event
4298      * @param {Object} data An object containing arbitrary data supplied by the drag source
4299      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4300      * underlying {@link Roo.dd.StatusProxy} can be updated
4301      */
4302     notifyEnter : function(dd, e, data){
4303         return this.dropNotAllowed;
4304     },
4305
4306     /**
4307      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
4308      * This method will be called on every mouse movement while the drag source is over the drop zone.
4309      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
4310      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
4311      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
4312      * registered node, it will call {@link #onContainerOver}.
4313      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4314      * @param {Event} e The event
4315      * @param {Object} data An object containing arbitrary data supplied by the drag source
4316      * @return {String} status The CSS class that communicates the drop status back to the source so that the
4317      * underlying {@link Roo.dd.StatusProxy} can be updated
4318      */
4319     notifyOver : function(dd, e, data){
4320         var n = this.getTargetFromEvent(e);
4321         if(!n){ // not over valid drop target
4322             if(this.lastOverNode){
4323                 this.onNodeOut(this.lastOverNode, dd, e, data);
4324                 this.lastOverNode = null;
4325             }
4326             return this.onContainerOver(dd, e, data);
4327         }
4328         if(this.lastOverNode != n){
4329             if(this.lastOverNode){
4330                 this.onNodeOut(this.lastOverNode, dd, e, data);
4331             }
4332             this.onNodeEnter(n, dd, e, data);
4333             this.lastOverNode = n;
4334         }
4335         return this.onNodeOver(n, dd, e, data);
4336     },
4337
4338     /**
4339      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
4340      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
4341      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
4342      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
4343      * @param {Event} e The event
4344      * @param {Object} data An object containing arbitrary data supplied by the drag zone
4345      */
4346     notifyOut : function(dd, e, data){
4347         if(this.lastOverNode){
4348             this.onNodeOut(this.lastOverNode, dd, e, data);
4349             this.lastOverNode = null;
4350         }
4351     },
4352
4353     /**
4354      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
4355      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
4356      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
4357      * otherwise it will call {@link #onContainerDrop}.
4358      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
4359      * @param {Event} e The event
4360      * @param {Object} data An object containing arbitrary data supplied by the drag source
4361      * @return {Boolean} True if the drop was valid, else false
4362      */
4363     notifyDrop : function(dd, e, data){
4364         if(this.lastOverNode){
4365             this.onNodeOut(this.lastOverNode, dd, e, data);
4366             this.lastOverNode = null;
4367         }
4368         var n = this.getTargetFromEvent(e);
4369         return n ?
4370             this.onNodeDrop(n, dd, e, data) :
4371             this.onContainerDrop(dd, e, data);
4372     },
4373
4374     // private
4375     triggerCacheRefresh : function(){
4376         Roo.dd.DDM.refreshCache(this.groups);
4377     }  
4378 });/*
4379  * Based on:
4380  * Ext JS Library 1.1.1
4381  * Copyright(c) 2006-2007, Ext JS, LLC.
4382  *
4383  * Originally Released Under LGPL - original licence link has changed is not relivant.
4384  *
4385  * Fork - LGPL
4386  * <script type="text/javascript">
4387  */
4388
4389
4390 /**
4391  * @class Roo.data.SortTypes
4392  * @singleton
4393  * Defines the default sorting (casting?) comparison functions used when sorting data.
4394  */
4395 Roo.data.SortTypes = {
4396     /**
4397      * Default sort that does nothing
4398      * @param {Mixed} s The value being converted
4399      * @return {Mixed} The comparison value
4400      */
4401     none : function(s){
4402         return s;
4403     },
4404     
4405     /**
4406      * The regular expression used to strip tags
4407      * @type {RegExp}
4408      * @property
4409      */
4410     stripTagsRE : /<\/?[^>]+>/gi,
4411     
4412     /**
4413      * Strips all HTML tags to sort on text only
4414      * @param {Mixed} s The value being converted
4415      * @return {String} The comparison value
4416      */
4417     asText : function(s){
4418         return String(s).replace(this.stripTagsRE, "");
4419     },
4420     
4421     /**
4422      * Strips all HTML tags to sort on text only - Case insensitive
4423      * @param {Mixed} s The value being converted
4424      * @return {String} The comparison value
4425      */
4426     asUCText : function(s){
4427         return String(s).toUpperCase().replace(this.stripTagsRE, "");
4428     },
4429     
4430     /**
4431      * Case insensitive string
4432      * @param {Mixed} s The value being converted
4433      * @return {String} The comparison value
4434      */
4435     asUCString : function(s) {
4436         return String(s).toUpperCase();
4437     },
4438     
4439     /**
4440      * Date sorting
4441      * @param {Mixed} s The value being converted
4442      * @return {Number} The comparison value
4443      */
4444     asDate : function(s) {
4445         if(!s){
4446             return 0;
4447         }
4448         if(s instanceof Date){
4449             return s.getTime();
4450         }
4451         return Date.parse(String(s));
4452     },
4453     
4454     /**
4455      * Float sorting
4456      * @param {Mixed} s The value being converted
4457      * @return {Float} The comparison value
4458      */
4459     asFloat : function(s) {
4460         var val = parseFloat(String(s).replace(/,/g, ""));
4461         if(isNaN(val)) val = 0;
4462         return val;
4463     },
4464     
4465     /**
4466      * Integer sorting
4467      * @param {Mixed} s The value being converted
4468      * @return {Number} The comparison value
4469      */
4470     asInt : function(s) {
4471         var val = parseInt(String(s).replace(/,/g, ""));
4472         if(isNaN(val)) val = 0;
4473         return val;
4474     }
4475 };/*
4476  * Based on:
4477  * Ext JS Library 1.1.1
4478  * Copyright(c) 2006-2007, Ext JS, LLC.
4479  *
4480  * Originally Released Under LGPL - original licence link has changed is not relivant.
4481  *
4482  * Fork - LGPL
4483  * <script type="text/javascript">
4484  */
4485
4486 /**
4487 * @class Roo.data.Record
4488  * Instances of this class encapsulate both record <em>definition</em> information, and record
4489  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
4490  * to access Records cached in an {@link Roo.data.Store} object.<br>
4491  * <p>
4492  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
4493  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
4494  * objects.<br>
4495  * <p>
4496  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
4497  * @constructor
4498  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
4499  * {@link #create}. The parameters are the same.
4500  * @param {Array} data An associative Array of data values keyed by the field name.
4501  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
4502  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
4503  * not specified an integer id is generated.
4504  */
4505 Roo.data.Record = function(data, id){
4506     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
4507     this.data = data;
4508 };
4509
4510 /**
4511  * Generate a constructor for a specific record layout.
4512  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
4513  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
4514  * Each field definition object may contain the following properties: <ul>
4515  * <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,
4516  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
4517  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
4518  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
4519  * is being used, then this is a string containing the javascript expression to reference the data relative to 
4520  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
4521  * to the data item relative to the record element. If the mapping expression is the same as the field name,
4522  * this may be omitted.</p></li>
4523  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
4524  * <ul><li>auto (Default, implies no conversion)</li>
4525  * <li>string</li>
4526  * <li>int</li>
4527  * <li>float</li>
4528  * <li>boolean</li>
4529  * <li>date</li></ul></p></li>
4530  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
4531  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
4532  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
4533  * by the Reader into an object that will be stored in the Record. It is passed the
4534  * following parameters:<ul>
4535  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
4536  * </ul></p></li>
4537  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
4538  * </ul>
4539  * <br>usage:<br><pre><code>
4540 var TopicRecord = Roo.data.Record.create(
4541     {name: 'title', mapping: 'topic_title'},
4542     {name: 'author', mapping: 'username'},
4543     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
4544     {name: 'lastPost', mapping: 'post_time', type: 'date'},
4545     {name: 'lastPoster', mapping: 'user2'},
4546     {name: 'excerpt', mapping: 'post_text'}
4547 );
4548
4549 var myNewRecord = new TopicRecord({
4550     title: 'Do my job please',
4551     author: 'noobie',
4552     totalPosts: 1,
4553     lastPost: new Date(),
4554     lastPoster: 'Animal',
4555     excerpt: 'No way dude!'
4556 });
4557 myStore.add(myNewRecord);
4558 </code></pre>
4559  * @method create
4560  * @static
4561  */
4562 Roo.data.Record.create = function(o){
4563     var f = function(){
4564         f.superclass.constructor.apply(this, arguments);
4565     };
4566     Roo.extend(f, Roo.data.Record);
4567     var p = f.prototype;
4568     p.fields = new Roo.util.MixedCollection(false, function(field){
4569         return field.name;
4570     });
4571     for(var i = 0, len = o.length; i < len; i++){
4572         p.fields.add(new Roo.data.Field(o[i]));
4573     }
4574     f.getField = function(name){
4575         return p.fields.get(name);  
4576     };
4577     return f;
4578 };
4579
4580 Roo.data.Record.AUTO_ID = 1000;
4581 Roo.data.Record.EDIT = 'edit';
4582 Roo.data.Record.REJECT = 'reject';
4583 Roo.data.Record.COMMIT = 'commit';
4584
4585 Roo.data.Record.prototype = {
4586     /**
4587      * Readonly flag - true if this record has been modified.
4588      * @type Boolean
4589      */
4590     dirty : false,
4591     editing : false,
4592     error: null,
4593     modified: null,
4594
4595     // private
4596     join : function(store){
4597         this.store = store;
4598     },
4599
4600     /**
4601      * Set the named field to the specified value.
4602      * @param {String} name The name of the field to set.
4603      * @param {Object} value The value to set the field to.
4604      */
4605     set : function(name, value){
4606         if(this.data[name] == value){
4607             return;
4608         }
4609         this.dirty = true;
4610         if(!this.modified){
4611             this.modified = {};
4612         }
4613         if(typeof this.modified[name] == 'undefined'){
4614             this.modified[name] = this.data[name];
4615         }
4616         this.data[name] = value;
4617         if(!this.editing && this.store){
4618             this.store.afterEdit(this);
4619         }       
4620     },
4621
4622     /**
4623      * Get the value of the named field.
4624      * @param {String} name The name of the field to get the value of.
4625      * @return {Object} The value of the field.
4626      */
4627     get : function(name){
4628         return this.data[name]; 
4629     },
4630
4631     // private
4632     beginEdit : function(){
4633         this.editing = true;
4634         this.modified = {}; 
4635     },
4636
4637     // private
4638     cancelEdit : function(){
4639         this.editing = false;
4640         delete this.modified;
4641     },
4642
4643     // private
4644     endEdit : function(){
4645         this.editing = false;
4646         if(this.dirty && this.store){
4647             this.store.afterEdit(this);
4648         }
4649     },
4650
4651     /**
4652      * Usually called by the {@link Roo.data.Store} which owns the Record.
4653      * Rejects all changes made to the Record since either creation, or the last commit operation.
4654      * Modified fields are reverted to their original values.
4655      * <p>
4656      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
4657      * of reject operations.
4658      */
4659     reject : function(){
4660         var m = this.modified;
4661         for(var n in m){
4662             if(typeof m[n] != "function"){
4663                 this.data[n] = m[n];
4664             }
4665         }
4666         this.dirty = false;
4667         delete this.modified;
4668         this.editing = false;
4669         if(this.store){
4670             this.store.afterReject(this);
4671         }
4672     },
4673
4674     /**
4675      * Usually called by the {@link Roo.data.Store} which owns the Record.
4676      * Commits all changes made to the Record since either creation, or the last commit operation.
4677      * <p>
4678      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
4679      * of commit operations.
4680      */
4681     commit : function(){
4682         this.dirty = false;
4683         delete this.modified;
4684         this.editing = false;
4685         if(this.store){
4686             this.store.afterCommit(this);
4687         }
4688     },
4689
4690     // private
4691     hasError : function(){
4692         return this.error != null;
4693     },
4694
4695     // private
4696     clearError : function(){
4697         this.error = null;
4698     },
4699
4700     /**
4701      * Creates a copy of this record.
4702      * @param {String} id (optional) A new record id if you don't want to use this record's id
4703      * @return {Record}
4704      */
4705     copy : function(newId) {
4706         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
4707     }
4708 };/*
4709  * Based on:
4710  * Ext JS Library 1.1.1
4711  * Copyright(c) 2006-2007, Ext JS, LLC.
4712  *
4713  * Originally Released Under LGPL - original licence link has changed is not relivant.
4714  *
4715  * Fork - LGPL
4716  * <script type="text/javascript">
4717  */
4718
4719
4720
4721 /**
4722  * @class Roo.data.Store
4723  * @extends Roo.util.Observable
4724  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
4725  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
4726  * <p>
4727  * 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
4728  * has no knowledge of the format of the data returned by the Proxy.<br>
4729  * <p>
4730  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
4731  * instances from the data object. These records are cached and made available through accessor functions.
4732  * @constructor
4733  * Creates a new Store.
4734  * @param {Object} config A config object containing the objects needed for the Store to access data,
4735  * and read the data into Records.
4736  */
4737 Roo.data.Store = function(config){
4738     this.data = new Roo.util.MixedCollection(false);
4739     this.data.getKey = function(o){
4740         return o.id;
4741     };
4742     this.baseParams = {};
4743     // private
4744     this.paramNames = {
4745         "start" : "start",
4746         "limit" : "limit",
4747         "sort" : "sort",
4748         "dir" : "dir",
4749         "multisort" : "_multisort"
4750     };
4751
4752     if(config && config.data){
4753         this.inlineData = config.data;
4754         delete config.data;
4755     }
4756
4757     Roo.apply(this, config);
4758     
4759     if(this.reader){ // reader passed
4760         this.reader = Roo.factory(this.reader, Roo.data);
4761         this.reader.xmodule = this.xmodule || false;
4762         if(!this.recordType){
4763             this.recordType = this.reader.recordType;
4764         }
4765         if(this.reader.onMetaChange){
4766             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
4767         }
4768     }
4769
4770     if(this.recordType){
4771         this.fields = this.recordType.prototype.fields;
4772     }
4773     this.modified = [];
4774
4775     this.addEvents({
4776         /**
4777          * @event datachanged
4778          * Fires when the data cache has changed, and a widget which is using this Store
4779          * as a Record cache should refresh its view.
4780          * @param {Store} this
4781          */
4782         datachanged : true,
4783         /**
4784          * @event metachange
4785          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
4786          * @param {Store} this
4787          * @param {Object} meta The JSON metadata
4788          */
4789         metachange : true,
4790         /**
4791          * @event add
4792          * Fires when Records have been added to the Store
4793          * @param {Store} this
4794          * @param {Roo.data.Record[]} records The array of Records added
4795          * @param {Number} index The index at which the record(s) were added
4796          */
4797         add : true,
4798         /**
4799          * @event remove
4800          * Fires when a Record has been removed from the Store
4801          * @param {Store} this
4802          * @param {Roo.data.Record} record The Record that was removed
4803          * @param {Number} index The index at which the record was removed
4804          */
4805         remove : true,
4806         /**
4807          * @event update
4808          * Fires when a Record has been updated
4809          * @param {Store} this
4810          * @param {Roo.data.Record} record The Record that was updated
4811          * @param {String} operation The update operation being performed.  Value may be one of:
4812          * <pre><code>
4813  Roo.data.Record.EDIT
4814  Roo.data.Record.REJECT
4815  Roo.data.Record.COMMIT
4816          * </code></pre>
4817          */
4818         update : true,
4819         /**
4820          * @event clear
4821          * Fires when the data cache has been cleared.
4822          * @param {Store} this
4823          */
4824         clear : true,
4825         /**
4826          * @event beforeload
4827          * Fires before a request is made for a new data object.  If the beforeload handler returns false
4828          * the load action will be canceled.
4829          * @param {Store} this
4830          * @param {Object} options The loading options that were specified (see {@link #load} for details)
4831          */
4832         beforeload : true,
4833         /**
4834          * @event beforeloadadd
4835          * Fires after a new set of Records has been loaded.
4836          * @param {Store} this
4837          * @param {Roo.data.Record[]} records The Records that were loaded
4838          * @param {Object} options The loading options that were specified (see {@link #load} for details)
4839          */
4840         beforeloadadd : true,
4841         /**
4842          * @event load
4843          * Fires after a new set of Records has been loaded, before they are added to the store.
4844          * @param {Store} this
4845          * @param {Roo.data.Record[]} records The Records that were loaded
4846          * @param {Object} options The loading options that were specified (see {@link #load} for details)
4847          * @params {Object} return from reader
4848          */
4849         load : true,
4850         /**
4851          * @event loadexception
4852          * Fires if an exception occurs in the Proxy during loading.
4853          * Called with the signature of the Proxy's "loadexception" event.
4854          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
4855          * 
4856          * @param {Proxy} 
4857          * @param {Object} return from JsonData.reader() - success, totalRecords, records
4858          * @param {Object} load options 
4859          * @param {Object} jsonData from your request (normally this contains the Exception)
4860          */
4861         loadexception : true
4862     });
4863     
4864     if(this.proxy){
4865         this.proxy = Roo.factory(this.proxy, Roo.data);
4866         this.proxy.xmodule = this.xmodule || false;
4867         this.relayEvents(this.proxy,  ["loadexception"]);
4868     }
4869     this.sortToggle = {};
4870     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
4871
4872     Roo.data.Store.superclass.constructor.call(this);
4873
4874     if(this.inlineData){
4875         this.loadData(this.inlineData);
4876         delete this.inlineData;
4877     }
4878 };
4879
4880 Roo.extend(Roo.data.Store, Roo.util.Observable, {
4881      /**
4882     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
4883     * without a remote query - used by combo/forms at present.
4884     */
4885     
4886     /**
4887     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
4888     */
4889     /**
4890     * @cfg {Array} data Inline data to be loaded when the store is initialized.
4891     */
4892     /**
4893     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
4894     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
4895     */
4896     /**
4897     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
4898     * on any HTTP request
4899     */
4900     /**
4901     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
4902     */
4903     /**
4904     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
4905     */
4906     multiSort: false,
4907     /**
4908     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
4909     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
4910     */
4911     remoteSort : false,
4912
4913     /**
4914     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
4915      * loaded or when a record is removed. (defaults to false).
4916     */
4917     pruneModifiedRecords : false,
4918
4919     // private
4920     lastOptions : null,
4921
4922     /**
4923      * Add Records to the Store and fires the add event.
4924      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
4925      */
4926     add : function(records){
4927         records = [].concat(records);
4928         for(var i = 0, len = records.length; i < len; i++){
4929             records[i].join(this);
4930         }
4931         var index = this.data.length;
4932         this.data.addAll(records);
4933         this.fireEvent("add", this, records, index);
4934     },
4935
4936     /**
4937      * Remove a Record from the Store and fires the remove event.
4938      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
4939      */
4940     remove : function(record){
4941         var index = this.data.indexOf(record);
4942         this.data.removeAt(index);
4943         if(this.pruneModifiedRecords){
4944             this.modified.remove(record);
4945         }
4946         this.fireEvent("remove", this, record, index);
4947     },
4948
4949     /**
4950      * Remove all Records from the Store and fires the clear event.
4951      */
4952     removeAll : function(){
4953         this.data.clear();
4954         if(this.pruneModifiedRecords){
4955             this.modified = [];
4956         }
4957         this.fireEvent("clear", this);
4958     },
4959
4960     /**
4961      * Inserts Records to the Store at the given index and fires the add event.
4962      * @param {Number} index The start index at which to insert the passed Records.
4963      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
4964      */
4965     insert : function(index, records){
4966         records = [].concat(records);
4967         for(var i = 0, len = records.length; i < len; i++){
4968             this.data.insert(index, records[i]);
4969             records[i].join(this);
4970         }
4971         this.fireEvent("add", this, records, index);
4972     },
4973
4974     /**
4975      * Get the index within the cache of the passed Record.
4976      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
4977      * @return {Number} The index of the passed Record. Returns -1 if not found.
4978      */
4979     indexOf : function(record){
4980         return this.data.indexOf(record);
4981     },
4982
4983     /**
4984      * Get the index within the cache of the Record with the passed id.
4985      * @param {String} id The id of the Record to find.
4986      * @return {Number} The index of the Record. Returns -1 if not found.
4987      */
4988     indexOfId : function(id){
4989         return this.data.indexOfKey(id);
4990     },
4991
4992     /**
4993      * Get the Record with the specified id.
4994      * @param {String} id The id of the Record to find.
4995      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
4996      */
4997     getById : function(id){
4998         return this.data.key(id);
4999     },
5000
5001     /**
5002      * Get the Record at the specified index.
5003      * @param {Number} index The index of the Record to find.
5004      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
5005      */
5006     getAt : function(index){
5007         return this.data.itemAt(index);
5008     },
5009
5010     /**
5011      * Returns a range of Records between specified indices.
5012      * @param {Number} startIndex (optional) The starting index (defaults to 0)
5013      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
5014      * @return {Roo.data.Record[]} An array of Records
5015      */
5016     getRange : function(start, end){
5017         return this.data.getRange(start, end);
5018     },
5019
5020     // private
5021     storeOptions : function(o){
5022         o = Roo.apply({}, o);
5023         delete o.callback;
5024         delete o.scope;
5025         this.lastOptions = o;
5026     },
5027
5028     /**
5029      * Loads the Record cache from the configured Proxy using the configured Reader.
5030      * <p>
5031      * If using remote paging, then the first load call must specify the <em>start</em>
5032      * and <em>limit</em> properties in the options.params property to establish the initial
5033      * position within the dataset, and the number of Records to cache on each read from the Proxy.
5034      * <p>
5035      * <strong>It is important to note that for remote data sources, loading is asynchronous,
5036      * and this call will return before the new data has been loaded. Perform any post-processing
5037      * in a callback function, or in a "load" event handler.</strong>
5038      * <p>
5039      * @param {Object} options An object containing properties which control loading options:<ul>
5040      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
5041      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
5042      * passed the following arguments:<ul>
5043      * <li>r : Roo.data.Record[]</li>
5044      * <li>options: Options object from the load call</li>
5045      * <li>success: Boolean success indicator</li></ul></li>
5046      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
5047      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
5048      * </ul>
5049      */
5050     load : function(options){
5051         options = options || {};
5052         if(this.fireEvent("beforeload", this, options) !== false){
5053             this.storeOptions(options);
5054             var p = Roo.apply(options.params || {}, this.baseParams);
5055             // if meta was not loaded from remote source.. try requesting it.
5056             if (!this.reader.metaFromRemote) {
5057                 p._requestMeta = 1;
5058             }
5059             if(this.sortInfo && this.remoteSort){
5060                 var pn = this.paramNames;
5061                 p[pn["sort"]] = this.sortInfo.field;
5062                 p[pn["dir"]] = this.sortInfo.direction;
5063             }
5064             if (this.multiSort) {
5065                 var pn = this.paramNames;
5066                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
5067             }
5068             
5069             this.proxy.load(p, this.reader, this.loadRecords, this, options);
5070         }
5071     },
5072
5073     /**
5074      * Reloads the Record cache from the configured Proxy using the configured Reader and
5075      * the options from the last load operation performed.
5076      * @param {Object} options (optional) An object containing properties which may override the options
5077      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
5078      * the most recently used options are reused).
5079      */
5080     reload : function(options){
5081         this.load(Roo.applyIf(options||{}, this.lastOptions));
5082     },
5083
5084     // private
5085     // Called as a callback by the Reader during a load operation.
5086     loadRecords : function(o, options, success){
5087         if(!o || success === false){
5088             if(success !== false){
5089                 this.fireEvent("load", this, [], options, o);
5090             }
5091             if(options.callback){
5092                 options.callback.call(options.scope || this, [], options, false);
5093             }
5094             return;
5095         }
5096         // if data returned failure - throw an exception.
5097         if (o.success === false) {
5098             // show a message if no listener is registered.
5099             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
5100                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
5101             }
5102             // loadmask wil be hooked into this..
5103             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
5104             return;
5105         }
5106         var r = o.records, t = o.totalRecords || r.length;
5107         
5108         this.fireEvent("beforeloadadd", this, r, options, o);
5109         
5110         if(!options || options.add !== true){
5111             if(this.pruneModifiedRecords){
5112                 this.modified = [];
5113             }
5114             for(var i = 0, len = r.length; i < len; i++){
5115                 r[i].join(this);
5116             }
5117             if(this.snapshot){
5118                 this.data = this.snapshot;
5119                 delete this.snapshot;
5120             }
5121             this.data.clear();
5122             this.data.addAll(r);
5123             this.totalLength = t;
5124             this.applySort();
5125             this.fireEvent("datachanged", this);
5126         }else{
5127             this.totalLength = Math.max(t, this.data.length+r.length);
5128             this.add(r);
5129         }
5130         this.fireEvent("load", this, r, options, o);
5131         if(options.callback){
5132             options.callback.call(options.scope || this, r, options, true);
5133         }
5134     },
5135
5136
5137     /**
5138      * Loads data from a passed data block. A Reader which understands the format of the data
5139      * must have been configured in the constructor.
5140      * @param {Object} data The data block from which to read the Records.  The format of the data expected
5141      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
5142      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
5143      */
5144     loadData : function(o, append){
5145         var r = this.reader.readRecords(o);
5146         this.loadRecords(r, {add: append}, true);
5147     },
5148
5149     /**
5150      * Gets the number of cached records.
5151      * <p>
5152      * <em>If using paging, this may not be the total size of the dataset. If the data object
5153      * used by the Reader contains the dataset size, then the getTotalCount() function returns
5154      * the data set size</em>
5155      */
5156     getCount : function(){
5157         return this.data.length || 0;
5158     },
5159
5160     /**
5161      * Gets the total number of records in the dataset as returned by the server.
5162      * <p>
5163      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
5164      * the dataset size</em>
5165      */
5166     getTotalCount : function(){
5167         return this.totalLength || 0;
5168     },
5169
5170     /**
5171      * Returns the sort state of the Store as an object with two properties:
5172      * <pre><code>
5173  field {String} The name of the field by which the Records are sorted
5174  direction {String} The sort order, "ASC" or "DESC"
5175      * </code></pre>
5176      */
5177     getSortState : function(){
5178         return this.sortInfo;
5179     },
5180
5181     // private
5182     applySort : function(){
5183         if(this.sortInfo && !this.remoteSort){
5184             var s = this.sortInfo, f = s.field;
5185             var st = this.fields.get(f).sortType;
5186             var fn = function(r1, r2){
5187                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
5188                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
5189             };
5190             this.data.sort(s.direction, fn);
5191             if(this.snapshot && this.snapshot != this.data){
5192                 this.snapshot.sort(s.direction, fn);
5193             }
5194         }
5195     },
5196
5197     /**
5198      * Sets the default sort column and order to be used by the next load operation.
5199      * @param {String} fieldName The name of the field to sort by.
5200      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
5201      */
5202     setDefaultSort : function(field, dir){
5203         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
5204     },
5205
5206     /**
5207      * Sort the Records.
5208      * If remote sorting is used, the sort is performed on the server, and the cache is
5209      * reloaded. If local sorting is used, the cache is sorted internally.
5210      * @param {String} fieldName The name of the field to sort by.
5211      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
5212      */
5213     sort : function(fieldName, dir){
5214         var f = this.fields.get(fieldName);
5215         if(!dir){
5216             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
5217             
5218             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
5219                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
5220             }else{
5221                 dir = f.sortDir;
5222             }
5223         }
5224         this.sortToggle[f.name] = dir;
5225         this.sortInfo = {field: f.name, direction: dir};
5226         if(!this.remoteSort){
5227             this.applySort();
5228             this.fireEvent("datachanged", this);
5229         }else{
5230             this.load(this.lastOptions);
5231         }
5232     },
5233
5234     /**
5235      * Calls the specified function for each of the Records in the cache.
5236      * @param {Function} fn The function to call. The Record is passed as the first parameter.
5237      * Returning <em>false</em> aborts and exits the iteration.
5238      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
5239      */
5240     each : function(fn, scope){
5241         this.data.each(fn, scope);
5242     },
5243
5244     /**
5245      * Gets all records modified since the last commit.  Modified records are persisted across load operations
5246      * (e.g., during paging).
5247      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
5248      */
5249     getModifiedRecords : function(){
5250         return this.modified;
5251     },
5252
5253     // private
5254     createFilterFn : function(property, value, anyMatch){
5255         if(!value.exec){ // not a regex
5256             value = String(value);
5257             if(value.length == 0){
5258                 return false;
5259             }
5260             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
5261         }
5262         return function(r){
5263             return value.test(r.data[property]);
5264         };
5265     },
5266
5267     /**
5268      * Sums the value of <i>property</i> for each record between start and end and returns the result.
5269      * @param {String} property A field on your records
5270      * @param {Number} start The record index to start at (defaults to 0)
5271      * @param {Number} end The last record index to include (defaults to length - 1)
5272      * @return {Number} The sum
5273      */
5274     sum : function(property, start, end){
5275         var rs = this.data.items, v = 0;
5276         start = start || 0;
5277         end = (end || end === 0) ? end : rs.length-1;
5278
5279         for(var i = start; i <= end; i++){
5280             v += (rs[i].data[property] || 0);
5281         }
5282         return v;
5283     },
5284
5285     /**
5286      * Filter the records by a specified property.
5287      * @param {String} field A field on your records
5288      * @param {String/RegExp} value Either a string that the field
5289      * should start with or a RegExp to test against the field
5290      * @param {Boolean} anyMatch True to match any part not just the beginning
5291      */
5292     filter : function(property, value, anyMatch){
5293         var fn = this.createFilterFn(property, value, anyMatch);
5294         return fn ? this.filterBy(fn) : this.clearFilter();
5295     },
5296
5297     /**
5298      * Filter by a function. The specified function will be called with each
5299      * record in this data source. If the function returns true the record is included,
5300      * otherwise it is filtered.
5301      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
5302      * @param {Object} scope (optional) The scope of the function (defaults to this)
5303      */
5304     filterBy : function(fn, scope){
5305         this.snapshot = this.snapshot || this.data;
5306         this.data = this.queryBy(fn, scope||this);
5307         this.fireEvent("datachanged", this);
5308     },
5309
5310     /**
5311      * Query the records by a specified property.
5312      * @param {String} field A field on your records
5313      * @param {String/RegExp} value Either a string that the field
5314      * should start with or a RegExp to test against the field
5315      * @param {Boolean} anyMatch True to match any part not just the beginning
5316      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
5317      */
5318     query : function(property, value, anyMatch){
5319         var fn = this.createFilterFn(property, value, anyMatch);
5320         return fn ? this.queryBy(fn) : this.data.clone();
5321     },
5322
5323     /**
5324      * Query by a function. The specified function will be called with each
5325      * record in this data source. If the function returns true the record is included
5326      * in the results.
5327      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
5328      * @param {Object} scope (optional) The scope of the function (defaults to this)
5329       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
5330      **/
5331     queryBy : function(fn, scope){
5332         var data = this.snapshot || this.data;
5333         return data.filterBy(fn, scope||this);
5334     },
5335
5336     /**
5337      * Collects unique values for a particular dataIndex from this store.
5338      * @param {String} dataIndex The property to collect
5339      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
5340      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
5341      * @return {Array} An array of the unique values
5342      **/
5343     collect : function(dataIndex, allowNull, bypassFilter){
5344         var d = (bypassFilter === true && this.snapshot) ?
5345                 this.snapshot.items : this.data.items;
5346         var v, sv, r = [], l = {};
5347         for(var i = 0, len = d.length; i < len; i++){
5348             v = d[i].data[dataIndex];
5349             sv = String(v);
5350             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
5351                 l[sv] = true;
5352                 r[r.length] = v;
5353             }
5354         }
5355         return r;
5356     },
5357
5358     /**
5359      * Revert to a view of the Record cache with no filtering applied.
5360      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
5361      */
5362     clearFilter : function(suppressEvent){
5363         if(this.snapshot && this.snapshot != this.data){
5364             this.data = this.snapshot;
5365             delete this.snapshot;
5366             if(suppressEvent !== true){
5367                 this.fireEvent("datachanged", this);
5368             }
5369         }
5370     },
5371
5372     // private
5373     afterEdit : function(record){
5374         if(this.modified.indexOf(record) == -1){
5375             this.modified.push(record);
5376         }
5377         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
5378     },
5379     
5380     // private
5381     afterReject : function(record){
5382         this.modified.remove(record);
5383         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
5384     },
5385
5386     // private
5387     afterCommit : function(record){
5388         this.modified.remove(record);
5389         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
5390     },
5391
5392     /**
5393      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
5394      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
5395      */
5396     commitChanges : function(){
5397         var m = this.modified.slice(0);
5398         this.modified = [];
5399         for(var i = 0, len = m.length; i < len; i++){
5400             m[i].commit();
5401         }
5402     },
5403
5404     /**
5405      * Cancel outstanding changes on all changed records.
5406      */
5407     rejectChanges : function(){
5408         var m = this.modified.slice(0);
5409         this.modified = [];
5410         for(var i = 0, len = m.length; i < len; i++){
5411             m[i].reject();
5412         }
5413     },
5414
5415     onMetaChange : function(meta, rtype, o){
5416         this.recordType = rtype;
5417         this.fields = rtype.prototype.fields;
5418         delete this.snapshot;
5419         this.sortInfo = meta.sortInfo || this.sortInfo;
5420         this.modified = [];
5421         this.fireEvent('metachange', this, this.reader.meta);
5422     }
5423 });/*
5424  * Based on:
5425  * Ext JS Library 1.1.1
5426  * Copyright(c) 2006-2007, Ext JS, LLC.
5427  *
5428  * Originally Released Under LGPL - original licence link has changed is not relivant.
5429  *
5430  * Fork - LGPL
5431  * <script type="text/javascript">
5432  */
5433
5434 /**
5435  * @class Roo.data.SimpleStore
5436  * @extends Roo.data.Store
5437  * Small helper class to make creating Stores from Array data easier.
5438  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
5439  * @cfg {Array} fields An array of field definition objects, or field name strings.
5440  * @cfg {Array} data The multi-dimensional array of data
5441  * @constructor
5442  * @param {Object} config
5443  */
5444 Roo.data.SimpleStore = function(config){
5445     Roo.data.SimpleStore.superclass.constructor.call(this, {
5446         isLocal : true,
5447         reader: new Roo.data.ArrayReader({
5448                 id: config.id
5449             },
5450             Roo.data.Record.create(config.fields)
5451         ),
5452         proxy : new Roo.data.MemoryProxy(config.data)
5453     });
5454     this.load();
5455 };
5456 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
5457  * Based on:
5458  * Ext JS Library 1.1.1
5459  * Copyright(c) 2006-2007, Ext JS, LLC.
5460  *
5461  * Originally Released Under LGPL - original licence link has changed is not relivant.
5462  *
5463  * Fork - LGPL
5464  * <script type="text/javascript">
5465  */
5466
5467 /**
5468 /**
5469  * @extends Roo.data.Store
5470  * @class Roo.data.JsonStore
5471  * Small helper class to make creating Stores for JSON data easier. <br/>
5472 <pre><code>
5473 var store = new Roo.data.JsonStore({
5474     url: 'get-images.php',
5475     root: 'images',
5476     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
5477 });
5478 </code></pre>
5479  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
5480  * JsonReader and HttpProxy (unless inline data is provided).</b>
5481  * @cfg {Array} fields An array of field definition objects, or field name strings.
5482  * @constructor
5483  * @param {Object} config
5484  */
5485 Roo.data.JsonStore = function(c){
5486     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
5487         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
5488         reader: new Roo.data.JsonReader(c, c.fields)
5489     }));
5490 };
5491 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
5492  * Based on:
5493  * Ext JS Library 1.1.1
5494  * Copyright(c) 2006-2007, Ext JS, LLC.
5495  *
5496  * Originally Released Under LGPL - original licence link has changed is not relivant.
5497  *
5498  * Fork - LGPL
5499  * <script type="text/javascript">
5500  */
5501
5502  
5503 Roo.data.Field = function(config){
5504     if(typeof config == "string"){
5505         config = {name: config};
5506     }
5507     Roo.apply(this, config);
5508     
5509     if(!this.type){
5510         this.type = "auto";
5511     }
5512     
5513     var st = Roo.data.SortTypes;
5514     // named sortTypes are supported, here we look them up
5515     if(typeof this.sortType == "string"){
5516         this.sortType = st[this.sortType];
5517     }
5518     
5519     // set default sortType for strings and dates
5520     if(!this.sortType){
5521         switch(this.type){
5522             case "string":
5523                 this.sortType = st.asUCString;
5524                 break;
5525             case "date":
5526                 this.sortType = st.asDate;
5527                 break;
5528             default:
5529                 this.sortType = st.none;
5530         }
5531     }
5532
5533     // define once
5534     var stripRe = /[\$,%]/g;
5535
5536     // prebuilt conversion function for this field, instead of
5537     // switching every time we're reading a value
5538     if(!this.convert){
5539         var cv, dateFormat = this.dateFormat;
5540         switch(this.type){
5541             case "":
5542             case "auto":
5543             case undefined:
5544                 cv = function(v){ return v; };
5545                 break;
5546             case "string":
5547                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
5548                 break;
5549             case "int":
5550                 cv = function(v){
5551                     return v !== undefined && v !== null && v !== '' ?
5552                            parseInt(String(v).replace(stripRe, ""), 10) : '';
5553                     };
5554                 break;
5555             case "float":
5556                 cv = function(v){
5557                     return v !== undefined && v !== null && v !== '' ?
5558                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
5559                     };
5560                 break;
5561             case "bool":
5562             case "boolean":
5563                 cv = function(v){ return v === true || v === "true" || v == 1; };
5564                 break;
5565             case "date":
5566                 cv = function(v){
5567                     if(!v){
5568                         return '';
5569                     }
5570                     if(v instanceof Date){
5571                         return v;
5572                     }
5573                     if(dateFormat){
5574                         if(dateFormat == "timestamp"){
5575                             return new Date(v*1000);
5576                         }
5577                         return Date.parseDate(v, dateFormat);
5578                     }
5579                     var parsed = Date.parse(v);
5580                     return parsed ? new Date(parsed) : null;
5581                 };
5582              break;
5583             
5584         }
5585         this.convert = cv;
5586     }
5587 };
5588
5589 Roo.data.Field.prototype = {
5590     dateFormat: null,
5591     defaultValue: "",
5592     mapping: null,
5593     sortType : null,
5594     sortDir : "ASC"
5595 };/*
5596  * Based on:
5597  * Ext JS Library 1.1.1
5598  * Copyright(c) 2006-2007, Ext JS, LLC.
5599  *
5600  * Originally Released Under LGPL - original licence link has changed is not relivant.
5601  *
5602  * Fork - LGPL
5603  * <script type="text/javascript">
5604  */
5605  
5606 // Base class for reading structured data from a data source.  This class is intended to be
5607 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
5608
5609 /**
5610  * @class Roo.data.DataReader
5611  * Base class for reading structured data from a data source.  This class is intended to be
5612  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
5613  */
5614
5615 Roo.data.DataReader = function(meta, recordType){
5616     
5617     this.meta = meta;
5618     
5619     this.recordType = recordType instanceof Array ? 
5620         Roo.data.Record.create(recordType) : recordType;
5621 };
5622
5623 Roo.data.DataReader.prototype = {
5624      /**
5625      * Create an empty record
5626      * @param {Object} data (optional) - overlay some values
5627      * @return {Roo.data.Record} record created.
5628      */
5629     newRow :  function(d) {
5630         var da =  {};
5631         this.recordType.prototype.fields.each(function(c) {
5632             switch( c.type) {
5633                 case 'int' : da[c.name] = 0; break;
5634                 case 'date' : da[c.name] = new Date(); break;
5635                 case 'float' : da[c.name] = 0.0; break;
5636                 case 'boolean' : da[c.name] = false; break;
5637                 default : da[c.name] = ""; break;
5638             }
5639             
5640         });
5641         return new this.recordType(Roo.apply(da, d));
5642     }
5643     
5644 };/*
5645  * Based on:
5646  * Ext JS Library 1.1.1
5647  * Copyright(c) 2006-2007, Ext JS, LLC.
5648  *
5649  * Originally Released Under LGPL - original licence link has changed is not relivant.
5650  *
5651  * Fork - LGPL
5652  * <script type="text/javascript">
5653  */
5654
5655 /**
5656  * @class Roo.data.DataProxy
5657  * @extends Roo.data.Observable
5658  * This class is an abstract base class for implementations which provide retrieval of
5659  * unformatted data objects.<br>
5660  * <p>
5661  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
5662  * (of the appropriate type which knows how to parse the data object) to provide a block of
5663  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
5664  * <p>
5665  * Custom implementations must implement the load method as described in
5666  * {@link Roo.data.HttpProxy#load}.
5667  */
5668 Roo.data.DataProxy = function(){
5669     this.addEvents({
5670         /**
5671          * @event beforeload
5672          * Fires before a network request is made to retrieve a data object.
5673          * @param {Object} This DataProxy object.
5674          * @param {Object} params The params parameter to the load function.
5675          */
5676         beforeload : true,
5677         /**
5678          * @event load
5679          * Fires before the load method's callback is called.
5680          * @param {Object} This DataProxy object.
5681          * @param {Object} o The data object.
5682          * @param {Object} arg The callback argument object passed to the load function.
5683          */
5684         load : true,
5685         /**
5686          * @event loadexception
5687          * Fires if an Exception occurs during data retrieval.
5688          * @param {Object} This DataProxy object.
5689          * @param {Object} o The data object.
5690          * @param {Object} arg The callback argument object passed to the load function.
5691          * @param {Object} e The Exception.
5692          */
5693         loadexception : true
5694     });
5695     Roo.data.DataProxy.superclass.constructor.call(this);
5696 };
5697
5698 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
5699
5700     /**
5701      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
5702      */
5703 /*
5704  * Based on:
5705  * Ext JS Library 1.1.1
5706  * Copyright(c) 2006-2007, Ext JS, LLC.
5707  *
5708  * Originally Released Under LGPL - original licence link has changed is not relivant.
5709  *
5710  * Fork - LGPL
5711  * <script type="text/javascript">
5712  */
5713 /**
5714  * @class Roo.data.MemoryProxy
5715  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
5716  * to the Reader when its load method is called.
5717  * @constructor
5718  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
5719  */
5720 Roo.data.MemoryProxy = function(data){
5721     if (data.data) {
5722         data = data.data;
5723     }
5724     Roo.data.MemoryProxy.superclass.constructor.call(this);
5725     this.data = data;
5726 };
5727
5728 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
5729     /**
5730      * Load data from the requested source (in this case an in-memory
5731      * data object passed to the constructor), read the data object into
5732      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
5733      * process that block using the passed callback.
5734      * @param {Object} params This parameter is not used by the MemoryProxy class.
5735      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5736      * object into a block of Roo.data.Records.
5737      * @param {Function} callback The function into which to pass the block of Roo.data.records.
5738      * The function must be passed <ul>
5739      * <li>The Record block object</li>
5740      * <li>The "arg" argument from the load function</li>
5741      * <li>A boolean success indicator</li>
5742      * </ul>
5743      * @param {Object} scope The scope in which to call the callback
5744      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5745      */
5746     load : function(params, reader, callback, scope, arg){
5747         params = params || {};
5748         var result;
5749         try {
5750             result = reader.readRecords(this.data);
5751         }catch(e){
5752             this.fireEvent("loadexception", this, arg, null, e);
5753             callback.call(scope, null, arg, false);
5754             return;
5755         }
5756         callback.call(scope, result, arg, true);
5757     },
5758     
5759     // private
5760     update : function(params, records){
5761         
5762     }
5763 });/*
5764  * Based on:
5765  * Ext JS Library 1.1.1
5766  * Copyright(c) 2006-2007, Ext JS, LLC.
5767  *
5768  * Originally Released Under LGPL - original licence link has changed is not relivant.
5769  *
5770  * Fork - LGPL
5771  * <script type="text/javascript">
5772  */
5773 /**
5774  * @class Roo.data.HttpProxy
5775  * @extends Roo.data.DataProxy
5776  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
5777  * configured to reference a certain URL.<br><br>
5778  * <p>
5779  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
5780  * from which the running page was served.<br><br>
5781  * <p>
5782  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
5783  * <p>
5784  * Be aware that to enable the browser to parse an XML document, the server must set
5785  * the Content-Type header in the HTTP response to "text/xml".
5786  * @constructor
5787  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
5788  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
5789  * will be used to make the request.
5790  */
5791 Roo.data.HttpProxy = function(conn){
5792     Roo.data.HttpProxy.superclass.constructor.call(this);
5793     // is conn a conn config or a real conn?
5794     this.conn = conn;
5795     this.useAjax = !conn || !conn.events;
5796   
5797 };
5798
5799 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
5800     // thse are take from connection...
5801     
5802     /**
5803      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
5804      */
5805     /**
5806      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
5807      * extra parameters to each request made by this object. (defaults to undefined)
5808      */
5809     /**
5810      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
5811      *  to each request made by this object. (defaults to undefined)
5812      */
5813     /**
5814      * @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)
5815      */
5816     /**
5817      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
5818      */
5819      /**
5820      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
5821      * @type Boolean
5822      */
5823   
5824
5825     /**
5826      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
5827      * @type Boolean
5828      */
5829     /**
5830      * Return the {@link Roo.data.Connection} object being used by this Proxy.
5831      * @return {Connection} The Connection object. This object may be used to subscribe to events on
5832      * a finer-grained basis than the DataProxy events.
5833      */
5834     getConnection : function(){
5835         return this.useAjax ? Roo.Ajax : this.conn;
5836     },
5837
5838     /**
5839      * Load data from the configured {@link Roo.data.Connection}, read the data object into
5840      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
5841      * process that block using the passed callback.
5842      * @param {Object} params An object containing properties which are to be used as HTTP parameters
5843      * for the request to the remote server.
5844      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5845      * object into a block of Roo.data.Records.
5846      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
5847      * The function must be passed <ul>
5848      * <li>The Record block object</li>
5849      * <li>The "arg" argument from the load function</li>
5850      * <li>A boolean success indicator</li>
5851      * </ul>
5852      * @param {Object} scope The scope in which to call the callback
5853      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
5854      */
5855     load : function(params, reader, callback, scope, arg){
5856         if(this.fireEvent("beforeload", this, params) !== false){
5857             var  o = {
5858                 params : params || {},
5859                 request: {
5860                     callback : callback,
5861                     scope : scope,
5862                     arg : arg
5863                 },
5864                 reader: reader,
5865                 callback : this.loadResponse,
5866                 scope: this
5867             };
5868             if(this.useAjax){
5869                 Roo.applyIf(o, this.conn);
5870                 if(this.activeRequest){
5871                     Roo.Ajax.abort(this.activeRequest);
5872                 }
5873                 this.activeRequest = Roo.Ajax.request(o);
5874             }else{
5875                 this.conn.request(o);
5876             }
5877         }else{
5878             callback.call(scope||this, null, arg, false);
5879         }
5880     },
5881
5882     // private
5883     loadResponse : function(o, success, response){
5884         delete this.activeRequest;
5885         if(!success){
5886             this.fireEvent("loadexception", this, o, response);
5887             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5888             return;
5889         }
5890         var result;
5891         try {
5892             result = o.reader.read(response);
5893         }catch(e){
5894             this.fireEvent("loadexception", this, o, response, e);
5895             o.request.callback.call(o.request.scope, null, o.request.arg, false);
5896             return;
5897         }
5898         
5899         this.fireEvent("load", this, o, o.request.arg);
5900         o.request.callback.call(o.request.scope, result, o.request.arg, true);
5901     },
5902
5903     // private
5904     update : function(dataSet){
5905
5906     },
5907
5908     // private
5909     updateResponse : function(dataSet){
5910
5911     }
5912 });/*
5913  * Based on:
5914  * Ext JS Library 1.1.1
5915  * Copyright(c) 2006-2007, Ext JS, LLC.
5916  *
5917  * Originally Released Under LGPL - original licence link has changed is not relivant.
5918  *
5919  * Fork - LGPL
5920  * <script type="text/javascript">
5921  */
5922
5923 /**
5924  * @class Roo.data.ScriptTagProxy
5925  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
5926  * other than the originating domain of the running page.<br><br>
5927  * <p>
5928  * <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
5929  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
5930  * <p>
5931  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
5932  * source code that is used as the source inside a &lt;script> tag.<br><br>
5933  * <p>
5934  * In order for the browser to process the returned data, the server must wrap the data object
5935  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
5936  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
5937  * depending on whether the callback name was passed:
5938  * <p>
5939  * <pre><code>
5940 boolean scriptTag = false;
5941 String cb = request.getParameter("callback");
5942 if (cb != null) {
5943     scriptTag = true;
5944     response.setContentType("text/javascript");
5945 } else {
5946     response.setContentType("application/x-json");
5947 }
5948 Writer out = response.getWriter();
5949 if (scriptTag) {
5950     out.write(cb + "(");
5951 }
5952 out.print(dataBlock.toJsonString());
5953 if (scriptTag) {
5954     out.write(");");
5955 }
5956 </pre></code>
5957  *
5958  * @constructor
5959  * @param {Object} config A configuration object.
5960  */
5961 Roo.data.ScriptTagProxy = function(config){
5962     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
5963     Roo.apply(this, config);
5964     this.head = document.getElementsByTagName("head")[0];
5965 };
5966
5967 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
5968
5969 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
5970     /**
5971      * @cfg {String} url The URL from which to request the data object.
5972      */
5973     /**
5974      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
5975      */
5976     timeout : 30000,
5977     /**
5978      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
5979      * the server the name of the callback function set up by the load call to process the returned data object.
5980      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
5981      * javascript output which calls this named function passing the data object as its only parameter.
5982      */
5983     callbackParam : "callback",
5984     /**
5985      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
5986      * name to the request.
5987      */
5988     nocache : true,
5989
5990     /**
5991      * Load data from the configured URL, read the data object into
5992      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
5993      * process that block using the passed callback.
5994      * @param {Object} params An object containing properties which are to be used as HTTP parameters
5995      * for the request to the remote server.
5996      * @param {Roo.data.DataReader} reader The Reader object which converts the data
5997      * object into a block of Roo.data.Records.
5998      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
5999      * The function must be passed <ul>
6000      * <li>The Record block object</li>
6001      * <li>The "arg" argument from the load function</li>
6002      * <li>A boolean success indicator</li>
6003      * </ul>
6004      * @param {Object} scope The scope in which to call the callback
6005      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
6006      */
6007     load : function(params, reader, callback, scope, arg){
6008         if(this.fireEvent("beforeload", this, params) !== false){
6009
6010             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
6011
6012             var url = this.url;
6013             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
6014             if(this.nocache){
6015                 url += "&_dc=" + (new Date().getTime());
6016             }
6017             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
6018             var trans = {
6019                 id : transId,
6020                 cb : "stcCallback"+transId,
6021                 scriptId : "stcScript"+transId,
6022                 params : params,
6023                 arg : arg,
6024                 url : url,
6025                 callback : callback,
6026                 scope : scope,
6027                 reader : reader
6028             };
6029             var conn = this;
6030
6031             window[trans.cb] = function(o){
6032                 conn.handleResponse(o, trans);
6033             };
6034
6035             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
6036
6037             if(this.autoAbort !== false){
6038                 this.abort();
6039             }
6040
6041             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
6042
6043             var script = document.createElement("script");
6044             script.setAttribute("src", url);
6045             script.setAttribute("type", "text/javascript");
6046             script.setAttribute("id", trans.scriptId);
6047             this.head.appendChild(script);
6048
6049             this.trans = trans;
6050         }else{
6051             callback.call(scope||this, null, arg, false);
6052         }
6053     },
6054
6055     // private
6056     isLoading : function(){
6057         return this.trans ? true : false;
6058     },
6059
6060     /**
6061      * Abort the current server request.
6062      */
6063     abort : function(){
6064         if(this.isLoading()){
6065             this.destroyTrans(this.trans);
6066         }
6067     },
6068
6069     // private
6070     destroyTrans : function(trans, isLoaded){
6071         this.head.removeChild(document.getElementById(trans.scriptId));
6072         clearTimeout(trans.timeoutId);
6073         if(isLoaded){
6074             window[trans.cb] = undefined;
6075             try{
6076                 delete window[trans.cb];
6077             }catch(e){}
6078         }else{
6079             // if hasn't been loaded, wait for load to remove it to prevent script error
6080             window[trans.cb] = function(){
6081                 window[trans.cb] = undefined;
6082                 try{
6083                     delete window[trans.cb];
6084                 }catch(e){}
6085             };
6086         }
6087     },
6088
6089     // private
6090     handleResponse : function(o, trans){
6091         this.trans = false;
6092         this.destroyTrans(trans, true);
6093         var result;
6094         try {
6095             result = trans.reader.readRecords(o);
6096         }catch(e){
6097             this.fireEvent("loadexception", this, o, trans.arg, e);
6098             trans.callback.call(trans.scope||window, null, trans.arg, false);
6099             return;
6100         }
6101         this.fireEvent("load", this, o, trans.arg);
6102         trans.callback.call(trans.scope||window, result, trans.arg, true);
6103     },
6104
6105     // private
6106     handleFailure : function(trans){
6107         this.trans = false;
6108         this.destroyTrans(trans, false);
6109         this.fireEvent("loadexception", this, null, trans.arg);
6110         trans.callback.call(trans.scope||window, null, trans.arg, false);
6111     }
6112 });/*
6113  * Based on:
6114  * Ext JS Library 1.1.1
6115  * Copyright(c) 2006-2007, Ext JS, LLC.
6116  *
6117  * Originally Released Under LGPL - original licence link has changed is not relivant.
6118  *
6119  * Fork - LGPL
6120  * <script type="text/javascript">
6121  */
6122
6123 /**
6124  * @class Roo.data.JsonReader
6125  * @extends Roo.data.DataReader
6126  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
6127  * based on mappings in a provided Roo.data.Record constructor.
6128  * 
6129  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
6130  * in the reply previously. 
6131  * 
6132  * <p>
6133  * Example code:
6134  * <pre><code>
6135 var RecordDef = Roo.data.Record.create([
6136     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6137     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6138 ]);
6139 var myReader = new Roo.data.JsonReader({
6140     totalProperty: "results",    // The property which contains the total dataset size (optional)
6141     root: "rows",                // The property which contains an Array of row objects
6142     id: "id"                     // The property within each row object that provides an ID for the record (optional)
6143 }, RecordDef);
6144 </code></pre>
6145  * <p>
6146  * This would consume a JSON file like this:
6147  * <pre><code>
6148 { 'results': 2, 'rows': [
6149     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
6150     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
6151 }
6152 </code></pre>
6153  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
6154  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6155  * paged from the remote server.
6156  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
6157  * @cfg {String} root name of the property which contains the Array of row objects.
6158  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
6159  * @constructor
6160  * Create a new JsonReader
6161  * @param {Object} meta Metadata configuration options
6162  * @param {Object} recordType Either an Array of field definition objects,
6163  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
6164  */
6165 Roo.data.JsonReader = function(meta, recordType){
6166     
6167     meta = meta || {};
6168     // set some defaults:
6169     Roo.applyIf(meta, {
6170         totalProperty: 'total',
6171         successProperty : 'success',
6172         root : 'data',
6173         id : 'id'
6174     });
6175     
6176     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6177 };
6178 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
6179     
6180     /**
6181      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
6182      * Used by Store query builder to append _requestMeta to params.
6183      * 
6184      */
6185     metaFromRemote : false,
6186     /**
6187      * This method is only used by a DataProxy which has retrieved data from a remote server.
6188      * @param {Object} response The XHR object which contains the JSON data in its responseText.
6189      * @return {Object} data A data block which is used by an Roo.data.Store object as
6190      * a cache of Roo.data.Records.
6191      */
6192     read : function(response){
6193         var json = response.responseText;
6194        
6195         var o = /* eval:var:o */ eval("("+json+")");
6196         if(!o) {
6197             throw {message: "JsonReader.read: Json object not found"};
6198         }
6199         
6200         if(o.metaData){
6201             
6202             delete this.ef;
6203             this.metaFromRemote = true;
6204             this.meta = o.metaData;
6205             this.recordType = Roo.data.Record.create(o.metaData.fields);
6206             this.onMetaChange(this.meta, this.recordType, o);
6207         }
6208         return this.readRecords(o);
6209     },
6210
6211     // private function a store will implement
6212     onMetaChange : function(meta, recordType, o){
6213
6214     },
6215
6216     /**
6217          * @ignore
6218          */
6219     simpleAccess: function(obj, subsc) {
6220         return obj[subsc];
6221     },
6222
6223         /**
6224          * @ignore
6225          */
6226     getJsonAccessor: function(){
6227         var re = /[\[\.]/;
6228         return function(expr) {
6229             try {
6230                 return(re.test(expr))
6231                     ? new Function("obj", "return obj." + expr)
6232                     : function(obj){
6233                         return obj[expr];
6234                     };
6235             } catch(e){}
6236             return Roo.emptyFn;
6237         };
6238     }(),
6239
6240     /**
6241      * Create a data block containing Roo.data.Records from an XML document.
6242      * @param {Object} o An object which contains an Array of row objects in the property specified
6243      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
6244      * which contains the total size of the dataset.
6245      * @return {Object} data A data block which is used by an Roo.data.Store object as
6246      * a cache of Roo.data.Records.
6247      */
6248     readRecords : function(o){
6249         /**
6250          * After any data loads, the raw JSON data is available for further custom processing.
6251          * @type Object
6252          */
6253         this.o = o;
6254         var s = this.meta, Record = this.recordType,
6255             f = Record.prototype.fields, fi = f.items, fl = f.length;
6256
6257 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
6258         if (!this.ef) {
6259             if(s.totalProperty) {
6260                     this.getTotal = this.getJsonAccessor(s.totalProperty);
6261                 }
6262                 if(s.successProperty) {
6263                     this.getSuccess = this.getJsonAccessor(s.successProperty);
6264                 }
6265                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
6266                 if (s.id) {
6267                         var g = this.getJsonAccessor(s.id);
6268                         this.getId = function(rec) {
6269                                 var r = g(rec);
6270                                 return (r === undefined || r === "") ? null : r;
6271                         };
6272                 } else {
6273                         this.getId = function(){return null;};
6274                 }
6275             this.ef = [];
6276             for(var jj = 0; jj < fl; jj++){
6277                 f = fi[jj];
6278                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
6279                 this.ef[jj] = this.getJsonAccessor(map);
6280             }
6281         }
6282
6283         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
6284         if(s.totalProperty){
6285             var vt = parseInt(this.getTotal(o), 10);
6286             if(!isNaN(vt)){
6287                 totalRecords = vt;
6288             }
6289         }
6290         if(s.successProperty){
6291             var vs = this.getSuccess(o);
6292             if(vs === false || vs === 'false'){
6293                 success = false;
6294             }
6295         }
6296         var records = [];
6297             for(var i = 0; i < c; i++){
6298                     var n = root[i];
6299                 var values = {};
6300                 var id = this.getId(n);
6301                 for(var j = 0; j < fl; j++){
6302                     f = fi[j];
6303                 var v = this.ef[j](n);
6304                 if (!f.convert) {
6305                     Roo.log('missing convert for ' + f.name);
6306                     Roo.log(f);
6307                     continue;
6308                 }
6309                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
6310                 }
6311                 var record = new Record(values, id);
6312                 record.json = n;
6313                 records[i] = record;
6314             }
6315             return {
6316             raw : o,
6317                 success : success,
6318                 records : records,
6319                 totalRecords : totalRecords
6320             };
6321     }
6322 });/*
6323  * Based on:
6324  * Ext JS Library 1.1.1
6325  * Copyright(c) 2006-2007, Ext JS, LLC.
6326  *
6327  * Originally Released Under LGPL - original licence link has changed is not relivant.
6328  *
6329  * Fork - LGPL
6330  * <script type="text/javascript">
6331  */
6332
6333 /**
6334  * @class Roo.data.XmlReader
6335  * @extends Roo.data.DataReader
6336  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
6337  * based on mappings in a provided Roo.data.Record constructor.<br><br>
6338  * <p>
6339  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
6340  * header in the HTTP response must be set to "text/xml".</em>
6341  * <p>
6342  * Example code:
6343  * <pre><code>
6344 var RecordDef = Roo.data.Record.create([
6345    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
6346    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
6347 ]);
6348 var myReader = new Roo.data.XmlReader({
6349    totalRecords: "results", // The element which contains the total dataset size (optional)
6350    record: "row",           // The repeated element which contains row information
6351    id: "id"                 // The element within the row that provides an ID for the record (optional)
6352 }, RecordDef);
6353 </code></pre>
6354  * <p>
6355  * This would consume an XML file like this:
6356  * <pre><code>
6357 &lt;?xml?>
6358 &lt;dataset>
6359  &lt;results>2&lt;/results>
6360  &lt;row>
6361    &lt;id>1&lt;/id>
6362    &lt;name>Bill&lt;/name>
6363    &lt;occupation>Gardener&lt;/occupation>
6364  &lt;/row>
6365  &lt;row>
6366    &lt;id>2&lt;/id>
6367    &lt;name>Ben&lt;/name>
6368    &lt;occupation>Horticulturalist&lt;/occupation>
6369  &lt;/row>
6370 &lt;/dataset>
6371 </code></pre>
6372  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
6373  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
6374  * paged from the remote server.
6375  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
6376  * @cfg {String} success The DomQuery path to the success attribute used by forms.
6377  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
6378  * a record identifier value.
6379  * @constructor
6380  * Create a new XmlReader
6381  * @param {Object} meta Metadata configuration options
6382  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
6383  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
6384  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
6385  */
6386 Roo.data.XmlReader = function(meta, recordType){
6387     meta = meta || {};
6388     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
6389 };
6390 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
6391     /**
6392      * This method is only used by a DataProxy which has retrieved data from a remote server.
6393          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
6394          * to contain a method called 'responseXML' that returns an XML document object.
6395      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6396      * a cache of Roo.data.Records.
6397      */
6398     read : function(response){
6399         var doc = response.responseXML;
6400         if(!doc) {
6401             throw {message: "XmlReader.read: XML Document not available"};
6402         }
6403         return this.readRecords(doc);
6404     },
6405
6406     /**
6407      * Create a data block containing Roo.data.Records from an XML document.
6408          * @param {Object} doc A parsed XML document.
6409      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
6410      * a cache of Roo.data.Records.
6411      */
6412     readRecords : function(doc){
6413         /**
6414          * After any data loads/reads, the raw XML Document is available for further custom processing.
6415          * @type XMLDocument
6416          */
6417         this.xmlData = doc;
6418         var root = doc.documentElement || doc;
6419         var q = Roo.DomQuery;
6420         var recordType = this.recordType, fields = recordType.prototype.fields;
6421         var sid = this.meta.id;
6422         var totalRecords = 0, success = true;
6423         if(this.meta.totalRecords){
6424             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
6425         }
6426         
6427         if(this.meta.success){
6428             var sv = q.selectValue(this.meta.success, root, true);
6429             success = sv !== false && sv !== 'false';
6430         }
6431         var records = [];
6432         var ns = q.select(this.meta.record, root);
6433         for(var i = 0, len = ns.length; i < len; i++) {
6434                 var n = ns[i];
6435                 var values = {};
6436                 var id = sid ? q.selectValue(sid, n) : undefined;
6437                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6438                     var f = fields.items[j];
6439                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
6440                     v = f.convert(v);
6441                     values[f.name] = v;
6442                 }
6443                 var record = new recordType(values, id);
6444                 record.node = n;
6445                 records[records.length] = record;
6446             }
6447
6448             return {
6449                 success : success,
6450                 records : records,
6451                 totalRecords : totalRecords || records.length
6452             };
6453     }
6454 });/*
6455  * Based on:
6456  * Ext JS Library 1.1.1
6457  * Copyright(c) 2006-2007, Ext JS, LLC.
6458  *
6459  * Originally Released Under LGPL - original licence link has changed is not relivant.
6460  *
6461  * Fork - LGPL
6462  * <script type="text/javascript">
6463  */
6464
6465 /**
6466  * @class Roo.data.ArrayReader
6467  * @extends Roo.data.DataReader
6468  * Data reader class to create an Array of Roo.data.Record objects from an Array.
6469  * Each element of that Array represents a row of data fields. The
6470  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
6471  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
6472  * <p>
6473  * Example code:.
6474  * <pre><code>
6475 var RecordDef = Roo.data.Record.create([
6476     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
6477     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
6478 ]);
6479 var myReader = new Roo.data.ArrayReader({
6480     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
6481 }, RecordDef);
6482 </code></pre>
6483  * <p>
6484  * This would consume an Array like this:
6485  * <pre><code>
6486 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
6487   </code></pre>
6488  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
6489  * @constructor
6490  * Create a new JsonReader
6491  * @param {Object} meta Metadata configuration options.
6492  * @param {Object} recordType Either an Array of field definition objects
6493  * as specified to {@link Roo.data.Record#create},
6494  * or an {@link Roo.data.Record} object
6495  * created using {@link Roo.data.Record#create}.
6496  */
6497 Roo.data.ArrayReader = function(meta, recordType){
6498     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
6499 };
6500
6501 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
6502     /**
6503      * Create a data block containing Roo.data.Records from an XML document.
6504      * @param {Object} o An Array of row objects which represents the dataset.
6505      * @return {Object} data A data block which is used by an Roo.data.Store object as
6506      * a cache of Roo.data.Records.
6507      */
6508     readRecords : function(o){
6509         var sid = this.meta ? this.meta.id : null;
6510         var recordType = this.recordType, fields = recordType.prototype.fields;
6511         var records = [];
6512         var root = o;
6513             for(var i = 0; i < root.length; i++){
6514                     var n = root[i];
6515                 var values = {};
6516                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
6517                 for(var j = 0, jlen = fields.length; j < jlen; j++){
6518                 var f = fields.items[j];
6519                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
6520                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
6521                 v = f.convert(v);
6522                 values[f.name] = v;
6523             }
6524                 var record = new recordType(values, id);
6525                 record.json = n;
6526                 records[records.length] = record;
6527             }
6528             return {
6529                 records : records,
6530                 totalRecords : records.length
6531             };
6532     }
6533 });/*
6534  * Based on:
6535  * Ext JS Library 1.1.1
6536  * Copyright(c) 2006-2007, Ext JS, LLC.
6537  *
6538  * Originally Released Under LGPL - original licence link has changed is not relivant.
6539  *
6540  * Fork - LGPL
6541  * <script type="text/javascript">
6542  */
6543
6544
6545 /**
6546  * @class Roo.data.Tree
6547  * @extends Roo.util.Observable
6548  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
6549  * in the tree have most standard DOM functionality.
6550  * @constructor
6551  * @param {Node} root (optional) The root node
6552  */
6553 Roo.data.Tree = function(root){
6554    this.nodeHash = {};
6555    /**
6556     * The root node for this tree
6557     * @type Node
6558     */
6559    this.root = null;
6560    if(root){
6561        this.setRootNode(root);
6562    }
6563    this.addEvents({
6564        /**
6565         * @event append
6566         * Fires when a new child node is appended to a node in this tree.
6567         * @param {Tree} tree The owner tree
6568         * @param {Node} parent The parent node
6569         * @param {Node} node The newly appended node
6570         * @param {Number} index The index of the newly appended node
6571         */
6572        "append" : true,
6573        /**
6574         * @event remove
6575         * Fires when a child node is removed from a node in this tree.
6576         * @param {Tree} tree The owner tree
6577         * @param {Node} parent The parent node
6578         * @param {Node} node The child node removed
6579         */
6580        "remove" : true,
6581        /**
6582         * @event move
6583         * Fires when a node is moved to a new location in the tree
6584         * @param {Tree} tree The owner tree
6585         * @param {Node} node The node moved
6586         * @param {Node} oldParent The old parent of this node
6587         * @param {Node} newParent The new parent of this node
6588         * @param {Number} index The index it was moved to
6589         */
6590        "move" : true,
6591        /**
6592         * @event insert
6593         * Fires when a new child node is inserted in a node in this tree.
6594         * @param {Tree} tree The owner tree
6595         * @param {Node} parent The parent node
6596         * @param {Node} node The child node inserted
6597         * @param {Node} refNode The child node the node was inserted before
6598         */
6599        "insert" : true,
6600        /**
6601         * @event beforeappend
6602         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
6603         * @param {Tree} tree The owner tree
6604         * @param {Node} parent The parent node
6605         * @param {Node} node The child node to be appended
6606         */
6607        "beforeappend" : true,
6608        /**
6609         * @event beforeremove
6610         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
6611         * @param {Tree} tree The owner tree
6612         * @param {Node} parent The parent node
6613         * @param {Node} node The child node to be removed
6614         */
6615        "beforeremove" : true,
6616        /**
6617         * @event beforemove
6618         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
6619         * @param {Tree} tree The owner tree
6620         * @param {Node} node The node being moved
6621         * @param {Node} oldParent The parent of the node
6622         * @param {Node} newParent The new parent the node is moving to
6623         * @param {Number} index The index it is being moved to
6624         */
6625        "beforemove" : true,
6626        /**
6627         * @event beforeinsert
6628         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
6629         * @param {Tree} tree The owner tree
6630         * @param {Node} parent The parent node
6631         * @param {Node} node The child node to be inserted
6632         * @param {Node} refNode The child node the node is being inserted before
6633         */
6634        "beforeinsert" : true
6635    });
6636
6637     Roo.data.Tree.superclass.constructor.call(this);
6638 };
6639
6640 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
6641     pathSeparator: "/",
6642
6643     proxyNodeEvent : function(){
6644         return this.fireEvent.apply(this, arguments);
6645     },
6646
6647     /**
6648      * Returns the root node for this tree.
6649      * @return {Node}
6650      */
6651     getRootNode : function(){
6652         return this.root;
6653     },
6654
6655     /**
6656      * Sets the root node for this tree.
6657      * @param {Node} node
6658      * @return {Node}
6659      */
6660     setRootNode : function(node){
6661         this.root = node;
6662         node.ownerTree = this;
6663         node.isRoot = true;
6664         this.registerNode(node);
6665         return node;
6666     },
6667
6668     /**
6669      * Gets a node in this tree by its id.
6670      * @param {String} id
6671      * @return {Node}
6672      */
6673     getNodeById : function(id){
6674         return this.nodeHash[id];
6675     },
6676
6677     registerNode : function(node){
6678         this.nodeHash[node.id] = node;
6679     },
6680
6681     unregisterNode : function(node){
6682         delete this.nodeHash[node.id];
6683     },
6684
6685     toString : function(){
6686         return "[Tree"+(this.id?" "+this.id:"")+"]";
6687     }
6688 });
6689
6690 /**
6691  * @class Roo.data.Node
6692  * @extends Roo.util.Observable
6693  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
6694  * @cfg {String} id The id for this node. If one is not specified, one is generated.
6695  * @constructor
6696  * @param {Object} attributes The attributes/config for the node
6697  */
6698 Roo.data.Node = function(attributes){
6699     /**
6700      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
6701      * @type {Object}
6702      */
6703     this.attributes = attributes || {};
6704     this.leaf = this.attributes.leaf;
6705     /**
6706      * The node id. @type String
6707      */
6708     this.id = this.attributes.id;
6709     if(!this.id){
6710         this.id = Roo.id(null, "ynode-");
6711         this.attributes.id = this.id;
6712     }
6713      
6714     
6715     /**
6716      * All child nodes of this node. @type Array
6717      */
6718     this.childNodes = [];
6719     if(!this.childNodes.indexOf){ // indexOf is a must
6720         this.childNodes.indexOf = function(o){
6721             for(var i = 0, len = this.length; i < len; i++){
6722                 if(this[i] == o) {
6723                     return i;
6724                 }
6725             }
6726             return -1;
6727         };
6728     }
6729     /**
6730      * The parent node for this node. @type Node
6731      */
6732     this.parentNode = null;
6733     /**
6734      * The first direct child node of this node, or null if this node has no child nodes. @type Node
6735      */
6736     this.firstChild = null;
6737     /**
6738      * The last direct child node of this node, or null if this node has no child nodes. @type Node
6739      */
6740     this.lastChild = null;
6741     /**
6742      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
6743      */
6744     this.previousSibling = null;
6745     /**
6746      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
6747      */
6748     this.nextSibling = null;
6749
6750     this.addEvents({
6751        /**
6752         * @event append
6753         * Fires when a new child node is appended
6754         * @param {Tree} tree The owner tree
6755         * @param {Node} this This node
6756         * @param {Node} node The newly appended node
6757         * @param {Number} index The index of the newly appended node
6758         */
6759        "append" : true,
6760        /**
6761         * @event remove
6762         * Fires when a child node is removed
6763         * @param {Tree} tree The owner tree
6764         * @param {Node} this This node
6765         * @param {Node} node The removed node
6766         */
6767        "remove" : true,
6768        /**
6769         * @event move
6770         * Fires when this node is moved to a new location in the tree
6771         * @param {Tree} tree The owner tree
6772         * @param {Node} this This node
6773         * @param {Node} oldParent The old parent of this node
6774         * @param {Node} newParent The new parent of this node
6775         * @param {Number} index The index it was moved to
6776         */
6777        "move" : true,
6778        /**
6779         * @event insert
6780         * Fires when a new child node is inserted.
6781         * @param {Tree} tree The owner tree
6782         * @param {Node} this This node
6783         * @param {Node} node The child node inserted
6784         * @param {Node} refNode The child node the node was inserted before
6785         */
6786        "insert" : true,
6787        /**
6788         * @event beforeappend
6789         * Fires before a new child is appended, return false to cancel the append.
6790         * @param {Tree} tree The owner tree
6791         * @param {Node} this This node
6792         * @param {Node} node The child node to be appended
6793         */
6794        "beforeappend" : true,
6795        /**
6796         * @event beforeremove
6797         * Fires before a child is removed, return false to cancel the remove.
6798         * @param {Tree} tree The owner tree
6799         * @param {Node} this This node
6800         * @param {Node} node The child node to be removed
6801         */
6802        "beforeremove" : true,
6803        /**
6804         * @event beforemove
6805         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
6806         * @param {Tree} tree The owner tree
6807         * @param {Node} this This node
6808         * @param {Node} oldParent The parent of this node
6809         * @param {Node} newParent The new parent this node is moving to
6810         * @param {Number} index The index it is being moved to
6811         */
6812        "beforemove" : true,
6813        /**
6814         * @event beforeinsert
6815         * Fires before a new child is inserted, return false to cancel the insert.
6816         * @param {Tree} tree The owner tree
6817         * @param {Node} this This node
6818         * @param {Node} node The child node to be inserted
6819         * @param {Node} refNode The child node the node is being inserted before
6820         */
6821        "beforeinsert" : true
6822    });
6823     this.listeners = this.attributes.listeners;
6824     Roo.data.Node.superclass.constructor.call(this);
6825 };
6826
6827 Roo.extend(Roo.data.Node, Roo.util.Observable, {
6828     fireEvent : function(evtName){
6829         // first do standard event for this node
6830         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
6831             return false;
6832         }
6833         // then bubble it up to the tree if the event wasn't cancelled
6834         var ot = this.getOwnerTree();
6835         if(ot){
6836             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
6837                 return false;
6838             }
6839         }
6840         return true;
6841     },
6842
6843     /**
6844      * Returns true if this node is a leaf
6845      * @return {Boolean}
6846      */
6847     isLeaf : function(){
6848         return this.leaf === true;
6849     },
6850
6851     // private
6852     setFirstChild : function(node){
6853         this.firstChild = node;
6854     },
6855
6856     //private
6857     setLastChild : function(node){
6858         this.lastChild = node;
6859     },
6860
6861
6862     /**
6863      * Returns true if this node is the last child of its parent
6864      * @return {Boolean}
6865      */
6866     isLast : function(){
6867        return (!this.parentNode ? true : this.parentNode.lastChild == this);
6868     },
6869
6870     /**
6871      * Returns true if this node is the first child of its parent
6872      * @return {Boolean}
6873      */
6874     isFirst : function(){
6875        return (!this.parentNode ? true : this.parentNode.firstChild == this);
6876     },
6877
6878     hasChildNodes : function(){
6879         return !this.isLeaf() && this.childNodes.length > 0;
6880     },
6881
6882     /**
6883      * Insert node(s) as the last child node of this node.
6884      * @param {Node/Array} node The node or Array of nodes to append
6885      * @return {Node} The appended node if single append, or null if an array was passed
6886      */
6887     appendChild : function(node){
6888         var multi = false;
6889         if(node instanceof Array){
6890             multi = node;
6891         }else if(arguments.length > 1){
6892             multi = arguments;
6893         }
6894         // if passed an array or multiple args do them one by one
6895         if(multi){
6896             for(var i = 0, len = multi.length; i < len; i++) {
6897                 this.appendChild(multi[i]);
6898             }
6899         }else{
6900             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
6901                 return false;
6902             }
6903             var index = this.childNodes.length;
6904             var oldParent = node.parentNode;
6905             // it's a move, make sure we move it cleanly
6906             if(oldParent){
6907                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
6908                     return false;
6909                 }
6910                 oldParent.removeChild(node);
6911             }
6912             index = this.childNodes.length;
6913             if(index == 0){
6914                 this.setFirstChild(node);
6915             }
6916             this.childNodes.push(node);
6917             node.parentNode = this;
6918             var ps = this.childNodes[index-1];
6919             if(ps){
6920                 node.previousSibling = ps;
6921                 ps.nextSibling = node;
6922             }else{
6923                 node.previousSibling = null;
6924             }
6925             node.nextSibling = null;
6926             this.setLastChild(node);
6927             node.setOwnerTree(this.getOwnerTree());
6928             this.fireEvent("append", this.ownerTree, this, node, index);
6929             if(oldParent){
6930                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
6931             }
6932             return node;
6933         }
6934     },
6935
6936     /**
6937      * Removes a child node from this node.
6938      * @param {Node} node The node to remove
6939      * @return {Node} The removed node
6940      */
6941     removeChild : function(node){
6942         var index = this.childNodes.indexOf(node);
6943         if(index == -1){
6944             return false;
6945         }
6946         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
6947             return false;
6948         }
6949
6950         // remove it from childNodes collection
6951         this.childNodes.splice(index, 1);
6952
6953         // update siblings
6954         if(node.previousSibling){
6955             node.previousSibling.nextSibling = node.nextSibling;
6956         }
6957         if(node.nextSibling){
6958             node.nextSibling.previousSibling = node.previousSibling;
6959         }
6960
6961         // update child refs
6962         if(this.firstChild == node){
6963             this.setFirstChild(node.nextSibling);
6964         }
6965         if(this.lastChild == node){
6966             this.setLastChild(node.previousSibling);
6967         }
6968
6969         node.setOwnerTree(null);
6970         // clear any references from the node
6971         node.parentNode = null;
6972         node.previousSibling = null;
6973         node.nextSibling = null;
6974         this.fireEvent("remove", this.ownerTree, this, node);
6975         return node;
6976     },
6977
6978     /**
6979      * Inserts the first node before the second node in this nodes childNodes collection.
6980      * @param {Node} node The node to insert
6981      * @param {Node} refNode The node to insert before (if null the node is appended)
6982      * @return {Node} The inserted node
6983      */
6984     insertBefore : function(node, refNode){
6985         if(!refNode){ // like standard Dom, refNode can be null for append
6986             return this.appendChild(node);
6987         }
6988         // nothing to do
6989         if(node == refNode){
6990             return false;
6991         }
6992
6993         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
6994             return false;
6995         }
6996         var index = this.childNodes.indexOf(refNode);
6997         var oldParent = node.parentNode;
6998         var refIndex = index;
6999
7000         // when moving internally, indexes will change after remove
7001         if(oldParent == this && this.childNodes.indexOf(node) < index){
7002             refIndex--;
7003         }
7004
7005         // it's a move, make sure we move it cleanly
7006         if(oldParent){
7007             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
7008                 return false;
7009             }
7010             oldParent.removeChild(node);
7011         }
7012         if(refIndex == 0){
7013             this.setFirstChild(node);
7014         }
7015         this.childNodes.splice(refIndex, 0, node);
7016         node.parentNode = this;
7017         var ps = this.childNodes[refIndex-1];
7018         if(ps){
7019             node.previousSibling = ps;
7020             ps.nextSibling = node;
7021         }else{
7022             node.previousSibling = null;
7023         }
7024         node.nextSibling = refNode;
7025         refNode.previousSibling = node;
7026         node.setOwnerTree(this.getOwnerTree());
7027         this.fireEvent("insert", this.ownerTree, this, node, refNode);
7028         if(oldParent){
7029             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
7030         }
7031         return node;
7032     },
7033
7034     /**
7035      * Returns the child node at the specified index.
7036      * @param {Number} index
7037      * @return {Node}
7038      */
7039     item : function(index){
7040         return this.childNodes[index];
7041     },
7042
7043     /**
7044      * Replaces one child node in this node with another.
7045      * @param {Node} newChild The replacement node
7046      * @param {Node} oldChild The node to replace
7047      * @return {Node} The replaced node
7048      */
7049     replaceChild : function(newChild, oldChild){
7050         this.insertBefore(newChild, oldChild);
7051         this.removeChild(oldChild);
7052         return oldChild;
7053     },
7054
7055     /**
7056      * Returns the index of a child node
7057      * @param {Node} node
7058      * @return {Number} The index of the node or -1 if it was not found
7059      */
7060     indexOf : function(child){
7061         return this.childNodes.indexOf(child);
7062     },
7063
7064     /**
7065      * Returns the tree this node is in.
7066      * @return {Tree}
7067      */
7068     getOwnerTree : function(){
7069         // if it doesn't have one, look for one
7070         if(!this.ownerTree){
7071             var p = this;
7072             while(p){
7073                 if(p.ownerTree){
7074                     this.ownerTree = p.ownerTree;
7075                     break;
7076                 }
7077                 p = p.parentNode;
7078             }
7079         }
7080         return this.ownerTree;
7081     },
7082
7083     /**
7084      * Returns depth of this node (the root node has a depth of 0)
7085      * @return {Number}
7086      */
7087     getDepth : function(){
7088         var depth = 0;
7089         var p = this;
7090         while(p.parentNode){
7091             ++depth;
7092             p = p.parentNode;
7093         }
7094         return depth;
7095     },
7096
7097     // private
7098     setOwnerTree : function(tree){
7099         // if it's move, we need to update everyone
7100         if(tree != this.ownerTree){
7101             if(this.ownerTree){
7102                 this.ownerTree.unregisterNode(this);
7103             }
7104             this.ownerTree = tree;
7105             var cs = this.childNodes;
7106             for(var i = 0, len = cs.length; i < len; i++) {
7107                 cs[i].setOwnerTree(tree);
7108             }
7109             if(tree){
7110                 tree.registerNode(this);
7111             }
7112         }
7113     },
7114
7115     /**
7116      * Returns the path for this node. The path can be used to expand or select this node programmatically.
7117      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
7118      * @return {String} The path
7119      */
7120     getPath : function(attr){
7121         attr = attr || "id";
7122         var p = this.parentNode;
7123         var b = [this.attributes[attr]];
7124         while(p){
7125             b.unshift(p.attributes[attr]);
7126             p = p.parentNode;
7127         }
7128         var sep = this.getOwnerTree().pathSeparator;
7129         return sep + b.join(sep);
7130     },
7131
7132     /**
7133      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7134      * function call will be the scope provided or the current node. The arguments to the function
7135      * will be the args provided or the current node. If the function returns false at any point,
7136      * the bubble is stopped.
7137      * @param {Function} fn The function to call
7138      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7139      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7140      */
7141     bubble : function(fn, scope, args){
7142         var p = this;
7143         while(p){
7144             if(fn.call(scope || p, args || p) === false){
7145                 break;
7146             }
7147             p = p.parentNode;
7148         }
7149     },
7150
7151     /**
7152      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
7153      * function call will be the scope provided or the current node. The arguments to the function
7154      * will be the args provided or the current node. If the function returns false at any point,
7155      * the cascade is stopped on that branch.
7156      * @param {Function} fn The function to call
7157      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7158      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7159      */
7160     cascade : function(fn, scope, args){
7161         if(fn.call(scope || this, args || this) !== false){
7162             var cs = this.childNodes;
7163             for(var i = 0, len = cs.length; i < len; i++) {
7164                 cs[i].cascade(fn, scope, args);
7165             }
7166         }
7167     },
7168
7169     /**
7170      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
7171      * function call will be the scope provided or the current node. The arguments to the function
7172      * will be the args provided or the current node. If the function returns false at any point,
7173      * the iteration stops.
7174      * @param {Function} fn The function to call
7175      * @param {Object} scope (optional) The scope of the function (defaults to current node)
7176      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
7177      */
7178     eachChild : function(fn, scope, args){
7179         var cs = this.childNodes;
7180         for(var i = 0, len = cs.length; i < len; i++) {
7181                 if(fn.call(scope || this, args || cs[i]) === false){
7182                     break;
7183                 }
7184         }
7185     },
7186
7187     /**
7188      * Finds the first child that has the attribute with the specified value.
7189      * @param {String} attribute The attribute name
7190      * @param {Mixed} value The value to search for
7191      * @return {Node} The found child or null if none was found
7192      */
7193     findChild : function(attribute, value){
7194         var cs = this.childNodes;
7195         for(var i = 0, len = cs.length; i < len; i++) {
7196                 if(cs[i].attributes[attribute] == value){
7197                     return cs[i];
7198                 }
7199         }
7200         return null;
7201     },
7202
7203     /**
7204      * Finds the first child by a custom function. The child matches if the function passed
7205      * returns true.
7206      * @param {Function} fn
7207      * @param {Object} scope (optional)
7208      * @return {Node} The found child or null if none was found
7209      */
7210     findChildBy : function(fn, scope){
7211         var cs = this.childNodes;
7212         for(var i = 0, len = cs.length; i < len; i++) {
7213                 if(fn.call(scope||cs[i], cs[i]) === true){
7214                     return cs[i];
7215                 }
7216         }
7217         return null;
7218     },
7219
7220     /**
7221      * Sorts this nodes children using the supplied sort function
7222      * @param {Function} fn
7223      * @param {Object} scope (optional)
7224      */
7225     sort : function(fn, scope){
7226         var cs = this.childNodes;
7227         var len = cs.length;
7228         if(len > 0){
7229             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
7230             cs.sort(sortFn);
7231             for(var i = 0; i < len; i++){
7232                 var n = cs[i];
7233                 n.previousSibling = cs[i-1];
7234                 n.nextSibling = cs[i+1];
7235                 if(i == 0){
7236                     this.setFirstChild(n);
7237                 }
7238                 if(i == len-1){
7239                     this.setLastChild(n);
7240                 }
7241             }
7242         }
7243     },
7244
7245     /**
7246      * Returns true if this node is an ancestor (at any point) of the passed node.
7247      * @param {Node} node
7248      * @return {Boolean}
7249      */
7250     contains : function(node){
7251         return node.isAncestor(this);
7252     },
7253
7254     /**
7255      * Returns true if the passed node is an ancestor (at any point) of this node.
7256      * @param {Node} node
7257      * @return {Boolean}
7258      */
7259     isAncestor : function(node){
7260         var p = this.parentNode;
7261         while(p){
7262             if(p == node){
7263                 return true;
7264             }
7265             p = p.parentNode;
7266         }
7267         return false;
7268     },
7269
7270     toString : function(){
7271         return "[Node"+(this.id?" "+this.id:"")+"]";
7272     }
7273 });/*
7274  * Based on:
7275  * Ext JS Library 1.1.1
7276  * Copyright(c) 2006-2007, Ext JS, LLC.
7277  *
7278  * Originally Released Under LGPL - original licence link has changed is not relivant.
7279  *
7280  * Fork - LGPL
7281  * <script type="text/javascript">
7282  */
7283  (function(){ 
7284 /**
7285  * @class Roo.Layer
7286  * @extends Roo.Element
7287  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
7288  * automatic maintaining of shadow/shim positions.
7289  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
7290  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
7291  * you can pass a string with a CSS class name. False turns off the shadow.
7292  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
7293  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
7294  * @cfg {String} cls CSS class to add to the element
7295  * @cfg {Number} zindex Starting z-index (defaults to 11000)
7296  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
7297  * @constructor
7298  * @param {Object} config An object with config options.
7299  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
7300  */
7301
7302 Roo.Layer = function(config, existingEl){
7303     config = config || {};
7304     var dh = Roo.DomHelper;
7305     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
7306     if(existingEl){
7307         this.dom = Roo.getDom(existingEl);
7308     }
7309     if(!this.dom){
7310         var o = config.dh || {tag: "div", cls: "x-layer"};
7311         this.dom = dh.append(pel, o);
7312     }
7313     if(config.cls){
7314         this.addClass(config.cls);
7315     }
7316     this.constrain = config.constrain !== false;
7317     this.visibilityMode = Roo.Element.VISIBILITY;
7318     if(config.id){
7319         this.id = this.dom.id = config.id;
7320     }else{
7321         this.id = Roo.id(this.dom);
7322     }
7323     this.zindex = config.zindex || this.getZIndex();
7324     this.position("absolute", this.zindex);
7325     if(config.shadow){
7326         this.shadowOffset = config.shadowOffset || 4;
7327         this.shadow = new Roo.Shadow({
7328             offset : this.shadowOffset,
7329             mode : config.shadow
7330         });
7331     }else{
7332         this.shadowOffset = 0;
7333     }
7334     this.useShim = config.shim !== false && Roo.useShims;
7335     this.useDisplay = config.useDisplay;
7336     this.hide();
7337 };
7338
7339 var supr = Roo.Element.prototype;
7340
7341 // shims are shared among layer to keep from having 100 iframes
7342 var shims = [];
7343
7344 Roo.extend(Roo.Layer, Roo.Element, {
7345
7346     getZIndex : function(){
7347         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
7348     },
7349
7350     getShim : function(){
7351         if(!this.useShim){
7352             return null;
7353         }
7354         if(this.shim){
7355             return this.shim;
7356         }
7357         var shim = shims.shift();
7358         if(!shim){
7359             shim = this.createShim();
7360             shim.enableDisplayMode('block');
7361             shim.dom.style.display = 'none';
7362             shim.dom.style.visibility = 'visible';
7363         }
7364         var pn = this.dom.parentNode;
7365         if(shim.dom.parentNode != pn){
7366             pn.insertBefore(shim.dom, this.dom);
7367         }
7368         shim.setStyle('z-index', this.getZIndex()-2);
7369         this.shim = shim;
7370         return shim;
7371     },
7372
7373     hideShim : function(){
7374         if(this.shim){
7375             this.shim.setDisplayed(false);
7376             shims.push(this.shim);
7377             delete this.shim;
7378         }
7379     },
7380
7381     disableShadow : function(){
7382         if(this.shadow){
7383             this.shadowDisabled = true;
7384             this.shadow.hide();
7385             this.lastShadowOffset = this.shadowOffset;
7386             this.shadowOffset = 0;
7387         }
7388     },
7389
7390     enableShadow : function(show){
7391         if(this.shadow){
7392             this.shadowDisabled = false;
7393             this.shadowOffset = this.lastShadowOffset;
7394             delete this.lastShadowOffset;
7395             if(show){
7396                 this.sync(true);
7397             }
7398         }
7399     },
7400
7401     // private
7402     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
7403     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
7404     sync : function(doShow){
7405         var sw = this.shadow;
7406         if(!this.updating && this.isVisible() && (sw || this.useShim)){
7407             var sh = this.getShim();
7408
7409             var w = this.getWidth(),
7410                 h = this.getHeight();
7411
7412             var l = this.getLeft(true),
7413                 t = this.getTop(true);
7414
7415             if(sw && !this.shadowDisabled){
7416                 if(doShow && !sw.isVisible()){
7417                     sw.show(this);
7418                 }else{
7419                     sw.realign(l, t, w, h);
7420                 }
7421                 if(sh){
7422                     if(doShow){
7423                        sh.show();
7424                     }
7425                     // fit the shim behind the shadow, so it is shimmed too
7426                     var a = sw.adjusts, s = sh.dom.style;
7427                     s.left = (Math.min(l, l+a.l))+"px";
7428                     s.top = (Math.min(t, t+a.t))+"px";
7429                     s.width = (w+a.w)+"px";
7430                     s.height = (h+a.h)+"px";
7431                 }
7432             }else if(sh){
7433                 if(doShow){
7434                    sh.show();
7435                 }
7436                 sh.setSize(w, h);
7437                 sh.setLeftTop(l, t);
7438             }
7439             
7440         }
7441     },
7442
7443     // private
7444     destroy : function(){
7445         this.hideShim();
7446         if(this.shadow){
7447             this.shadow.hide();
7448         }
7449         this.removeAllListeners();
7450         var pn = this.dom.parentNode;
7451         if(pn){
7452             pn.removeChild(this.dom);
7453         }
7454         Roo.Element.uncache(this.id);
7455     },
7456
7457     remove : function(){
7458         this.destroy();
7459     },
7460
7461     // private
7462     beginUpdate : function(){
7463         this.updating = true;
7464     },
7465
7466     // private
7467     endUpdate : function(){
7468         this.updating = false;
7469         this.sync(true);
7470     },
7471
7472     // private
7473     hideUnders : function(negOffset){
7474         if(this.shadow){
7475             this.shadow.hide();
7476         }
7477         this.hideShim();
7478     },
7479
7480     // private
7481     constrainXY : function(){
7482         if(this.constrain){
7483             var vw = Roo.lib.Dom.getViewWidth(),
7484                 vh = Roo.lib.Dom.getViewHeight();
7485             var s = Roo.get(document).getScroll();
7486
7487             var xy = this.getXY();
7488             var x = xy[0], y = xy[1];   
7489             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
7490             // only move it if it needs it
7491             var moved = false;
7492             // first validate right/bottom
7493             if((x + w) > vw+s.left){
7494                 x = vw - w - this.shadowOffset;
7495                 moved = true;
7496             }
7497             if((y + h) > vh+s.top){
7498                 y = vh - h - this.shadowOffset;
7499                 moved = true;
7500             }
7501             // then make sure top/left isn't negative
7502             if(x < s.left){
7503                 x = s.left;
7504                 moved = true;
7505             }
7506             if(y < s.top){
7507                 y = s.top;
7508                 moved = true;
7509             }
7510             if(moved){
7511                 if(this.avoidY){
7512                     var ay = this.avoidY;
7513                     if(y <= ay && (y+h) >= ay){
7514                         y = ay-h-5;   
7515                     }
7516                 }
7517                 xy = [x, y];
7518                 this.storeXY(xy);
7519                 supr.setXY.call(this, xy);
7520                 this.sync();
7521             }
7522         }
7523     },
7524
7525     isVisible : function(){
7526         return this.visible;    
7527     },
7528
7529     // private
7530     showAction : function(){
7531         this.visible = true; // track visibility to prevent getStyle calls
7532         if(this.useDisplay === true){
7533             this.setDisplayed("");
7534         }else if(this.lastXY){
7535             supr.setXY.call(this, this.lastXY);
7536         }else if(this.lastLT){
7537             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
7538         }
7539     },
7540
7541     // private
7542     hideAction : function(){
7543         this.visible = false;
7544         if(this.useDisplay === true){
7545             this.setDisplayed(false);
7546         }else{
7547             this.setLeftTop(-10000,-10000);
7548         }
7549     },
7550
7551     // overridden Element method
7552     setVisible : function(v, a, d, c, e){
7553         if(v){
7554             this.showAction();
7555         }
7556         if(a && v){
7557             var cb = function(){
7558                 this.sync(true);
7559                 if(c){
7560                     c();
7561                 }
7562             }.createDelegate(this);
7563             supr.setVisible.call(this, true, true, d, cb, e);
7564         }else{
7565             if(!v){
7566                 this.hideUnders(true);
7567             }
7568             var cb = c;
7569             if(a){
7570                 cb = function(){
7571                     this.hideAction();
7572                     if(c){
7573                         c();
7574                     }
7575                 }.createDelegate(this);
7576             }
7577             supr.setVisible.call(this, v, a, d, cb, e);
7578             if(v){
7579                 this.sync(true);
7580             }else if(!a){
7581                 this.hideAction();
7582             }
7583         }
7584     },
7585
7586     storeXY : function(xy){
7587         delete this.lastLT;
7588         this.lastXY = xy;
7589     },
7590
7591     storeLeftTop : function(left, top){
7592         delete this.lastXY;
7593         this.lastLT = [left, top];
7594     },
7595
7596     // private
7597     beforeFx : function(){
7598         this.beforeAction();
7599         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
7600     },
7601
7602     // private
7603     afterFx : function(){
7604         Roo.Layer.superclass.afterFx.apply(this, arguments);
7605         this.sync(this.isVisible());
7606     },
7607
7608     // private
7609     beforeAction : function(){
7610         if(!this.updating && this.shadow){
7611             this.shadow.hide();
7612         }
7613     },
7614
7615     // overridden Element method
7616     setLeft : function(left){
7617         this.storeLeftTop(left, this.getTop(true));
7618         supr.setLeft.apply(this, arguments);
7619         this.sync();
7620     },
7621
7622     setTop : function(top){
7623         this.storeLeftTop(this.getLeft(true), top);
7624         supr.setTop.apply(this, arguments);
7625         this.sync();
7626     },
7627
7628     setLeftTop : function(left, top){
7629         this.storeLeftTop(left, top);
7630         supr.setLeftTop.apply(this, arguments);
7631         this.sync();
7632     },
7633
7634     setXY : function(xy, a, d, c, e){
7635         this.fixDisplay();
7636         this.beforeAction();
7637         this.storeXY(xy);
7638         var cb = this.createCB(c);
7639         supr.setXY.call(this, xy, a, d, cb, e);
7640         if(!a){
7641             cb();
7642         }
7643     },
7644
7645     // private
7646     createCB : function(c){
7647         var el = this;
7648         return function(){
7649             el.constrainXY();
7650             el.sync(true);
7651             if(c){
7652                 c();
7653             }
7654         };
7655     },
7656
7657     // overridden Element method
7658     setX : function(x, a, d, c, e){
7659         this.setXY([x, this.getY()], a, d, c, e);
7660     },
7661
7662     // overridden Element method
7663     setY : function(y, a, d, c, e){
7664         this.setXY([this.getX(), y], a, d, c, e);
7665     },
7666
7667     // overridden Element method
7668     setSize : function(w, h, a, d, c, e){
7669         this.beforeAction();
7670         var cb = this.createCB(c);
7671         supr.setSize.call(this, w, h, a, d, cb, e);
7672         if(!a){
7673             cb();
7674         }
7675     },
7676
7677     // overridden Element method
7678     setWidth : function(w, a, d, c, e){
7679         this.beforeAction();
7680         var cb = this.createCB(c);
7681         supr.setWidth.call(this, w, a, d, cb, e);
7682         if(!a){
7683             cb();
7684         }
7685     },
7686
7687     // overridden Element method
7688     setHeight : function(h, a, d, c, e){
7689         this.beforeAction();
7690         var cb = this.createCB(c);
7691         supr.setHeight.call(this, h, a, d, cb, e);
7692         if(!a){
7693             cb();
7694         }
7695     },
7696
7697     // overridden Element method
7698     setBounds : function(x, y, w, h, a, d, c, e){
7699         this.beforeAction();
7700         var cb = this.createCB(c);
7701         if(!a){
7702             this.storeXY([x, y]);
7703             supr.setXY.call(this, [x, y]);
7704             supr.setSize.call(this, w, h, a, d, cb, e);
7705             cb();
7706         }else{
7707             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
7708         }
7709         return this;
7710     },
7711     
7712     /**
7713      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
7714      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
7715      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
7716      * @param {Number} zindex The new z-index to set
7717      * @return {this} The Layer
7718      */
7719     setZIndex : function(zindex){
7720         this.zindex = zindex;
7721         this.setStyle("z-index", zindex + 2);
7722         if(this.shadow){
7723             this.shadow.setZIndex(zindex + 1);
7724         }
7725         if(this.shim){
7726             this.shim.setStyle("z-index", zindex);
7727         }
7728     }
7729 });
7730 })();/*
7731  * Based on:
7732  * Ext JS Library 1.1.1
7733  * Copyright(c) 2006-2007, Ext JS, LLC.
7734  *
7735  * Originally Released Under LGPL - original licence link has changed is not relivant.
7736  *
7737  * Fork - LGPL
7738  * <script type="text/javascript">
7739  */
7740
7741
7742 /**
7743  * @class Roo.Shadow
7744  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
7745  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
7746  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
7747  * @constructor
7748  * Create a new Shadow
7749  * @param {Object} config The config object
7750  */
7751 Roo.Shadow = function(config){
7752     Roo.apply(this, config);
7753     if(typeof this.mode != "string"){
7754         this.mode = this.defaultMode;
7755     }
7756     var o = this.offset, a = {h: 0};
7757     var rad = Math.floor(this.offset/2);
7758     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
7759         case "drop":
7760             a.w = 0;
7761             a.l = a.t = o;
7762             a.t -= 1;
7763             if(Roo.isIE){
7764                 a.l -= this.offset + rad;
7765                 a.t -= this.offset + rad;
7766                 a.w -= rad;
7767                 a.h -= rad;
7768                 a.t += 1;
7769             }
7770         break;
7771         case "sides":
7772             a.w = (o*2);
7773             a.l = -o;
7774             a.t = o-1;
7775             if(Roo.isIE){
7776                 a.l -= (this.offset - rad);
7777                 a.t -= this.offset + rad;
7778                 a.l += 1;
7779                 a.w -= (this.offset - rad)*2;
7780                 a.w -= rad + 1;
7781                 a.h -= 1;
7782             }
7783         break;
7784         case "frame":
7785             a.w = a.h = (o*2);
7786             a.l = a.t = -o;
7787             a.t += 1;
7788             a.h -= 2;
7789             if(Roo.isIE){
7790                 a.l -= (this.offset - rad);
7791                 a.t -= (this.offset - rad);
7792                 a.l += 1;
7793                 a.w -= (this.offset + rad + 1);
7794                 a.h -= (this.offset + rad);
7795                 a.h += 1;
7796             }
7797         break;
7798     };
7799
7800     this.adjusts = a;
7801 };
7802
7803 Roo.Shadow.prototype = {
7804     /**
7805      * @cfg {String} mode
7806      * The shadow display mode.  Supports the following options:<br />
7807      * sides: Shadow displays on both sides and bottom only<br />
7808      * frame: Shadow displays equally on all four sides<br />
7809      * drop: Traditional bottom-right drop shadow (default)
7810      */
7811     /**
7812      * @cfg {String} offset
7813      * The number of pixels to offset the shadow from the element (defaults to 4)
7814      */
7815     offset: 4,
7816
7817     // private
7818     defaultMode: "drop",
7819
7820     /**
7821      * Displays the shadow under the target element
7822      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
7823      */
7824     show : function(target){
7825         target = Roo.get(target);
7826         if(!this.el){
7827             this.el = Roo.Shadow.Pool.pull();
7828             if(this.el.dom.nextSibling != target.dom){
7829                 this.el.insertBefore(target);
7830             }
7831         }
7832         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
7833         if(Roo.isIE){
7834             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
7835         }
7836         this.realign(
7837             target.getLeft(true),
7838             target.getTop(true),
7839             target.getWidth(),
7840             target.getHeight()
7841         );
7842         this.el.dom.style.display = "block";
7843     },
7844
7845     /**
7846      * Returns true if the shadow is visible, else false
7847      */
7848     isVisible : function(){
7849         return this.el ? true : false;  
7850     },
7851
7852     /**
7853      * Direct alignment when values are already available. Show must be called at least once before
7854      * calling this method to ensure it is initialized.
7855      * @param {Number} left The target element left position
7856      * @param {Number} top The target element top position
7857      * @param {Number} width The target element width
7858      * @param {Number} height The target element height
7859      */
7860     realign : function(l, t, w, h){
7861         if(!this.el){
7862             return;
7863         }
7864         var a = this.adjusts, d = this.el.dom, s = d.style;
7865         var iea = 0;
7866         s.left = (l+a.l)+"px";
7867         s.top = (t+a.t)+"px";
7868         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
7869  
7870         if(s.width != sws || s.height != shs){
7871             s.width = sws;
7872             s.height = shs;
7873             if(!Roo.isIE){
7874                 var cn = d.childNodes;
7875                 var sww = Math.max(0, (sw-12))+"px";
7876                 cn[0].childNodes[1].style.width = sww;
7877                 cn[1].childNodes[1].style.width = sww;
7878                 cn[2].childNodes[1].style.width = sww;
7879                 cn[1].style.height = Math.max(0, (sh-12))+"px";
7880             }
7881         }
7882     },
7883
7884     /**
7885      * Hides this shadow
7886      */
7887     hide : function(){
7888         if(this.el){
7889             this.el.dom.style.display = "none";
7890             Roo.Shadow.Pool.push(this.el);
7891             delete this.el;
7892         }
7893     },
7894
7895     /**
7896      * Adjust the z-index of this shadow
7897      * @param {Number} zindex The new z-index
7898      */
7899     setZIndex : function(z){
7900         this.zIndex = z;
7901         if(this.el){
7902             this.el.setStyle("z-index", z);
7903         }
7904     }
7905 };
7906
7907 // Private utility class that manages the internal Shadow cache
7908 Roo.Shadow.Pool = function(){
7909     var p = [];
7910     var markup = Roo.isIE ?
7911                  '<div class="x-ie-shadow"></div>' :
7912                  '<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>';
7913     return {
7914         pull : function(){
7915             var sh = p.shift();
7916             if(!sh){
7917                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
7918                 sh.autoBoxAdjust = false;
7919             }
7920             return sh;
7921         },
7922
7923         push : function(sh){
7924             p.push(sh);
7925         }
7926     };
7927 }();/*
7928  * Based on:
7929  * Ext JS Library 1.1.1
7930  * Copyright(c) 2006-2007, Ext JS, LLC.
7931  *
7932  * Originally Released Under LGPL - original licence link has changed is not relivant.
7933  *
7934  * Fork - LGPL
7935  * <script type="text/javascript">
7936  */
7937
7938
7939 /**
7940  * @class Roo.SplitBar
7941  * @extends Roo.util.Observable
7942  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
7943  * <br><br>
7944  * Usage:
7945  * <pre><code>
7946 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
7947                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
7948 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
7949 split.minSize = 100;
7950 split.maxSize = 600;
7951 split.animate = true;
7952 split.on('moved', splitterMoved);
7953 </code></pre>
7954  * @constructor
7955  * Create a new SplitBar
7956  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
7957  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
7958  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
7959  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
7960                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
7961                         position of the SplitBar).
7962  */
7963 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
7964     
7965     /** @private */
7966     this.el = Roo.get(dragElement, true);
7967     this.el.dom.unselectable = "on";
7968     /** @private */
7969     this.resizingEl = Roo.get(resizingElement, true);
7970
7971     /**
7972      * @private
7973      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
7974      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
7975      * @type Number
7976      */
7977     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
7978     
7979     /**
7980      * The minimum size of the resizing element. (Defaults to 0)
7981      * @type Number
7982      */
7983     this.minSize = 0;
7984     
7985     /**
7986      * The maximum size of the resizing element. (Defaults to 2000)
7987      * @type Number
7988      */
7989     this.maxSize = 2000;
7990     
7991     /**
7992      * Whether to animate the transition to the new size
7993      * @type Boolean
7994      */
7995     this.animate = false;
7996     
7997     /**
7998      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
7999      * @type Boolean
8000      */
8001     this.useShim = false;
8002     
8003     /** @private */
8004     this.shim = null;
8005     
8006     if(!existingProxy){
8007         /** @private */
8008         this.proxy = Roo.SplitBar.createProxy(this.orientation);
8009     }else{
8010         this.proxy = Roo.get(existingProxy).dom;
8011     }
8012     /** @private */
8013     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
8014     
8015     /** @private */
8016     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
8017     
8018     /** @private */
8019     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
8020     
8021     /** @private */
8022     this.dragSpecs = {};
8023     
8024     /**
8025      * @private The adapter to use to positon and resize elements
8026      */
8027     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
8028     this.adapter.init(this);
8029     
8030     if(this.orientation == Roo.SplitBar.HORIZONTAL){
8031         /** @private */
8032         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
8033         this.el.addClass("x-splitbar-h");
8034     }else{
8035         /** @private */
8036         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
8037         this.el.addClass("x-splitbar-v");
8038     }
8039     
8040     this.addEvents({
8041         /**
8042          * @event resize
8043          * Fires when the splitter is moved (alias for {@link #event-moved})
8044          * @param {Roo.SplitBar} this
8045          * @param {Number} newSize the new width or height
8046          */
8047         "resize" : true,
8048         /**
8049          * @event moved
8050          * Fires when the splitter is moved
8051          * @param {Roo.SplitBar} this
8052          * @param {Number} newSize the new width or height
8053          */
8054         "moved" : true,
8055         /**
8056          * @event beforeresize
8057          * Fires before the splitter is dragged
8058          * @param {Roo.SplitBar} this
8059          */
8060         "beforeresize" : true,
8061
8062         "beforeapply" : true
8063     });
8064
8065     Roo.util.Observable.call(this);
8066 };
8067
8068 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
8069     onStartProxyDrag : function(x, y){
8070         this.fireEvent("beforeresize", this);
8071         if(!this.overlay){
8072             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
8073             o.unselectable();
8074             o.enableDisplayMode("block");
8075             // all splitbars share the same overlay
8076             Roo.SplitBar.prototype.overlay = o;
8077         }
8078         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
8079         this.overlay.show();
8080         Roo.get(this.proxy).setDisplayed("block");
8081         var size = this.adapter.getElementSize(this);
8082         this.activeMinSize = this.getMinimumSize();;
8083         this.activeMaxSize = this.getMaximumSize();;
8084         var c1 = size - this.activeMinSize;
8085         var c2 = Math.max(this.activeMaxSize - size, 0);
8086         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8087             this.dd.resetConstraints();
8088             this.dd.setXConstraint(
8089                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
8090                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
8091             );
8092             this.dd.setYConstraint(0, 0);
8093         }else{
8094             this.dd.resetConstraints();
8095             this.dd.setXConstraint(0, 0);
8096             this.dd.setYConstraint(
8097                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
8098                 this.placement == Roo.SplitBar.TOP ? c2 : c1
8099             );
8100          }
8101         this.dragSpecs.startSize = size;
8102         this.dragSpecs.startPoint = [x, y];
8103         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
8104     },
8105     
8106     /** 
8107      * @private Called after the drag operation by the DDProxy
8108      */
8109     onEndProxyDrag : function(e){
8110         Roo.get(this.proxy).setDisplayed(false);
8111         var endPoint = Roo.lib.Event.getXY(e);
8112         if(this.overlay){
8113             this.overlay.hide();
8114         }
8115         var newSize;
8116         if(this.orientation == Roo.SplitBar.HORIZONTAL){
8117             newSize = this.dragSpecs.startSize + 
8118                 (this.placement == Roo.SplitBar.LEFT ?
8119                     endPoint[0] - this.dragSpecs.startPoint[0] :
8120                     this.dragSpecs.startPoint[0] - endPoint[0]
8121                 );
8122         }else{
8123             newSize = this.dragSpecs.startSize + 
8124                 (this.placement == Roo.SplitBar.TOP ?
8125                     endPoint[1] - this.dragSpecs.startPoint[1] :
8126                     this.dragSpecs.startPoint[1] - endPoint[1]
8127                 );
8128         }
8129         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
8130         if(newSize != this.dragSpecs.startSize){
8131             if(this.fireEvent('beforeapply', this, newSize) !== false){
8132                 this.adapter.setElementSize(this, newSize);
8133                 this.fireEvent("moved", this, newSize);
8134                 this.fireEvent("resize", this, newSize);
8135             }
8136         }
8137     },
8138     
8139     /**
8140      * Get the adapter this SplitBar uses
8141      * @return The adapter object
8142      */
8143     getAdapter : function(){
8144         return this.adapter;
8145     },
8146     
8147     /**
8148      * Set the adapter this SplitBar uses
8149      * @param {Object} adapter A SplitBar adapter object
8150      */
8151     setAdapter : function(adapter){
8152         this.adapter = adapter;
8153         this.adapter.init(this);
8154     },
8155     
8156     /**
8157      * Gets the minimum size for the resizing element
8158      * @return {Number} The minimum size
8159      */
8160     getMinimumSize : function(){
8161         return this.minSize;
8162     },
8163     
8164     /**
8165      * Sets the minimum size for the resizing element
8166      * @param {Number} minSize The minimum size
8167      */
8168     setMinimumSize : function(minSize){
8169         this.minSize = minSize;
8170     },
8171     
8172     /**
8173      * Gets the maximum size for the resizing element
8174      * @return {Number} The maximum size
8175      */
8176     getMaximumSize : function(){
8177         return this.maxSize;
8178     },
8179     
8180     /**
8181      * Sets the maximum size for the resizing element
8182      * @param {Number} maxSize The maximum size
8183      */
8184     setMaximumSize : function(maxSize){
8185         this.maxSize = maxSize;
8186     },
8187     
8188     /**
8189      * Sets the initialize size for the resizing element
8190      * @param {Number} size The initial size
8191      */
8192     setCurrentSize : function(size){
8193         var oldAnimate = this.animate;
8194         this.animate = false;
8195         this.adapter.setElementSize(this, size);
8196         this.animate = oldAnimate;
8197     },
8198     
8199     /**
8200      * Destroy this splitbar. 
8201      * @param {Boolean} removeEl True to remove the element
8202      */
8203     destroy : function(removeEl){
8204         if(this.shim){
8205             this.shim.remove();
8206         }
8207         this.dd.unreg();
8208         this.proxy.parentNode.removeChild(this.proxy);
8209         if(removeEl){
8210             this.el.remove();
8211         }
8212     }
8213 });
8214
8215 /**
8216  * @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.
8217  */
8218 Roo.SplitBar.createProxy = function(dir){
8219     var proxy = new Roo.Element(document.createElement("div"));
8220     proxy.unselectable();
8221     var cls = 'x-splitbar-proxy';
8222     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
8223     document.body.appendChild(proxy.dom);
8224     return proxy.dom;
8225 };
8226
8227 /** 
8228  * @class Roo.SplitBar.BasicLayoutAdapter
8229  * Default Adapter. It assumes the splitter and resizing element are not positioned
8230  * elements and only gets/sets the width of the element. Generally used for table based layouts.
8231  */
8232 Roo.SplitBar.BasicLayoutAdapter = function(){
8233 };
8234
8235 Roo.SplitBar.BasicLayoutAdapter.prototype = {
8236     // do nothing for now
8237     init : function(s){
8238     
8239     },
8240     /**
8241      * Called before drag operations to get the current size of the resizing element. 
8242      * @param {Roo.SplitBar} s The SplitBar using this adapter
8243      */
8244      getElementSize : function(s){
8245         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8246             return s.resizingEl.getWidth();
8247         }else{
8248             return s.resizingEl.getHeight();
8249         }
8250     },
8251     
8252     /**
8253      * Called after drag operations to set the size of the resizing element.
8254      * @param {Roo.SplitBar} s The SplitBar using this adapter
8255      * @param {Number} newSize The new size to set
8256      * @param {Function} onComplete A function to be invoked when resizing is complete
8257      */
8258     setElementSize : function(s, newSize, onComplete){
8259         if(s.orientation == Roo.SplitBar.HORIZONTAL){
8260             if(!s.animate){
8261                 s.resizingEl.setWidth(newSize);
8262                 if(onComplete){
8263                     onComplete(s, newSize);
8264                 }
8265             }else{
8266                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
8267             }
8268         }else{
8269             
8270             if(!s.animate){
8271                 s.resizingEl.setHeight(newSize);
8272                 if(onComplete){
8273                     onComplete(s, newSize);
8274                 }
8275             }else{
8276                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
8277             }
8278         }
8279     }
8280 };
8281
8282 /** 
8283  *@class Roo.SplitBar.AbsoluteLayoutAdapter
8284  * @extends Roo.SplitBar.BasicLayoutAdapter
8285  * Adapter that  moves the splitter element to align with the resized sizing element. 
8286  * Used with an absolute positioned SplitBar.
8287  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
8288  * document.body, make sure you assign an id to the body element.
8289  */
8290 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
8291     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
8292     this.container = Roo.get(container);
8293 };
8294
8295 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
8296     init : function(s){
8297         this.basic.init(s);
8298     },
8299     
8300     getElementSize : function(s){
8301         return this.basic.getElementSize(s);
8302     },
8303     
8304     setElementSize : function(s, newSize, onComplete){
8305         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
8306     },
8307     
8308     moveSplitter : function(s){
8309         var yes = Roo.SplitBar;
8310         switch(s.placement){
8311             case yes.LEFT:
8312                 s.el.setX(s.resizingEl.getRight());
8313                 break;
8314             case yes.RIGHT:
8315                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
8316                 break;
8317             case yes.TOP:
8318                 s.el.setY(s.resizingEl.getBottom());
8319                 break;
8320             case yes.BOTTOM:
8321                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
8322                 break;
8323         }
8324     }
8325 };
8326
8327 /**
8328  * Orientation constant - Create a vertical SplitBar
8329  * @static
8330  * @type Number
8331  */
8332 Roo.SplitBar.VERTICAL = 1;
8333
8334 /**
8335  * Orientation constant - Create a horizontal SplitBar
8336  * @static
8337  * @type Number
8338  */
8339 Roo.SplitBar.HORIZONTAL = 2;
8340
8341 /**
8342  * Placement constant - The resizing element is to the left of the splitter element
8343  * @static
8344  * @type Number
8345  */
8346 Roo.SplitBar.LEFT = 1;
8347
8348 /**
8349  * Placement constant - The resizing element is to the right of the splitter element
8350  * @static
8351  * @type Number
8352  */
8353 Roo.SplitBar.RIGHT = 2;
8354
8355 /**
8356  * Placement constant - The resizing element is positioned above the splitter element
8357  * @static
8358  * @type Number
8359  */
8360 Roo.SplitBar.TOP = 3;
8361
8362 /**
8363  * Placement constant - The resizing element is positioned under splitter element
8364  * @static
8365  * @type Number
8366  */
8367 Roo.SplitBar.BOTTOM = 4;
8368 /*
8369  * Based on:
8370  * Ext JS Library 1.1.1
8371  * Copyright(c) 2006-2007, Ext JS, LLC.
8372  *
8373  * Originally Released Under LGPL - original licence link has changed is not relivant.
8374  *
8375  * Fork - LGPL
8376  * <script type="text/javascript">
8377  */
8378
8379 /**
8380  * @class Roo.View
8381  * @extends Roo.util.Observable
8382  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
8383  * This class also supports single and multi selection modes. <br>
8384  * Create a data model bound view:
8385  <pre><code>
8386  var store = new Roo.data.Store(...);
8387
8388  var view = new Roo.View({
8389     el : "my-element",
8390     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
8391  
8392     singleSelect: true,
8393     selectedClass: "ydataview-selected",
8394     store: store
8395  });
8396
8397  // listen for node click?
8398  view.on("click", function(vw, index, node, e){
8399  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
8400  });
8401
8402  // load XML data
8403  dataModel.load("foobar.xml");
8404  </code></pre>
8405  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
8406  * <br><br>
8407  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
8408  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
8409  * 
8410  * Note: old style constructor is still suported (container, template, config)
8411  * 
8412  * @constructor
8413  * Create a new View
8414  * @param {Object} config The config object
8415  * 
8416  */
8417 Roo.View = function(config, depreciated_tpl, depreciated_config){
8418     
8419     if (typeof(depreciated_tpl) == 'undefined') {
8420         // new way.. - universal constructor.
8421         Roo.apply(this, config);
8422         this.el  = Roo.get(this.el);
8423     } else {
8424         // old format..
8425         this.el  = Roo.get(config);
8426         this.tpl = depreciated_tpl;
8427         Roo.apply(this, depreciated_config);
8428     }
8429     this.wrapEl  = this.el.wrap().wrap();
8430     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
8431     
8432     
8433     if(typeof(this.tpl) == "string"){
8434         this.tpl = new Roo.Template(this.tpl);
8435     } else {
8436         // support xtype ctors..
8437         this.tpl = new Roo.factory(this.tpl, Roo);
8438     }
8439     
8440     
8441     this.tpl.compile();
8442    
8443   
8444     
8445      
8446     /** @private */
8447     this.addEvents({
8448         /**
8449          * @event beforeclick
8450          * Fires before a click is processed. Returns false to cancel the default action.
8451          * @param {Roo.View} this
8452          * @param {Number} index The index of the target node
8453          * @param {HTMLElement} node The target node
8454          * @param {Roo.EventObject} e The raw event object
8455          */
8456             "beforeclick" : true,
8457         /**
8458          * @event click
8459          * Fires when a template node is clicked.
8460          * @param {Roo.View} this
8461          * @param {Number} index The index of the target node
8462          * @param {HTMLElement} node The target node
8463          * @param {Roo.EventObject} e The raw event object
8464          */
8465             "click" : true,
8466         /**
8467          * @event dblclick
8468          * Fires when a template node is double clicked.
8469          * @param {Roo.View} this
8470          * @param {Number} index The index of the target node
8471          * @param {HTMLElement} node The target node
8472          * @param {Roo.EventObject} e The raw event object
8473          */
8474             "dblclick" : true,
8475         /**
8476          * @event contextmenu
8477          * Fires when a template node is right clicked.
8478          * @param {Roo.View} this
8479          * @param {Number} index The index of the target node
8480          * @param {HTMLElement} node The target node
8481          * @param {Roo.EventObject} e The raw event object
8482          */
8483             "contextmenu" : true,
8484         /**
8485          * @event selectionchange
8486          * Fires when the selected nodes change.
8487          * @param {Roo.View} this
8488          * @param {Array} selections Array of the selected nodes
8489          */
8490             "selectionchange" : true,
8491     
8492         /**
8493          * @event beforeselect
8494          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
8495          * @param {Roo.View} this
8496          * @param {HTMLElement} node The node to be selected
8497          * @param {Array} selections Array of currently selected nodes
8498          */
8499             "beforeselect" : true,
8500         /**
8501          * @event preparedata
8502          * Fires on every row to render, to allow you to change the data.
8503          * @param {Roo.View} this
8504          * @param {Object} data to be rendered (change this)
8505          */
8506           "preparedata" : true
8507           
8508           
8509         });
8510
8511
8512
8513     this.el.on({
8514         "click": this.onClick,
8515         "dblclick": this.onDblClick,
8516         "contextmenu": this.onContextMenu,
8517         scope:this
8518     });
8519
8520     this.selections = [];
8521     this.nodes = [];
8522     this.cmp = new Roo.CompositeElementLite([]);
8523     if(this.store){
8524         this.store = Roo.factory(this.store, Roo.data);
8525         this.setStore(this.store, true);
8526     }
8527     
8528     if ( this.footer && this.footer.xtype) {
8529            
8530          var fctr = this.wrapEl.appendChild(document.createElement("div"));
8531         
8532         this.footer.dataSource = this.store
8533         this.footer.container = fctr;
8534         this.footer = Roo.factory(this.footer, Roo);
8535         fctr.insertFirst(this.el);
8536         
8537         // this is a bit insane - as the paging toolbar seems to detach the el..
8538 //        dom.parentNode.parentNode.parentNode
8539          // they get detached?
8540     }
8541     
8542     
8543     Roo.View.superclass.constructor.call(this);
8544     
8545     
8546 };
8547
8548 Roo.extend(Roo.View, Roo.util.Observable, {
8549     
8550      /**
8551      * @cfg {Roo.data.Store} store Data store to load data from.
8552      */
8553     store : false,
8554     
8555     /**
8556      * @cfg {String|Roo.Element} el The container element.
8557      */
8558     el : '',
8559     
8560     /**
8561      * @cfg {String|Roo.Template} tpl The template used by this View 
8562      */
8563     tpl : false,
8564     /**
8565      * @cfg {String} dataName the named area of the template to use as the data area
8566      *                          Works with domtemplates roo-name="name"
8567      */
8568     dataName: false,
8569     /**
8570      * @cfg {String} selectedClass The css class to add to selected nodes
8571      */
8572     selectedClass : "x-view-selected",
8573      /**
8574      * @cfg {String} emptyText The empty text to show when nothing is loaded.
8575      */
8576     emptyText : "",
8577     
8578     /**
8579      * @cfg {String} text to display on mask (default Loading)
8580      */
8581     mask : false,
8582     /**
8583      * @cfg {Boolean} multiSelect Allow multiple selection
8584      */
8585     multiSelect : false,
8586     /**
8587      * @cfg {Boolean} singleSelect Allow single selection
8588      */
8589     singleSelect:  false,
8590     
8591     /**
8592      * @cfg {Boolean} toggleSelect - selecting 
8593      */
8594     toggleSelect : false,
8595     
8596     /**
8597      * Returns the element this view is bound to.
8598      * @return {Roo.Element}
8599      */
8600     getEl : function(){
8601         return this.wrapEl;
8602     },
8603     
8604     
8605
8606     /**
8607      * Refreshes the view. - called by datachanged on the store. - do not call directly.
8608      */
8609     refresh : function(){
8610         var t = this.tpl;
8611         
8612         // if we are using something like 'domtemplate', then
8613         // the what gets used is:
8614         // t.applySubtemplate(NAME, data, wrapping data..)
8615         // the outer template then get' applied with
8616         //     the store 'extra data'
8617         // and the body get's added to the
8618         //      roo-name="data" node?
8619         //      <span class='roo-tpl-{name}'></span> ?????
8620         
8621         
8622         
8623         this.clearSelections();
8624         this.el.update("");
8625         var html = [];
8626         var records = this.store.getRange();
8627         if(records.length < 1) {
8628             
8629             // is this valid??  = should it render a template??
8630             
8631             this.el.update(this.emptyText);
8632             return;
8633         }
8634         var el = this.el;
8635         if (this.dataName) {
8636             this.el.update(t.apply(this.store.meta)); //????
8637             el = this.el.child('.roo-tpl-' + this.dataName);
8638         }
8639         
8640         for(var i = 0, len = records.length; i < len; i++){
8641             var data = this.prepareData(records[i].data, i, records[i]);
8642             this.fireEvent("preparedata", this, data, i, records[i]);
8643             html[html.length] = Roo.util.Format.trim(
8644                 this.dataName ?
8645                     t.applySubtemplate(this.dataName, data, this.store.meta) :
8646                     t.apply(data)
8647             );
8648         }
8649         
8650         
8651         
8652         el.update(html.join(""));
8653         this.nodes = el.dom.childNodes;
8654         this.updateIndexes(0);
8655     },
8656
8657     /**
8658      * Function to override to reformat the data that is sent to
8659      * the template for each node.
8660      * DEPRICATED - use the preparedata event handler.
8661      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
8662      * a JSON object for an UpdateManager bound view).
8663      */
8664     prepareData : function(data, index, record)
8665     {
8666         this.fireEvent("preparedata", this, data, index, record);
8667         return data;
8668     },
8669
8670     onUpdate : function(ds, record){
8671         this.clearSelections();
8672         var index = this.store.indexOf(record);
8673         var n = this.nodes[index];
8674         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
8675         n.parentNode.removeChild(n);
8676         this.updateIndexes(index, index);
8677     },
8678
8679     
8680     
8681 // --------- FIXME     
8682     onAdd : function(ds, records, index)
8683     {
8684         this.clearSelections();
8685         if(this.nodes.length == 0){
8686             this.refresh();
8687             return;
8688         }
8689         var n = this.nodes[index];
8690         for(var i = 0, len = records.length; i < len; i++){
8691             var d = this.prepareData(records[i].data, i, records[i]);
8692             if(n){
8693                 this.tpl.insertBefore(n, d);
8694             }else{
8695                 
8696                 this.tpl.append(this.el, d);
8697             }
8698         }
8699         this.updateIndexes(index);
8700     },
8701
8702     onRemove : function(ds, record, index){
8703         this.clearSelections();
8704         var el = this.dataName  ?
8705             this.el.child('.roo-tpl-' + this.dataName) :
8706             this.el; 
8707         el.dom.removeChild(this.nodes[index]);
8708         this.updateIndexes(index);
8709     },
8710
8711     /**
8712      * Refresh an individual node.
8713      * @param {Number} index
8714      */
8715     refreshNode : function(index){
8716         this.onUpdate(this.store, this.store.getAt(index));
8717     },
8718
8719     updateIndexes : function(startIndex, endIndex){
8720         var ns = this.nodes;
8721         startIndex = startIndex || 0;
8722         endIndex = endIndex || ns.length - 1;
8723         for(var i = startIndex; i <= endIndex; i++){
8724             ns[i].nodeIndex = i;
8725         }
8726     },
8727
8728     /**
8729      * Changes the data store this view uses and refresh the view.
8730      * @param {Store} store
8731      */
8732     setStore : function(store, initial){
8733         if(!initial && this.store){
8734             this.store.un("datachanged", this.refresh);
8735             this.store.un("add", this.onAdd);
8736             this.store.un("remove", this.onRemove);
8737             this.store.un("update", this.onUpdate);
8738             this.store.un("clear", this.refresh);
8739             this.store.un("beforeload", this.onBeforeLoad);
8740             this.store.un("load", this.onLoad);
8741             this.store.un("loadexception", this.onLoad);
8742         }
8743         if(store){
8744           
8745             store.on("datachanged", this.refresh, this);
8746             store.on("add", this.onAdd, this);
8747             store.on("remove", this.onRemove, this);
8748             store.on("update", this.onUpdate, this);
8749             store.on("clear", this.refresh, this);
8750             store.on("beforeload", this.onBeforeLoad, this);
8751             store.on("load", this.onLoad, this);
8752             store.on("loadexception", this.onLoad, this);
8753         }
8754         
8755         if(store){
8756             this.refresh();
8757         }
8758     },
8759     /**
8760      * onbeforeLoad - masks the loading area.
8761      *
8762      */
8763     onBeforeLoad : function()
8764     {
8765         this.el.update("");
8766         this.el.mask(this.mask ? this.mask : "Loading" ); 
8767     },
8768     onLoad : function ()
8769     {
8770         this.el.unmask();
8771     },
8772     
8773
8774     /**
8775      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
8776      * @param {HTMLElement} node
8777      * @return {HTMLElement} The template node
8778      */
8779     findItemFromChild : function(node){
8780         var el = this.dataName  ?
8781             this.el.child('.roo-tpl-' + this.dataName,true) :
8782             this.el.dom; 
8783         
8784         if(!node || node.parentNode == el){
8785                     return node;
8786             }
8787             var p = node.parentNode;
8788             while(p && p != el){
8789             if(p.parentNode == el){
8790                 return p;
8791             }
8792             p = p.parentNode;
8793         }
8794             return null;
8795     },
8796
8797     /** @ignore */
8798     onClick : function(e){
8799         var item = this.findItemFromChild(e.getTarget());
8800         if(item){
8801             var index = this.indexOf(item);
8802             if(this.onItemClick(item, index, e) !== false){
8803                 this.fireEvent("click", this, index, item, e);
8804             }
8805         }else{
8806             this.clearSelections();
8807         }
8808     },
8809
8810     /** @ignore */
8811     onContextMenu : function(e){
8812         var item = this.findItemFromChild(e.getTarget());
8813         if(item){
8814             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
8815         }
8816     },
8817
8818     /** @ignore */
8819     onDblClick : function(e){
8820         var item = this.findItemFromChild(e.getTarget());
8821         if(item){
8822             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
8823         }
8824     },
8825
8826     onItemClick : function(item, index, e)
8827     {
8828         if(this.fireEvent("beforeclick", this, index, item, e) === false){
8829             return false;
8830         }
8831         if (this.toggleSelect) {
8832             var m = this.isSelected(item) ? 'unselect' : 'select';
8833             Roo.log(m);
8834             var _t = this;
8835             _t[m](item, true, false);
8836             return true;
8837         }
8838         if(this.multiSelect || this.singleSelect){
8839             if(this.multiSelect && e.shiftKey && this.lastSelection){
8840                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
8841             }else{
8842                 this.select(item, this.multiSelect && e.ctrlKey);
8843                 this.lastSelection = item;
8844             }
8845             e.preventDefault();
8846         }
8847         return true;
8848     },
8849
8850     /**
8851      * Get the number of selected nodes.
8852      * @return {Number}
8853      */
8854     getSelectionCount : function(){
8855         return this.selections.length;
8856     },
8857
8858     /**
8859      * Get the currently selected nodes.
8860      * @return {Array} An array of HTMLElements
8861      */
8862     getSelectedNodes : function(){
8863         return this.selections;
8864     },
8865
8866     /**
8867      * Get the indexes of the selected nodes.
8868      * @return {Array}
8869      */
8870     getSelectedIndexes : function(){
8871         var indexes = [], s = this.selections;
8872         for(var i = 0, len = s.length; i < len; i++){
8873             indexes.push(s[i].nodeIndex);
8874         }
8875         return indexes;
8876     },
8877
8878     /**
8879      * Clear all selections
8880      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
8881      */
8882     clearSelections : function(suppressEvent){
8883         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
8884             this.cmp.elements = this.selections;
8885             this.cmp.removeClass(this.selectedClass);
8886             this.selections = [];
8887             if(!suppressEvent){
8888                 this.fireEvent("selectionchange", this, this.selections);
8889             }
8890         }
8891     },
8892
8893     /**
8894      * Returns true if the passed node is selected
8895      * @param {HTMLElement/Number} node The node or node index
8896      * @return {Boolean}
8897      */
8898     isSelected : function(node){
8899         var s = this.selections;
8900         if(s.length < 1){
8901             return false;
8902         }
8903         node = this.getNode(node);
8904         return s.indexOf(node) !== -1;
8905     },
8906
8907     /**
8908      * Selects nodes.
8909      * @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
8910      * @param {Boolean} keepExisting (optional) true to keep existing selections
8911      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8912      */
8913     select : function(nodeInfo, keepExisting, suppressEvent){
8914         if(nodeInfo instanceof Array){
8915             if(!keepExisting){
8916                 this.clearSelections(true);
8917             }
8918             for(var i = 0, len = nodeInfo.length; i < len; i++){
8919                 this.select(nodeInfo[i], true, true);
8920             }
8921             return;
8922         } 
8923         var node = this.getNode(nodeInfo);
8924         if(!node || this.isSelected(node)){
8925             return; // already selected.
8926         }
8927         if(!keepExisting){
8928             this.clearSelections(true);
8929         }
8930         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
8931             Roo.fly(node).addClass(this.selectedClass);
8932             this.selections.push(node);
8933             if(!suppressEvent){
8934                 this.fireEvent("selectionchange", this, this.selections);
8935             }
8936         }
8937         
8938         
8939     },
8940       /**
8941      * Unselects nodes.
8942      * @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
8943      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
8944      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8945      */
8946     unselect : function(nodeInfo, keepExisting, suppressEvent)
8947     {
8948         if(nodeInfo instanceof Array){
8949             Roo.each(this.selections, function(s) {
8950                 this.unselect(s, nodeInfo);
8951             }, this);
8952             return;
8953         }
8954         var node = this.getNode(nodeInfo);
8955         if(!node || !this.isSelected(node)){
8956             Roo.log("not selected");
8957             return; // not selected.
8958         }
8959         // fireevent???
8960         var ns = [];
8961         Roo.each(this.selections, function(s) {
8962             if (s == node ) {
8963                 Roo.fly(node).removeClass(this.selectedClass);
8964
8965                 return;
8966             }
8967             ns.push(s);
8968         },this);
8969         
8970         this.selections= ns;
8971         this.fireEvent("selectionchange", this, this.selections);
8972     },
8973
8974     /**
8975      * Gets a template node.
8976      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
8977      * @return {HTMLElement} The node or null if it wasn't found
8978      */
8979     getNode : function(nodeInfo){
8980         if(typeof nodeInfo == "string"){
8981             return document.getElementById(nodeInfo);
8982         }else if(typeof nodeInfo == "number"){
8983             return this.nodes[nodeInfo];
8984         }
8985         return nodeInfo;
8986     },
8987
8988     /**
8989      * Gets a range template nodes.
8990      * @param {Number} startIndex
8991      * @param {Number} endIndex
8992      * @return {Array} An array of nodes
8993      */
8994     getNodes : function(start, end){
8995         var ns = this.nodes;
8996         start = start || 0;
8997         end = typeof end == "undefined" ? ns.length - 1 : end;
8998         var nodes = [];
8999         if(start <= end){
9000             for(var i = start; i <= end; i++){
9001                 nodes.push(ns[i]);
9002             }
9003         } else{
9004             for(var i = start; i >= end; i--){
9005                 nodes.push(ns[i]);
9006             }
9007         }
9008         return nodes;
9009     },
9010
9011     /**
9012      * Finds the index of the passed node
9013      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
9014      * @return {Number} The index of the node or -1
9015      */
9016     indexOf : function(node){
9017         node = this.getNode(node);
9018         if(typeof node.nodeIndex == "number"){
9019             return node.nodeIndex;
9020         }
9021         var ns = this.nodes;
9022         for(var i = 0, len = ns.length; i < len; i++){
9023             if(ns[i] == node){
9024                 return i;
9025             }
9026         }
9027         return -1;
9028     }
9029 });
9030 /*
9031  * Based on:
9032  * Ext JS Library 1.1.1
9033  * Copyright(c) 2006-2007, Ext JS, LLC.
9034  *
9035  * Originally Released Under LGPL - original licence link has changed is not relivant.
9036  *
9037  * Fork - LGPL
9038  * <script type="text/javascript">
9039  */
9040
9041 /**
9042  * @class Roo.JsonView
9043  * @extends Roo.View
9044  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
9045 <pre><code>
9046 var view = new Roo.JsonView({
9047     container: "my-element",
9048     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
9049     multiSelect: true, 
9050     jsonRoot: "data" 
9051 });
9052
9053 // listen for node click?
9054 view.on("click", function(vw, index, node, e){
9055     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
9056 });
9057
9058 // direct load of JSON data
9059 view.load("foobar.php");
9060
9061 // Example from my blog list
9062 var tpl = new Roo.Template(
9063     '&lt;div class="entry"&gt;' +
9064     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
9065     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
9066     "&lt;/div&gt;&lt;hr /&gt;"
9067 );
9068
9069 var moreView = new Roo.JsonView({
9070     container :  "entry-list", 
9071     template : tpl,
9072     jsonRoot: "posts"
9073 });
9074 moreView.on("beforerender", this.sortEntries, this);
9075 moreView.load({
9076     url: "/blog/get-posts.php",
9077     params: "allposts=true",
9078     text: "Loading Blog Entries..."
9079 });
9080 </code></pre>
9081
9082 * Note: old code is supported with arguments : (container, template, config)
9083
9084
9085  * @constructor
9086  * Create a new JsonView
9087  * 
9088  * @param {Object} config The config object
9089  * 
9090  */
9091 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
9092     
9093     
9094     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
9095
9096     var um = this.el.getUpdateManager();
9097     um.setRenderer(this);
9098     um.on("update", this.onLoad, this);
9099     um.on("failure", this.onLoadException, this);
9100
9101     /**
9102      * @event beforerender
9103      * Fires before rendering of the downloaded JSON data.
9104      * @param {Roo.JsonView} this
9105      * @param {Object} data The JSON data loaded
9106      */
9107     /**
9108      * @event load
9109      * Fires when data is loaded.
9110      * @param {Roo.JsonView} this
9111      * @param {Object} data The JSON data loaded
9112      * @param {Object} response The raw Connect response object
9113      */
9114     /**
9115      * @event loadexception
9116      * Fires when loading fails.
9117      * @param {Roo.JsonView} this
9118      * @param {Object} response The raw Connect response object
9119      */
9120     this.addEvents({
9121         'beforerender' : true,
9122         'load' : true,
9123         'loadexception' : true
9124     });
9125 };
9126 Roo.extend(Roo.JsonView, Roo.View, {
9127     /**
9128      * @type {String} The root property in the loaded JSON object that contains the data
9129      */
9130     jsonRoot : "",
9131
9132     /**
9133      * Refreshes the view.
9134      */
9135     refresh : function(){
9136         this.clearSelections();
9137         this.el.update("");
9138         var html = [];
9139         var o = this.jsonData;
9140         if(o && o.length > 0){
9141             for(var i = 0, len = o.length; i < len; i++){
9142                 var data = this.prepareData(o[i], i, o);
9143                 html[html.length] = this.tpl.apply(data);
9144             }
9145         }else{
9146             html.push(this.emptyText);
9147         }
9148         this.el.update(html.join(""));
9149         this.nodes = this.el.dom.childNodes;
9150         this.updateIndexes(0);
9151     },
9152
9153     /**
9154      * 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.
9155      * @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:
9156      <pre><code>
9157      view.load({
9158          url: "your-url.php",
9159          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
9160          callback: yourFunction,
9161          scope: yourObject, //(optional scope)
9162          discardUrl: false,
9163          nocache: false,
9164          text: "Loading...",
9165          timeout: 30,
9166          scripts: false
9167      });
9168      </code></pre>
9169      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
9170      * 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.
9171      * @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}
9172      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9173      * @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.
9174      */
9175     load : function(){
9176         var um = this.el.getUpdateManager();
9177         um.update.apply(um, arguments);
9178     },
9179
9180     render : function(el, response){
9181         this.clearSelections();
9182         this.el.update("");
9183         var o;
9184         try{
9185             o = Roo.util.JSON.decode(response.responseText);
9186             if(this.jsonRoot){
9187                 
9188                 o = o[this.jsonRoot];
9189             }
9190         } catch(e){
9191         }
9192         /**
9193          * The current JSON data or null
9194          */
9195         this.jsonData = o;
9196         this.beforeRender();
9197         this.refresh();
9198     },
9199
9200 /**
9201  * Get the number of records in the current JSON dataset
9202  * @return {Number}
9203  */
9204     getCount : function(){
9205         return this.jsonData ? this.jsonData.length : 0;
9206     },
9207
9208 /**
9209  * Returns the JSON object for the specified node(s)
9210  * @param {HTMLElement/Array} node The node or an array of nodes
9211  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
9212  * you get the JSON object for the node
9213  */
9214     getNodeData : function(node){
9215         if(node instanceof Array){
9216             var data = [];
9217             for(var i = 0, len = node.length; i < len; i++){
9218                 data.push(this.getNodeData(node[i]));
9219             }
9220             return data;
9221         }
9222         return this.jsonData[this.indexOf(node)] || null;
9223     },
9224
9225     beforeRender : function(){
9226         this.snapshot = this.jsonData;
9227         if(this.sortInfo){
9228             this.sort.apply(this, this.sortInfo);
9229         }
9230         this.fireEvent("beforerender", this, this.jsonData);
9231     },
9232
9233     onLoad : function(el, o){
9234         this.fireEvent("load", this, this.jsonData, o);
9235     },
9236
9237     onLoadException : function(el, o){
9238         this.fireEvent("loadexception", this, o);
9239     },
9240
9241 /**
9242  * Filter the data by a specific property.
9243  * @param {String} property A property on your JSON objects
9244  * @param {String/RegExp} value Either string that the property values
9245  * should start with, or a RegExp to test against the property
9246  */
9247     filter : function(property, value){
9248         if(this.jsonData){
9249             var data = [];
9250             var ss = this.snapshot;
9251             if(typeof value == "string"){
9252                 var vlen = value.length;
9253                 if(vlen == 0){
9254                     this.clearFilter();
9255                     return;
9256                 }
9257                 value = value.toLowerCase();
9258                 for(var i = 0, len = ss.length; i < len; i++){
9259                     var o = ss[i];
9260                     if(o[property].substr(0, vlen).toLowerCase() == value){
9261                         data.push(o);
9262                     }
9263                 }
9264             } else if(value.exec){ // regex?
9265                 for(var i = 0, len = ss.length; i < len; i++){
9266                     var o = ss[i];
9267                     if(value.test(o[property])){
9268                         data.push(o);
9269                     }
9270                 }
9271             } else{
9272                 return;
9273             }
9274             this.jsonData = data;
9275             this.refresh();
9276         }
9277     },
9278
9279 /**
9280  * Filter by a function. The passed function will be called with each
9281  * object in the current dataset. If the function returns true the value is kept,
9282  * otherwise it is filtered.
9283  * @param {Function} fn
9284  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
9285  */
9286     filterBy : function(fn, scope){
9287         if(this.jsonData){
9288             var data = [];
9289             var ss = this.snapshot;
9290             for(var i = 0, len = ss.length; i < len; i++){
9291                 var o = ss[i];
9292                 if(fn.call(scope || this, o)){
9293                     data.push(o);
9294                 }
9295             }
9296             this.jsonData = data;
9297             this.refresh();
9298         }
9299     },
9300
9301 /**
9302  * Clears the current filter.
9303  */
9304     clearFilter : function(){
9305         if(this.snapshot && this.jsonData != this.snapshot){
9306             this.jsonData = this.snapshot;
9307             this.refresh();
9308         }
9309     },
9310
9311
9312 /**
9313  * Sorts the data for this view and refreshes it.
9314  * @param {String} property A property on your JSON objects to sort on
9315  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
9316  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
9317  */
9318     sort : function(property, dir, sortType){
9319         this.sortInfo = Array.prototype.slice.call(arguments, 0);
9320         if(this.jsonData){
9321             var p = property;
9322             var dsc = dir && dir.toLowerCase() == "desc";
9323             var f = function(o1, o2){
9324                 var v1 = sortType ? sortType(o1[p]) : o1[p];
9325                 var v2 = sortType ? sortType(o2[p]) : o2[p];
9326                 ;
9327                 if(v1 < v2){
9328                     return dsc ? +1 : -1;
9329                 } else if(v1 > v2){
9330                     return dsc ? -1 : +1;
9331                 } else{
9332                     return 0;
9333                 }
9334             };
9335             this.jsonData.sort(f);
9336             this.refresh();
9337             if(this.jsonData != this.snapshot){
9338                 this.snapshot.sort(f);
9339             }
9340         }
9341     }
9342 });/*
9343  * Based on:
9344  * Ext JS Library 1.1.1
9345  * Copyright(c) 2006-2007, Ext JS, LLC.
9346  *
9347  * Originally Released Under LGPL - original licence link has changed is not relivant.
9348  *
9349  * Fork - LGPL
9350  * <script type="text/javascript">
9351  */
9352  
9353
9354 /**
9355  * @class Roo.ColorPalette
9356  * @extends Roo.Component
9357  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
9358  * Here's an example of typical usage:
9359  * <pre><code>
9360 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
9361 cp.render('my-div');
9362
9363 cp.on('select', function(palette, selColor){
9364     // do something with selColor
9365 });
9366 </code></pre>
9367  * @constructor
9368  * Create a new ColorPalette
9369  * @param {Object} config The config object
9370  */
9371 Roo.ColorPalette = function(config){
9372     Roo.ColorPalette.superclass.constructor.call(this, config);
9373     this.addEvents({
9374         /**
9375              * @event select
9376              * Fires when a color is selected
9377              * @param {ColorPalette} this
9378              * @param {String} color The 6-digit color hex code (without the # symbol)
9379              */
9380         select: true
9381     });
9382
9383     if(this.handler){
9384         this.on("select", this.handler, this.scope, true);
9385     }
9386 };
9387 Roo.extend(Roo.ColorPalette, Roo.Component, {
9388     /**
9389      * @cfg {String} itemCls
9390      * The CSS class to apply to the containing element (defaults to "x-color-palette")
9391      */
9392     itemCls : "x-color-palette",
9393     /**
9394      * @cfg {String} value
9395      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
9396      * the hex codes are case-sensitive.
9397      */
9398     value : null,
9399     clickEvent:'click',
9400     // private
9401     ctype: "Roo.ColorPalette",
9402
9403     /**
9404      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
9405      */
9406     allowReselect : false,
9407
9408     /**
9409      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
9410      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
9411      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
9412      * of colors with the width setting until the box is symmetrical.</p>
9413      * <p>You can override individual colors if needed:</p>
9414      * <pre><code>
9415 var cp = new Roo.ColorPalette();
9416 cp.colors[0] = "FF0000";  // change the first box to red
9417 </code></pre>
9418
9419 Or you can provide a custom array of your own for complete control:
9420 <pre><code>
9421 var cp = new Roo.ColorPalette();
9422 cp.colors = ["000000", "993300", "333300"];
9423 </code></pre>
9424      * @type Array
9425      */
9426     colors : [
9427         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
9428         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
9429         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
9430         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
9431         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
9432     ],
9433
9434     // private
9435     onRender : function(container, position){
9436         var t = new Roo.MasterTemplate(
9437             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
9438         );
9439         var c = this.colors;
9440         for(var i = 0, len = c.length; i < len; i++){
9441             t.add([c[i]]);
9442         }
9443         var el = document.createElement("div");
9444         el.className = this.itemCls;
9445         t.overwrite(el);
9446         container.dom.insertBefore(el, position);
9447         this.el = Roo.get(el);
9448         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
9449         if(this.clickEvent != 'click'){
9450             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
9451         }
9452     },
9453
9454     // private
9455     afterRender : function(){
9456         Roo.ColorPalette.superclass.afterRender.call(this);
9457         if(this.value){
9458             var s = this.value;
9459             this.value = null;
9460             this.select(s);
9461         }
9462     },
9463
9464     // private
9465     handleClick : function(e, t){
9466         e.preventDefault();
9467         if(!this.disabled){
9468             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
9469             this.select(c.toUpperCase());
9470         }
9471     },
9472
9473     /**
9474      * Selects the specified color in the palette (fires the select event)
9475      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
9476      */
9477     select : function(color){
9478         color = color.replace("#", "");
9479         if(color != this.value || this.allowReselect){
9480             var el = this.el;
9481             if(this.value){
9482                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
9483             }
9484             el.child("a.color-"+color).addClass("x-color-palette-sel");
9485             this.value = color;
9486             this.fireEvent("select", this, color);
9487         }
9488     }
9489 });/*
9490  * Based on:
9491  * Ext JS Library 1.1.1
9492  * Copyright(c) 2006-2007, Ext JS, LLC.
9493  *
9494  * Originally Released Under LGPL - original licence link has changed is not relivant.
9495  *
9496  * Fork - LGPL
9497  * <script type="text/javascript">
9498  */
9499  
9500 /**
9501  * @class Roo.DatePicker
9502  * @extends Roo.Component
9503  * Simple date picker class.
9504  * @constructor
9505  * Create a new DatePicker
9506  * @param {Object} config The config object
9507  */
9508 Roo.DatePicker = function(config){
9509     Roo.DatePicker.superclass.constructor.call(this, config);
9510
9511     this.value = config && config.value ?
9512                  config.value.clearTime() : new Date().clearTime();
9513
9514     this.addEvents({
9515         /**
9516              * @event select
9517              * Fires when a date is selected
9518              * @param {DatePicker} this
9519              * @param {Date} date The selected date
9520              */
9521         'select': true,
9522         /**
9523              * @event monthchange
9524              * Fires when the displayed month changes 
9525              * @param {DatePicker} this
9526              * @param {Date} date The selected month
9527              */
9528         'monthchange': true
9529     });
9530
9531     if(this.handler){
9532         this.on("select", this.handler,  this.scope || this);
9533     }
9534     // build the disabledDatesRE
9535     if(!this.disabledDatesRE && this.disabledDates){
9536         var dd = this.disabledDates;
9537         var re = "(?:";
9538         for(var i = 0; i < dd.length; i++){
9539             re += dd[i];
9540             if(i != dd.length-1) re += "|";
9541         }
9542         this.disabledDatesRE = new RegExp(re + ")");
9543     }
9544 };
9545
9546 Roo.extend(Roo.DatePicker, Roo.Component, {
9547     /**
9548      * @cfg {String} todayText
9549      * The text to display on the button that selects the current date (defaults to "Today")
9550      */
9551     todayText : "Today",
9552     /**
9553      * @cfg {String} okText
9554      * The text to display on the ok button
9555      */
9556     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
9557     /**
9558      * @cfg {String} cancelText
9559      * The text to display on the cancel button
9560      */
9561     cancelText : "Cancel",
9562     /**
9563      * @cfg {String} todayTip
9564      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
9565      */
9566     todayTip : "{0} (Spacebar)",
9567     /**
9568      * @cfg {Date} minDate
9569      * Minimum allowable date (JavaScript date object, defaults to null)
9570      */
9571     minDate : null,
9572     /**
9573      * @cfg {Date} maxDate
9574      * Maximum allowable date (JavaScript date object, defaults to null)
9575      */
9576     maxDate : null,
9577     /**
9578      * @cfg {String} minText
9579      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
9580      */
9581     minText : "This date is before the minimum date",
9582     /**
9583      * @cfg {String} maxText
9584      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
9585      */
9586     maxText : "This date is after the maximum date",
9587     /**
9588      * @cfg {String} format
9589      * The default date format string which can be overriden for localization support.  The format must be
9590      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
9591      */
9592     format : "m/d/y",
9593     /**
9594      * @cfg {Array} disabledDays
9595      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
9596      */
9597     disabledDays : null,
9598     /**
9599      * @cfg {String} disabledDaysText
9600      * The tooltip to display when the date falls on a disabled day (defaults to "")
9601      */
9602     disabledDaysText : "",
9603     /**
9604      * @cfg {RegExp} disabledDatesRE
9605      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
9606      */
9607     disabledDatesRE : null,
9608     /**
9609      * @cfg {String} disabledDatesText
9610      * The tooltip text to display when the date falls on a disabled date (defaults to "")
9611      */
9612     disabledDatesText : "",
9613     /**
9614      * @cfg {Boolean} constrainToViewport
9615      * True to constrain the date picker to the viewport (defaults to true)
9616      */
9617     constrainToViewport : true,
9618     /**
9619      * @cfg {Array} monthNames
9620      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
9621      */
9622     monthNames : Date.monthNames,
9623     /**
9624      * @cfg {Array} dayNames
9625      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
9626      */
9627     dayNames : Date.dayNames,
9628     /**
9629      * @cfg {String} nextText
9630      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
9631      */
9632     nextText: 'Next Month (Control+Right)',
9633     /**
9634      * @cfg {String} prevText
9635      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
9636      */
9637     prevText: 'Previous Month (Control+Left)',
9638     /**
9639      * @cfg {String} monthYearText
9640      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
9641      */
9642     monthYearText: 'Choose a month (Control+Up/Down to move years)',
9643     /**
9644      * @cfg {Number} startDay
9645      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
9646      */
9647     startDay : 0,
9648     /**
9649      * @cfg {Bool} showClear
9650      * Show a clear button (usefull for date form elements that can be blank.)
9651      */
9652     
9653     showClear: false,
9654     
9655     /**
9656      * Sets the value of the date field
9657      * @param {Date} value The date to set
9658      */
9659     setValue : function(value){
9660         var old = this.value;
9661         
9662         if (typeof(value) == 'string') {
9663          
9664             value = Date.parseDate(value, this.format);
9665         }
9666         if (!value) {
9667             value = new Date();
9668         }
9669         
9670         this.value = value.clearTime(true);
9671         if(this.el){
9672             this.update(this.value);
9673         }
9674     },
9675
9676     /**
9677      * Gets the current selected value of the date field
9678      * @return {Date} The selected date
9679      */
9680     getValue : function(){
9681         return this.value;
9682     },
9683
9684     // private
9685     focus : function(){
9686         if(this.el){
9687             this.update(this.activeDate);
9688         }
9689     },
9690
9691     // privateval
9692     onRender : function(container, position){
9693         
9694         var m = [
9695              '<table cellspacing="0">',
9696                 '<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>',
9697                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
9698         var dn = this.dayNames;
9699         for(var i = 0; i < 7; i++){
9700             var d = this.startDay+i;
9701             if(d > 6){
9702                 d = d-7;
9703             }
9704             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
9705         }
9706         m[m.length] = "</tr></thead><tbody><tr>";
9707         for(var i = 0; i < 42; i++) {
9708             if(i % 7 == 0 && i != 0){
9709                 m[m.length] = "</tr><tr>";
9710             }
9711             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
9712         }
9713         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
9714             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
9715
9716         var el = document.createElement("div");
9717         el.className = "x-date-picker";
9718         el.innerHTML = m.join("");
9719
9720         container.dom.insertBefore(el, position);
9721
9722         this.el = Roo.get(el);
9723         this.eventEl = Roo.get(el.firstChild);
9724
9725         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
9726             handler: this.showPrevMonth,
9727             scope: this,
9728             preventDefault:true,
9729             stopDefault:true
9730         });
9731
9732         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
9733             handler: this.showNextMonth,
9734             scope: this,
9735             preventDefault:true,
9736             stopDefault:true
9737         });
9738
9739         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
9740
9741         this.monthPicker = this.el.down('div.x-date-mp');
9742         this.monthPicker.enableDisplayMode('block');
9743         
9744         var kn = new Roo.KeyNav(this.eventEl, {
9745             "left" : function(e){
9746                 e.ctrlKey ?
9747                     this.showPrevMonth() :
9748                     this.update(this.activeDate.add("d", -1));
9749             },
9750
9751             "right" : function(e){
9752                 e.ctrlKey ?
9753                     this.showNextMonth() :
9754                     this.update(this.activeDate.add("d", 1));
9755             },
9756
9757             "up" : function(e){
9758                 e.ctrlKey ?
9759                     this.showNextYear() :
9760                     this.update(this.activeDate.add("d", -7));
9761             },
9762
9763             "down" : function(e){
9764                 e.ctrlKey ?
9765                     this.showPrevYear() :
9766                     this.update(this.activeDate.add("d", 7));
9767             },
9768
9769             "pageUp" : function(e){
9770                 this.showNextMonth();
9771             },
9772
9773             "pageDown" : function(e){
9774                 this.showPrevMonth();
9775             },
9776
9777             "enter" : function(e){
9778                 e.stopPropagation();
9779                 return true;
9780             },
9781
9782             scope : this
9783         });
9784
9785         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
9786
9787         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
9788
9789         this.el.unselectable();
9790         
9791         this.cells = this.el.select("table.x-date-inner tbody td");
9792         this.textNodes = this.el.query("table.x-date-inner tbody span");
9793
9794         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
9795             text: "&#160;",
9796             tooltip: this.monthYearText
9797         });
9798
9799         this.mbtn.on('click', this.showMonthPicker, this);
9800         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
9801
9802
9803         var today = (new Date()).dateFormat(this.format);
9804         
9805         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
9806         if (this.showClear) {
9807             baseTb.add( new Roo.Toolbar.Fill());
9808         }
9809         baseTb.add({
9810             text: String.format(this.todayText, today),
9811             tooltip: String.format(this.todayTip, today),
9812             handler: this.selectToday,
9813             scope: this
9814         });
9815         
9816         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
9817             
9818         //});
9819         if (this.showClear) {
9820             
9821             baseTb.add( new Roo.Toolbar.Fill());
9822             baseTb.add({
9823                 text: '&#160;',
9824                 cls: 'x-btn-icon x-btn-clear',
9825                 handler: function() {
9826                     //this.value = '';
9827                     this.fireEvent("select", this, '');
9828                 },
9829                 scope: this
9830             });
9831         }
9832         
9833         
9834         if(Roo.isIE){
9835             this.el.repaint();
9836         }
9837         this.update(this.value);
9838     },
9839
9840     createMonthPicker : function(){
9841         if(!this.monthPicker.dom.firstChild){
9842             var buf = ['<table border="0" cellspacing="0">'];
9843             for(var i = 0; i < 6; i++){
9844                 buf.push(
9845                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
9846                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
9847                     i == 0 ?
9848                     '<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>' :
9849                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
9850                 );
9851             }
9852             buf.push(
9853                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
9854                     this.okText,
9855                     '</button><button type="button" class="x-date-mp-cancel">',
9856                     this.cancelText,
9857                     '</button></td></tr>',
9858                 '</table>'
9859             );
9860             this.monthPicker.update(buf.join(''));
9861             this.monthPicker.on('click', this.onMonthClick, this);
9862             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
9863
9864             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
9865             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
9866
9867             this.mpMonths.each(function(m, a, i){
9868                 i += 1;
9869                 if((i%2) == 0){
9870                     m.dom.xmonth = 5 + Math.round(i * .5);
9871                 }else{
9872                     m.dom.xmonth = Math.round((i-1) * .5);
9873                 }
9874             });
9875         }
9876     },
9877
9878     showMonthPicker : function(){
9879         this.createMonthPicker();
9880         var size = this.el.getSize();
9881         this.monthPicker.setSize(size);
9882         this.monthPicker.child('table').setSize(size);
9883
9884         this.mpSelMonth = (this.activeDate || this.value).getMonth();
9885         this.updateMPMonth(this.mpSelMonth);
9886         this.mpSelYear = (this.activeDate || this.value).getFullYear();
9887         this.updateMPYear(this.mpSelYear);
9888
9889         this.monthPicker.slideIn('t', {duration:.2});
9890     },
9891
9892     updateMPYear : function(y){
9893         this.mpyear = y;
9894         var ys = this.mpYears.elements;
9895         for(var i = 1; i <= 10; i++){
9896             var td = ys[i-1], y2;
9897             if((i%2) == 0){
9898                 y2 = y + Math.round(i * .5);
9899                 td.firstChild.innerHTML = y2;
9900                 td.xyear = y2;
9901             }else{
9902                 y2 = y - (5-Math.round(i * .5));
9903                 td.firstChild.innerHTML = y2;
9904                 td.xyear = y2;
9905             }
9906             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
9907         }
9908     },
9909
9910     updateMPMonth : function(sm){
9911         this.mpMonths.each(function(m, a, i){
9912             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
9913         });
9914     },
9915
9916     selectMPMonth: function(m){
9917         
9918     },
9919
9920     onMonthClick : function(e, t){
9921         e.stopEvent();
9922         var el = new Roo.Element(t), pn;
9923         if(el.is('button.x-date-mp-cancel')){
9924             this.hideMonthPicker();
9925         }
9926         else if(el.is('button.x-date-mp-ok')){
9927             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9928             this.hideMonthPicker();
9929         }
9930         else if(pn = el.up('td.x-date-mp-month', 2)){
9931             this.mpMonths.removeClass('x-date-mp-sel');
9932             pn.addClass('x-date-mp-sel');
9933             this.mpSelMonth = pn.dom.xmonth;
9934         }
9935         else if(pn = el.up('td.x-date-mp-year', 2)){
9936             this.mpYears.removeClass('x-date-mp-sel');
9937             pn.addClass('x-date-mp-sel');
9938             this.mpSelYear = pn.dom.xyear;
9939         }
9940         else if(el.is('a.x-date-mp-prev')){
9941             this.updateMPYear(this.mpyear-10);
9942         }
9943         else if(el.is('a.x-date-mp-next')){
9944             this.updateMPYear(this.mpyear+10);
9945         }
9946     },
9947
9948     onMonthDblClick : function(e, t){
9949         e.stopEvent();
9950         var el = new Roo.Element(t), pn;
9951         if(pn = el.up('td.x-date-mp-month', 2)){
9952             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
9953             this.hideMonthPicker();
9954         }
9955         else if(pn = el.up('td.x-date-mp-year', 2)){
9956             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9957             this.hideMonthPicker();
9958         }
9959     },
9960
9961     hideMonthPicker : function(disableAnim){
9962         if(this.monthPicker){
9963             if(disableAnim === true){
9964                 this.monthPicker.hide();
9965             }else{
9966                 this.monthPicker.slideOut('t', {duration:.2});
9967             }
9968         }
9969     },
9970
9971     // private
9972     showPrevMonth : function(e){
9973         this.update(this.activeDate.add("mo", -1));
9974     },
9975
9976     // private
9977     showNextMonth : function(e){
9978         this.update(this.activeDate.add("mo", 1));
9979     },
9980
9981     // private
9982     showPrevYear : function(){
9983         this.update(this.activeDate.add("y", -1));
9984     },
9985
9986     // private
9987     showNextYear : function(){
9988         this.update(this.activeDate.add("y", 1));
9989     },
9990
9991     // private
9992     handleMouseWheel : function(e){
9993         var delta = e.getWheelDelta();
9994         if(delta > 0){
9995             this.showPrevMonth();
9996             e.stopEvent();
9997         } else if(delta < 0){
9998             this.showNextMonth();
9999             e.stopEvent();
10000         }
10001     },
10002
10003     // private
10004     handleDateClick : function(e, t){
10005         e.stopEvent();
10006         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
10007             this.setValue(new Date(t.dateValue));
10008             this.fireEvent("select", this, this.value);
10009         }
10010     },
10011
10012     // private
10013     selectToday : function(){
10014         this.setValue(new Date().clearTime());
10015         this.fireEvent("select", this, this.value);
10016     },
10017
10018     // private
10019     update : function(date)
10020     {
10021         var vd = this.activeDate;
10022         this.activeDate = date;
10023         if(vd && this.el){
10024             var t = date.getTime();
10025             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
10026                 this.cells.removeClass("x-date-selected");
10027                 this.cells.each(function(c){
10028                    if(c.dom.firstChild.dateValue == t){
10029                        c.addClass("x-date-selected");
10030                        setTimeout(function(){
10031                             try{c.dom.firstChild.focus();}catch(e){}
10032                        }, 50);
10033                        return false;
10034                    }
10035                 });
10036                 return;
10037             }
10038         }
10039         
10040         var days = date.getDaysInMonth();
10041         var firstOfMonth = date.getFirstDateOfMonth();
10042         var startingPos = firstOfMonth.getDay()-this.startDay;
10043
10044         if(startingPos <= this.startDay){
10045             startingPos += 7;
10046         }
10047
10048         var pm = date.add("mo", -1);
10049         var prevStart = pm.getDaysInMonth()-startingPos;
10050
10051         var cells = this.cells.elements;
10052         var textEls = this.textNodes;
10053         days += startingPos;
10054
10055         // convert everything to numbers so it's fast
10056         var day = 86400000;
10057         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
10058         var today = new Date().clearTime().getTime();
10059         var sel = date.clearTime().getTime();
10060         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
10061         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
10062         var ddMatch = this.disabledDatesRE;
10063         var ddText = this.disabledDatesText;
10064         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
10065         var ddaysText = this.disabledDaysText;
10066         var format = this.format;
10067
10068         var setCellClass = function(cal, cell){
10069             cell.title = "";
10070             var t = d.getTime();
10071             cell.firstChild.dateValue = t;
10072             if(t == today){
10073                 cell.className += " x-date-today";
10074                 cell.title = cal.todayText;
10075             }
10076             if(t == sel){
10077                 cell.className += " x-date-selected";
10078                 setTimeout(function(){
10079                     try{cell.firstChild.focus();}catch(e){}
10080                 }, 50);
10081             }
10082             // disabling
10083             if(t < min) {
10084                 cell.className = " x-date-disabled";
10085                 cell.title = cal.minText;
10086                 return;
10087             }
10088             if(t > max) {
10089                 cell.className = " x-date-disabled";
10090                 cell.title = cal.maxText;
10091                 return;
10092             }
10093             if(ddays){
10094                 if(ddays.indexOf(d.getDay()) != -1){
10095                     cell.title = ddaysText;
10096                     cell.className = " x-date-disabled";
10097                 }
10098             }
10099             if(ddMatch && format){
10100                 var fvalue = d.dateFormat(format);
10101                 if(ddMatch.test(fvalue)){
10102                     cell.title = ddText.replace("%0", fvalue);
10103                     cell.className = " x-date-disabled";
10104                 }
10105             }
10106         };
10107
10108         var i = 0;
10109         for(; i < startingPos; i++) {
10110             textEls[i].innerHTML = (++prevStart);
10111             d.setDate(d.getDate()+1);
10112             cells[i].className = "x-date-prevday";
10113             setCellClass(this, cells[i]);
10114         }
10115         for(; i < days; i++){
10116             intDay = i - startingPos + 1;
10117             textEls[i].innerHTML = (intDay);
10118             d.setDate(d.getDate()+1);
10119             cells[i].className = "x-date-active";
10120             setCellClass(this, cells[i]);
10121         }
10122         var extraDays = 0;
10123         for(; i < 42; i++) {
10124              textEls[i].innerHTML = (++extraDays);
10125              d.setDate(d.getDate()+1);
10126              cells[i].className = "x-date-nextday";
10127              setCellClass(this, cells[i]);
10128         }
10129
10130         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
10131         this.fireEvent('monthchange', this, date);
10132         
10133         if(!this.internalRender){
10134             var main = this.el.dom.firstChild;
10135             var w = main.offsetWidth;
10136             this.el.setWidth(w + this.el.getBorderWidth("lr"));
10137             Roo.fly(main).setWidth(w);
10138             this.internalRender = true;
10139             // opera does not respect the auto grow header center column
10140             // then, after it gets a width opera refuses to recalculate
10141             // without a second pass
10142             if(Roo.isOpera && !this.secondPass){
10143                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
10144                 this.secondPass = true;
10145                 this.update.defer(10, this, [date]);
10146             }
10147         }
10148         
10149         
10150     }
10151 });        /*
10152  * Based on:
10153  * Ext JS Library 1.1.1
10154  * Copyright(c) 2006-2007, Ext JS, LLC.
10155  *
10156  * Originally Released Under LGPL - original licence link has changed is not relivant.
10157  *
10158  * Fork - LGPL
10159  * <script type="text/javascript">
10160  */
10161 /**
10162  * @class Roo.TabPanel
10163  * @extends Roo.util.Observable
10164  * A lightweight tab container.
10165  * <br><br>
10166  * Usage:
10167  * <pre><code>
10168 // basic tabs 1, built from existing content
10169 var tabs = new Roo.TabPanel("tabs1");
10170 tabs.addTab("script", "View Script");
10171 tabs.addTab("markup", "View Markup");
10172 tabs.activate("script");
10173
10174 // more advanced tabs, built from javascript
10175 var jtabs = new Roo.TabPanel("jtabs");
10176 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
10177
10178 // set up the UpdateManager
10179 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
10180 var updater = tab2.getUpdateManager();
10181 updater.setDefaultUrl("ajax1.htm");
10182 tab2.on('activate', updater.refresh, updater, true);
10183
10184 // Use setUrl for Ajax loading
10185 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
10186 tab3.setUrl("ajax2.htm", null, true);
10187
10188 // Disabled tab
10189 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
10190 tab4.disable();
10191
10192 jtabs.activate("jtabs-1");
10193  * </code></pre>
10194  * @constructor
10195  * Create a new TabPanel.
10196  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
10197  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
10198  */
10199 Roo.TabPanel = function(container, config){
10200     /**
10201     * The container element for this TabPanel.
10202     * @type Roo.Element
10203     */
10204     this.el = Roo.get(container, true);
10205     if(config){
10206         if(typeof config == "boolean"){
10207             this.tabPosition = config ? "bottom" : "top";
10208         }else{
10209             Roo.apply(this, config);
10210         }
10211     }
10212     if(this.tabPosition == "bottom"){
10213         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10214         this.el.addClass("x-tabs-bottom");
10215     }
10216     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
10217     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
10218     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
10219     if(Roo.isIE){
10220         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
10221     }
10222     if(this.tabPosition != "bottom"){
10223         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
10224          * @type Roo.Element
10225          */
10226         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10227         this.el.addClass("x-tabs-top");
10228     }
10229     this.items = [];
10230
10231     this.bodyEl.setStyle("position", "relative");
10232
10233     this.active = null;
10234     this.activateDelegate = this.activate.createDelegate(this);
10235
10236     this.addEvents({
10237         /**
10238          * @event tabchange
10239          * Fires when the active tab changes
10240          * @param {Roo.TabPanel} this
10241          * @param {Roo.TabPanelItem} activePanel The new active tab
10242          */
10243         "tabchange": true,
10244         /**
10245          * @event beforetabchange
10246          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
10247          * @param {Roo.TabPanel} this
10248          * @param {Object} e Set cancel to true on this object to cancel the tab change
10249          * @param {Roo.TabPanelItem} tab The tab being changed to
10250          */
10251         "beforetabchange" : true
10252     });
10253
10254     Roo.EventManager.onWindowResize(this.onResize, this);
10255     this.cpad = this.el.getPadding("lr");
10256     this.hiddenCount = 0;
10257
10258
10259     // toolbar on the tabbar support...
10260     if (this.toolbar) {
10261         var tcfg = this.toolbar;
10262         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
10263         this.toolbar = new Roo.Toolbar(tcfg);
10264         if (Roo.isSafari) {
10265             var tbl = tcfg.container.child('table', true);
10266             tbl.setAttribute('width', '100%');
10267         }
10268         
10269     }
10270    
10271
10272
10273     Roo.TabPanel.superclass.constructor.call(this);
10274 };
10275
10276 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
10277     /*
10278      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
10279      */
10280     tabPosition : "top",
10281     /*
10282      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
10283      */
10284     currentTabWidth : 0,
10285     /*
10286      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
10287      */
10288     minTabWidth : 40,
10289     /*
10290      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
10291      */
10292     maxTabWidth : 250,
10293     /*
10294      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
10295      */
10296     preferredTabWidth : 175,
10297     /*
10298      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
10299      */
10300     resizeTabs : false,
10301     /*
10302      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
10303      */
10304     monitorResize : true,
10305     /*
10306      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
10307      */
10308     toolbar : false,
10309
10310     /**
10311      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
10312      * @param {String} id The id of the div to use <b>or create</b>
10313      * @param {String} text The text for the tab
10314      * @param {String} content (optional) Content to put in the TabPanelItem body
10315      * @param {Boolean} closable (optional) True to create a close icon on the tab
10316      * @return {Roo.TabPanelItem} The created TabPanelItem
10317      */
10318     addTab : function(id, text, content, closable){
10319         var item = new Roo.TabPanelItem(this, id, text, closable);
10320         this.addTabItem(item);
10321         if(content){
10322             item.setContent(content);
10323         }
10324         return item;
10325     },
10326
10327     /**
10328      * Returns the {@link Roo.TabPanelItem} with the specified id/index
10329      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
10330      * @return {Roo.TabPanelItem}
10331      */
10332     getTab : function(id){
10333         return this.items[id];
10334     },
10335
10336     /**
10337      * Hides the {@link Roo.TabPanelItem} with the specified id/index
10338      * @param {String/Number} id The id or index of the TabPanelItem to hide.
10339      */
10340     hideTab : function(id){
10341         var t = this.items[id];
10342         if(!t.isHidden()){
10343            t.setHidden(true);
10344            this.hiddenCount++;
10345            this.autoSizeTabs();
10346         }
10347     },
10348
10349     /**
10350      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
10351      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
10352      */
10353     unhideTab : function(id){
10354         var t = this.items[id];
10355         if(t.isHidden()){
10356            t.setHidden(false);
10357            this.hiddenCount--;
10358            this.autoSizeTabs();
10359         }
10360     },
10361
10362     /**
10363      * Adds an existing {@link Roo.TabPanelItem}.
10364      * @param {Roo.TabPanelItem} item The TabPanelItem to add
10365      */
10366     addTabItem : function(item){
10367         this.items[item.id] = item;
10368         this.items.push(item);
10369         if(this.resizeTabs){
10370            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
10371            this.autoSizeTabs();
10372         }else{
10373             item.autoSize();
10374         }
10375     },
10376
10377     /**
10378      * Removes a {@link Roo.TabPanelItem}.
10379      * @param {String/Number} id The id or index of the TabPanelItem to remove.
10380      */
10381     removeTab : function(id){
10382         var items = this.items;
10383         var tab = items[id];
10384         if(!tab) { return; }
10385         var index = items.indexOf(tab);
10386         if(this.active == tab && items.length > 1){
10387             var newTab = this.getNextAvailable(index);
10388             if(newTab) {
10389                 newTab.activate();
10390             }
10391         }
10392         this.stripEl.dom.removeChild(tab.pnode.dom);
10393         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
10394             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
10395         }
10396         items.splice(index, 1);
10397         delete this.items[tab.id];
10398         tab.fireEvent("close", tab);
10399         tab.purgeListeners();
10400         this.autoSizeTabs();
10401     },
10402
10403     getNextAvailable : function(start){
10404         var items = this.items;
10405         var index = start;
10406         // look for a next tab that will slide over to
10407         // replace the one being removed
10408         while(index < items.length){
10409             var item = items[++index];
10410             if(item && !item.isHidden()){
10411                 return item;
10412             }
10413         }
10414         // if one isn't found select the previous tab (on the left)
10415         index = start;
10416         while(index >= 0){
10417             var item = items[--index];
10418             if(item && !item.isHidden()){
10419                 return item;
10420             }
10421         }
10422         return null;
10423     },
10424
10425     /**
10426      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
10427      * @param {String/Number} id The id or index of the TabPanelItem to disable.
10428      */
10429     disableTab : function(id){
10430         var tab = this.items[id];
10431         if(tab && this.active != tab){
10432             tab.disable();
10433         }
10434     },
10435
10436     /**
10437      * Enables a {@link Roo.TabPanelItem} that is disabled.
10438      * @param {String/Number} id The id or index of the TabPanelItem to enable.
10439      */
10440     enableTab : function(id){
10441         var tab = this.items[id];
10442         tab.enable();
10443     },
10444
10445     /**
10446      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
10447      * @param {String/Number} id The id or index of the TabPanelItem to activate.
10448      * @return {Roo.TabPanelItem} The TabPanelItem.
10449      */
10450     activate : function(id){
10451         var tab = this.items[id];
10452         if(!tab){
10453             return null;
10454         }
10455         if(tab == this.active || tab.disabled){
10456             return tab;
10457         }
10458         var e = {};
10459         this.fireEvent("beforetabchange", this, e, tab);
10460         if(e.cancel !== true && !tab.disabled){
10461             if(this.active){
10462                 this.active.hide();
10463             }
10464             this.active = this.items[id];
10465             this.active.show();
10466             this.fireEvent("tabchange", this, this.active);
10467         }
10468         return tab;
10469     },
10470
10471     /**
10472      * Gets the active {@link Roo.TabPanelItem}.
10473      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
10474      */
10475     getActiveTab : function(){
10476         return this.active;
10477     },
10478
10479     /**
10480      * Updates the tab body element to fit the height of the container element
10481      * for overflow scrolling
10482      * @param {Number} targetHeight (optional) Override the starting height from the elements height
10483      */
10484     syncHeight : function(targetHeight){
10485         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
10486         var bm = this.bodyEl.getMargins();
10487         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
10488         this.bodyEl.setHeight(newHeight);
10489         return newHeight;
10490     },
10491
10492     onResize : function(){
10493         if(this.monitorResize){
10494             this.autoSizeTabs();
10495         }
10496     },
10497
10498     /**
10499      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
10500      */
10501     beginUpdate : function(){
10502         this.updating = true;
10503     },
10504
10505     /**
10506      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
10507      */
10508     endUpdate : function(){
10509         this.updating = false;
10510         this.autoSizeTabs();
10511     },
10512
10513     /**
10514      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
10515      */
10516     autoSizeTabs : function(){
10517         var count = this.items.length;
10518         var vcount = count - this.hiddenCount;
10519         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) return;
10520         var w = Math.max(this.el.getWidth() - this.cpad, 10);
10521         var availWidth = Math.floor(w / vcount);
10522         var b = this.stripBody;
10523         if(b.getWidth() > w){
10524             var tabs = this.items;
10525             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
10526             if(availWidth < this.minTabWidth){
10527                 /*if(!this.sleft){    // incomplete scrolling code
10528                     this.createScrollButtons();
10529                 }
10530                 this.showScroll();
10531                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
10532             }
10533         }else{
10534             if(this.currentTabWidth < this.preferredTabWidth){
10535                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
10536             }
10537         }
10538     },
10539
10540     /**
10541      * Returns the number of tabs in this TabPanel.
10542      * @return {Number}
10543      */
10544      getCount : function(){
10545          return this.items.length;
10546      },
10547
10548     /**
10549      * Resizes all the tabs to the passed width
10550      * @param {Number} The new width
10551      */
10552     setTabWidth : function(width){
10553         this.currentTabWidth = width;
10554         for(var i = 0, len = this.items.length; i < len; i++) {
10555                 if(!this.items[i].isHidden())this.items[i].setWidth(width);
10556         }
10557     },
10558
10559     /**
10560      * Destroys this TabPanel
10561      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
10562      */
10563     destroy : function(removeEl){
10564         Roo.EventManager.removeResizeListener(this.onResize, this);
10565         for(var i = 0, len = this.items.length; i < len; i++){
10566             this.items[i].purgeListeners();
10567         }
10568         if(removeEl === true){
10569             this.el.update("");
10570             this.el.remove();
10571         }
10572     }
10573 });
10574
10575 /**
10576  * @class Roo.TabPanelItem
10577  * @extends Roo.util.Observable
10578  * Represents an individual item (tab plus body) in a TabPanel.
10579  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
10580  * @param {String} id The id of this TabPanelItem
10581  * @param {String} text The text for the tab of this TabPanelItem
10582  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
10583  */
10584 Roo.TabPanelItem = function(tabPanel, id, text, closable){
10585     /**
10586      * The {@link Roo.TabPanel} this TabPanelItem belongs to
10587      * @type Roo.TabPanel
10588      */
10589     this.tabPanel = tabPanel;
10590     /**
10591      * The id for this TabPanelItem
10592      * @type String
10593      */
10594     this.id = id;
10595     /** @private */
10596     this.disabled = false;
10597     /** @private */
10598     this.text = text;
10599     /** @private */
10600     this.loaded = false;
10601     this.closable = closable;
10602
10603     /**
10604      * The body element for this TabPanelItem.
10605      * @type Roo.Element
10606      */
10607     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
10608     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
10609     this.bodyEl.setStyle("display", "block");
10610     this.bodyEl.setStyle("zoom", "1");
10611     this.hideAction();
10612
10613     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
10614     /** @private */
10615     this.el = Roo.get(els.el, true);
10616     this.inner = Roo.get(els.inner, true);
10617     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
10618     this.pnode = Roo.get(els.el.parentNode, true);
10619     this.el.on("mousedown", this.onTabMouseDown, this);
10620     this.el.on("click", this.onTabClick, this);
10621     /** @private */
10622     if(closable){
10623         var c = Roo.get(els.close, true);
10624         c.dom.title = this.closeText;
10625         c.addClassOnOver("close-over");
10626         c.on("click", this.closeClick, this);
10627      }
10628
10629     this.addEvents({
10630          /**
10631          * @event activate
10632          * Fires when this tab becomes the active tab.
10633          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10634          * @param {Roo.TabPanelItem} this
10635          */
10636         "activate": true,
10637         /**
10638          * @event beforeclose
10639          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
10640          * @param {Roo.TabPanelItem} this
10641          * @param {Object} e Set cancel to true on this object to cancel the close.
10642          */
10643         "beforeclose": true,
10644         /**
10645          * @event close
10646          * Fires when this tab is closed.
10647          * @param {Roo.TabPanelItem} this
10648          */
10649          "close": true,
10650         /**
10651          * @event deactivate
10652          * Fires when this tab is no longer the active tab.
10653          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10654          * @param {Roo.TabPanelItem} this
10655          */
10656          "deactivate" : true
10657     });
10658     this.hidden = false;
10659
10660     Roo.TabPanelItem.superclass.constructor.call(this);
10661 };
10662
10663 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
10664     purgeListeners : function(){
10665        Roo.util.Observable.prototype.purgeListeners.call(this);
10666        this.el.removeAllListeners();
10667     },
10668     /**
10669      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
10670      */
10671     show : function(){
10672         this.pnode.addClass("on");
10673         this.showAction();
10674         if(Roo.isOpera){
10675             this.tabPanel.stripWrap.repaint();
10676         }
10677         this.fireEvent("activate", this.tabPanel, this);
10678     },
10679
10680     /**
10681      * Returns true if this tab is the active tab.
10682      * @return {Boolean}
10683      */
10684     isActive : function(){
10685         return this.tabPanel.getActiveTab() == this;
10686     },
10687
10688     /**
10689      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
10690      */
10691     hide : function(){
10692         this.pnode.removeClass("on");
10693         this.hideAction();
10694         this.fireEvent("deactivate", this.tabPanel, this);
10695     },
10696
10697     hideAction : function(){
10698         this.bodyEl.hide();
10699         this.bodyEl.setStyle("position", "absolute");
10700         this.bodyEl.setLeft("-20000px");
10701         this.bodyEl.setTop("-20000px");
10702     },
10703
10704     showAction : function(){
10705         this.bodyEl.setStyle("position", "relative");
10706         this.bodyEl.setTop("");
10707         this.bodyEl.setLeft("");
10708         this.bodyEl.show();
10709     },
10710
10711     /**
10712      * Set the tooltip for the tab.
10713      * @param {String} tooltip The tab's tooltip
10714      */
10715     setTooltip : function(text){
10716         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
10717             this.textEl.dom.qtip = text;
10718             this.textEl.dom.removeAttribute('title');
10719         }else{
10720             this.textEl.dom.title = text;
10721         }
10722     },
10723
10724     onTabClick : function(e){
10725         e.preventDefault();
10726         this.tabPanel.activate(this.id);
10727     },
10728
10729     onTabMouseDown : function(e){
10730         e.preventDefault();
10731         this.tabPanel.activate(this.id);
10732     },
10733
10734     getWidth : function(){
10735         return this.inner.getWidth();
10736     },
10737
10738     setWidth : function(width){
10739         var iwidth = width - this.pnode.getPadding("lr");
10740         this.inner.setWidth(iwidth);
10741         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
10742         this.pnode.setWidth(width);
10743     },
10744
10745     /**
10746      * Show or hide the tab
10747      * @param {Boolean} hidden True to hide or false to show.
10748      */
10749     setHidden : function(hidden){
10750         this.hidden = hidden;
10751         this.pnode.setStyle("display", hidden ? "none" : "");
10752     },
10753
10754     /**
10755      * Returns true if this tab is "hidden"
10756      * @return {Boolean}
10757      */
10758     isHidden : function(){
10759         return this.hidden;
10760     },
10761
10762     /**
10763      * Returns the text for this tab
10764      * @return {String}
10765      */
10766     getText : function(){
10767         return this.text;
10768     },
10769
10770     autoSize : function(){
10771         //this.el.beginMeasure();
10772         this.textEl.setWidth(1);
10773         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr"));
10774         //this.el.endMeasure();
10775     },
10776
10777     /**
10778      * Sets the text for the tab (Note: this also sets the tooltip text)
10779      * @param {String} text The tab's text and tooltip
10780      */
10781     setText : function(text){
10782         this.text = text;
10783         this.textEl.update(text);
10784         this.setTooltip(text);
10785         if(!this.tabPanel.resizeTabs){
10786             this.autoSize();
10787         }
10788     },
10789     /**
10790      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
10791      */
10792     activate : function(){
10793         this.tabPanel.activate(this.id);
10794     },
10795
10796     /**
10797      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
10798      */
10799     disable : function(){
10800         if(this.tabPanel.active != this){
10801             this.disabled = true;
10802             this.pnode.addClass("disabled");
10803         }
10804     },
10805
10806     /**
10807      * Enables this TabPanelItem if it was previously disabled.
10808      */
10809     enable : function(){
10810         this.disabled = false;
10811         this.pnode.removeClass("disabled");
10812     },
10813
10814     /**
10815      * Sets the content for this TabPanelItem.
10816      * @param {String} content The content
10817      * @param {Boolean} loadScripts true to look for and load scripts
10818      */
10819     setContent : function(content, loadScripts){
10820         this.bodyEl.update(content, loadScripts);
10821     },
10822
10823     /**
10824      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
10825      * @return {Roo.UpdateManager} The UpdateManager
10826      */
10827     getUpdateManager : function(){
10828         return this.bodyEl.getUpdateManager();
10829     },
10830
10831     /**
10832      * Set a URL to be used to load the content for this TabPanelItem.
10833      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
10834      * @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)
10835      * @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)
10836      * @return {Roo.UpdateManager} The UpdateManager
10837      */
10838     setUrl : function(url, params, loadOnce){
10839         if(this.refreshDelegate){
10840             this.un('activate', this.refreshDelegate);
10841         }
10842         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
10843         this.on("activate", this.refreshDelegate);
10844         return this.bodyEl.getUpdateManager();
10845     },
10846
10847     /** @private */
10848     _handleRefresh : function(url, params, loadOnce){
10849         if(!loadOnce || !this.loaded){
10850             var updater = this.bodyEl.getUpdateManager();
10851             updater.update(url, params, this._setLoaded.createDelegate(this));
10852         }
10853     },
10854
10855     /**
10856      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
10857      *   Will fail silently if the setUrl method has not been called.
10858      *   This does not activate the panel, just updates its content.
10859      */
10860     refresh : function(){
10861         if(this.refreshDelegate){
10862            this.loaded = false;
10863            this.refreshDelegate();
10864         }
10865     },
10866
10867     /** @private */
10868     _setLoaded : function(){
10869         this.loaded = true;
10870     },
10871
10872     /** @private */
10873     closeClick : function(e){
10874         var o = {};
10875         e.stopEvent();
10876         this.fireEvent("beforeclose", this, o);
10877         if(o.cancel !== true){
10878             this.tabPanel.removeTab(this.id);
10879         }
10880     },
10881     /**
10882      * The text displayed in the tooltip for the close icon.
10883      * @type String
10884      */
10885     closeText : "Close this tab"
10886 });
10887
10888 /** @private */
10889 Roo.TabPanel.prototype.createStrip = function(container){
10890     var strip = document.createElement("div");
10891     strip.className = "x-tabs-wrap";
10892     container.appendChild(strip);
10893     return strip;
10894 };
10895 /** @private */
10896 Roo.TabPanel.prototype.createStripList = function(strip){
10897     // div wrapper for retard IE
10898     // returns the "tr" element.
10899     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
10900         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
10901         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
10902     return strip.firstChild.firstChild.firstChild.firstChild;
10903 };
10904 /** @private */
10905 Roo.TabPanel.prototype.createBody = function(container){
10906     var body = document.createElement("div");
10907     Roo.id(body, "tab-body");
10908     Roo.fly(body).addClass("x-tabs-body");
10909     container.appendChild(body);
10910     return body;
10911 };
10912 /** @private */
10913 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
10914     var body = Roo.getDom(id);
10915     if(!body){
10916         body = document.createElement("div");
10917         body.id = id;
10918     }
10919     Roo.fly(body).addClass("x-tabs-item-body");
10920     bodyEl.insertBefore(body, bodyEl.firstChild);
10921     return body;
10922 };
10923 /** @private */
10924 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
10925     var td = document.createElement("td");
10926     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
10927     //stripEl.appendChild(td);
10928     if(closable){
10929         td.className = "x-tabs-closable";
10930         if(!this.closeTpl){
10931             this.closeTpl = new Roo.Template(
10932                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10933                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
10934                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
10935             );
10936         }
10937         var el = this.closeTpl.overwrite(td, {"text": text});
10938         var close = el.getElementsByTagName("div")[0];
10939         var inner = el.getElementsByTagName("em")[0];
10940         return {"el": el, "close": close, "inner": inner};
10941     } else {
10942         if(!this.tabTpl){
10943             this.tabTpl = new Roo.Template(
10944                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10945                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
10946             );
10947         }
10948         var el = this.tabTpl.overwrite(td, {"text": text});
10949         var inner = el.getElementsByTagName("em")[0];
10950         return {"el": el, "inner": inner};
10951     }
10952 };/*
10953  * Based on:
10954  * Ext JS Library 1.1.1
10955  * Copyright(c) 2006-2007, Ext JS, LLC.
10956  *
10957  * Originally Released Under LGPL - original licence link has changed is not relivant.
10958  *
10959  * Fork - LGPL
10960  * <script type="text/javascript">
10961  */
10962
10963 /**
10964  * @class Roo.Button
10965  * @extends Roo.util.Observable
10966  * Simple Button class
10967  * @cfg {String} text The button text
10968  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
10969  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
10970  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
10971  * @cfg {Object} scope The scope of the handler
10972  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
10973  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
10974  * @cfg {Boolean} hidden True to start hidden (defaults to false)
10975  * @cfg {Boolean} disabled True to start disabled (defaults to false)
10976  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
10977  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
10978    applies if enableToggle = true)
10979  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
10980  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
10981   an {@link Roo.util.ClickRepeater} config object (defaults to false).
10982  * @constructor
10983  * Create a new button
10984  * @param {Object} config The config object
10985  */
10986 Roo.Button = function(renderTo, config)
10987 {
10988     if (!config) {
10989         config = renderTo;
10990         renderTo = config.renderTo || false;
10991     }
10992     
10993     Roo.apply(this, config);
10994     this.addEvents({
10995         /**
10996              * @event click
10997              * Fires when this button is clicked
10998              * @param {Button} this
10999              * @param {EventObject} e The click event
11000              */
11001             "click" : true,
11002         /**
11003              * @event toggle
11004              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
11005              * @param {Button} this
11006              * @param {Boolean} pressed
11007              */
11008             "toggle" : true,
11009         /**
11010              * @event mouseover
11011              * Fires when the mouse hovers over the button
11012              * @param {Button} this
11013              * @param {Event} e The event object
11014              */
11015         'mouseover' : true,
11016         /**
11017              * @event mouseout
11018              * Fires when the mouse exits the button
11019              * @param {Button} this
11020              * @param {Event} e The event object
11021              */
11022         'mouseout': true,
11023          /**
11024              * @event render
11025              * Fires when the button is rendered
11026              * @param {Button} this
11027              */
11028         'render': true
11029     });
11030     if(this.menu){
11031         this.menu = Roo.menu.MenuMgr.get(this.menu);
11032     }
11033     // register listeners first!!  - so render can be captured..
11034     Roo.util.Observable.call(this);
11035     if(renderTo){
11036         this.render(renderTo);
11037     }
11038     
11039   
11040 };
11041
11042 Roo.extend(Roo.Button, Roo.util.Observable, {
11043     /**
11044      * 
11045      */
11046     
11047     /**
11048      * Read-only. True if this button is hidden
11049      * @type Boolean
11050      */
11051     hidden : false,
11052     /**
11053      * Read-only. True if this button is disabled
11054      * @type Boolean
11055      */
11056     disabled : false,
11057     /**
11058      * Read-only. True if this button is pressed (only if enableToggle = true)
11059      * @type Boolean
11060      */
11061     pressed : false,
11062
11063     /**
11064      * @cfg {Number} tabIndex 
11065      * The DOM tabIndex for this button (defaults to undefined)
11066      */
11067     tabIndex : undefined,
11068
11069     /**
11070      * @cfg {Boolean} enableToggle
11071      * True to enable pressed/not pressed toggling (defaults to false)
11072      */
11073     enableToggle: false,
11074     /**
11075      * @cfg {Mixed} menu
11076      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
11077      */
11078     menu : undefined,
11079     /**
11080      * @cfg {String} menuAlign
11081      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
11082      */
11083     menuAlign : "tl-bl?",
11084
11085     /**
11086      * @cfg {String} iconCls
11087      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
11088      */
11089     iconCls : undefined,
11090     /**
11091      * @cfg {String} type
11092      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
11093      */
11094     type : 'button',
11095
11096     // private
11097     menuClassTarget: 'tr',
11098
11099     /**
11100      * @cfg {String} clickEvent
11101      * The type of event to map to the button's event handler (defaults to 'click')
11102      */
11103     clickEvent : 'click',
11104
11105     /**
11106      * @cfg {Boolean} handleMouseEvents
11107      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
11108      */
11109     handleMouseEvents : true,
11110
11111     /**
11112      * @cfg {String} tooltipType
11113      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
11114      */
11115     tooltipType : 'qtip',
11116
11117     /**
11118      * @cfg {String} cls
11119      * A CSS class to apply to the button's main element.
11120      */
11121     
11122     /**
11123      * @cfg {Roo.Template} template (Optional)
11124      * An {@link Roo.Template} with which to create the Button's main element. This Template must
11125      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
11126      * require code modifications if required elements (e.g. a button) aren't present.
11127      */
11128
11129     // private
11130     render : function(renderTo){
11131         var btn;
11132         if(this.hideParent){
11133             this.parentEl = Roo.get(renderTo);
11134         }
11135         if(!this.dhconfig){
11136             if(!this.template){
11137                 if(!Roo.Button.buttonTemplate){
11138                     // hideous table template
11139                     Roo.Button.buttonTemplate = new Roo.Template(
11140                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
11141                         '<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>',
11142                         "</tr></tbody></table>");
11143                 }
11144                 this.template = Roo.Button.buttonTemplate;
11145             }
11146             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
11147             var btnEl = btn.child("button:first");
11148             btnEl.on('focus', this.onFocus, this);
11149             btnEl.on('blur', this.onBlur, this);
11150             if(this.cls){
11151                 btn.addClass(this.cls);
11152             }
11153             if(this.icon){
11154                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
11155             }
11156             if(this.iconCls){
11157                 btnEl.addClass(this.iconCls);
11158                 if(!this.cls){
11159                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11160                 }
11161             }
11162             if(this.tabIndex !== undefined){
11163                 btnEl.dom.tabIndex = this.tabIndex;
11164             }
11165             if(this.tooltip){
11166                 if(typeof this.tooltip == 'object'){
11167                     Roo.QuickTips.tips(Roo.apply({
11168                           target: btnEl.id
11169                     }, this.tooltip));
11170                 } else {
11171                     btnEl.dom[this.tooltipType] = this.tooltip;
11172                 }
11173             }
11174         }else{
11175             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
11176         }
11177         this.el = btn;
11178         if(this.id){
11179             this.el.dom.id = this.el.id = this.id;
11180         }
11181         if(this.menu){
11182             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
11183             this.menu.on("show", this.onMenuShow, this);
11184             this.menu.on("hide", this.onMenuHide, this);
11185         }
11186         btn.addClass("x-btn");
11187         if(Roo.isIE && !Roo.isIE7){
11188             this.autoWidth.defer(1, this);
11189         }else{
11190             this.autoWidth();
11191         }
11192         if(this.handleMouseEvents){
11193             btn.on("mouseover", this.onMouseOver, this);
11194             btn.on("mouseout", this.onMouseOut, this);
11195             btn.on("mousedown", this.onMouseDown, this);
11196         }
11197         btn.on(this.clickEvent, this.onClick, this);
11198         //btn.on("mouseup", this.onMouseUp, this);
11199         if(this.hidden){
11200             this.hide();
11201         }
11202         if(this.disabled){
11203             this.disable();
11204         }
11205         Roo.ButtonToggleMgr.register(this);
11206         if(this.pressed){
11207             this.el.addClass("x-btn-pressed");
11208         }
11209         if(this.repeat){
11210             var repeater = new Roo.util.ClickRepeater(btn,
11211                 typeof this.repeat == "object" ? this.repeat : {}
11212             );
11213             repeater.on("click", this.onClick,  this);
11214         }
11215         
11216         this.fireEvent('render', this);
11217         
11218     },
11219     /**
11220      * Returns the button's underlying element
11221      * @return {Roo.Element} The element
11222      */
11223     getEl : function(){
11224         return this.el;  
11225     },
11226     
11227     /**
11228      * Destroys this Button and removes any listeners.
11229      */
11230     destroy : function(){
11231         Roo.ButtonToggleMgr.unregister(this);
11232         this.el.removeAllListeners();
11233         this.purgeListeners();
11234         this.el.remove();
11235     },
11236
11237     // private
11238     autoWidth : function(){
11239         if(this.el){
11240             this.el.setWidth("auto");
11241             if(Roo.isIE7 && Roo.isStrict){
11242                 var ib = this.el.child('button');
11243                 if(ib && ib.getWidth() > 20){
11244                     ib.clip();
11245                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11246                 }
11247             }
11248             if(this.minWidth){
11249                 if(this.hidden){
11250                     this.el.beginMeasure();
11251                 }
11252                 if(this.el.getWidth() < this.minWidth){
11253                     this.el.setWidth(this.minWidth);
11254                 }
11255                 if(this.hidden){
11256                     this.el.endMeasure();
11257                 }
11258             }
11259         }
11260     },
11261
11262     /**
11263      * Assigns this button's click handler
11264      * @param {Function} handler The function to call when the button is clicked
11265      * @param {Object} scope (optional) Scope for the function passed in
11266      */
11267     setHandler : function(handler, scope){
11268         this.handler = handler;
11269         this.scope = scope;  
11270     },
11271     
11272     /**
11273      * Sets this button's text
11274      * @param {String} text The button text
11275      */
11276     setText : function(text){
11277         this.text = text;
11278         if(this.el){
11279             this.el.child("td.x-btn-center button.x-btn-text").update(text);
11280         }
11281         this.autoWidth();
11282     },
11283     
11284     /**
11285      * Gets the text for this button
11286      * @return {String} The button text
11287      */
11288     getText : function(){
11289         return this.text;  
11290     },
11291     
11292     /**
11293      * Show this button
11294      */
11295     show: function(){
11296         this.hidden = false;
11297         if(this.el){
11298             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
11299         }
11300     },
11301     
11302     /**
11303      * Hide this button
11304      */
11305     hide: function(){
11306         this.hidden = true;
11307         if(this.el){
11308             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
11309         }
11310     },
11311     
11312     /**
11313      * Convenience function for boolean show/hide
11314      * @param {Boolean} visible True to show, false to hide
11315      */
11316     setVisible: function(visible){
11317         if(visible) {
11318             this.show();
11319         }else{
11320             this.hide();
11321         }
11322     },
11323     
11324     /**
11325      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
11326      * @param {Boolean} state (optional) Force a particular state
11327      */
11328     toggle : function(state){
11329         state = state === undefined ? !this.pressed : state;
11330         if(state != this.pressed){
11331             if(state){
11332                 this.el.addClass("x-btn-pressed");
11333                 this.pressed = true;
11334                 this.fireEvent("toggle", this, true);
11335             }else{
11336                 this.el.removeClass("x-btn-pressed");
11337                 this.pressed = false;
11338                 this.fireEvent("toggle", this, false);
11339             }
11340             if(this.toggleHandler){
11341                 this.toggleHandler.call(this.scope || this, this, state);
11342             }
11343         }
11344     },
11345     
11346     /**
11347      * Focus the button
11348      */
11349     focus : function(){
11350         this.el.child('button:first').focus();
11351     },
11352     
11353     /**
11354      * Disable this button
11355      */
11356     disable : function(){
11357         if(this.el){
11358             this.el.addClass("x-btn-disabled");
11359         }
11360         this.disabled = true;
11361     },
11362     
11363     /**
11364      * Enable this button
11365      */
11366     enable : function(){
11367         if(this.el){
11368             this.el.removeClass("x-btn-disabled");
11369         }
11370         this.disabled = false;
11371     },
11372
11373     /**
11374      * Convenience function for boolean enable/disable
11375      * @param {Boolean} enabled True to enable, false to disable
11376      */
11377     setDisabled : function(v){
11378         this[v !== true ? "enable" : "disable"]();
11379     },
11380
11381     // private
11382     onClick : function(e){
11383         if(e){
11384             e.preventDefault();
11385         }
11386         if(e.button != 0){
11387             return;
11388         }
11389         if(!this.disabled){
11390             if(this.enableToggle){
11391                 this.toggle();
11392             }
11393             if(this.menu && !this.menu.isVisible()){
11394                 this.menu.show(this.el, this.menuAlign);
11395             }
11396             this.fireEvent("click", this, e);
11397             if(this.handler){
11398                 this.el.removeClass("x-btn-over");
11399                 this.handler.call(this.scope || this, this, e);
11400             }
11401         }
11402     },
11403     // private
11404     onMouseOver : function(e){
11405         if(!this.disabled){
11406             this.el.addClass("x-btn-over");
11407             this.fireEvent('mouseover', this, e);
11408         }
11409     },
11410     // private
11411     onMouseOut : function(e){
11412         if(!e.within(this.el,  true)){
11413             this.el.removeClass("x-btn-over");
11414             this.fireEvent('mouseout', this, e);
11415         }
11416     },
11417     // private
11418     onFocus : function(e){
11419         if(!this.disabled){
11420             this.el.addClass("x-btn-focus");
11421         }
11422     },
11423     // private
11424     onBlur : function(e){
11425         this.el.removeClass("x-btn-focus");
11426     },
11427     // private
11428     onMouseDown : function(e){
11429         if(!this.disabled && e.button == 0){
11430             this.el.addClass("x-btn-click");
11431             Roo.get(document).on('mouseup', this.onMouseUp, this);
11432         }
11433     },
11434     // private
11435     onMouseUp : function(e){
11436         if(e.button == 0){
11437             this.el.removeClass("x-btn-click");
11438             Roo.get(document).un('mouseup', this.onMouseUp, this);
11439         }
11440     },
11441     // private
11442     onMenuShow : function(e){
11443         this.el.addClass("x-btn-menu-active");
11444     },
11445     // private
11446     onMenuHide : function(e){
11447         this.el.removeClass("x-btn-menu-active");
11448     }   
11449 });
11450
11451 // Private utility class used by Button
11452 Roo.ButtonToggleMgr = function(){
11453    var groups = {};
11454    
11455    function toggleGroup(btn, state){
11456        if(state){
11457            var g = groups[btn.toggleGroup];
11458            for(var i = 0, l = g.length; i < l; i++){
11459                if(g[i] != btn){
11460                    g[i].toggle(false);
11461                }
11462            }
11463        }
11464    }
11465    
11466    return {
11467        register : function(btn){
11468            if(!btn.toggleGroup){
11469                return;
11470            }
11471            var g = groups[btn.toggleGroup];
11472            if(!g){
11473                g = groups[btn.toggleGroup] = [];
11474            }
11475            g.push(btn);
11476            btn.on("toggle", toggleGroup);
11477        },
11478        
11479        unregister : function(btn){
11480            if(!btn.toggleGroup){
11481                return;
11482            }
11483            var g = groups[btn.toggleGroup];
11484            if(g){
11485                g.remove(btn);
11486                btn.un("toggle", toggleGroup);
11487            }
11488        }
11489    };
11490 }();/*
11491  * Based on:
11492  * Ext JS Library 1.1.1
11493  * Copyright(c) 2006-2007, Ext JS, LLC.
11494  *
11495  * Originally Released Under LGPL - original licence link has changed is not relivant.
11496  *
11497  * Fork - LGPL
11498  * <script type="text/javascript">
11499  */
11500  
11501 /**
11502  * @class Roo.SplitButton
11503  * @extends Roo.Button
11504  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
11505  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
11506  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
11507  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
11508  * @cfg {String} arrowTooltip The title attribute of the arrow
11509  * @constructor
11510  * Create a new menu button
11511  * @param {String/HTMLElement/Element} renderTo The element to append the button to
11512  * @param {Object} config The config object
11513  */
11514 Roo.SplitButton = function(renderTo, config){
11515     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
11516     /**
11517      * @event arrowclick
11518      * Fires when this button's arrow is clicked
11519      * @param {SplitButton} this
11520      * @param {EventObject} e The click event
11521      */
11522     this.addEvents({"arrowclick":true});
11523 };
11524
11525 Roo.extend(Roo.SplitButton, Roo.Button, {
11526     render : function(renderTo){
11527         // this is one sweet looking template!
11528         var tpl = new Roo.Template(
11529             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
11530             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
11531             '<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>',
11532             "</tbody></table></td><td>",
11533             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
11534             '<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>',
11535             "</tbody></table></td></tr></table>"
11536         );
11537         var btn = tpl.append(renderTo, [this.text, this.type], true);
11538         var btnEl = btn.child("button");
11539         if(this.cls){
11540             btn.addClass(this.cls);
11541         }
11542         if(this.icon){
11543             btnEl.setStyle('background-image', 'url(' +this.icon +')');
11544         }
11545         if(this.iconCls){
11546             btnEl.addClass(this.iconCls);
11547             if(!this.cls){
11548                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11549             }
11550         }
11551         this.el = btn;
11552         if(this.handleMouseEvents){
11553             btn.on("mouseover", this.onMouseOver, this);
11554             btn.on("mouseout", this.onMouseOut, this);
11555             btn.on("mousedown", this.onMouseDown, this);
11556             btn.on("mouseup", this.onMouseUp, this);
11557         }
11558         btn.on(this.clickEvent, this.onClick, this);
11559         if(this.tooltip){
11560             if(typeof this.tooltip == 'object'){
11561                 Roo.QuickTips.tips(Roo.apply({
11562                       target: btnEl.id
11563                 }, this.tooltip));
11564             } else {
11565                 btnEl.dom[this.tooltipType] = this.tooltip;
11566             }
11567         }
11568         if(this.arrowTooltip){
11569             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
11570         }
11571         if(this.hidden){
11572             this.hide();
11573         }
11574         if(this.disabled){
11575             this.disable();
11576         }
11577         if(this.pressed){
11578             this.el.addClass("x-btn-pressed");
11579         }
11580         if(Roo.isIE && !Roo.isIE7){
11581             this.autoWidth.defer(1, this);
11582         }else{
11583             this.autoWidth();
11584         }
11585         if(this.menu){
11586             this.menu.on("show", this.onMenuShow, this);
11587             this.menu.on("hide", this.onMenuHide, this);
11588         }
11589         this.fireEvent('render', this);
11590     },
11591
11592     // private
11593     autoWidth : function(){
11594         if(this.el){
11595             var tbl = this.el.child("table:first");
11596             var tbl2 = this.el.child("table:last");
11597             this.el.setWidth("auto");
11598             tbl.setWidth("auto");
11599             if(Roo.isIE7 && Roo.isStrict){
11600                 var ib = this.el.child('button:first');
11601                 if(ib && ib.getWidth() > 20){
11602                     ib.clip();
11603                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11604                 }
11605             }
11606             if(this.minWidth){
11607                 if(this.hidden){
11608                     this.el.beginMeasure();
11609                 }
11610                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
11611                     tbl.setWidth(this.minWidth-tbl2.getWidth());
11612                 }
11613                 if(this.hidden){
11614                     this.el.endMeasure();
11615                 }
11616             }
11617             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
11618         } 
11619     },
11620     /**
11621      * Sets this button's click handler
11622      * @param {Function} handler The function to call when the button is clicked
11623      * @param {Object} scope (optional) Scope for the function passed above
11624      */
11625     setHandler : function(handler, scope){
11626         this.handler = handler;
11627         this.scope = scope;  
11628     },
11629     
11630     /**
11631      * Sets this button's arrow click handler
11632      * @param {Function} handler The function to call when the arrow is clicked
11633      * @param {Object} scope (optional) Scope for the function passed above
11634      */
11635     setArrowHandler : function(handler, scope){
11636         this.arrowHandler = handler;
11637         this.scope = scope;  
11638     },
11639     
11640     /**
11641      * Focus the button
11642      */
11643     focus : function(){
11644         if(this.el){
11645             this.el.child("button:first").focus();
11646         }
11647     },
11648
11649     // private
11650     onClick : function(e){
11651         e.preventDefault();
11652         if(!this.disabled){
11653             if(e.getTarget(".x-btn-menu-arrow-wrap")){
11654                 if(this.menu && !this.menu.isVisible()){
11655                     this.menu.show(this.el, this.menuAlign);
11656                 }
11657                 this.fireEvent("arrowclick", this, e);
11658                 if(this.arrowHandler){
11659                     this.arrowHandler.call(this.scope || this, this, e);
11660                 }
11661             }else{
11662                 this.fireEvent("click", this, e);
11663                 if(this.handler){
11664                     this.handler.call(this.scope || this, this, e);
11665                 }
11666             }
11667         }
11668     },
11669     // private
11670     onMouseDown : function(e){
11671         if(!this.disabled){
11672             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
11673         }
11674     },
11675     // private
11676     onMouseUp : function(e){
11677         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
11678     }   
11679 });
11680
11681
11682 // backwards compat
11683 Roo.MenuButton = Roo.SplitButton;/*
11684  * Based on:
11685  * Ext JS Library 1.1.1
11686  * Copyright(c) 2006-2007, Ext JS, LLC.
11687  *
11688  * Originally Released Under LGPL - original licence link has changed is not relivant.
11689  *
11690  * Fork - LGPL
11691  * <script type="text/javascript">
11692  */
11693
11694 /**
11695  * @class Roo.Toolbar
11696  * Basic Toolbar class.
11697  * @constructor
11698  * Creates a new Toolbar
11699  * @param {Object} container The config object
11700  */ 
11701 Roo.Toolbar = function(container, buttons, config)
11702 {
11703     /// old consturctor format still supported..
11704     if(container instanceof Array){ // omit the container for later rendering
11705         buttons = container;
11706         config = buttons;
11707         container = null;
11708     }
11709     if (typeof(container) == 'object' && container.xtype) {
11710         config = container;
11711         container = config.container;
11712         buttons = config.buttons || []; // not really - use items!!
11713     }
11714     var xitems = [];
11715     if (config && config.items) {
11716         xitems = config.items;
11717         delete config.items;
11718     }
11719     Roo.apply(this, config);
11720     this.buttons = buttons;
11721     
11722     if(container){
11723         this.render(container);
11724     }
11725     this.xitems = xitems;
11726     Roo.each(xitems, function(b) {
11727         this.add(b);
11728     }, this);
11729     
11730 };
11731
11732 Roo.Toolbar.prototype = {
11733     /**
11734      * @cfg {Array} items
11735      * array of button configs or elements to add (will be converted to a MixedCollection)
11736      */
11737     
11738     /**
11739      * @cfg {String/HTMLElement/Element} container
11740      * The id or element that will contain the toolbar
11741      */
11742     // private
11743     render : function(ct){
11744         this.el = Roo.get(ct);
11745         if(this.cls){
11746             this.el.addClass(this.cls);
11747         }
11748         // using a table allows for vertical alignment
11749         // 100% width is needed by Safari...
11750         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
11751         this.tr = this.el.child("tr", true);
11752         var autoId = 0;
11753         this.items = new Roo.util.MixedCollection(false, function(o){
11754             return o.id || ("item" + (++autoId));
11755         });
11756         if(this.buttons){
11757             this.add.apply(this, this.buttons);
11758             delete this.buttons;
11759         }
11760     },
11761
11762     /**
11763      * Adds element(s) to the toolbar -- this function takes a variable number of 
11764      * arguments of mixed type and adds them to the toolbar.
11765      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
11766      * <ul>
11767      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
11768      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
11769      * <li>Field: Any form field (equivalent to {@link #addField})</li>
11770      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
11771      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
11772      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
11773      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
11774      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
11775      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
11776      * </ul>
11777      * @param {Mixed} arg2
11778      * @param {Mixed} etc.
11779      */
11780     add : function(){
11781         var a = arguments, l = a.length;
11782         for(var i = 0; i < l; i++){
11783             this._add(a[i]);
11784         }
11785     },
11786     // private..
11787     _add : function(el) {
11788         
11789         if (el.xtype) {
11790             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
11791         }
11792         
11793         if (el.applyTo){ // some kind of form field
11794             return this.addField(el);
11795         } 
11796         if (el.render){ // some kind of Toolbar.Item
11797             return this.addItem(el);
11798         }
11799         if (typeof el == "string"){ // string
11800             if(el == "separator" || el == "-"){
11801                 return this.addSeparator();
11802             }
11803             if (el == " "){
11804                 return this.addSpacer();
11805             }
11806             if(el == "->"){
11807                 return this.addFill();
11808             }
11809             return this.addText(el);
11810             
11811         }
11812         if(el.tagName){ // element
11813             return this.addElement(el);
11814         }
11815         if(typeof el == "object"){ // must be button config?
11816             return this.addButton(el);
11817         }
11818         // and now what?!?!
11819         return false;
11820         
11821     },
11822     
11823     /**
11824      * Add an Xtype element
11825      * @param {Object} xtype Xtype Object
11826      * @return {Object} created Object
11827      */
11828     addxtype : function(e){
11829         return this.add(e);  
11830     },
11831     
11832     /**
11833      * Returns the Element for this toolbar.
11834      * @return {Roo.Element}
11835      */
11836     getEl : function(){
11837         return this.el;  
11838     },
11839     
11840     /**
11841      * Adds a separator
11842      * @return {Roo.Toolbar.Item} The separator item
11843      */
11844     addSeparator : function(){
11845         return this.addItem(new Roo.Toolbar.Separator());
11846     },
11847
11848     /**
11849      * Adds a spacer element
11850      * @return {Roo.Toolbar.Spacer} The spacer item
11851      */
11852     addSpacer : function(){
11853         return this.addItem(new Roo.Toolbar.Spacer());
11854     },
11855
11856     /**
11857      * Adds a fill element that forces subsequent additions to the right side of the toolbar
11858      * @return {Roo.Toolbar.Fill} The fill item
11859      */
11860     addFill : function(){
11861         return this.addItem(new Roo.Toolbar.Fill());
11862     },
11863
11864     /**
11865      * Adds any standard HTML element to the toolbar
11866      * @param {String/HTMLElement/Element} el The element or id of the element to add
11867      * @return {Roo.Toolbar.Item} The element's item
11868      */
11869     addElement : function(el){
11870         return this.addItem(new Roo.Toolbar.Item(el));
11871     },
11872     /**
11873      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
11874      * @type Roo.util.MixedCollection  
11875      */
11876     items : false,
11877      
11878     /**
11879      * Adds any Toolbar.Item or subclass
11880      * @param {Roo.Toolbar.Item} item
11881      * @return {Roo.Toolbar.Item} The item
11882      */
11883     addItem : function(item){
11884         var td = this.nextBlock();
11885         item.render(td);
11886         this.items.add(item);
11887         return item;
11888     },
11889     
11890     /**
11891      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
11892      * @param {Object/Array} config A button config or array of configs
11893      * @return {Roo.Toolbar.Button/Array}
11894      */
11895     addButton : function(config){
11896         if(config instanceof Array){
11897             var buttons = [];
11898             for(var i = 0, len = config.length; i < len; i++) {
11899                 buttons.push(this.addButton(config[i]));
11900             }
11901             return buttons;
11902         }
11903         var b = config;
11904         if(!(config instanceof Roo.Toolbar.Button)){
11905             b = config.split ?
11906                 new Roo.Toolbar.SplitButton(config) :
11907                 new Roo.Toolbar.Button(config);
11908         }
11909         var td = this.nextBlock();
11910         b.render(td);
11911         this.items.add(b);
11912         return b;
11913     },
11914     
11915     /**
11916      * Adds text to the toolbar
11917      * @param {String} text The text to add
11918      * @return {Roo.Toolbar.Item} The element's item
11919      */
11920     addText : function(text){
11921         return this.addItem(new Roo.Toolbar.TextItem(text));
11922     },
11923     
11924     /**
11925      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
11926      * @param {Number} index The index where the item is to be inserted
11927      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
11928      * @return {Roo.Toolbar.Button/Item}
11929      */
11930     insertButton : function(index, item){
11931         if(item instanceof Array){
11932             var buttons = [];
11933             for(var i = 0, len = item.length; i < len; i++) {
11934                buttons.push(this.insertButton(index + i, item[i]));
11935             }
11936             return buttons;
11937         }
11938         if (!(item instanceof Roo.Toolbar.Button)){
11939            item = new Roo.Toolbar.Button(item);
11940         }
11941         var td = document.createElement("td");
11942         this.tr.insertBefore(td, this.tr.childNodes[index]);
11943         item.render(td);
11944         this.items.insert(index, item);
11945         return item;
11946     },
11947     
11948     /**
11949      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
11950      * @param {Object} config
11951      * @return {Roo.Toolbar.Item} The element's item
11952      */
11953     addDom : function(config, returnEl){
11954         var td = this.nextBlock();
11955         Roo.DomHelper.overwrite(td, config);
11956         var ti = new Roo.Toolbar.Item(td.firstChild);
11957         ti.render(td);
11958         this.items.add(ti);
11959         return ti;
11960     },
11961
11962     /**
11963      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
11964      * @type Roo.util.MixedCollection  
11965      */
11966     fields : false,
11967     
11968     /**
11969      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
11970      * Note: the field should not have been rendered yet. For a field that has already been
11971      * rendered, use {@link #addElement}.
11972      * @param {Roo.form.Field} field
11973      * @return {Roo.ToolbarItem}
11974      */
11975      
11976       
11977     addField : function(field) {
11978         if (!this.fields) {
11979             var autoId = 0;
11980             this.fields = new Roo.util.MixedCollection(false, function(o){
11981                 return o.id || ("item" + (++autoId));
11982             });
11983
11984         }
11985         
11986         var td = this.nextBlock();
11987         field.render(td);
11988         var ti = new Roo.Toolbar.Item(td.firstChild);
11989         ti.render(td);
11990         this.items.add(ti);
11991         this.fields.add(field);
11992         return ti;
11993     },
11994     /**
11995      * Hide the toolbar
11996      * @method hide
11997      */
11998      
11999       
12000     hide : function()
12001     {
12002         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
12003         this.el.child('div').hide();
12004     },
12005     /**
12006      * Show the toolbar
12007      * @method show
12008      */
12009     show : function()
12010     {
12011         this.el.child('div').show();
12012     },
12013       
12014     // private
12015     nextBlock : function(){
12016         var td = document.createElement("td");
12017         this.tr.appendChild(td);
12018         return td;
12019     },
12020
12021     // private
12022     destroy : function(){
12023         if(this.items){ // rendered?
12024             Roo.destroy.apply(Roo, this.items.items);
12025         }
12026         if(this.fields){ // rendered?
12027             Roo.destroy.apply(Roo, this.fields.items);
12028         }
12029         Roo.Element.uncache(this.el, this.tr);
12030     }
12031 };
12032
12033 /**
12034  * @class Roo.Toolbar.Item
12035  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
12036  * @constructor
12037  * Creates a new Item
12038  * @param {HTMLElement} el 
12039  */
12040 Roo.Toolbar.Item = function(el){
12041     this.el = Roo.getDom(el);
12042     this.id = Roo.id(this.el);
12043     this.hidden = false;
12044 };
12045
12046 Roo.Toolbar.Item.prototype = {
12047     
12048     /**
12049      * Get this item's HTML Element
12050      * @return {HTMLElement}
12051      */
12052     getEl : function(){
12053        return this.el;  
12054     },
12055
12056     // private
12057     render : function(td){
12058         this.td = td;
12059         td.appendChild(this.el);
12060     },
12061     
12062     /**
12063      * Removes and destroys this item.
12064      */
12065     destroy : function(){
12066         this.td.parentNode.removeChild(this.td);
12067     },
12068     
12069     /**
12070      * Shows this item.
12071      */
12072     show: function(){
12073         this.hidden = false;
12074         this.td.style.display = "";
12075     },
12076     
12077     /**
12078      * Hides this item.
12079      */
12080     hide: function(){
12081         this.hidden = true;
12082         this.td.style.display = "none";
12083     },
12084     
12085     /**
12086      * Convenience function for boolean show/hide.
12087      * @param {Boolean} visible true to show/false to hide
12088      */
12089     setVisible: function(visible){
12090         if(visible) {
12091             this.show();
12092         }else{
12093             this.hide();
12094         }
12095     },
12096     
12097     /**
12098      * Try to focus this item.
12099      */
12100     focus : function(){
12101         Roo.fly(this.el).focus();
12102     },
12103     
12104     /**
12105      * Disables this item.
12106      */
12107     disable : function(){
12108         Roo.fly(this.td).addClass("x-item-disabled");
12109         this.disabled = true;
12110         this.el.disabled = true;
12111     },
12112     
12113     /**
12114      * Enables this item.
12115      */
12116     enable : function(){
12117         Roo.fly(this.td).removeClass("x-item-disabled");
12118         this.disabled = false;
12119         this.el.disabled = false;
12120     }
12121 };
12122
12123
12124 /**
12125  * @class Roo.Toolbar.Separator
12126  * @extends Roo.Toolbar.Item
12127  * A simple toolbar separator class
12128  * @constructor
12129  * Creates a new Separator
12130  */
12131 Roo.Toolbar.Separator = function(){
12132     var s = document.createElement("span");
12133     s.className = "ytb-sep";
12134     Roo.Toolbar.Separator.superclass.constructor.call(this, s);
12135 };
12136 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
12137     enable:Roo.emptyFn,
12138     disable:Roo.emptyFn,
12139     focus:Roo.emptyFn
12140 });
12141
12142 /**
12143  * @class Roo.Toolbar.Spacer
12144  * @extends Roo.Toolbar.Item
12145  * A simple element that adds extra horizontal space to a toolbar.
12146  * @constructor
12147  * Creates a new Spacer
12148  */
12149 Roo.Toolbar.Spacer = function(){
12150     var s = document.createElement("div");
12151     s.className = "ytb-spacer";
12152     Roo.Toolbar.Spacer.superclass.constructor.call(this, s);
12153 };
12154 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
12155     enable:Roo.emptyFn,
12156     disable:Roo.emptyFn,
12157     focus:Roo.emptyFn
12158 });
12159
12160 /**
12161  * @class Roo.Toolbar.Fill
12162  * @extends Roo.Toolbar.Spacer
12163  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
12164  * @constructor
12165  * Creates a new Spacer
12166  */
12167 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
12168     // private
12169     render : function(td){
12170         td.style.width = '100%';
12171         Roo.Toolbar.Fill.superclass.render.call(this, td);
12172     }
12173 });
12174
12175 /**
12176  * @class Roo.Toolbar.TextItem
12177  * @extends Roo.Toolbar.Item
12178  * A simple class that renders text directly into a toolbar.
12179  * @constructor
12180  * Creates a new TextItem
12181  * @param {String} text
12182  */
12183 Roo.Toolbar.TextItem = function(text){
12184     if (typeof(text) == 'object') {
12185         text = text.text;
12186     }
12187     var s = document.createElement("span");
12188     s.className = "ytb-text";
12189     s.innerHTML = text;
12190     Roo.Toolbar.TextItem.superclass.constructor.call(this, s);
12191 };
12192 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
12193     enable:Roo.emptyFn,
12194     disable:Roo.emptyFn,
12195     focus:Roo.emptyFn
12196 });
12197
12198 /**
12199  * @class Roo.Toolbar.Button
12200  * @extends Roo.Button
12201  * A button that renders into a toolbar.
12202  * @constructor
12203  * Creates a new Button
12204  * @param {Object} config A standard {@link Roo.Button} config object
12205  */
12206 Roo.Toolbar.Button = function(config){
12207     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
12208 };
12209 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
12210     render : function(td){
12211         this.td = td;
12212         Roo.Toolbar.Button.superclass.render.call(this, td);
12213     },
12214     
12215     /**
12216      * Removes and destroys this button
12217      */
12218     destroy : function(){
12219         Roo.Toolbar.Button.superclass.destroy.call(this);
12220         this.td.parentNode.removeChild(this.td);
12221     },
12222     
12223     /**
12224      * Shows this button
12225      */
12226     show: function(){
12227         this.hidden = false;
12228         this.td.style.display = "";
12229     },
12230     
12231     /**
12232      * Hides this button
12233      */
12234     hide: function(){
12235         this.hidden = true;
12236         this.td.style.display = "none";
12237     },
12238
12239     /**
12240      * Disables this item
12241      */
12242     disable : function(){
12243         Roo.fly(this.td).addClass("x-item-disabled");
12244         this.disabled = true;
12245     },
12246
12247     /**
12248      * Enables this item
12249      */
12250     enable : function(){
12251         Roo.fly(this.td).removeClass("x-item-disabled");
12252         this.disabled = false;
12253     }
12254 });
12255 // backwards compat
12256 Roo.ToolbarButton = Roo.Toolbar.Button;
12257
12258 /**
12259  * @class Roo.Toolbar.SplitButton
12260  * @extends Roo.SplitButton
12261  * A menu button that renders into a toolbar.
12262  * @constructor
12263  * Creates a new SplitButton
12264  * @param {Object} config A standard {@link Roo.SplitButton} config object
12265  */
12266 Roo.Toolbar.SplitButton = function(config){
12267     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
12268 };
12269 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
12270     render : function(td){
12271         this.td = td;
12272         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
12273     },
12274     
12275     /**
12276      * Removes and destroys this button
12277      */
12278     destroy : function(){
12279         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
12280         this.td.parentNode.removeChild(this.td);
12281     },
12282     
12283     /**
12284      * Shows this button
12285      */
12286     show: function(){
12287         this.hidden = false;
12288         this.td.style.display = "";
12289     },
12290     
12291     /**
12292      * Hides this button
12293      */
12294     hide: function(){
12295         this.hidden = true;
12296         this.td.style.display = "none";
12297     }
12298 });
12299
12300 // backwards compat
12301 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
12302  * Based on:
12303  * Ext JS Library 1.1.1
12304  * Copyright(c) 2006-2007, Ext JS, LLC.
12305  *
12306  * Originally Released Under LGPL - original licence link has changed is not relivant.
12307  *
12308  * Fork - LGPL
12309  * <script type="text/javascript">
12310  */
12311  
12312 /**
12313  * @class Roo.PagingToolbar
12314  * @extends Roo.Toolbar
12315  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
12316  * @constructor
12317  * Create a new PagingToolbar
12318  * @param {Object} config The config object
12319  */
12320 Roo.PagingToolbar = function(el, ds, config)
12321 {
12322     // old args format still supported... - xtype is prefered..
12323     if (typeof(el) == 'object' && el.xtype) {
12324         // created from xtype...
12325         config = el;
12326         ds = el.dataSource;
12327         el = config.container;
12328     }
12329     var items = [];
12330     if (config.items) {
12331         items = config.items;
12332         config.items = [];
12333     }
12334     
12335     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
12336     this.ds = ds;
12337     this.cursor = 0;
12338     this.renderButtons(this.el);
12339     this.bind(ds);
12340     
12341     // supprot items array.
12342    
12343     Roo.each(items, function(e) {
12344         this.add(Roo.factory(e));
12345     },this);
12346     
12347 };
12348
12349 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
12350     /**
12351      * @cfg {Roo.data.Store} dataSource
12352      * The underlying data store providing the paged data
12353      */
12354     /**
12355      * @cfg {String/HTMLElement/Element} container
12356      * container The id or element that will contain the toolbar
12357      */
12358     /**
12359      * @cfg {Boolean} displayInfo
12360      * True to display the displayMsg (defaults to false)
12361      */
12362     /**
12363      * @cfg {Number} pageSize
12364      * The number of records to display per page (defaults to 20)
12365      */
12366     pageSize: 20,
12367     /**
12368      * @cfg {String} displayMsg
12369      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
12370      */
12371     displayMsg : 'Displaying {0} - {1} of {2}',
12372     /**
12373      * @cfg {String} emptyMsg
12374      * The message to display when no records are found (defaults to "No data to display")
12375      */
12376     emptyMsg : 'No data to display',
12377     /**
12378      * Customizable piece of the default paging text (defaults to "Page")
12379      * @type String
12380      */
12381     beforePageText : "Page",
12382     /**
12383      * Customizable piece of the default paging text (defaults to "of %0")
12384      * @type String
12385      */
12386     afterPageText : "of {0}",
12387     /**
12388      * Customizable piece of the default paging text (defaults to "First Page")
12389      * @type String
12390      */
12391     firstText : "First Page",
12392     /**
12393      * Customizable piece of the default paging text (defaults to "Previous Page")
12394      * @type String
12395      */
12396     prevText : "Previous Page",
12397     /**
12398      * Customizable piece of the default paging text (defaults to "Next Page")
12399      * @type String
12400      */
12401     nextText : "Next Page",
12402     /**
12403      * Customizable piece of the default paging text (defaults to "Last Page")
12404      * @type String
12405      */
12406     lastText : "Last Page",
12407     /**
12408      * Customizable piece of the default paging text (defaults to "Refresh")
12409      * @type String
12410      */
12411     refreshText : "Refresh",
12412
12413     // private
12414     renderButtons : function(el){
12415         Roo.PagingToolbar.superclass.render.call(this, el);
12416         this.first = this.addButton({
12417             tooltip: this.firstText,
12418             cls: "x-btn-icon x-grid-page-first",
12419             disabled: true,
12420             handler: this.onClick.createDelegate(this, ["first"])
12421         });
12422         this.prev = this.addButton({
12423             tooltip: this.prevText,
12424             cls: "x-btn-icon x-grid-page-prev",
12425             disabled: true,
12426             handler: this.onClick.createDelegate(this, ["prev"])
12427         });
12428         //this.addSeparator();
12429         this.add(this.beforePageText);
12430         this.field = Roo.get(this.addDom({
12431            tag: "input",
12432            type: "text",
12433            size: "3",
12434            value: "1",
12435            cls: "x-grid-page-number"
12436         }).el);
12437         this.field.on("keydown", this.onPagingKeydown, this);
12438         this.field.on("focus", function(){this.dom.select();});
12439         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
12440         this.field.setHeight(18);
12441         //this.addSeparator();
12442         this.next = this.addButton({
12443             tooltip: this.nextText,
12444             cls: "x-btn-icon x-grid-page-next",
12445             disabled: true,
12446             handler: this.onClick.createDelegate(this, ["next"])
12447         });
12448         this.last = this.addButton({
12449             tooltip: this.lastText,
12450             cls: "x-btn-icon x-grid-page-last",
12451             disabled: true,
12452             handler: this.onClick.createDelegate(this, ["last"])
12453         });
12454         //this.addSeparator();
12455         this.loading = this.addButton({
12456             tooltip: this.refreshText,
12457             cls: "x-btn-icon x-grid-loading",
12458             handler: this.onClick.createDelegate(this, ["refresh"])
12459         });
12460
12461         if(this.displayInfo){
12462             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
12463         }
12464     },
12465
12466     // private
12467     updateInfo : function(){
12468         if(this.displayEl){
12469             var count = this.ds.getCount();
12470             var msg = count == 0 ?
12471                 this.emptyMsg :
12472                 String.format(
12473                     this.displayMsg,
12474                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
12475                 );
12476             this.displayEl.update(msg);
12477         }
12478     },
12479
12480     // private
12481     onLoad : function(ds, r, o){
12482        this.cursor = o.params ? o.params.start : 0;
12483        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
12484
12485        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
12486        this.field.dom.value = ap;
12487        this.first.setDisabled(ap == 1);
12488        this.prev.setDisabled(ap == 1);
12489        this.next.setDisabled(ap == ps);
12490        this.last.setDisabled(ap == ps);
12491        this.loading.enable();
12492        this.updateInfo();
12493     },
12494
12495     // private
12496     getPageData : function(){
12497         var total = this.ds.getTotalCount();
12498         return {
12499             total : total,
12500             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
12501             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
12502         };
12503     },
12504
12505     // private
12506     onLoadError : function(){
12507         this.loading.enable();
12508     },
12509
12510     // private
12511     onPagingKeydown : function(e){
12512         var k = e.getKey();
12513         var d = this.getPageData();
12514         if(k == e.RETURN){
12515             var v = this.field.dom.value, pageNum;
12516             if(!v || isNaN(pageNum = parseInt(v, 10))){
12517                 this.field.dom.value = d.activePage;
12518                 return;
12519             }
12520             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
12521             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12522             e.stopEvent();
12523         }
12524         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))
12525         {
12526           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
12527           this.field.dom.value = pageNum;
12528           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
12529           e.stopEvent();
12530         }
12531         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12532         {
12533           var v = this.field.dom.value, pageNum; 
12534           var increment = (e.shiftKey) ? 10 : 1;
12535           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12536             increment *= -1;
12537           if(!v || isNaN(pageNum = parseInt(v, 10))) {
12538             this.field.dom.value = d.activePage;
12539             return;
12540           }
12541           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
12542           {
12543             this.field.dom.value = parseInt(v, 10) + increment;
12544             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
12545             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12546           }
12547           e.stopEvent();
12548         }
12549     },
12550
12551     // private
12552     beforeLoad : function(){
12553         if(this.loading){
12554             this.loading.disable();
12555         }
12556     },
12557
12558     // private
12559     onClick : function(which){
12560         var ds = this.ds;
12561         switch(which){
12562             case "first":
12563                 ds.load({params:{start: 0, limit: this.pageSize}});
12564             break;
12565             case "prev":
12566                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
12567             break;
12568             case "next":
12569                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
12570             break;
12571             case "last":
12572                 var total = ds.getTotalCount();
12573                 var extra = total % this.pageSize;
12574                 var lastStart = extra ? (total - extra) : total-this.pageSize;
12575                 ds.load({params:{start: lastStart, limit: this.pageSize}});
12576             break;
12577             case "refresh":
12578                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
12579             break;
12580         }
12581     },
12582
12583     /**
12584      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
12585      * @param {Roo.data.Store} store The data store to unbind
12586      */
12587     unbind : function(ds){
12588         ds.un("beforeload", this.beforeLoad, this);
12589         ds.un("load", this.onLoad, this);
12590         ds.un("loadexception", this.onLoadError, this);
12591         ds.un("remove", this.updateInfo, this);
12592         ds.un("add", this.updateInfo, this);
12593         this.ds = undefined;
12594     },
12595
12596     /**
12597      * Binds the paging toolbar to the specified {@link Roo.data.Store}
12598      * @param {Roo.data.Store} store The data store to bind
12599      */
12600     bind : function(ds){
12601         ds.on("beforeload", this.beforeLoad, this);
12602         ds.on("load", this.onLoad, this);
12603         ds.on("loadexception", this.onLoadError, this);
12604         ds.on("remove", this.updateInfo, this);
12605         ds.on("add", this.updateInfo, this);
12606         this.ds = ds;
12607     }
12608 });/*
12609  * Based on:
12610  * Ext JS Library 1.1.1
12611  * Copyright(c) 2006-2007, Ext JS, LLC.
12612  *
12613  * Originally Released Under LGPL - original licence link has changed is not relivant.
12614  *
12615  * Fork - LGPL
12616  * <script type="text/javascript">
12617  */
12618
12619 /**
12620  * @class Roo.Resizable
12621  * @extends Roo.util.Observable
12622  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
12623  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
12624  * 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
12625  * the element will be wrapped for you automatically.</p>
12626  * <p>Here is the list of valid resize handles:</p>
12627  * <pre>
12628 Value   Description
12629 ------  -------------------
12630  'n'     north
12631  's'     south
12632  'e'     east
12633  'w'     west
12634  'nw'    northwest
12635  'sw'    southwest
12636  'se'    southeast
12637  'ne'    northeast
12638  'hd'    horizontal drag
12639  'all'   all
12640 </pre>
12641  * <p>Here's an example showing the creation of a typical Resizable:</p>
12642  * <pre><code>
12643 var resizer = new Roo.Resizable("element-id", {
12644     handles: 'all',
12645     minWidth: 200,
12646     minHeight: 100,
12647     maxWidth: 500,
12648     maxHeight: 400,
12649     pinned: true
12650 });
12651 resizer.on("resize", myHandler);
12652 </code></pre>
12653  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
12654  * resizer.east.setDisplayed(false);</p>
12655  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
12656  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
12657  * resize operation's new size (defaults to [0, 0])
12658  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
12659  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
12660  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
12661  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
12662  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
12663  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
12664  * @cfg {Number} width The width of the element in pixels (defaults to null)
12665  * @cfg {Number} height The height of the element in pixels (defaults to null)
12666  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
12667  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
12668  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
12669  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
12670  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
12671  * in favor of the handles config option (defaults to false)
12672  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
12673  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
12674  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
12675  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
12676  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
12677  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
12678  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
12679  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
12680  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
12681  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
12682  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
12683  * @constructor
12684  * Create a new resizable component
12685  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
12686  * @param {Object} config configuration options
12687   */
12688 Roo.Resizable = function(el, config)
12689 {
12690     this.el = Roo.get(el);
12691
12692     if(config && config.wrap){
12693         config.resizeChild = this.el;
12694         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
12695         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
12696         this.el.setStyle("overflow", "hidden");
12697         this.el.setPositioning(config.resizeChild.getPositioning());
12698         config.resizeChild.clearPositioning();
12699         if(!config.width || !config.height){
12700             var csize = config.resizeChild.getSize();
12701             this.el.setSize(csize.width, csize.height);
12702         }
12703         if(config.pinned && !config.adjustments){
12704             config.adjustments = "auto";
12705         }
12706     }
12707
12708     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
12709     this.proxy.unselectable();
12710     this.proxy.enableDisplayMode('block');
12711
12712     Roo.apply(this, config);
12713
12714     if(this.pinned){
12715         this.disableTrackOver = true;
12716         this.el.addClass("x-resizable-pinned");
12717     }
12718     // if the element isn't positioned, make it relative
12719     var position = this.el.getStyle("position");
12720     if(position != "absolute" && position != "fixed"){
12721         this.el.setStyle("position", "relative");
12722     }
12723     if(!this.handles){ // no handles passed, must be legacy style
12724         this.handles = 's,e,se';
12725         if(this.multiDirectional){
12726             this.handles += ',n,w';
12727         }
12728     }
12729     if(this.handles == "all"){
12730         this.handles = "n s e w ne nw se sw";
12731     }
12732     var hs = this.handles.split(/\s*?[,;]\s*?| /);
12733     var ps = Roo.Resizable.positions;
12734     for(var i = 0, len = hs.length; i < len; i++){
12735         if(hs[i] && ps[hs[i]]){
12736             var pos = ps[hs[i]];
12737             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
12738         }
12739     }
12740     // legacy
12741     this.corner = this.southeast;
12742     
12743     // updateBox = the box can move..
12744     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
12745         this.updateBox = true;
12746     }
12747
12748     this.activeHandle = null;
12749
12750     if(this.resizeChild){
12751         if(typeof this.resizeChild == "boolean"){
12752             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
12753         }else{
12754             this.resizeChild = Roo.get(this.resizeChild, true);
12755         }
12756     }
12757     
12758     if(this.adjustments == "auto"){
12759         var rc = this.resizeChild;
12760         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
12761         if(rc && (hw || hn)){
12762             rc.position("relative");
12763             rc.setLeft(hw ? hw.el.getWidth() : 0);
12764             rc.setTop(hn ? hn.el.getHeight() : 0);
12765         }
12766         this.adjustments = [
12767             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
12768             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
12769         ];
12770     }
12771
12772     if(this.draggable){
12773         this.dd = this.dynamic ?
12774             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
12775         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
12776     }
12777
12778     // public events
12779     this.addEvents({
12780         /**
12781          * @event beforeresize
12782          * Fired before resize is allowed. Set enabled to false to cancel resize.
12783          * @param {Roo.Resizable} this
12784          * @param {Roo.EventObject} e The mousedown event
12785          */
12786         "beforeresize" : true,
12787         /**
12788          * @event resizing
12789          * Fired a resizing.
12790          * @param {Roo.Resizable} this
12791          * @param {Number} x The new x position
12792          * @param {Number} y The new y position
12793          * @param {Number} w The new w width
12794          * @param {Number} h The new h hight
12795          * @param {Roo.EventObject} e The mouseup event
12796          */
12797         "resizing" : true,
12798         /**
12799          * @event resize
12800          * Fired after a resize.
12801          * @param {Roo.Resizable} this
12802          * @param {Number} width The new width
12803          * @param {Number} height The new height
12804          * @param {Roo.EventObject} e The mouseup event
12805          */
12806         "resize" : true
12807     });
12808
12809     if(this.width !== null && this.height !== null){
12810         this.resizeTo(this.width, this.height);
12811     }else{
12812         this.updateChildSize();
12813     }
12814     if(Roo.isIE){
12815         this.el.dom.style.zoom = 1;
12816     }
12817     Roo.Resizable.superclass.constructor.call(this);
12818 };
12819
12820 Roo.extend(Roo.Resizable, Roo.util.Observable, {
12821         resizeChild : false,
12822         adjustments : [0, 0],
12823         minWidth : 5,
12824         minHeight : 5,
12825         maxWidth : 10000,
12826         maxHeight : 10000,
12827         enabled : true,
12828         animate : false,
12829         duration : .35,
12830         dynamic : false,
12831         handles : false,
12832         multiDirectional : false,
12833         disableTrackOver : false,
12834         easing : 'easeOutStrong',
12835         widthIncrement : 0,
12836         heightIncrement : 0,
12837         pinned : false,
12838         width : null,
12839         height : null,
12840         preserveRatio : false,
12841         transparent: false,
12842         minX: 0,
12843         minY: 0,
12844         draggable: false,
12845
12846         /**
12847          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
12848          */
12849         constrainTo: undefined,
12850         /**
12851          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
12852          */
12853         resizeRegion: undefined,
12854
12855
12856     /**
12857      * Perform a manual resize
12858      * @param {Number} width
12859      * @param {Number} height
12860      */
12861     resizeTo : function(width, height){
12862         this.el.setSize(width, height);
12863         this.updateChildSize();
12864         this.fireEvent("resize", this, width, height, null);
12865     },
12866
12867     // private
12868     startSizing : function(e, handle){
12869         this.fireEvent("beforeresize", this, e);
12870         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
12871
12872             if(!this.overlay){
12873                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
12874                 this.overlay.unselectable();
12875                 this.overlay.enableDisplayMode("block");
12876                 this.overlay.on("mousemove", this.onMouseMove, this);
12877                 this.overlay.on("mouseup", this.onMouseUp, this);
12878             }
12879             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
12880
12881             this.resizing = true;
12882             this.startBox = this.el.getBox();
12883             this.startPoint = e.getXY();
12884             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
12885                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
12886
12887             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
12888             this.overlay.show();
12889
12890             if(this.constrainTo) {
12891                 var ct = Roo.get(this.constrainTo);
12892                 this.resizeRegion = ct.getRegion().adjust(
12893                     ct.getFrameWidth('t'),
12894                     ct.getFrameWidth('l'),
12895                     -ct.getFrameWidth('b'),
12896                     -ct.getFrameWidth('r')
12897                 );
12898             }
12899
12900             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
12901             this.proxy.show();
12902             this.proxy.setBox(this.startBox);
12903             if(!this.dynamic){
12904                 this.proxy.setStyle('visibility', 'visible');
12905             }
12906         }
12907     },
12908
12909     // private
12910     onMouseDown : function(handle, e){
12911         if(this.enabled){
12912             e.stopEvent();
12913             this.activeHandle = handle;
12914             this.startSizing(e, handle);
12915         }
12916     },
12917
12918     // private
12919     onMouseUp : function(e){
12920         var size = this.resizeElement();
12921         this.resizing = false;
12922         this.handleOut();
12923         this.overlay.hide();
12924         this.proxy.hide();
12925         this.fireEvent("resize", this, size.width, size.height, e);
12926     },
12927
12928     // private
12929     updateChildSize : function(){
12930         
12931         if(this.resizeChild){
12932             var el = this.el;
12933             var child = this.resizeChild;
12934             var adj = this.adjustments;
12935             if(el.dom.offsetWidth){
12936                 var b = el.getSize(true);
12937                 child.setSize(b.width+adj[0], b.height+adj[1]);
12938             }
12939             // Second call here for IE
12940             // The first call enables instant resizing and
12941             // the second call corrects scroll bars if they
12942             // exist
12943             if(Roo.isIE){
12944                 setTimeout(function(){
12945                     if(el.dom.offsetWidth){
12946                         var b = el.getSize(true);
12947                         child.setSize(b.width+adj[0], b.height+adj[1]);
12948                     }
12949                 }, 10);
12950             }
12951         }
12952     },
12953
12954     // private
12955     snap : function(value, inc, min){
12956         if(!inc || !value) return value;
12957         var newValue = value;
12958         var m = value % inc;
12959         if(m > 0){
12960             if(m > (inc/2)){
12961                 newValue = value + (inc-m);
12962             }else{
12963                 newValue = value - m;
12964             }
12965         }
12966         return Math.max(min, newValue);
12967     },
12968
12969     // private
12970     resizeElement : function(){
12971         var box = this.proxy.getBox();
12972         if(this.updateBox){
12973             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
12974         }else{
12975             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
12976         }
12977         this.updateChildSize();
12978         if(!this.dynamic){
12979             this.proxy.hide();
12980         }
12981         return box;
12982     },
12983
12984     // private
12985     constrain : function(v, diff, m, mx){
12986         if(v - diff < m){
12987             diff = v - m;
12988         }else if(v - diff > mx){
12989             diff = mx - v;
12990         }
12991         return diff;
12992     },
12993
12994     // private
12995     onMouseMove : function(e){
12996         
12997         if(this.enabled){
12998             try{// try catch so if something goes wrong the user doesn't get hung
12999
13000             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
13001                 return;
13002             }
13003
13004             //var curXY = this.startPoint;
13005             var curSize = this.curSize || this.startBox;
13006             var x = this.startBox.x, y = this.startBox.y;
13007             var ox = x, oy = y;
13008             var w = curSize.width, h = curSize.height;
13009             var ow = w, oh = h;
13010             var mw = this.minWidth, mh = this.minHeight;
13011             var mxw = this.maxWidth, mxh = this.maxHeight;
13012             var wi = this.widthIncrement;
13013             var hi = this.heightIncrement;
13014
13015             var eventXY = e.getXY();
13016             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
13017             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
13018
13019             var pos = this.activeHandle.position;
13020
13021             switch(pos){
13022                 case "east":
13023                     w += diffX;
13024                     w = Math.min(Math.max(mw, w), mxw);
13025                     break;
13026              
13027                 case "south":
13028                     h += diffY;
13029                     h = Math.min(Math.max(mh, h), mxh);
13030                     break;
13031                 case "southeast":
13032                     w += diffX;
13033                     h += diffY;
13034                     w = Math.min(Math.max(mw, w), mxw);
13035                     h = Math.min(Math.max(mh, h), mxh);
13036                     break;
13037                 case "north":
13038                     diffY = this.constrain(h, diffY, mh, mxh);
13039                     y += diffY;
13040                     h -= diffY;
13041                     break;
13042                 case "hdrag":
13043                     
13044                     if (wi) {
13045                         var adiffX = Math.abs(diffX);
13046                         var sub = (adiffX % wi); // how much 
13047                         if (sub > (wi/2)) { // far enough to snap
13048                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
13049                         } else {
13050                             // remove difference.. 
13051                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
13052                         }
13053                     }
13054                     x += diffX;
13055                     x = Math.max(this.minX, x);
13056                     break;
13057                 case "west":
13058                     diffX = this.constrain(w, diffX, mw, mxw);
13059                     x += diffX;
13060                     w -= diffX;
13061                     break;
13062                 case "northeast":
13063                     w += diffX;
13064                     w = Math.min(Math.max(mw, w), mxw);
13065                     diffY = this.constrain(h, diffY, mh, mxh);
13066                     y += diffY;
13067                     h -= diffY;
13068                     break;
13069                 case "northwest":
13070                     diffX = this.constrain(w, diffX, mw, mxw);
13071                     diffY = this.constrain(h, diffY, mh, mxh);
13072                     y += diffY;
13073                     h -= diffY;
13074                     x += diffX;
13075                     w -= diffX;
13076                     break;
13077                case "southwest":
13078                     diffX = this.constrain(w, diffX, mw, mxw);
13079                     h += diffY;
13080                     h = Math.min(Math.max(mh, h), mxh);
13081                     x += diffX;
13082                     w -= diffX;
13083                     break;
13084             }
13085
13086             var sw = this.snap(w, wi, mw);
13087             var sh = this.snap(h, hi, mh);
13088             if(sw != w || sh != h){
13089                 switch(pos){
13090                     case "northeast":
13091                         y -= sh - h;
13092                     break;
13093                     case "north":
13094                         y -= sh - h;
13095                         break;
13096                     case "southwest":
13097                         x -= sw - w;
13098                     break;
13099                     case "west":
13100                         x -= sw - w;
13101                         break;
13102                     case "northwest":
13103                         x -= sw - w;
13104                         y -= sh - h;
13105                     break;
13106                 }
13107                 w = sw;
13108                 h = sh;
13109             }
13110
13111             if(this.preserveRatio){
13112                 switch(pos){
13113                     case "southeast":
13114                     case "east":
13115                         h = oh * (w/ow);
13116                         h = Math.min(Math.max(mh, h), mxh);
13117                         w = ow * (h/oh);
13118                        break;
13119                     case "south":
13120                         w = ow * (h/oh);
13121                         w = Math.min(Math.max(mw, w), mxw);
13122                         h = oh * (w/ow);
13123                         break;
13124                     case "northeast":
13125                         w = ow * (h/oh);
13126                         w = Math.min(Math.max(mw, w), mxw);
13127                         h = oh * (w/ow);
13128                     break;
13129                     case "north":
13130                         var tw = w;
13131                         w = ow * (h/oh);
13132                         w = Math.min(Math.max(mw, w), mxw);
13133                         h = oh * (w/ow);
13134                         x += (tw - w) / 2;
13135                         break;
13136                     case "southwest":
13137                         h = oh * (w/ow);
13138                         h = Math.min(Math.max(mh, h), mxh);
13139                         var tw = w;
13140                         w = ow * (h/oh);
13141                         x += tw - w;
13142                         break;
13143                     case "west":
13144                         var th = h;
13145                         h = oh * (w/ow);
13146                         h = Math.min(Math.max(mh, h), mxh);
13147                         y += (th - h) / 2;
13148                         var tw = w;
13149                         w = ow * (h/oh);
13150                         x += tw - w;
13151                        break;
13152                     case "northwest":
13153                         var tw = w;
13154                         var th = h;
13155                         h = oh * (w/ow);
13156                         h = Math.min(Math.max(mh, h), mxh);
13157                         w = ow * (h/oh);
13158                         y += th - h;
13159                         x += tw - w;
13160                        break;
13161
13162                 }
13163             }
13164             if (pos == 'hdrag') {
13165                 w = ow;
13166             }
13167             this.proxy.setBounds(x, y, w, h);
13168             if(this.dynamic){
13169                 this.resizeElement();
13170             }
13171             }catch(e){}
13172         }
13173         this.fireEvent("resizing", this, x, y, w, h, e);
13174     },
13175
13176     // private
13177     handleOver : function(){
13178         if(this.enabled){
13179             this.el.addClass("x-resizable-over");
13180         }
13181     },
13182
13183     // private
13184     handleOut : function(){
13185         if(!this.resizing){
13186             this.el.removeClass("x-resizable-over");
13187         }
13188     },
13189
13190     /**
13191      * Returns the element this component is bound to.
13192      * @return {Roo.Element}
13193      */
13194     getEl : function(){
13195         return this.el;
13196     },
13197
13198     /**
13199      * Returns the resizeChild element (or null).
13200      * @return {Roo.Element}
13201      */
13202     getResizeChild : function(){
13203         return this.resizeChild;
13204     },
13205     groupHandler : function()
13206     {
13207         
13208     },
13209     /**
13210      * Destroys this resizable. If the element was wrapped and
13211      * removeEl is not true then the element remains.
13212      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
13213      */
13214     destroy : function(removeEl){
13215         this.proxy.remove();
13216         if(this.overlay){
13217             this.overlay.removeAllListeners();
13218             this.overlay.remove();
13219         }
13220         var ps = Roo.Resizable.positions;
13221         for(var k in ps){
13222             if(typeof ps[k] != "function" && this[ps[k]]){
13223                 var h = this[ps[k]];
13224                 h.el.removeAllListeners();
13225                 h.el.remove();
13226             }
13227         }
13228         if(removeEl){
13229             this.el.update("");
13230             this.el.remove();
13231         }
13232     }
13233 });
13234
13235 // private
13236 // hash to map config positions to true positions
13237 Roo.Resizable.positions = {
13238     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
13239     hd: "hdrag"
13240 };
13241
13242 // private
13243 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
13244     if(!this.tpl){
13245         // only initialize the template if resizable is used
13246         var tpl = Roo.DomHelper.createTemplate(
13247             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
13248         );
13249         tpl.compile();
13250         Roo.Resizable.Handle.prototype.tpl = tpl;
13251     }
13252     this.position = pos;
13253     this.rz = rz;
13254     // show north drag fro topdra
13255     var handlepos = pos == 'hdrag' ? 'north' : pos;
13256     
13257     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
13258     if (pos == 'hdrag') {
13259         this.el.setStyle('cursor', 'pointer');
13260     }
13261     this.el.unselectable();
13262     if(transparent){
13263         this.el.setOpacity(0);
13264     }
13265     this.el.on("mousedown", this.onMouseDown, this);
13266     if(!disableTrackOver){
13267         this.el.on("mouseover", this.onMouseOver, this);
13268         this.el.on("mouseout", this.onMouseOut, this);
13269     }
13270 };
13271
13272 // private
13273 Roo.Resizable.Handle.prototype = {
13274     afterResize : function(rz){
13275         Roo.log('after?');
13276         // do nothing
13277     },
13278     // private
13279     onMouseDown : function(e){
13280         this.rz.onMouseDown(this, e);
13281     },
13282     // private
13283     onMouseOver : function(e){
13284         this.rz.handleOver(this, e);
13285     },
13286     // private
13287     onMouseOut : function(e){
13288         this.rz.handleOut(this, e);
13289     }
13290 };/*
13291  * Based on:
13292  * Ext JS Library 1.1.1
13293  * Copyright(c) 2006-2007, Ext JS, LLC.
13294  *
13295  * Originally Released Under LGPL - original licence link has changed is not relivant.
13296  *
13297  * Fork - LGPL
13298  * <script type="text/javascript">
13299  */
13300
13301 /**
13302  * @class Roo.Editor
13303  * @extends Roo.Component
13304  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
13305  * @constructor
13306  * Create a new Editor
13307  * @param {Roo.form.Field} field The Field object (or descendant)
13308  * @param {Object} config The config object
13309  */
13310 Roo.Editor = function(field, config){
13311     Roo.Editor.superclass.constructor.call(this, config);
13312     this.field = field;
13313     this.addEvents({
13314         /**
13315              * @event beforestartedit
13316              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
13317              * false from the handler of this event.
13318              * @param {Editor} this
13319              * @param {Roo.Element} boundEl The underlying element bound to this editor
13320              * @param {Mixed} value The field value being set
13321              */
13322         "beforestartedit" : true,
13323         /**
13324              * @event startedit
13325              * Fires when this editor is displayed
13326              * @param {Roo.Element} boundEl The underlying element bound to this editor
13327              * @param {Mixed} value The starting field value
13328              */
13329         "startedit" : true,
13330         /**
13331              * @event beforecomplete
13332              * Fires after a change has been made to the field, but before the change is reflected in the underlying
13333              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
13334              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
13335              * event will not fire since no edit actually occurred.
13336              * @param {Editor} this
13337              * @param {Mixed} value The current field value
13338              * @param {Mixed} startValue The original field value
13339              */
13340         "beforecomplete" : true,
13341         /**
13342              * @event complete
13343              * Fires after editing is complete and any changed value has been written to the underlying field.
13344              * @param {Editor} this
13345              * @param {Mixed} value The current field value
13346              * @param {Mixed} startValue The original field value
13347              */
13348         "complete" : true,
13349         /**
13350          * @event specialkey
13351          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
13352          * {@link Roo.EventObject#getKey} to determine which key was pressed.
13353          * @param {Roo.form.Field} this
13354          * @param {Roo.EventObject} e The event object
13355          */
13356         "specialkey" : true
13357     });
13358 };
13359
13360 Roo.extend(Roo.Editor, Roo.Component, {
13361     /**
13362      * @cfg {Boolean/String} autosize
13363      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
13364      * or "height" to adopt the height only (defaults to false)
13365      */
13366     /**
13367      * @cfg {Boolean} revertInvalid
13368      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
13369      * validation fails (defaults to true)
13370      */
13371     /**
13372      * @cfg {Boolean} ignoreNoChange
13373      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
13374      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
13375      * will never be ignored.
13376      */
13377     /**
13378      * @cfg {Boolean} hideEl
13379      * False to keep the bound element visible while the editor is displayed (defaults to true)
13380      */
13381     /**
13382      * @cfg {Mixed} value
13383      * The data value of the underlying field (defaults to "")
13384      */
13385     value : "",
13386     /**
13387      * @cfg {String} alignment
13388      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
13389      */
13390     alignment: "c-c?",
13391     /**
13392      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
13393      * for bottom-right shadow (defaults to "frame")
13394      */
13395     shadow : "frame",
13396     /**
13397      * @cfg {Boolean} constrain True to constrain the editor to the viewport
13398      */
13399     constrain : false,
13400     /**
13401      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
13402      */
13403     completeOnEnter : false,
13404     /**
13405      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
13406      */
13407     cancelOnEsc : false,
13408     /**
13409      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
13410      */
13411     updateEl : false,
13412
13413     // private
13414     onRender : function(ct, position){
13415         this.el = new Roo.Layer({
13416             shadow: this.shadow,
13417             cls: "x-editor",
13418             parentEl : ct,
13419             shim : this.shim,
13420             shadowOffset:4,
13421             id: this.id,
13422             constrain: this.constrain
13423         });
13424         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
13425         if(this.field.msgTarget != 'title'){
13426             this.field.msgTarget = 'qtip';
13427         }
13428         this.field.render(this.el);
13429         if(Roo.isGecko){
13430             this.field.el.dom.setAttribute('autocomplete', 'off');
13431         }
13432         this.field.on("specialkey", this.onSpecialKey, this);
13433         if(this.swallowKeys){
13434             this.field.el.swallowEvent(['keydown','keypress']);
13435         }
13436         this.field.show();
13437         this.field.on("blur", this.onBlur, this);
13438         if(this.field.grow){
13439             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
13440         }
13441     },
13442
13443     onSpecialKey : function(field, e)
13444     {
13445         //Roo.log('editor onSpecialKey');
13446         if(this.completeOnEnter && e.getKey() == e.ENTER){
13447             e.stopEvent();
13448             this.completeEdit();
13449             return;
13450         }
13451         // do not fire special key otherwise it might hide close the editor...
13452         if(e.getKey() == e.ENTER){    
13453             return;
13454         }
13455         if(this.cancelOnEsc && e.getKey() == e.ESC){
13456             this.cancelEdit();
13457             return;
13458         } 
13459         this.fireEvent('specialkey', field, e);
13460     
13461     },
13462
13463     /**
13464      * Starts the editing process and shows the editor.
13465      * @param {String/HTMLElement/Element} el The element to edit
13466      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
13467       * to the innerHTML of el.
13468      */
13469     startEdit : function(el, value){
13470         if(this.editing){
13471             this.completeEdit();
13472         }
13473         this.boundEl = Roo.get(el);
13474         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
13475         if(!this.rendered){
13476             this.render(this.parentEl || document.body);
13477         }
13478         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
13479             return;
13480         }
13481         this.startValue = v;
13482         this.field.setValue(v);
13483         if(this.autoSize){
13484             var sz = this.boundEl.getSize();
13485             switch(this.autoSize){
13486                 case "width":
13487                 this.setSize(sz.width,  "");
13488                 break;
13489                 case "height":
13490                 this.setSize("",  sz.height);
13491                 break;
13492                 default:
13493                 this.setSize(sz.width,  sz.height);
13494             }
13495         }
13496         this.el.alignTo(this.boundEl, this.alignment);
13497         this.editing = true;
13498         if(Roo.QuickTips){
13499             Roo.QuickTips.disable();
13500         }
13501         this.show();
13502     },
13503
13504     /**
13505      * Sets the height and width of this editor.
13506      * @param {Number} width The new width
13507      * @param {Number} height The new height
13508      */
13509     setSize : function(w, h){
13510         this.field.setSize(w, h);
13511         if(this.el){
13512             this.el.sync();
13513         }
13514     },
13515
13516     /**
13517      * Realigns the editor to the bound field based on the current alignment config value.
13518      */
13519     realign : function(){
13520         this.el.alignTo(this.boundEl, this.alignment);
13521     },
13522
13523     /**
13524      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
13525      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
13526      */
13527     completeEdit : function(remainVisible){
13528         if(!this.editing){
13529             return;
13530         }
13531         var v = this.getValue();
13532         if(this.revertInvalid !== false && !this.field.isValid()){
13533             v = this.startValue;
13534             this.cancelEdit(true);
13535         }
13536         if(String(v) === String(this.startValue) && this.ignoreNoChange){
13537             this.editing = false;
13538             this.hide();
13539             return;
13540         }
13541         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
13542             this.editing = false;
13543             if(this.updateEl && this.boundEl){
13544                 this.boundEl.update(v);
13545             }
13546             if(remainVisible !== true){
13547                 this.hide();
13548             }
13549             this.fireEvent("complete", this, v, this.startValue);
13550         }
13551     },
13552
13553     // private
13554     onShow : function(){
13555         this.el.show();
13556         if(this.hideEl !== false){
13557             this.boundEl.hide();
13558         }
13559         this.field.show();
13560         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
13561             this.fixIEFocus = true;
13562             this.deferredFocus.defer(50, this);
13563         }else{
13564             this.field.focus();
13565         }
13566         this.fireEvent("startedit", this.boundEl, this.startValue);
13567     },
13568
13569     deferredFocus : function(){
13570         if(this.editing){
13571             this.field.focus();
13572         }
13573     },
13574
13575     /**
13576      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
13577      * reverted to the original starting value.
13578      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
13579      * cancel (defaults to false)
13580      */
13581     cancelEdit : function(remainVisible){
13582         if(this.editing){
13583             this.setValue(this.startValue);
13584             if(remainVisible !== true){
13585                 this.hide();
13586             }
13587         }
13588     },
13589
13590     // private
13591     onBlur : function(){
13592         if(this.allowBlur !== true && this.editing){
13593             this.completeEdit();
13594         }
13595     },
13596
13597     // private
13598     onHide : function(){
13599         if(this.editing){
13600             this.completeEdit();
13601             return;
13602         }
13603         this.field.blur();
13604         if(this.field.collapse){
13605             this.field.collapse();
13606         }
13607         this.el.hide();
13608         if(this.hideEl !== false){
13609             this.boundEl.show();
13610         }
13611         if(Roo.QuickTips){
13612             Roo.QuickTips.enable();
13613         }
13614     },
13615
13616     /**
13617      * Sets the data value of the editor
13618      * @param {Mixed} value Any valid value supported by the underlying field
13619      */
13620     setValue : function(v){
13621         this.field.setValue(v);
13622     },
13623
13624     /**
13625      * Gets the data value of the editor
13626      * @return {Mixed} The data value
13627      */
13628     getValue : function(){
13629         return this.field.getValue();
13630     }
13631 });/*
13632  * Based on:
13633  * Ext JS Library 1.1.1
13634  * Copyright(c) 2006-2007, Ext JS, LLC.
13635  *
13636  * Originally Released Under LGPL - original licence link has changed is not relivant.
13637  *
13638  * Fork - LGPL
13639  * <script type="text/javascript">
13640  */
13641  
13642 /**
13643  * @class Roo.BasicDialog
13644  * @extends Roo.util.Observable
13645  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
13646  * <pre><code>
13647 var dlg = new Roo.BasicDialog("my-dlg", {
13648     height: 200,
13649     width: 300,
13650     minHeight: 100,
13651     minWidth: 150,
13652     modal: true,
13653     proxyDrag: true,
13654     shadow: true
13655 });
13656 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
13657 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
13658 dlg.addButton('Cancel', dlg.hide, dlg);
13659 dlg.show();
13660 </code></pre>
13661   <b>A Dialog should always be a direct child of the body element.</b>
13662  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
13663  * @cfg {String} title Default text to display in the title bar (defaults to null)
13664  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13665  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13666  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
13667  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
13668  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
13669  * (defaults to null with no animation)
13670  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
13671  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
13672  * property for valid values (defaults to 'all')
13673  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
13674  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
13675  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
13676  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
13677  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
13678  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
13679  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
13680  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
13681  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
13682  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
13683  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
13684  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
13685  * draggable = true (defaults to false)
13686  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
13687  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13688  * shadow (defaults to false)
13689  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
13690  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
13691  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
13692  * @cfg {Array} buttons Array of buttons
13693  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
13694  * @constructor
13695  * Create a new BasicDialog.
13696  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
13697  * @param {Object} config Configuration options
13698  */
13699 Roo.BasicDialog = function(el, config){
13700     this.el = Roo.get(el);
13701     var dh = Roo.DomHelper;
13702     if(!this.el && config && config.autoCreate){
13703         if(typeof config.autoCreate == "object"){
13704             if(!config.autoCreate.id){
13705                 config.autoCreate.id = el;
13706             }
13707             this.el = dh.append(document.body,
13708                         config.autoCreate, true);
13709         }else{
13710             this.el = dh.append(document.body,
13711                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
13712         }
13713     }
13714     el = this.el;
13715     el.setDisplayed(true);
13716     el.hide = this.hideAction;
13717     this.id = el.id;
13718     el.addClass("x-dlg");
13719
13720     Roo.apply(this, config);
13721
13722     this.proxy = el.createProxy("x-dlg-proxy");
13723     this.proxy.hide = this.hideAction;
13724     this.proxy.setOpacity(.5);
13725     this.proxy.hide();
13726
13727     if(config.width){
13728         el.setWidth(config.width);
13729     }
13730     if(config.height){
13731         el.setHeight(config.height);
13732     }
13733     this.size = el.getSize();
13734     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
13735         this.xy = [config.x,config.y];
13736     }else{
13737         this.xy = el.getCenterXY(true);
13738     }
13739     /** The header element @type Roo.Element */
13740     this.header = el.child("> .x-dlg-hd");
13741     /** The body element @type Roo.Element */
13742     this.body = el.child("> .x-dlg-bd");
13743     /** The footer element @type Roo.Element */
13744     this.footer = el.child("> .x-dlg-ft");
13745
13746     if(!this.header){
13747         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
13748     }
13749     if(!this.body){
13750         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
13751     }
13752
13753     this.header.unselectable();
13754     if(this.title){
13755         this.header.update(this.title);
13756     }
13757     // this element allows the dialog to be focused for keyboard event
13758     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
13759     this.focusEl.swallowEvent("click", true);
13760
13761     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
13762
13763     // wrap the body and footer for special rendering
13764     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
13765     if(this.footer){
13766         this.bwrap.dom.appendChild(this.footer.dom);
13767     }
13768
13769     this.bg = this.el.createChild({
13770         tag: "div", cls:"x-dlg-bg",
13771         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
13772     });
13773     this.centerBg = this.bg.child("div.x-dlg-bg-center");
13774
13775
13776     if(this.autoScroll !== false && !this.autoTabs){
13777         this.body.setStyle("overflow", "auto");
13778     }
13779
13780     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
13781
13782     if(this.closable !== false){
13783         this.el.addClass("x-dlg-closable");
13784         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
13785         this.close.on("click", this.closeClick, this);
13786         this.close.addClassOnOver("x-dlg-close-over");
13787     }
13788     if(this.collapsible !== false){
13789         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
13790         this.collapseBtn.on("click", this.collapseClick, this);
13791         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
13792         this.header.on("dblclick", this.collapseClick, this);
13793     }
13794     if(this.resizable !== false){
13795         this.el.addClass("x-dlg-resizable");
13796         this.resizer = new Roo.Resizable(el, {
13797             minWidth: this.minWidth || 80,
13798             minHeight:this.minHeight || 80,
13799             handles: this.resizeHandles || "all",
13800             pinned: true
13801         });
13802         this.resizer.on("beforeresize", this.beforeResize, this);
13803         this.resizer.on("resize", this.onResize, this);
13804     }
13805     if(this.draggable !== false){
13806         el.addClass("x-dlg-draggable");
13807         if (!this.proxyDrag) {
13808             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
13809         }
13810         else {
13811             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
13812         }
13813         dd.setHandleElId(this.header.id);
13814         dd.endDrag = this.endMove.createDelegate(this);
13815         dd.startDrag = this.startMove.createDelegate(this);
13816         dd.onDrag = this.onDrag.createDelegate(this);
13817         dd.scroll = false;
13818         this.dd = dd;
13819     }
13820     if(this.modal){
13821         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
13822         this.mask.enableDisplayMode("block");
13823         this.mask.hide();
13824         this.el.addClass("x-dlg-modal");
13825     }
13826     if(this.shadow){
13827         this.shadow = new Roo.Shadow({
13828             mode : typeof this.shadow == "string" ? this.shadow : "sides",
13829             offset : this.shadowOffset
13830         });
13831     }else{
13832         this.shadowOffset = 0;
13833     }
13834     if(Roo.useShims && this.shim !== false){
13835         this.shim = this.el.createShim();
13836         this.shim.hide = this.hideAction;
13837         this.shim.hide();
13838     }else{
13839         this.shim = false;
13840     }
13841     if(this.autoTabs){
13842         this.initTabs();
13843     }
13844     if (this.buttons) { 
13845         var bts= this.buttons;
13846         this.buttons = [];
13847         Roo.each(bts, function(b) {
13848             this.addButton(b);
13849         }, this);
13850     }
13851     
13852     
13853     this.addEvents({
13854         /**
13855          * @event keydown
13856          * Fires when a key is pressed
13857          * @param {Roo.BasicDialog} this
13858          * @param {Roo.EventObject} e
13859          */
13860         "keydown" : true,
13861         /**
13862          * @event move
13863          * Fires when this dialog is moved by the user.
13864          * @param {Roo.BasicDialog} this
13865          * @param {Number} x The new page X
13866          * @param {Number} y The new page Y
13867          */
13868         "move" : true,
13869         /**
13870          * @event resize
13871          * Fires when this dialog is resized by the user.
13872          * @param {Roo.BasicDialog} this
13873          * @param {Number} width The new width
13874          * @param {Number} height The new height
13875          */
13876         "resize" : true,
13877         /**
13878          * @event beforehide
13879          * Fires before this dialog is hidden.
13880          * @param {Roo.BasicDialog} this
13881          */
13882         "beforehide" : true,
13883         /**
13884          * @event hide
13885          * Fires when this dialog is hidden.
13886          * @param {Roo.BasicDialog} this
13887          */
13888         "hide" : true,
13889         /**
13890          * @event beforeshow
13891          * Fires before this dialog is shown.
13892          * @param {Roo.BasicDialog} this
13893          */
13894         "beforeshow" : true,
13895         /**
13896          * @event show
13897          * Fires when this dialog is shown.
13898          * @param {Roo.BasicDialog} this
13899          */
13900         "show" : true
13901     });
13902     el.on("keydown", this.onKeyDown, this);
13903     el.on("mousedown", this.toFront, this);
13904     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
13905     this.el.hide();
13906     Roo.DialogManager.register(this);
13907     Roo.BasicDialog.superclass.constructor.call(this);
13908 };
13909
13910 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
13911     shadowOffset: Roo.isIE ? 6 : 5,
13912     minHeight: 80,
13913     minWidth: 200,
13914     minButtonWidth: 75,
13915     defaultButton: null,
13916     buttonAlign: "right",
13917     tabTag: 'div',
13918     firstShow: true,
13919
13920     /**
13921      * Sets the dialog title text
13922      * @param {String} text The title text to display
13923      * @return {Roo.BasicDialog} this
13924      */
13925     setTitle : function(text){
13926         this.header.update(text);
13927         return this;
13928     },
13929
13930     // private
13931     closeClick : function(){
13932         this.hide();
13933     },
13934
13935     // private
13936     collapseClick : function(){
13937         this[this.collapsed ? "expand" : "collapse"]();
13938     },
13939
13940     /**
13941      * Collapses the dialog to its minimized state (only the title bar is visible).
13942      * Equivalent to the user clicking the collapse dialog button.
13943      */
13944     collapse : function(){
13945         if(!this.collapsed){
13946             this.collapsed = true;
13947             this.el.addClass("x-dlg-collapsed");
13948             this.restoreHeight = this.el.getHeight();
13949             this.resizeTo(this.el.getWidth(), this.header.getHeight());
13950         }
13951     },
13952
13953     /**
13954      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
13955      * clicking the expand dialog button.
13956      */
13957     expand : function(){
13958         if(this.collapsed){
13959             this.collapsed = false;
13960             this.el.removeClass("x-dlg-collapsed");
13961             this.resizeTo(this.el.getWidth(), this.restoreHeight);
13962         }
13963     },
13964
13965     /**
13966      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
13967      * @return {Roo.TabPanel} The tabs component
13968      */
13969     initTabs : function(){
13970         var tabs = this.getTabs();
13971         while(tabs.getTab(0)){
13972             tabs.removeTab(0);
13973         }
13974         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
13975             var dom = el.dom;
13976             tabs.addTab(Roo.id(dom), dom.title);
13977             dom.title = "";
13978         });
13979         tabs.activate(0);
13980         return tabs;
13981     },
13982
13983     // private
13984     beforeResize : function(){
13985         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
13986     },
13987
13988     // private
13989     onResize : function(){
13990         this.refreshSize();
13991         this.syncBodyHeight();
13992         this.adjustAssets();
13993         this.focus();
13994         this.fireEvent("resize", this, this.size.width, this.size.height);
13995     },
13996
13997     // private
13998     onKeyDown : function(e){
13999         if(this.isVisible()){
14000             this.fireEvent("keydown", this, e);
14001         }
14002     },
14003
14004     /**
14005      * Resizes the dialog.
14006      * @param {Number} width
14007      * @param {Number} height
14008      * @return {Roo.BasicDialog} this
14009      */
14010     resizeTo : function(width, height){
14011         this.el.setSize(width, height);
14012         this.size = {width: width, height: height};
14013         this.syncBodyHeight();
14014         if(this.fixedcenter){
14015             this.center();
14016         }
14017         if(this.isVisible()){
14018             this.constrainXY();
14019             this.adjustAssets();
14020         }
14021         this.fireEvent("resize", this, width, height);
14022         return this;
14023     },
14024
14025
14026     /**
14027      * Resizes the dialog to fit the specified content size.
14028      * @param {Number} width
14029      * @param {Number} height
14030      * @return {Roo.BasicDialog} this
14031      */
14032     setContentSize : function(w, h){
14033         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
14034         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
14035         //if(!this.el.isBorderBox()){
14036             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
14037             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
14038         //}
14039         if(this.tabs){
14040             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
14041             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
14042         }
14043         this.resizeTo(w, h);
14044         return this;
14045     },
14046
14047     /**
14048      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
14049      * executed in response to a particular key being pressed while the dialog is active.
14050      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
14051      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14052      * @param {Function} fn The function to call
14053      * @param {Object} scope (optional) The scope of the function
14054      * @return {Roo.BasicDialog} this
14055      */
14056     addKeyListener : function(key, fn, scope){
14057         var keyCode, shift, ctrl, alt;
14058         if(typeof key == "object" && !(key instanceof Array)){
14059             keyCode = key["key"];
14060             shift = key["shift"];
14061             ctrl = key["ctrl"];
14062             alt = key["alt"];
14063         }else{
14064             keyCode = key;
14065         }
14066         var handler = function(dlg, e){
14067             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14068                 var k = e.getKey();
14069                 if(keyCode instanceof Array){
14070                     for(var i = 0, len = keyCode.length; i < len; i++){
14071                         if(keyCode[i] == k){
14072                           fn.call(scope || window, dlg, k, e);
14073                           return;
14074                         }
14075                     }
14076                 }else{
14077                     if(k == keyCode){
14078                         fn.call(scope || window, dlg, k, e);
14079                     }
14080                 }
14081             }
14082         };
14083         this.on("keydown", handler);
14084         return this;
14085     },
14086
14087     /**
14088      * Returns the TabPanel component (creates it if it doesn't exist).
14089      * Note: If you wish to simply check for the existence of tabs without creating them,
14090      * check for a null 'tabs' property.
14091      * @return {Roo.TabPanel} The tabs component
14092      */
14093     getTabs : function(){
14094         if(!this.tabs){
14095             this.el.addClass("x-dlg-auto-tabs");
14096             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
14097             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
14098         }
14099         return this.tabs;
14100     },
14101
14102     /**
14103      * Adds a button to the footer section of the dialog.
14104      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
14105      * object or a valid Roo.DomHelper element config
14106      * @param {Function} handler The function called when the button is clicked
14107      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
14108      * @return {Roo.Button} The new button
14109      */
14110     addButton : function(config, handler, scope){
14111         var dh = Roo.DomHelper;
14112         if(!this.footer){
14113             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
14114         }
14115         if(!this.btnContainer){
14116             var tb = this.footer.createChild({
14117
14118                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
14119                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
14120             }, null, true);
14121             this.btnContainer = tb.firstChild.firstChild.firstChild;
14122         }
14123         var bconfig = {
14124             handler: handler,
14125             scope: scope,
14126             minWidth: this.minButtonWidth,
14127             hideParent:true
14128         };
14129         if(typeof config == "string"){
14130             bconfig.text = config;
14131         }else{
14132             if(config.tag){
14133                 bconfig.dhconfig = config;
14134             }else{
14135                 Roo.apply(bconfig, config);
14136             }
14137         }
14138         var fc = false;
14139         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
14140             bconfig.position = Math.max(0, bconfig.position);
14141             fc = this.btnContainer.childNodes[bconfig.position];
14142         }
14143          
14144         var btn = new Roo.Button(
14145             fc ? 
14146                 this.btnContainer.insertBefore(document.createElement("td"),fc)
14147                 : this.btnContainer.appendChild(document.createElement("td")),
14148             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
14149             bconfig
14150         );
14151         this.syncBodyHeight();
14152         if(!this.buttons){
14153             /**
14154              * Array of all the buttons that have been added to this dialog via addButton
14155              * @type Array
14156              */
14157             this.buttons = [];
14158         }
14159         this.buttons.push(btn);
14160         return btn;
14161     },
14162
14163     /**
14164      * Sets the default button to be focused when the dialog is displayed.
14165      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
14166      * @return {Roo.BasicDialog} this
14167      */
14168     setDefaultButton : function(btn){
14169         this.defaultButton = btn;
14170         return this;
14171     },
14172
14173     // private
14174     getHeaderFooterHeight : function(safe){
14175         var height = 0;
14176         if(this.header){
14177            height += this.header.getHeight();
14178         }
14179         if(this.footer){
14180            var fm = this.footer.getMargins();
14181             height += (this.footer.getHeight()+fm.top+fm.bottom);
14182         }
14183         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
14184         height += this.centerBg.getPadding("tb");
14185         return height;
14186     },
14187
14188     // private
14189     syncBodyHeight : function()
14190     {
14191         var bd = this.body, // the text
14192             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
14193             bw = this.bwrap;
14194         var height = this.size.height - this.getHeaderFooterHeight(false);
14195         bd.setHeight(height-bd.getMargins("tb"));
14196         var hh = this.header.getHeight();
14197         var h = this.size.height-hh;
14198         cb.setHeight(h);
14199         
14200         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
14201         bw.setHeight(h-cb.getPadding("tb"));
14202         
14203         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
14204         bd.setWidth(bw.getWidth(true));
14205         if(this.tabs){
14206             this.tabs.syncHeight();
14207             if(Roo.isIE){
14208                 this.tabs.el.repaint();
14209             }
14210         }
14211     },
14212
14213     /**
14214      * Restores the previous state of the dialog if Roo.state is configured.
14215      * @return {Roo.BasicDialog} this
14216      */
14217     restoreState : function(){
14218         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
14219         if(box && box.width){
14220             this.xy = [box.x, box.y];
14221             this.resizeTo(box.width, box.height);
14222         }
14223         return this;
14224     },
14225
14226     // private
14227     beforeShow : function(){
14228         this.expand();
14229         if(this.fixedcenter){
14230             this.xy = this.el.getCenterXY(true);
14231         }
14232         if(this.modal){
14233             Roo.get(document.body).addClass("x-body-masked");
14234             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14235             this.mask.show();
14236         }
14237         this.constrainXY();
14238     },
14239
14240     // private
14241     animShow : function(){
14242         var b = Roo.get(this.animateTarget).getBox();
14243         this.proxy.setSize(b.width, b.height);
14244         this.proxy.setLocation(b.x, b.y);
14245         this.proxy.show();
14246         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
14247                     true, .35, this.showEl.createDelegate(this));
14248     },
14249
14250     /**
14251      * Shows the dialog.
14252      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
14253      * @return {Roo.BasicDialog} this
14254      */
14255     show : function(animateTarget){
14256         if (this.fireEvent("beforeshow", this) === false){
14257             return;
14258         }
14259         if(this.syncHeightBeforeShow){
14260             this.syncBodyHeight();
14261         }else if(this.firstShow){
14262             this.firstShow = false;
14263             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
14264         }
14265         this.animateTarget = animateTarget || this.animateTarget;
14266         if(!this.el.isVisible()){
14267             this.beforeShow();
14268             if(this.animateTarget && Roo.get(this.animateTarget)){
14269                 this.animShow();
14270             }else{
14271                 this.showEl();
14272             }
14273         }
14274         return this;
14275     },
14276
14277     // private
14278     showEl : function(){
14279         this.proxy.hide();
14280         this.el.setXY(this.xy);
14281         this.el.show();
14282         this.adjustAssets(true);
14283         this.toFront();
14284         this.focus();
14285         // IE peekaboo bug - fix found by Dave Fenwick
14286         if(Roo.isIE){
14287             this.el.repaint();
14288         }
14289         this.fireEvent("show", this);
14290     },
14291
14292     /**
14293      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
14294      * dialog itself will receive focus.
14295      */
14296     focus : function(){
14297         if(this.defaultButton){
14298             this.defaultButton.focus();
14299         }else{
14300             this.focusEl.focus();
14301         }
14302     },
14303
14304     // private
14305     constrainXY : function(){
14306         if(this.constraintoviewport !== false){
14307             if(!this.viewSize){
14308                 if(this.container){
14309                     var s = this.container.getSize();
14310                     this.viewSize = [s.width, s.height];
14311                 }else{
14312                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
14313                 }
14314             }
14315             var s = Roo.get(this.container||document).getScroll();
14316
14317             var x = this.xy[0], y = this.xy[1];
14318             var w = this.size.width, h = this.size.height;
14319             var vw = this.viewSize[0], vh = this.viewSize[1];
14320             // only move it if it needs it
14321             var moved = false;
14322             // first validate right/bottom
14323             if(x + w > vw+s.left){
14324                 x = vw - w;
14325                 moved = true;
14326             }
14327             if(y + h > vh+s.top){
14328                 y = vh - h;
14329                 moved = true;
14330             }
14331             // then make sure top/left isn't negative
14332             if(x < s.left){
14333                 x = s.left;
14334                 moved = true;
14335             }
14336             if(y < s.top){
14337                 y = s.top;
14338                 moved = true;
14339             }
14340             if(moved){
14341                 // cache xy
14342                 this.xy = [x, y];
14343                 if(this.isVisible()){
14344                     this.el.setLocation(x, y);
14345                     this.adjustAssets();
14346                 }
14347             }
14348         }
14349     },
14350
14351     // private
14352     onDrag : function(){
14353         if(!this.proxyDrag){
14354             this.xy = this.el.getXY();
14355             this.adjustAssets();
14356         }
14357     },
14358
14359     // private
14360     adjustAssets : function(doShow){
14361         var x = this.xy[0], y = this.xy[1];
14362         var w = this.size.width, h = this.size.height;
14363         if(doShow === true){
14364             if(this.shadow){
14365                 this.shadow.show(this.el);
14366             }
14367             if(this.shim){
14368                 this.shim.show();
14369             }
14370         }
14371         if(this.shadow && this.shadow.isVisible()){
14372             this.shadow.show(this.el);
14373         }
14374         if(this.shim && this.shim.isVisible()){
14375             this.shim.setBounds(x, y, w, h);
14376         }
14377     },
14378
14379     // private
14380     adjustViewport : function(w, h){
14381         if(!w || !h){
14382             w = Roo.lib.Dom.getViewWidth();
14383             h = Roo.lib.Dom.getViewHeight();
14384         }
14385         // cache the size
14386         this.viewSize = [w, h];
14387         if(this.modal && this.mask.isVisible()){
14388             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
14389             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14390         }
14391         if(this.isVisible()){
14392             this.constrainXY();
14393         }
14394     },
14395
14396     /**
14397      * Destroys this dialog and all its supporting elements (including any tabs, shim,
14398      * shadow, proxy, mask, etc.)  Also removes all event listeners.
14399      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
14400      */
14401     destroy : function(removeEl){
14402         if(this.isVisible()){
14403             this.animateTarget = null;
14404             this.hide();
14405         }
14406         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
14407         if(this.tabs){
14408             this.tabs.destroy(removeEl);
14409         }
14410         Roo.destroy(
14411              this.shim,
14412              this.proxy,
14413              this.resizer,
14414              this.close,
14415              this.mask
14416         );
14417         if(this.dd){
14418             this.dd.unreg();
14419         }
14420         if(this.buttons){
14421            for(var i = 0, len = this.buttons.length; i < len; i++){
14422                this.buttons[i].destroy();
14423            }
14424         }
14425         this.el.removeAllListeners();
14426         if(removeEl === true){
14427             this.el.update("");
14428             this.el.remove();
14429         }
14430         Roo.DialogManager.unregister(this);
14431     },
14432
14433     // private
14434     startMove : function(){
14435         if(this.proxyDrag){
14436             this.proxy.show();
14437         }
14438         if(this.constraintoviewport !== false){
14439             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
14440         }
14441     },
14442
14443     // private
14444     endMove : function(){
14445         if(!this.proxyDrag){
14446             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
14447         }else{
14448             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
14449             this.proxy.hide();
14450         }
14451         this.refreshSize();
14452         this.adjustAssets();
14453         this.focus();
14454         this.fireEvent("move", this, this.xy[0], this.xy[1]);
14455     },
14456
14457     /**
14458      * Brings this dialog to the front of any other visible dialogs
14459      * @return {Roo.BasicDialog} this
14460      */
14461     toFront : function(){
14462         Roo.DialogManager.bringToFront(this);
14463         return this;
14464     },
14465
14466     /**
14467      * Sends this dialog to the back (under) of any other visible dialogs
14468      * @return {Roo.BasicDialog} this
14469      */
14470     toBack : function(){
14471         Roo.DialogManager.sendToBack(this);
14472         return this;
14473     },
14474
14475     /**
14476      * Centers this dialog in the viewport
14477      * @return {Roo.BasicDialog} this
14478      */
14479     center : function(){
14480         var xy = this.el.getCenterXY(true);
14481         this.moveTo(xy[0], xy[1]);
14482         return this;
14483     },
14484
14485     /**
14486      * Moves the dialog's top-left corner to the specified point
14487      * @param {Number} x
14488      * @param {Number} y
14489      * @return {Roo.BasicDialog} this
14490      */
14491     moveTo : function(x, y){
14492         this.xy = [x,y];
14493         if(this.isVisible()){
14494             this.el.setXY(this.xy);
14495             this.adjustAssets();
14496         }
14497         return this;
14498     },
14499
14500     /**
14501      * Aligns the dialog to the specified element
14502      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14503      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
14504      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14505      * @return {Roo.BasicDialog} this
14506      */
14507     alignTo : function(element, position, offsets){
14508         this.xy = this.el.getAlignToXY(element, position, offsets);
14509         if(this.isVisible()){
14510             this.el.setXY(this.xy);
14511             this.adjustAssets();
14512         }
14513         return this;
14514     },
14515
14516     /**
14517      * Anchors an element to another element and realigns it when the window is resized.
14518      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14519      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
14520      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14521      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
14522      * is a number, it is used as the buffer delay (defaults to 50ms).
14523      * @return {Roo.BasicDialog} this
14524      */
14525     anchorTo : function(el, alignment, offsets, monitorScroll){
14526         var action = function(){
14527             this.alignTo(el, alignment, offsets);
14528         };
14529         Roo.EventManager.onWindowResize(action, this);
14530         var tm = typeof monitorScroll;
14531         if(tm != 'undefined'){
14532             Roo.EventManager.on(window, 'scroll', action, this,
14533                 {buffer: tm == 'number' ? monitorScroll : 50});
14534         }
14535         action.call(this);
14536         return this;
14537     },
14538
14539     /**
14540      * Returns true if the dialog is visible
14541      * @return {Boolean}
14542      */
14543     isVisible : function(){
14544         return this.el.isVisible();
14545     },
14546
14547     // private
14548     animHide : function(callback){
14549         var b = Roo.get(this.animateTarget).getBox();
14550         this.proxy.show();
14551         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
14552         this.el.hide();
14553         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
14554                     this.hideEl.createDelegate(this, [callback]));
14555     },
14556
14557     /**
14558      * Hides the dialog.
14559      * @param {Function} callback (optional) Function to call when the dialog is hidden
14560      * @return {Roo.BasicDialog} this
14561      */
14562     hide : function(callback){
14563         if (this.fireEvent("beforehide", this) === false){
14564             return;
14565         }
14566         if(this.shadow){
14567             this.shadow.hide();
14568         }
14569         if(this.shim) {
14570           this.shim.hide();
14571         }
14572         // sometimes animateTarget seems to get set.. causing problems...
14573         // this just double checks..
14574         if(this.animateTarget && Roo.get(this.animateTarget)) {
14575            this.animHide(callback);
14576         }else{
14577             this.el.hide();
14578             this.hideEl(callback);
14579         }
14580         return this;
14581     },
14582
14583     // private
14584     hideEl : function(callback){
14585         this.proxy.hide();
14586         if(this.modal){
14587             this.mask.hide();
14588             Roo.get(document.body).removeClass("x-body-masked");
14589         }
14590         this.fireEvent("hide", this);
14591         if(typeof callback == "function"){
14592             callback();
14593         }
14594     },
14595
14596     // private
14597     hideAction : function(){
14598         this.setLeft("-10000px");
14599         this.setTop("-10000px");
14600         this.setStyle("visibility", "hidden");
14601     },
14602
14603     // private
14604     refreshSize : function(){
14605         this.size = this.el.getSize();
14606         this.xy = this.el.getXY();
14607         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
14608     },
14609
14610     // private
14611     // z-index is managed by the DialogManager and may be overwritten at any time
14612     setZIndex : function(index){
14613         if(this.modal){
14614             this.mask.setStyle("z-index", index);
14615         }
14616         if(this.shim){
14617             this.shim.setStyle("z-index", ++index);
14618         }
14619         if(this.shadow){
14620             this.shadow.setZIndex(++index);
14621         }
14622         this.el.setStyle("z-index", ++index);
14623         if(this.proxy){
14624             this.proxy.setStyle("z-index", ++index);
14625         }
14626         if(this.resizer){
14627             this.resizer.proxy.setStyle("z-index", ++index);
14628         }
14629
14630         this.lastZIndex = index;
14631     },
14632
14633     /**
14634      * Returns the element for this dialog
14635      * @return {Roo.Element} The underlying dialog Element
14636      */
14637     getEl : function(){
14638         return this.el;
14639     }
14640 });
14641
14642 /**
14643  * @class Roo.DialogManager
14644  * Provides global access to BasicDialogs that have been created and
14645  * support for z-indexing (layering) multiple open dialogs.
14646  */
14647 Roo.DialogManager = function(){
14648     var list = {};
14649     var accessList = [];
14650     var front = null;
14651
14652     // private
14653     var sortDialogs = function(d1, d2){
14654         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
14655     };
14656
14657     // private
14658     var orderDialogs = function(){
14659         accessList.sort(sortDialogs);
14660         var seed = Roo.DialogManager.zseed;
14661         for(var i = 0, len = accessList.length; i < len; i++){
14662             var dlg = accessList[i];
14663             if(dlg){
14664                 dlg.setZIndex(seed + (i*10));
14665             }
14666         }
14667     };
14668
14669     return {
14670         /**
14671          * The starting z-index for BasicDialogs (defaults to 9000)
14672          * @type Number The z-index value
14673          */
14674         zseed : 9000,
14675
14676         // private
14677         register : function(dlg){
14678             list[dlg.id] = dlg;
14679             accessList.push(dlg);
14680         },
14681
14682         // private
14683         unregister : function(dlg){
14684             delete list[dlg.id];
14685             var i=0;
14686             var len=0;
14687             if(!accessList.indexOf){
14688                 for(  i = 0, len = accessList.length; i < len; i++){
14689                     if(accessList[i] == dlg){
14690                         accessList.splice(i, 1);
14691                         return;
14692                     }
14693                 }
14694             }else{
14695                  i = accessList.indexOf(dlg);
14696                 if(i != -1){
14697                     accessList.splice(i, 1);
14698                 }
14699             }
14700         },
14701
14702         /**
14703          * Gets a registered dialog by id
14704          * @param {String/Object} id The id of the dialog or a dialog
14705          * @return {Roo.BasicDialog} this
14706          */
14707         get : function(id){
14708             return typeof id == "object" ? id : list[id];
14709         },
14710
14711         /**
14712          * Brings the specified dialog to the front
14713          * @param {String/Object} dlg The id of the dialog or a dialog
14714          * @return {Roo.BasicDialog} this
14715          */
14716         bringToFront : function(dlg){
14717             dlg = this.get(dlg);
14718             if(dlg != front){
14719                 front = dlg;
14720                 dlg._lastAccess = new Date().getTime();
14721                 orderDialogs();
14722             }
14723             return dlg;
14724         },
14725
14726         /**
14727          * Sends the specified dialog to the back
14728          * @param {String/Object} dlg The id of the dialog or a dialog
14729          * @return {Roo.BasicDialog} this
14730          */
14731         sendToBack : function(dlg){
14732             dlg = this.get(dlg);
14733             dlg._lastAccess = -(new Date().getTime());
14734             orderDialogs();
14735             return dlg;
14736         },
14737
14738         /**
14739          * Hides all dialogs
14740          */
14741         hideAll : function(){
14742             for(var id in list){
14743                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
14744                     list[id].hide();
14745                 }
14746             }
14747         }
14748     };
14749 }();
14750
14751 /**
14752  * @class Roo.LayoutDialog
14753  * @extends Roo.BasicDialog
14754  * Dialog which provides adjustments for working with a layout in a Dialog.
14755  * Add your necessary layout config options to the dialog's config.<br>
14756  * Example usage (including a nested layout):
14757  * <pre><code>
14758 if(!dialog){
14759     dialog = new Roo.LayoutDialog("download-dlg", {
14760         modal: true,
14761         width:600,
14762         height:450,
14763         shadow:true,
14764         minWidth:500,
14765         minHeight:350,
14766         autoTabs:true,
14767         proxyDrag:true,
14768         // layout config merges with the dialog config
14769         center:{
14770             tabPosition: "top",
14771             alwaysShowTabs: true
14772         }
14773     });
14774     dialog.addKeyListener(27, dialog.hide, dialog);
14775     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
14776     dialog.addButton("Build It!", this.getDownload, this);
14777
14778     // we can even add nested layouts
14779     var innerLayout = new Roo.BorderLayout("dl-inner", {
14780         east: {
14781             initialSize: 200,
14782             autoScroll:true,
14783             split:true
14784         },
14785         center: {
14786             autoScroll:true
14787         }
14788     });
14789     innerLayout.beginUpdate();
14790     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
14791     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
14792     innerLayout.endUpdate(true);
14793
14794     var layout = dialog.getLayout();
14795     layout.beginUpdate();
14796     layout.add("center", new Roo.ContentPanel("standard-panel",
14797                         {title: "Download the Source", fitToFrame:true}));
14798     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
14799                {title: "Build your own roo.js"}));
14800     layout.getRegion("center").showPanel(sp);
14801     layout.endUpdate();
14802 }
14803 </code></pre>
14804     * @constructor
14805     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
14806     * @param {Object} config configuration options
14807   */
14808 Roo.LayoutDialog = function(el, cfg){
14809     
14810     var config=  cfg;
14811     if (typeof(cfg) == 'undefined') {
14812         config = Roo.apply({}, el);
14813         // not sure why we use documentElement here.. - it should always be body.
14814         // IE7 borks horribly if we use documentElement.
14815         // webkit also does not like documentElement - it creates a body element...
14816         el = Roo.get( document.body || document.documentElement ).createChild();
14817         //config.autoCreate = true;
14818     }
14819     
14820     
14821     config.autoTabs = false;
14822     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
14823     this.body.setStyle({overflow:"hidden", position:"relative"});
14824     this.layout = new Roo.BorderLayout(this.body.dom, config);
14825     this.layout.monitorWindowResize = false;
14826     this.el.addClass("x-dlg-auto-layout");
14827     // fix case when center region overwrites center function
14828     this.center = Roo.BasicDialog.prototype.center;
14829     this.on("show", this.layout.layout, this.layout, true);
14830     if (config.items) {
14831         var xitems = config.items;
14832         delete config.items;
14833         Roo.each(xitems, this.addxtype, this);
14834     }
14835     
14836     
14837 };
14838 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
14839     /**
14840      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
14841      * @deprecated
14842      */
14843     endUpdate : function(){
14844         this.layout.endUpdate();
14845     },
14846
14847     /**
14848      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
14849      *  @deprecated
14850      */
14851     beginUpdate : function(){
14852         this.layout.beginUpdate();
14853     },
14854
14855     /**
14856      * Get the BorderLayout for this dialog
14857      * @return {Roo.BorderLayout}
14858      */
14859     getLayout : function(){
14860         return this.layout;
14861     },
14862
14863     showEl : function(){
14864         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
14865         if(Roo.isIE7){
14866             this.layout.layout();
14867         }
14868     },
14869
14870     // private
14871     // Use the syncHeightBeforeShow config option to control this automatically
14872     syncBodyHeight : function(){
14873         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
14874         if(this.layout){this.layout.layout();}
14875     },
14876     
14877       /**
14878      * Add an xtype element (actually adds to the layout.)
14879      * @return {Object} xdata xtype object data.
14880      */
14881     
14882     addxtype : function(c) {
14883         return this.layout.addxtype(c);
14884     }
14885 });/*
14886  * Based on:
14887  * Ext JS Library 1.1.1
14888  * Copyright(c) 2006-2007, Ext JS, LLC.
14889  *
14890  * Originally Released Under LGPL - original licence link has changed is not relivant.
14891  *
14892  * Fork - LGPL
14893  * <script type="text/javascript">
14894  */
14895  
14896 /**
14897  * @class Roo.MessageBox
14898  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
14899  * Example usage:
14900  *<pre><code>
14901 // Basic alert:
14902 Roo.Msg.alert('Status', 'Changes saved successfully.');
14903
14904 // Prompt for user data:
14905 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
14906     if (btn == 'ok'){
14907         // process text value...
14908     }
14909 });
14910
14911 // Show a dialog using config options:
14912 Roo.Msg.show({
14913    title:'Save Changes?',
14914    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
14915    buttons: Roo.Msg.YESNOCANCEL,
14916    fn: processResult,
14917    animEl: 'elId'
14918 });
14919 </code></pre>
14920  * @singleton
14921  */
14922 Roo.MessageBox = function(){
14923     var dlg, opt, mask, waitTimer;
14924     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
14925     var buttons, activeTextEl, bwidth;
14926
14927     // private
14928     var handleButton = function(button){
14929         dlg.hide();
14930         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
14931     };
14932
14933     // private
14934     var handleHide = function(){
14935         if(opt && opt.cls){
14936             dlg.el.removeClass(opt.cls);
14937         }
14938         if(waitTimer){
14939             Roo.TaskMgr.stop(waitTimer);
14940             waitTimer = null;
14941         }
14942     };
14943
14944     // private
14945     var updateButtons = function(b){
14946         var width = 0;
14947         if(!b){
14948             buttons["ok"].hide();
14949             buttons["cancel"].hide();
14950             buttons["yes"].hide();
14951             buttons["no"].hide();
14952             dlg.footer.dom.style.display = 'none';
14953             return width;
14954         }
14955         dlg.footer.dom.style.display = '';
14956         for(var k in buttons){
14957             if(typeof buttons[k] != "function"){
14958                 if(b[k]){
14959                     buttons[k].show();
14960                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
14961                     width += buttons[k].el.getWidth()+15;
14962                 }else{
14963                     buttons[k].hide();
14964                 }
14965             }
14966         }
14967         return width;
14968     };
14969
14970     // private
14971     var handleEsc = function(d, k, e){
14972         if(opt && opt.closable !== false){
14973             dlg.hide();
14974         }
14975         if(e){
14976             e.stopEvent();
14977         }
14978     };
14979
14980     return {
14981         /**
14982          * Returns a reference to the underlying {@link Roo.BasicDialog} element
14983          * @return {Roo.BasicDialog} The BasicDialog element
14984          */
14985         getDialog : function(){
14986            if(!dlg){
14987                 dlg = new Roo.BasicDialog("x-msg-box", {
14988                     autoCreate : true,
14989                     shadow: true,
14990                     draggable: true,
14991                     resizable:false,
14992                     constraintoviewport:false,
14993                     fixedcenter:true,
14994                     collapsible : false,
14995                     shim:true,
14996                     modal: true,
14997                     width:400, height:100,
14998                     buttonAlign:"center",
14999                     closeClick : function(){
15000                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
15001                             handleButton("no");
15002                         }else{
15003                             handleButton("cancel");
15004                         }
15005                     }
15006                 });
15007                 dlg.on("hide", handleHide);
15008                 mask = dlg.mask;
15009                 dlg.addKeyListener(27, handleEsc);
15010                 buttons = {};
15011                 var bt = this.buttonText;
15012                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
15013                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
15014                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
15015                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
15016                 bodyEl = dlg.body.createChild({
15017
15018                     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>'
15019                 });
15020                 msgEl = bodyEl.dom.firstChild;
15021                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
15022                 textboxEl.enableDisplayMode();
15023                 textboxEl.addKeyListener([10,13], function(){
15024                     if(dlg.isVisible() && opt && opt.buttons){
15025                         if(opt.buttons.ok){
15026                             handleButton("ok");
15027                         }else if(opt.buttons.yes){
15028                             handleButton("yes");
15029                         }
15030                     }
15031                 });
15032                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
15033                 textareaEl.enableDisplayMode();
15034                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
15035                 progressEl.enableDisplayMode();
15036                 var pf = progressEl.dom.firstChild;
15037                 if (pf) {
15038                     pp = Roo.get(pf.firstChild);
15039                     pp.setHeight(pf.offsetHeight);
15040                 }
15041                 
15042             }
15043             return dlg;
15044         },
15045
15046         /**
15047          * Updates the message box body text
15048          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
15049          * the XHTML-compliant non-breaking space character '&amp;#160;')
15050          * @return {Roo.MessageBox} This message box
15051          */
15052         updateText : function(text){
15053             if(!dlg.isVisible() && !opt.width){
15054                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
15055             }
15056             msgEl.innerHTML = text || '&#160;';
15057       
15058             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
15059             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
15060             var w = Math.max(
15061                     Math.min(opt.width || cw , this.maxWidth), 
15062                     Math.max(opt.minWidth || this.minWidth, bwidth)
15063             );
15064             if(opt.prompt){
15065                 activeTextEl.setWidth(w);
15066             }
15067             if(dlg.isVisible()){
15068                 dlg.fixedcenter = false;
15069             }
15070             // to big, make it scroll. = But as usual stupid IE does not support
15071             // !important..
15072             
15073             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
15074                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
15075                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
15076             } else {
15077                 bodyEl.dom.style.height = '';
15078                 bodyEl.dom.style.overflowY = '';
15079             }
15080             if (cw > w) {
15081                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
15082             } else {
15083                 bodyEl.dom.style.overflowX = '';
15084             }
15085             
15086             dlg.setContentSize(w, bodyEl.getHeight());
15087             if(dlg.isVisible()){
15088                 dlg.fixedcenter = true;
15089             }
15090             return this;
15091         },
15092
15093         /**
15094          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
15095          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
15096          * @param {Number} value Any number between 0 and 1 (e.g., .5)
15097          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
15098          * @return {Roo.MessageBox} This message box
15099          */
15100         updateProgress : function(value, text){
15101             if(text){
15102                 this.updateText(text);
15103             }
15104             if (pp) { // weird bug on my firefox - for some reason this is not defined
15105                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
15106             }
15107             return this;
15108         },        
15109
15110         /**
15111          * Returns true if the message box is currently displayed
15112          * @return {Boolean} True if the message box is visible, else false
15113          */
15114         isVisible : function(){
15115             return dlg && dlg.isVisible();  
15116         },
15117
15118         /**
15119          * Hides the message box if it is displayed
15120          */
15121         hide : function(){
15122             if(this.isVisible()){
15123                 dlg.hide();
15124             }  
15125         },
15126
15127         /**
15128          * Displays a new message box, or reinitializes an existing message box, based on the config options
15129          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
15130          * The following config object properties are supported:
15131          * <pre>
15132 Property    Type             Description
15133 ----------  ---------------  ------------------------------------------------------------------------------------
15134 animEl            String/Element   An id or Element from which the message box should animate as it opens and
15135                                    closes (defaults to undefined)
15136 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
15137                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
15138 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
15139                                    progress and wait dialogs will ignore this property and always hide the
15140                                    close button as they can only be closed programmatically.
15141 cls               String           A custom CSS class to apply to the message box element
15142 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
15143                                    displayed (defaults to 75)
15144 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
15145                                    function will be btn (the name of the button that was clicked, if applicable,
15146                                    e.g. "ok"), and text (the value of the active text field, if applicable).
15147                                    Progress and wait dialogs will ignore this option since they do not respond to
15148                                    user actions and can only be closed programmatically, so any required function
15149                                    should be called by the same code after it closes the dialog.
15150 icon              String           A CSS class that provides a background image to be used as an icon for
15151                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
15152 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
15153 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
15154 modal             Boolean          False to allow user interaction with the page while the message box is
15155                                    displayed (defaults to true)
15156 msg               String           A string that will replace the existing message box body text (defaults
15157                                    to the XHTML-compliant non-breaking space character '&#160;')
15158 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
15159 progress          Boolean          True to display a progress bar (defaults to false)
15160 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
15161 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
15162 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
15163 title             String           The title text
15164 value             String           The string value to set into the active textbox element if displayed
15165 wait              Boolean          True to display a progress bar (defaults to false)
15166 width             Number           The width of the dialog in pixels
15167 </pre>
15168          *
15169          * Example usage:
15170          * <pre><code>
15171 Roo.Msg.show({
15172    title: 'Address',
15173    msg: 'Please enter your address:',
15174    width: 300,
15175    buttons: Roo.MessageBox.OKCANCEL,
15176    multiline: true,
15177    fn: saveAddress,
15178    animEl: 'addAddressBtn'
15179 });
15180 </code></pre>
15181          * @param {Object} config Configuration options
15182          * @return {Roo.MessageBox} This message box
15183          */
15184         show : function(options)
15185         {
15186             
15187             // this causes nightmares if you show one dialog after another
15188             // especially on callbacks..
15189              
15190             if(this.isVisible()){
15191                 
15192                 this.hide();
15193                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
15194                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
15195                 Roo.log("New Dialog Message:" +  options.msg )
15196                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
15197                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
15198                 
15199             }
15200             var d = this.getDialog();
15201             opt = options;
15202             d.setTitle(opt.title || "&#160;");
15203             d.close.setDisplayed(opt.closable !== false);
15204             activeTextEl = textboxEl;
15205             opt.prompt = opt.prompt || (opt.multiline ? true : false);
15206             if(opt.prompt){
15207                 if(opt.multiline){
15208                     textboxEl.hide();
15209                     textareaEl.show();
15210                     textareaEl.setHeight(typeof opt.multiline == "number" ?
15211                         opt.multiline : this.defaultTextHeight);
15212                     activeTextEl = textareaEl;
15213                 }else{
15214                     textboxEl.show();
15215                     textareaEl.hide();
15216                 }
15217             }else{
15218                 textboxEl.hide();
15219                 textareaEl.hide();
15220             }
15221             progressEl.setDisplayed(opt.progress === true);
15222             this.updateProgress(0);
15223             activeTextEl.dom.value = opt.value || "";
15224             if(opt.prompt){
15225                 dlg.setDefaultButton(activeTextEl);
15226             }else{
15227                 var bs = opt.buttons;
15228                 var db = null;
15229                 if(bs && bs.ok){
15230                     db = buttons["ok"];
15231                 }else if(bs && bs.yes){
15232                     db = buttons["yes"];
15233                 }
15234                 dlg.setDefaultButton(db);
15235             }
15236             bwidth = updateButtons(opt.buttons);
15237             this.updateText(opt.msg);
15238             if(opt.cls){
15239                 d.el.addClass(opt.cls);
15240             }
15241             d.proxyDrag = opt.proxyDrag === true;
15242             d.modal = opt.modal !== false;
15243             d.mask = opt.modal !== false ? mask : false;
15244             if(!d.isVisible()){
15245                 // force it to the end of the z-index stack so it gets a cursor in FF
15246                 document.body.appendChild(dlg.el.dom);
15247                 d.animateTarget = null;
15248                 d.show(options.animEl);
15249             }
15250             return this;
15251         },
15252
15253         /**
15254          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
15255          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
15256          * and closing the message box when the process is complete.
15257          * @param {String} title The title bar text
15258          * @param {String} msg The message box body text
15259          * @return {Roo.MessageBox} This message box
15260          */
15261         progress : function(title, msg){
15262             this.show({
15263                 title : title,
15264                 msg : msg,
15265                 buttons: false,
15266                 progress:true,
15267                 closable:false,
15268                 minWidth: this.minProgressWidth,
15269                 modal : true
15270             });
15271             return this;
15272         },
15273
15274         /**
15275          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
15276          * If a callback function is passed it will be called after the user clicks the button, and the
15277          * id of the button that was clicked will be passed as the only parameter to the callback
15278          * (could also be the top-right close button).
15279          * @param {String} title The title bar text
15280          * @param {String} msg The message box body text
15281          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15282          * @param {Object} scope (optional) The scope of the callback function
15283          * @return {Roo.MessageBox} This message box
15284          */
15285         alert : function(title, msg, fn, scope){
15286             this.show({
15287                 title : title,
15288                 msg : msg,
15289                 buttons: this.OK,
15290                 fn: fn,
15291                 scope : scope,
15292                 modal : true
15293             });
15294             return this;
15295         },
15296
15297         /**
15298          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
15299          * interaction while waiting for a long-running process to complete that does not have defined intervals.
15300          * You are responsible for closing the message box when the process is complete.
15301          * @param {String} msg The message box body text
15302          * @param {String} title (optional) The title bar text
15303          * @return {Roo.MessageBox} This message box
15304          */
15305         wait : function(msg, title){
15306             this.show({
15307                 title : title,
15308                 msg : msg,
15309                 buttons: false,
15310                 closable:false,
15311                 progress:true,
15312                 modal:true,
15313                 width:300,
15314                 wait:true
15315             });
15316             waitTimer = Roo.TaskMgr.start({
15317                 run: function(i){
15318                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
15319                 },
15320                 interval: 1000
15321             });
15322             return this;
15323         },
15324
15325         /**
15326          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
15327          * If a callback function is passed it will be called after the user clicks either button, and the id of the
15328          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
15329          * @param {String} title The title bar text
15330          * @param {String} msg The message box body text
15331          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15332          * @param {Object} scope (optional) The scope of the callback function
15333          * @return {Roo.MessageBox} This message box
15334          */
15335         confirm : function(title, msg, fn, scope){
15336             this.show({
15337                 title : title,
15338                 msg : msg,
15339                 buttons: this.YESNO,
15340                 fn: fn,
15341                 scope : scope,
15342                 modal : true
15343             });
15344             return this;
15345         },
15346
15347         /**
15348          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
15349          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
15350          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
15351          * (could also be the top-right close button) and the text that was entered will be passed as the two
15352          * parameters to the callback.
15353          * @param {String} title The title bar text
15354          * @param {String} msg The message box body text
15355          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15356          * @param {Object} scope (optional) The scope of the callback function
15357          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
15358          * property, or the height in pixels to create the textbox (defaults to false / single-line)
15359          * @return {Roo.MessageBox} This message box
15360          */
15361         prompt : function(title, msg, fn, scope, multiline){
15362             this.show({
15363                 title : title,
15364                 msg : msg,
15365                 buttons: this.OKCANCEL,
15366                 fn: fn,
15367                 minWidth:250,
15368                 scope : scope,
15369                 prompt:true,
15370                 multiline: multiline,
15371                 modal : true
15372             });
15373             return this;
15374         },
15375
15376         /**
15377          * Button config that displays a single OK button
15378          * @type Object
15379          */
15380         OK : {ok:true},
15381         /**
15382          * Button config that displays Yes and No buttons
15383          * @type Object
15384          */
15385         YESNO : {yes:true, no:true},
15386         /**
15387          * Button config that displays OK and Cancel buttons
15388          * @type Object
15389          */
15390         OKCANCEL : {ok:true, cancel:true},
15391         /**
15392          * Button config that displays Yes, No and Cancel buttons
15393          * @type Object
15394          */
15395         YESNOCANCEL : {yes:true, no:true, cancel:true},
15396
15397         /**
15398          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
15399          * @type Number
15400          */
15401         defaultTextHeight : 75,
15402         /**
15403          * The maximum width in pixels of the message box (defaults to 600)
15404          * @type Number
15405          */
15406         maxWidth : 600,
15407         /**
15408          * The minimum width in pixels of the message box (defaults to 100)
15409          * @type Number
15410          */
15411         minWidth : 100,
15412         /**
15413          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
15414          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
15415          * @type Number
15416          */
15417         minProgressWidth : 250,
15418         /**
15419          * An object containing the default button text strings that can be overriden for localized language support.
15420          * Supported properties are: ok, cancel, yes and no.
15421          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
15422          * @type Object
15423          */
15424         buttonText : {
15425             ok : "OK",
15426             cancel : "Cancel",
15427             yes : "Yes",
15428             no : "No"
15429         }
15430     };
15431 }();
15432
15433 /**
15434  * Shorthand for {@link Roo.MessageBox}
15435  */
15436 Roo.Msg = Roo.MessageBox;/*
15437  * Based on:
15438  * Ext JS Library 1.1.1
15439  * Copyright(c) 2006-2007, Ext JS, LLC.
15440  *
15441  * Originally Released Under LGPL - original licence link has changed is not relivant.
15442  *
15443  * Fork - LGPL
15444  * <script type="text/javascript">
15445  */
15446 /**
15447  * @class Roo.QuickTips
15448  * Provides attractive and customizable tooltips for any element.
15449  * @singleton
15450  */
15451 Roo.QuickTips = function(){
15452     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
15453     var ce, bd, xy, dd;
15454     var visible = false, disabled = true, inited = false;
15455     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
15456     
15457     var onOver = function(e){
15458         if(disabled){
15459             return;
15460         }
15461         var t = e.getTarget();
15462         if(!t || t.nodeType !== 1 || t == document || t == document.body){
15463             return;
15464         }
15465         if(ce && t == ce.el){
15466             clearTimeout(hideProc);
15467             return;
15468         }
15469         if(t && tagEls[t.id]){
15470             tagEls[t.id].el = t;
15471             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
15472             return;
15473         }
15474         var ttp, et = Roo.fly(t);
15475         var ns = cfg.namespace;
15476         if(tm.interceptTitles && t.title){
15477             ttp = t.title;
15478             t.qtip = ttp;
15479             t.removeAttribute("title");
15480             e.preventDefault();
15481         }else{
15482             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute);
15483         }
15484         if(ttp){
15485             showProc = show.defer(tm.showDelay, tm, [{
15486                 el: t, 
15487                 text: ttp, 
15488                 width: et.getAttributeNS(ns, cfg.width),
15489                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
15490                 title: et.getAttributeNS(ns, cfg.title),
15491                     cls: et.getAttributeNS(ns, cfg.cls)
15492             }]);
15493         }
15494     };
15495     
15496     var onOut = function(e){
15497         clearTimeout(showProc);
15498         var t = e.getTarget();
15499         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
15500             hideProc = setTimeout(hide, tm.hideDelay);
15501         }
15502     };
15503     
15504     var onMove = function(e){
15505         if(disabled){
15506             return;
15507         }
15508         xy = e.getXY();
15509         xy[1] += 18;
15510         if(tm.trackMouse && ce){
15511             el.setXY(xy);
15512         }
15513     };
15514     
15515     var onDown = function(e){
15516         clearTimeout(showProc);
15517         clearTimeout(hideProc);
15518         if(!e.within(el)){
15519             if(tm.hideOnClick){
15520                 hide();
15521                 tm.disable();
15522                 tm.enable.defer(100, tm);
15523             }
15524         }
15525     };
15526     
15527     var getPad = function(){
15528         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
15529     };
15530
15531     var show = function(o){
15532         if(disabled){
15533             return;
15534         }
15535         clearTimeout(dismissProc);
15536         ce = o;
15537         if(removeCls){ // in case manually hidden
15538             el.removeClass(removeCls);
15539             removeCls = null;
15540         }
15541         if(ce.cls){
15542             el.addClass(ce.cls);
15543             removeCls = ce.cls;
15544         }
15545         if(ce.title){
15546             tipTitle.update(ce.title);
15547             tipTitle.show();
15548         }else{
15549             tipTitle.update('');
15550             tipTitle.hide();
15551         }
15552         el.dom.style.width  = tm.maxWidth+'px';
15553         //tipBody.dom.style.width = '';
15554         tipBodyText.update(o.text);
15555         var p = getPad(), w = ce.width;
15556         if(!w){
15557             var td = tipBodyText.dom;
15558             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
15559             if(aw > tm.maxWidth){
15560                 w = tm.maxWidth;
15561             }else if(aw < tm.minWidth){
15562                 w = tm.minWidth;
15563             }else{
15564                 w = aw;
15565             }
15566         }
15567         //tipBody.setWidth(w);
15568         el.setWidth(parseInt(w, 10) + p);
15569         if(ce.autoHide === false){
15570             close.setDisplayed(true);
15571             if(dd){
15572                 dd.unlock();
15573             }
15574         }else{
15575             close.setDisplayed(false);
15576             if(dd){
15577                 dd.lock();
15578             }
15579         }
15580         if(xy){
15581             el.avoidY = xy[1]-18;
15582             el.setXY(xy);
15583         }
15584         if(tm.animate){
15585             el.setOpacity(.1);
15586             el.setStyle("visibility", "visible");
15587             el.fadeIn({callback: afterShow});
15588         }else{
15589             afterShow();
15590         }
15591     };
15592     
15593     var afterShow = function(){
15594         if(ce){
15595             el.show();
15596             esc.enable();
15597             if(tm.autoDismiss && ce.autoHide !== false){
15598                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
15599             }
15600         }
15601     };
15602     
15603     var hide = function(noanim){
15604         clearTimeout(dismissProc);
15605         clearTimeout(hideProc);
15606         ce = null;
15607         if(el.isVisible()){
15608             esc.disable();
15609             if(noanim !== true && tm.animate){
15610                 el.fadeOut({callback: afterHide});
15611             }else{
15612                 afterHide();
15613             } 
15614         }
15615     };
15616     
15617     var afterHide = function(){
15618         el.hide();
15619         if(removeCls){
15620             el.removeClass(removeCls);
15621             removeCls = null;
15622         }
15623     };
15624     
15625     return {
15626         /**
15627         * @cfg {Number} minWidth
15628         * The minimum width of the quick tip (defaults to 40)
15629         */
15630        minWidth : 40,
15631         /**
15632         * @cfg {Number} maxWidth
15633         * The maximum width of the quick tip (defaults to 300)
15634         */
15635        maxWidth : 300,
15636         /**
15637         * @cfg {Boolean} interceptTitles
15638         * True to automatically use the element's DOM title value if available (defaults to false)
15639         */
15640        interceptTitles : false,
15641         /**
15642         * @cfg {Boolean} trackMouse
15643         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
15644         */
15645        trackMouse : false,
15646         /**
15647         * @cfg {Boolean} hideOnClick
15648         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
15649         */
15650        hideOnClick : true,
15651         /**
15652         * @cfg {Number} showDelay
15653         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
15654         */
15655        showDelay : 500,
15656         /**
15657         * @cfg {Number} hideDelay
15658         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
15659         */
15660        hideDelay : 200,
15661         /**
15662         * @cfg {Boolean} autoHide
15663         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
15664         * Used in conjunction with hideDelay.
15665         */
15666        autoHide : true,
15667         /**
15668         * @cfg {Boolean}
15669         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
15670         * (defaults to true).  Used in conjunction with autoDismissDelay.
15671         */
15672        autoDismiss : true,
15673         /**
15674         * @cfg {Number}
15675         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
15676         */
15677        autoDismissDelay : 5000,
15678        /**
15679         * @cfg {Boolean} animate
15680         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
15681         */
15682        animate : false,
15683
15684        /**
15685         * @cfg {String} title
15686         * Title text to display (defaults to '').  This can be any valid HTML markup.
15687         */
15688         title: '',
15689        /**
15690         * @cfg {String} text
15691         * Body text to display (defaults to '').  This can be any valid HTML markup.
15692         */
15693         text : '',
15694        /**
15695         * @cfg {String} cls
15696         * A CSS class to apply to the base quick tip element (defaults to '').
15697         */
15698         cls : '',
15699        /**
15700         * @cfg {Number} width
15701         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
15702         * minWidth or maxWidth.
15703         */
15704         width : null,
15705
15706     /**
15707      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
15708      * or display QuickTips in a page.
15709      */
15710        init : function(){
15711           tm = Roo.QuickTips;
15712           cfg = tm.tagConfig;
15713           if(!inited){
15714               if(!Roo.isReady){ // allow calling of init() before onReady
15715                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
15716                   return;
15717               }
15718               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
15719               el.fxDefaults = {stopFx: true};
15720               // maximum custom styling
15721               //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>');
15722               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>');              
15723               tipTitle = el.child('h3');
15724               tipTitle.enableDisplayMode("block");
15725               tipBody = el.child('div.x-tip-bd');
15726               tipBodyText = el.child('div.x-tip-bd-inner');
15727               //bdLeft = el.child('div.x-tip-bd-left');
15728               //bdRight = el.child('div.x-tip-bd-right');
15729               close = el.child('div.x-tip-close');
15730               close.enableDisplayMode("block");
15731               close.on("click", hide);
15732               var d = Roo.get(document);
15733               d.on("mousedown", onDown);
15734               d.on("mouseover", onOver);
15735               d.on("mouseout", onOut);
15736               d.on("mousemove", onMove);
15737               esc = d.addKeyListener(27, hide);
15738               esc.disable();
15739               if(Roo.dd.DD){
15740                   dd = el.initDD("default", null, {
15741                       onDrag : function(){
15742                           el.sync();  
15743                       }
15744                   });
15745                   dd.setHandleElId(tipTitle.id);
15746                   dd.lock();
15747               }
15748               inited = true;
15749           }
15750           this.enable(); 
15751        },
15752
15753     /**
15754      * Configures a new quick tip instance and assigns it to a target element.  The following config options
15755      * are supported:
15756      * <pre>
15757 Property    Type                   Description
15758 ----------  ---------------------  ------------------------------------------------------------------------
15759 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
15760      * </ul>
15761      * @param {Object} config The config object
15762      */
15763        register : function(config){
15764            var cs = config instanceof Array ? config : arguments;
15765            for(var i = 0, len = cs.length; i < len; i++) {
15766                var c = cs[i];
15767                var target = c.target;
15768                if(target){
15769                    if(target instanceof Array){
15770                        for(var j = 0, jlen = target.length; j < jlen; j++){
15771                            tagEls[target[j]] = c;
15772                        }
15773                    }else{
15774                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
15775                    }
15776                }
15777            }
15778        },
15779
15780     /**
15781      * Removes this quick tip from its element and destroys it.
15782      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
15783      */
15784        unregister : function(el){
15785            delete tagEls[Roo.id(el)];
15786        },
15787
15788     /**
15789      * Enable this quick tip.
15790      */
15791        enable : function(){
15792            if(inited && disabled){
15793                locks.pop();
15794                if(locks.length < 1){
15795                    disabled = false;
15796                }
15797            }
15798        },
15799
15800     /**
15801      * Disable this quick tip.
15802      */
15803        disable : function(){
15804           disabled = true;
15805           clearTimeout(showProc);
15806           clearTimeout(hideProc);
15807           clearTimeout(dismissProc);
15808           if(ce){
15809               hide(true);
15810           }
15811           locks.push(1);
15812        },
15813
15814     /**
15815      * Returns true if the quick tip is enabled, else false.
15816      */
15817        isEnabled : function(){
15818             return !disabled;
15819        },
15820
15821         // private
15822        tagConfig : {
15823            namespace : "ext",
15824            attribute : "qtip",
15825            width : "width",
15826            target : "target",
15827            title : "qtitle",
15828            hide : "hide",
15829            cls : "qclass"
15830        }
15831    };
15832 }();
15833
15834 // backwards compat
15835 Roo.QuickTips.tips = Roo.QuickTips.register;/*
15836  * Based on:
15837  * Ext JS Library 1.1.1
15838  * Copyright(c) 2006-2007, Ext JS, LLC.
15839  *
15840  * Originally Released Under LGPL - original licence link has changed is not relivant.
15841  *
15842  * Fork - LGPL
15843  * <script type="text/javascript">
15844  */
15845  
15846
15847 /**
15848  * @class Roo.tree.TreePanel
15849  * @extends Roo.data.Tree
15850
15851  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
15852  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
15853  * @cfg {Boolean} enableDD true to enable drag and drop
15854  * @cfg {Boolean} enableDrag true to enable just drag
15855  * @cfg {Boolean} enableDrop true to enable just drop
15856  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
15857  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
15858  * @cfg {String} ddGroup The DD group this TreePanel belongs to
15859  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
15860  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
15861  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
15862  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
15863  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
15864  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
15865  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
15866  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
15867  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
15868  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
15869  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
15870  * @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>
15871  * @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>
15872  * 
15873  * @constructor
15874  * @param {String/HTMLElement/Element} el The container element
15875  * @param {Object} config
15876  */
15877 Roo.tree.TreePanel = function(el, config){
15878     var root = false;
15879     var loader = false;
15880     if (config.root) {
15881         root = config.root;
15882         delete config.root;
15883     }
15884     if (config.loader) {
15885         loader = config.loader;
15886         delete config.loader;
15887     }
15888     
15889     Roo.apply(this, config);
15890     Roo.tree.TreePanel.superclass.constructor.call(this);
15891     this.el = Roo.get(el);
15892     this.el.addClass('x-tree');
15893     //console.log(root);
15894     if (root) {
15895         this.setRootNode( Roo.factory(root, Roo.tree));
15896     }
15897     if (loader) {
15898         this.loader = Roo.factory(loader, Roo.tree);
15899     }
15900    /**
15901     * Read-only. The id of the container element becomes this TreePanel's id.
15902     */
15903     this.id = this.el.id;
15904     this.addEvents({
15905         /**
15906         * @event beforeload
15907         * Fires before a node is loaded, return false to cancel
15908         * @param {Node} node The node being loaded
15909         */
15910         "beforeload" : true,
15911         /**
15912         * @event load
15913         * Fires when a node is loaded
15914         * @param {Node} node The node that was loaded
15915         */
15916         "load" : true,
15917         /**
15918         * @event textchange
15919         * Fires when the text for a node is changed
15920         * @param {Node} node The node
15921         * @param {String} text The new text
15922         * @param {String} oldText The old text
15923         */
15924         "textchange" : true,
15925         /**
15926         * @event beforeexpand
15927         * Fires before a node is expanded, return false to cancel.
15928         * @param {Node} node The node
15929         * @param {Boolean} deep
15930         * @param {Boolean} anim
15931         */
15932         "beforeexpand" : true,
15933         /**
15934         * @event beforecollapse
15935         * Fires before a node is collapsed, return false to cancel.
15936         * @param {Node} node The node
15937         * @param {Boolean} deep
15938         * @param {Boolean} anim
15939         */
15940         "beforecollapse" : true,
15941         /**
15942         * @event expand
15943         * Fires when a node is expanded
15944         * @param {Node} node The node
15945         */
15946         "expand" : true,
15947         /**
15948         * @event disabledchange
15949         * Fires when the disabled status of a node changes
15950         * @param {Node} node The node
15951         * @param {Boolean} disabled
15952         */
15953         "disabledchange" : true,
15954         /**
15955         * @event collapse
15956         * Fires when a node is collapsed
15957         * @param {Node} node The node
15958         */
15959         "collapse" : true,
15960         /**
15961         * @event beforeclick
15962         * Fires before click processing on a node. Return false to cancel the default action.
15963         * @param {Node} node The node
15964         * @param {Roo.EventObject} e The event object
15965         */
15966         "beforeclick":true,
15967         /**
15968         * @event checkchange
15969         * Fires when a node with a checkbox's checked property changes
15970         * @param {Node} this This node
15971         * @param {Boolean} checked
15972         */
15973         "checkchange":true,
15974         /**
15975         * @event click
15976         * Fires when a node is clicked
15977         * @param {Node} node The node
15978         * @param {Roo.EventObject} e The event object
15979         */
15980         "click":true,
15981         /**
15982         * @event dblclick
15983         * Fires when a node is double clicked
15984         * @param {Node} node The node
15985         * @param {Roo.EventObject} e The event object
15986         */
15987         "dblclick":true,
15988         /**
15989         * @event contextmenu
15990         * Fires when a node is right clicked
15991         * @param {Node} node The node
15992         * @param {Roo.EventObject} e The event object
15993         */
15994         "contextmenu":true,
15995         /**
15996         * @event beforechildrenrendered
15997         * Fires right before the child nodes for a node are rendered
15998         * @param {Node} node The node
15999         */
16000         "beforechildrenrendered":true,
16001         /**
16002         * @event startdrag
16003         * Fires when a node starts being dragged
16004         * @param {Roo.tree.TreePanel} this
16005         * @param {Roo.tree.TreeNode} node
16006         * @param {event} e The raw browser event
16007         */ 
16008        "startdrag" : true,
16009        /**
16010         * @event enddrag
16011         * Fires when a drag operation is complete
16012         * @param {Roo.tree.TreePanel} this
16013         * @param {Roo.tree.TreeNode} node
16014         * @param {event} e The raw browser event
16015         */
16016        "enddrag" : true,
16017        /**
16018         * @event dragdrop
16019         * Fires when a dragged node is dropped on a valid DD target
16020         * @param {Roo.tree.TreePanel} this
16021         * @param {Roo.tree.TreeNode} node
16022         * @param {DD} dd The dd it was dropped on
16023         * @param {event} e The raw browser event
16024         */
16025        "dragdrop" : true,
16026        /**
16027         * @event beforenodedrop
16028         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
16029         * passed to handlers has the following properties:<br />
16030         * <ul style="padding:5px;padding-left:16px;">
16031         * <li>tree - The TreePanel</li>
16032         * <li>target - The node being targeted for the drop</li>
16033         * <li>data - The drag data from the drag source</li>
16034         * <li>point - The point of the drop - append, above or below</li>
16035         * <li>source - The drag source</li>
16036         * <li>rawEvent - Raw mouse event</li>
16037         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
16038         * to be inserted by setting them on this object.</li>
16039         * <li>cancel - Set this to true to cancel the drop.</li>
16040         * </ul>
16041         * @param {Object} dropEvent
16042         */
16043        "beforenodedrop" : true,
16044        /**
16045         * @event nodedrop
16046         * Fires after a DD object is dropped on a node in this tree. The dropEvent
16047         * passed to handlers has the following properties:<br />
16048         * <ul style="padding:5px;padding-left:16px;">
16049         * <li>tree - The TreePanel</li>
16050         * <li>target - The node being targeted for the drop</li>
16051         * <li>data - The drag data from the drag source</li>
16052         * <li>point - The point of the drop - append, above or below</li>
16053         * <li>source - The drag source</li>
16054         * <li>rawEvent - Raw mouse event</li>
16055         * <li>dropNode - Dropped node(s).</li>
16056         * </ul>
16057         * @param {Object} dropEvent
16058         */
16059        "nodedrop" : true,
16060         /**
16061         * @event nodedragover
16062         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
16063         * passed to handlers has the following properties:<br />
16064         * <ul style="padding:5px;padding-left:16px;">
16065         * <li>tree - The TreePanel</li>
16066         * <li>target - The node being targeted for the drop</li>
16067         * <li>data - The drag data from the drag source</li>
16068         * <li>point - The point of the drop - append, above or below</li>
16069         * <li>source - The drag source</li>
16070         * <li>rawEvent - Raw mouse event</li>
16071         * <li>dropNode - Drop node(s) provided by the source.</li>
16072         * <li>cancel - Set this to true to signal drop not allowed.</li>
16073         * </ul>
16074         * @param {Object} dragOverEvent
16075         */
16076        "nodedragover" : true
16077         
16078     });
16079     if(this.singleExpand){
16080        this.on("beforeexpand", this.restrictExpand, this);
16081     }
16082     if (this.editor) {
16083         this.editor.tree = this;
16084         this.editor = Roo.factory(this.editor, Roo.tree);
16085     }
16086     
16087     if (this.selModel) {
16088         this.selModel = Roo.factory(this.selModel, Roo.tree);
16089     }
16090    
16091 };
16092 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
16093     rootVisible : true,
16094     animate: Roo.enableFx,
16095     lines : true,
16096     enableDD : false,
16097     hlDrop : Roo.enableFx,
16098   
16099     renderer: false,
16100     
16101     rendererTip: false,
16102     // private
16103     restrictExpand : function(node){
16104         var p = node.parentNode;
16105         if(p){
16106             if(p.expandedChild && p.expandedChild.parentNode == p){
16107                 p.expandedChild.collapse();
16108             }
16109             p.expandedChild = node;
16110         }
16111     },
16112
16113     // private override
16114     setRootNode : function(node){
16115         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
16116         if(!this.rootVisible){
16117             node.ui = new Roo.tree.RootTreeNodeUI(node);
16118         }
16119         return node;
16120     },
16121
16122     /**
16123      * Returns the container element for this TreePanel
16124      */
16125     getEl : function(){
16126         return this.el;
16127     },
16128
16129     /**
16130      * Returns the default TreeLoader for this TreePanel
16131      */
16132     getLoader : function(){
16133         return this.loader;
16134     },
16135
16136     /**
16137      * Expand all nodes
16138      */
16139     expandAll : function(){
16140         this.root.expand(true);
16141     },
16142
16143     /**
16144      * Collapse all nodes
16145      */
16146     collapseAll : function(){
16147         this.root.collapse(true);
16148     },
16149
16150     /**
16151      * Returns the selection model used by this TreePanel
16152      */
16153     getSelectionModel : function(){
16154         if(!this.selModel){
16155             this.selModel = new Roo.tree.DefaultSelectionModel();
16156         }
16157         return this.selModel;
16158     },
16159
16160     /**
16161      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
16162      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
16163      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
16164      * @return {Array}
16165      */
16166     getChecked : function(a, startNode){
16167         startNode = startNode || this.root;
16168         var r = [];
16169         var f = function(){
16170             if(this.attributes.checked){
16171                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
16172             }
16173         }
16174         startNode.cascade(f);
16175         return r;
16176     },
16177
16178     /**
16179      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16180      * @param {String} path
16181      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16182      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
16183      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
16184      */
16185     expandPath : function(path, attr, callback){
16186         attr = attr || "id";
16187         var keys = path.split(this.pathSeparator);
16188         var curNode = this.root;
16189         if(curNode.attributes[attr] != keys[1]){ // invalid root
16190             if(callback){
16191                 callback(false, null);
16192             }
16193             return;
16194         }
16195         var index = 1;
16196         var f = function(){
16197             if(++index == keys.length){
16198                 if(callback){
16199                     callback(true, curNode);
16200                 }
16201                 return;
16202             }
16203             var c = curNode.findChild(attr, keys[index]);
16204             if(!c){
16205                 if(callback){
16206                     callback(false, curNode);
16207                 }
16208                 return;
16209             }
16210             curNode = c;
16211             c.expand(false, false, f);
16212         };
16213         curNode.expand(false, false, f);
16214     },
16215
16216     /**
16217      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16218      * @param {String} path
16219      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16220      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
16221      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
16222      */
16223     selectPath : function(path, attr, callback){
16224         attr = attr || "id";
16225         var keys = path.split(this.pathSeparator);
16226         var v = keys.pop();
16227         if(keys.length > 0){
16228             var f = function(success, node){
16229                 if(success && node){
16230                     var n = node.findChild(attr, v);
16231                     if(n){
16232                         n.select();
16233                         if(callback){
16234                             callback(true, n);
16235                         }
16236                     }else if(callback){
16237                         callback(false, n);
16238                     }
16239                 }else{
16240                     if(callback){
16241                         callback(false, n);
16242                     }
16243                 }
16244             };
16245             this.expandPath(keys.join(this.pathSeparator), attr, f);
16246         }else{
16247             this.root.select();
16248             if(callback){
16249                 callback(true, this.root);
16250             }
16251         }
16252     },
16253
16254     getTreeEl : function(){
16255         return this.el;
16256     },
16257
16258     /**
16259      * Trigger rendering of this TreePanel
16260      */
16261     render : function(){
16262         if (this.innerCt) {
16263             return this; // stop it rendering more than once!!
16264         }
16265         
16266         this.innerCt = this.el.createChild({tag:"ul",
16267                cls:"x-tree-root-ct " +
16268                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
16269
16270         if(this.containerScroll){
16271             Roo.dd.ScrollManager.register(this.el);
16272         }
16273         if((this.enableDD || this.enableDrop) && !this.dropZone){
16274            /**
16275             * The dropZone used by this tree if drop is enabled
16276             * @type Roo.tree.TreeDropZone
16277             */
16278              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
16279                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
16280            });
16281         }
16282         if((this.enableDD || this.enableDrag) && !this.dragZone){
16283            /**
16284             * The dragZone used by this tree if drag is enabled
16285             * @type Roo.tree.TreeDragZone
16286             */
16287             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
16288                ddGroup: this.ddGroup || "TreeDD",
16289                scroll: this.ddScroll
16290            });
16291         }
16292         this.getSelectionModel().init(this);
16293         if (!this.root) {
16294             Roo.log("ROOT not set in tree");
16295             return this;
16296         }
16297         this.root.render();
16298         if(!this.rootVisible){
16299             this.root.renderChildren();
16300         }
16301         return this;
16302     }
16303 });/*
16304  * Based on:
16305  * Ext JS Library 1.1.1
16306  * Copyright(c) 2006-2007, Ext JS, LLC.
16307  *
16308  * Originally Released Under LGPL - original licence link has changed is not relivant.
16309  *
16310  * Fork - LGPL
16311  * <script type="text/javascript">
16312  */
16313  
16314
16315 /**
16316  * @class Roo.tree.DefaultSelectionModel
16317  * @extends Roo.util.Observable
16318  * The default single selection for a TreePanel.
16319  * @param {Object} cfg Configuration
16320  */
16321 Roo.tree.DefaultSelectionModel = function(cfg){
16322    this.selNode = null;
16323    
16324    
16325    
16326    this.addEvents({
16327        /**
16328         * @event selectionchange
16329         * Fires when the selected node changes
16330         * @param {DefaultSelectionModel} this
16331         * @param {TreeNode} node the new selection
16332         */
16333        "selectionchange" : true,
16334
16335        /**
16336         * @event beforeselect
16337         * Fires before the selected node changes, return false to cancel the change
16338         * @param {DefaultSelectionModel} this
16339         * @param {TreeNode} node the new selection
16340         * @param {TreeNode} node the old selection
16341         */
16342        "beforeselect" : true
16343    });
16344    
16345     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
16346 };
16347
16348 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
16349     init : function(tree){
16350         this.tree = tree;
16351         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16352         tree.on("click", this.onNodeClick, this);
16353     },
16354     
16355     onNodeClick : function(node, e){
16356         if (e.ctrlKey && this.selNode == node)  {
16357             this.unselect(node);
16358             return;
16359         }
16360         this.select(node);
16361     },
16362     
16363     /**
16364      * Select a node.
16365      * @param {TreeNode} node The node to select
16366      * @return {TreeNode} The selected node
16367      */
16368     select : function(node){
16369         var last = this.selNode;
16370         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
16371             if(last){
16372                 last.ui.onSelectedChange(false);
16373             }
16374             this.selNode = node;
16375             node.ui.onSelectedChange(true);
16376             this.fireEvent("selectionchange", this, node, last);
16377         }
16378         return node;
16379     },
16380     
16381     /**
16382      * Deselect a node.
16383      * @param {TreeNode} node The node to unselect
16384      */
16385     unselect : function(node){
16386         if(this.selNode == node){
16387             this.clearSelections();
16388         }    
16389     },
16390     
16391     /**
16392      * Clear all selections
16393      */
16394     clearSelections : function(){
16395         var n = this.selNode;
16396         if(n){
16397             n.ui.onSelectedChange(false);
16398             this.selNode = null;
16399             this.fireEvent("selectionchange", this, null);
16400         }
16401         return n;
16402     },
16403     
16404     /**
16405      * Get the selected node
16406      * @return {TreeNode} The selected node
16407      */
16408     getSelectedNode : function(){
16409         return this.selNode;    
16410     },
16411     
16412     /**
16413      * Returns true if the node is selected
16414      * @param {TreeNode} node The node to check
16415      * @return {Boolean}
16416      */
16417     isSelected : function(node){
16418         return this.selNode == node;  
16419     },
16420
16421     /**
16422      * Selects the node above the selected node in the tree, intelligently walking the nodes
16423      * @return TreeNode The new selection
16424      */
16425     selectPrevious : function(){
16426         var s = this.selNode || this.lastSelNode;
16427         if(!s){
16428             return null;
16429         }
16430         var ps = s.previousSibling;
16431         if(ps){
16432             if(!ps.isExpanded() || ps.childNodes.length < 1){
16433                 return this.select(ps);
16434             } else{
16435                 var lc = ps.lastChild;
16436                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
16437                     lc = lc.lastChild;
16438                 }
16439                 return this.select(lc);
16440             }
16441         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
16442             return this.select(s.parentNode);
16443         }
16444         return null;
16445     },
16446
16447     /**
16448      * Selects the node above the selected node in the tree, intelligently walking the nodes
16449      * @return TreeNode The new selection
16450      */
16451     selectNext : function(){
16452         var s = this.selNode || this.lastSelNode;
16453         if(!s){
16454             return null;
16455         }
16456         if(s.firstChild && s.isExpanded()){
16457              return this.select(s.firstChild);
16458          }else if(s.nextSibling){
16459              return this.select(s.nextSibling);
16460          }else if(s.parentNode){
16461             var newS = null;
16462             s.parentNode.bubble(function(){
16463                 if(this.nextSibling){
16464                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
16465                     return false;
16466                 }
16467             });
16468             return newS;
16469          }
16470         return null;
16471     },
16472
16473     onKeyDown : function(e){
16474         var s = this.selNode || this.lastSelNode;
16475         // undesirable, but required
16476         var sm = this;
16477         if(!s){
16478             return;
16479         }
16480         var k = e.getKey();
16481         switch(k){
16482              case e.DOWN:
16483                  e.stopEvent();
16484                  this.selectNext();
16485              break;
16486              case e.UP:
16487                  e.stopEvent();
16488                  this.selectPrevious();
16489              break;
16490              case e.RIGHT:
16491                  e.preventDefault();
16492                  if(s.hasChildNodes()){
16493                      if(!s.isExpanded()){
16494                          s.expand();
16495                      }else if(s.firstChild){
16496                          this.select(s.firstChild, e);
16497                      }
16498                  }
16499              break;
16500              case e.LEFT:
16501                  e.preventDefault();
16502                  if(s.hasChildNodes() && s.isExpanded()){
16503                      s.collapse();
16504                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
16505                      this.select(s.parentNode, e);
16506                  }
16507              break;
16508         };
16509     }
16510 });
16511
16512 /**
16513  * @class Roo.tree.MultiSelectionModel
16514  * @extends Roo.util.Observable
16515  * Multi selection for a TreePanel.
16516  * @param {Object} cfg Configuration
16517  */
16518 Roo.tree.MultiSelectionModel = function(){
16519    this.selNodes = [];
16520    this.selMap = {};
16521    this.addEvents({
16522        /**
16523         * @event selectionchange
16524         * Fires when the selected nodes change
16525         * @param {MultiSelectionModel} this
16526         * @param {Array} nodes Array of the selected nodes
16527         */
16528        "selectionchange" : true
16529    });
16530    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
16531    
16532 };
16533
16534 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
16535     init : function(tree){
16536         this.tree = tree;
16537         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16538         tree.on("click", this.onNodeClick, this);
16539     },
16540     
16541     onNodeClick : function(node, e){
16542         this.select(node, e, e.ctrlKey);
16543     },
16544     
16545     /**
16546      * Select a node.
16547      * @param {TreeNode} node The node to select
16548      * @param {EventObject} e (optional) An event associated with the selection
16549      * @param {Boolean} keepExisting True to retain existing selections
16550      * @return {TreeNode} The selected node
16551      */
16552     select : function(node, e, keepExisting){
16553         if(keepExisting !== true){
16554             this.clearSelections(true);
16555         }
16556         if(this.isSelected(node)){
16557             this.lastSelNode = node;
16558             return node;
16559         }
16560         this.selNodes.push(node);
16561         this.selMap[node.id] = node;
16562         this.lastSelNode = node;
16563         node.ui.onSelectedChange(true);
16564         this.fireEvent("selectionchange", this, this.selNodes);
16565         return node;
16566     },
16567     
16568     /**
16569      * Deselect a node.
16570      * @param {TreeNode} node The node to unselect
16571      */
16572     unselect : function(node){
16573         if(this.selMap[node.id]){
16574             node.ui.onSelectedChange(false);
16575             var sn = this.selNodes;
16576             var index = -1;
16577             if(sn.indexOf){
16578                 index = sn.indexOf(node);
16579             }else{
16580                 for(var i = 0, len = sn.length; i < len; i++){
16581                     if(sn[i] == node){
16582                         index = i;
16583                         break;
16584                     }
16585                 }
16586             }
16587             if(index != -1){
16588                 this.selNodes.splice(index, 1);
16589             }
16590             delete this.selMap[node.id];
16591             this.fireEvent("selectionchange", this, this.selNodes);
16592         }
16593     },
16594     
16595     /**
16596      * Clear all selections
16597      */
16598     clearSelections : function(suppressEvent){
16599         var sn = this.selNodes;
16600         if(sn.length > 0){
16601             for(var i = 0, len = sn.length; i < len; i++){
16602                 sn[i].ui.onSelectedChange(false);
16603             }
16604             this.selNodes = [];
16605             this.selMap = {};
16606             if(suppressEvent !== true){
16607                 this.fireEvent("selectionchange", this, this.selNodes);
16608             }
16609         }
16610     },
16611     
16612     /**
16613      * Returns true if the node is selected
16614      * @param {TreeNode} node The node to check
16615      * @return {Boolean}
16616      */
16617     isSelected : function(node){
16618         return this.selMap[node.id] ? true : false;  
16619     },
16620     
16621     /**
16622      * Returns an array of the selected nodes
16623      * @return {Array}
16624      */
16625     getSelectedNodes : function(){
16626         return this.selNodes;    
16627     },
16628
16629     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
16630
16631     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
16632
16633     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
16634 });/*
16635  * Based on:
16636  * Ext JS Library 1.1.1
16637  * Copyright(c) 2006-2007, Ext JS, LLC.
16638  *
16639  * Originally Released Under LGPL - original licence link has changed is not relivant.
16640  *
16641  * Fork - LGPL
16642  * <script type="text/javascript">
16643  */
16644  
16645 /**
16646  * @class Roo.tree.TreeNode
16647  * @extends Roo.data.Node
16648  * @cfg {String} text The text for this node
16649  * @cfg {Boolean} expanded true to start the node expanded
16650  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
16651  * @cfg {Boolean} allowDrop false if this node cannot be drop on
16652  * @cfg {Boolean} disabled true to start the node disabled
16653  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
16654  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
16655  * @cfg {String} cls A css class to be added to the node
16656  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
16657  * @cfg {String} href URL of the link used for the node (defaults to #)
16658  * @cfg {String} hrefTarget target frame for the link
16659  * @cfg {String} qtip An Ext QuickTip for the node
16660  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
16661  * @cfg {Boolean} singleClickExpand True for single click expand on this node
16662  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
16663  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
16664  * (defaults to undefined with no checkbox rendered)
16665  * @constructor
16666  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
16667  */
16668 Roo.tree.TreeNode = function(attributes){
16669     attributes = attributes || {};
16670     if(typeof attributes == "string"){
16671         attributes = {text: attributes};
16672     }
16673     this.childrenRendered = false;
16674     this.rendered = false;
16675     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
16676     this.expanded = attributes.expanded === true;
16677     this.isTarget = attributes.isTarget !== false;
16678     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
16679     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
16680
16681     /**
16682      * Read-only. The text for this node. To change it use setText().
16683      * @type String
16684      */
16685     this.text = attributes.text;
16686     /**
16687      * True if this node is disabled.
16688      * @type Boolean
16689      */
16690     this.disabled = attributes.disabled === true;
16691
16692     this.addEvents({
16693         /**
16694         * @event textchange
16695         * Fires when the text for this node is changed
16696         * @param {Node} this This node
16697         * @param {String} text The new text
16698         * @param {String} oldText The old text
16699         */
16700         "textchange" : true,
16701         /**
16702         * @event beforeexpand
16703         * Fires before this node is expanded, return false to cancel.
16704         * @param {Node} this This node
16705         * @param {Boolean} deep
16706         * @param {Boolean} anim
16707         */
16708         "beforeexpand" : true,
16709         /**
16710         * @event beforecollapse
16711         * Fires before this node is collapsed, return false to cancel.
16712         * @param {Node} this This node
16713         * @param {Boolean} deep
16714         * @param {Boolean} anim
16715         */
16716         "beforecollapse" : true,
16717         /**
16718         * @event expand
16719         * Fires when this node is expanded
16720         * @param {Node} this This node
16721         */
16722         "expand" : true,
16723         /**
16724         * @event disabledchange
16725         * Fires when the disabled status of this node changes
16726         * @param {Node} this This node
16727         * @param {Boolean} disabled
16728         */
16729         "disabledchange" : true,
16730         /**
16731         * @event collapse
16732         * Fires when this node is collapsed
16733         * @param {Node} this This node
16734         */
16735         "collapse" : true,
16736         /**
16737         * @event beforeclick
16738         * Fires before click processing. Return false to cancel the default action.
16739         * @param {Node} this This node
16740         * @param {Roo.EventObject} e The event object
16741         */
16742         "beforeclick":true,
16743         /**
16744         * @event checkchange
16745         * Fires when a node with a checkbox's checked property changes
16746         * @param {Node} this This node
16747         * @param {Boolean} checked
16748         */
16749         "checkchange":true,
16750         /**
16751         * @event click
16752         * Fires when this node is clicked
16753         * @param {Node} this This node
16754         * @param {Roo.EventObject} e The event object
16755         */
16756         "click":true,
16757         /**
16758         * @event dblclick
16759         * Fires when this node is double clicked
16760         * @param {Node} this This node
16761         * @param {Roo.EventObject} e The event object
16762         */
16763         "dblclick":true,
16764         /**
16765         * @event contextmenu
16766         * Fires when this node is right clicked
16767         * @param {Node} this This node
16768         * @param {Roo.EventObject} e The event object
16769         */
16770         "contextmenu":true,
16771         /**
16772         * @event beforechildrenrendered
16773         * Fires right before the child nodes for this node are rendered
16774         * @param {Node} this This node
16775         */
16776         "beforechildrenrendered":true
16777     });
16778
16779     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
16780
16781     /**
16782      * Read-only. The UI for this node
16783      * @type TreeNodeUI
16784      */
16785     this.ui = new uiClass(this);
16786     
16787     // finally support items[]
16788     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
16789         return;
16790     }
16791     
16792     
16793     Roo.each(this.attributes.items, function(c) {
16794         this.appendChild(Roo.factory(c,Roo.Tree));
16795     }, this);
16796     delete this.attributes.items;
16797     
16798     
16799     
16800 };
16801 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
16802     preventHScroll: true,
16803     /**
16804      * Returns true if this node is expanded
16805      * @return {Boolean}
16806      */
16807     isExpanded : function(){
16808         return this.expanded;
16809     },
16810
16811     /**
16812      * Returns the UI object for this node
16813      * @return {TreeNodeUI}
16814      */
16815     getUI : function(){
16816         return this.ui;
16817     },
16818
16819     // private override
16820     setFirstChild : function(node){
16821         var of = this.firstChild;
16822         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
16823         if(this.childrenRendered && of && node != of){
16824             of.renderIndent(true, true);
16825         }
16826         if(this.rendered){
16827             this.renderIndent(true, true);
16828         }
16829     },
16830
16831     // private override
16832     setLastChild : function(node){
16833         var ol = this.lastChild;
16834         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
16835         if(this.childrenRendered && ol && node != ol){
16836             ol.renderIndent(true, true);
16837         }
16838         if(this.rendered){
16839             this.renderIndent(true, true);
16840         }
16841     },
16842
16843     // these methods are overridden to provide lazy rendering support
16844     // private override
16845     appendChild : function()
16846     {
16847         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
16848         if(node && this.childrenRendered){
16849             node.render();
16850         }
16851         this.ui.updateExpandIcon();
16852         return node;
16853     },
16854
16855     // private override
16856     removeChild : function(node){
16857         this.ownerTree.getSelectionModel().unselect(node);
16858         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
16859         // if it's been rendered remove dom node
16860         if(this.childrenRendered){
16861             node.ui.remove();
16862         }
16863         if(this.childNodes.length < 1){
16864             this.collapse(false, false);
16865         }else{
16866             this.ui.updateExpandIcon();
16867         }
16868         if(!this.firstChild) {
16869             this.childrenRendered = false;
16870         }
16871         return node;
16872     },
16873
16874     // private override
16875     insertBefore : function(node, refNode){
16876         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
16877         if(newNode && refNode && this.childrenRendered){
16878             node.render();
16879         }
16880         this.ui.updateExpandIcon();
16881         return newNode;
16882     },
16883
16884     /**
16885      * Sets the text for this node
16886      * @param {String} text
16887      */
16888     setText : function(text){
16889         var oldText = this.text;
16890         this.text = text;
16891         this.attributes.text = text;
16892         if(this.rendered){ // event without subscribing
16893             this.ui.onTextChange(this, text, oldText);
16894         }
16895         this.fireEvent("textchange", this, text, oldText);
16896     },
16897
16898     /**
16899      * Triggers selection of this node
16900      */
16901     select : function(){
16902         this.getOwnerTree().getSelectionModel().select(this);
16903     },
16904
16905     /**
16906      * Triggers deselection of this node
16907      */
16908     unselect : function(){
16909         this.getOwnerTree().getSelectionModel().unselect(this);
16910     },
16911
16912     /**
16913      * Returns true if this node is selected
16914      * @return {Boolean}
16915      */
16916     isSelected : function(){
16917         return this.getOwnerTree().getSelectionModel().isSelected(this);
16918     },
16919
16920     /**
16921      * Expand this node.
16922      * @param {Boolean} deep (optional) True to expand all children as well
16923      * @param {Boolean} anim (optional) false to cancel the default animation
16924      * @param {Function} callback (optional) A callback to be called when
16925      * expanding this node completes (does not wait for deep expand to complete).
16926      * Called with 1 parameter, this node.
16927      */
16928     expand : function(deep, anim, callback){
16929         if(!this.expanded){
16930             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
16931                 return;
16932             }
16933             if(!this.childrenRendered){
16934                 this.renderChildren();
16935             }
16936             this.expanded = true;
16937             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
16938                 this.ui.animExpand(function(){
16939                     this.fireEvent("expand", this);
16940                     if(typeof callback == "function"){
16941                         callback(this);
16942                     }
16943                     if(deep === true){
16944                         this.expandChildNodes(true);
16945                     }
16946                 }.createDelegate(this));
16947                 return;
16948             }else{
16949                 this.ui.expand();
16950                 this.fireEvent("expand", this);
16951                 if(typeof callback == "function"){
16952                     callback(this);
16953                 }
16954             }
16955         }else{
16956            if(typeof callback == "function"){
16957                callback(this);
16958            }
16959         }
16960         if(deep === true){
16961             this.expandChildNodes(true);
16962         }
16963     },
16964
16965     isHiddenRoot : function(){
16966         return this.isRoot && !this.getOwnerTree().rootVisible;
16967     },
16968
16969     /**
16970      * Collapse this node.
16971      * @param {Boolean} deep (optional) True to collapse all children as well
16972      * @param {Boolean} anim (optional) false to cancel the default animation
16973      */
16974     collapse : function(deep, anim){
16975         if(this.expanded && !this.isHiddenRoot()){
16976             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
16977                 return;
16978             }
16979             this.expanded = false;
16980             if((this.getOwnerTree().animate && anim !== false) || anim){
16981                 this.ui.animCollapse(function(){
16982                     this.fireEvent("collapse", this);
16983                     if(deep === true){
16984                         this.collapseChildNodes(true);
16985                     }
16986                 }.createDelegate(this));
16987                 return;
16988             }else{
16989                 this.ui.collapse();
16990                 this.fireEvent("collapse", this);
16991             }
16992         }
16993         if(deep === true){
16994             var cs = this.childNodes;
16995             for(var i = 0, len = cs.length; i < len; i++) {
16996                 cs[i].collapse(true, false);
16997             }
16998         }
16999     },
17000
17001     // private
17002     delayedExpand : function(delay){
17003         if(!this.expandProcId){
17004             this.expandProcId = this.expand.defer(delay, this);
17005         }
17006     },
17007
17008     // private
17009     cancelExpand : function(){
17010         if(this.expandProcId){
17011             clearTimeout(this.expandProcId);
17012         }
17013         this.expandProcId = false;
17014     },
17015
17016     /**
17017      * Toggles expanded/collapsed state of the node
17018      */
17019     toggle : function(){
17020         if(this.expanded){
17021             this.collapse();
17022         }else{
17023             this.expand();
17024         }
17025     },
17026
17027     /**
17028      * Ensures all parent nodes are expanded
17029      */
17030     ensureVisible : function(callback){
17031         var tree = this.getOwnerTree();
17032         tree.expandPath(this.parentNode.getPath(), false, function(){
17033             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
17034             Roo.callback(callback);
17035         }.createDelegate(this));
17036     },
17037
17038     /**
17039      * Expand all child nodes
17040      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
17041      */
17042     expandChildNodes : function(deep){
17043         var cs = this.childNodes;
17044         for(var i = 0, len = cs.length; i < len; i++) {
17045                 cs[i].expand(deep);
17046         }
17047     },
17048
17049     /**
17050      * Collapse all child nodes
17051      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
17052      */
17053     collapseChildNodes : function(deep){
17054         var cs = this.childNodes;
17055         for(var i = 0, len = cs.length; i < len; i++) {
17056                 cs[i].collapse(deep);
17057         }
17058     },
17059
17060     /**
17061      * Disables this node
17062      */
17063     disable : function(){
17064         this.disabled = true;
17065         this.unselect();
17066         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17067             this.ui.onDisableChange(this, true);
17068         }
17069         this.fireEvent("disabledchange", this, true);
17070     },
17071
17072     /**
17073      * Enables this node
17074      */
17075     enable : function(){
17076         this.disabled = false;
17077         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17078             this.ui.onDisableChange(this, false);
17079         }
17080         this.fireEvent("disabledchange", this, false);
17081     },
17082
17083     // private
17084     renderChildren : function(suppressEvent){
17085         if(suppressEvent !== false){
17086             this.fireEvent("beforechildrenrendered", this);
17087         }
17088         var cs = this.childNodes;
17089         for(var i = 0, len = cs.length; i < len; i++){
17090             cs[i].render(true);
17091         }
17092         this.childrenRendered = true;
17093     },
17094
17095     // private
17096     sort : function(fn, scope){
17097         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
17098         if(this.childrenRendered){
17099             var cs = this.childNodes;
17100             for(var i = 0, len = cs.length; i < len; i++){
17101                 cs[i].render(true);
17102             }
17103         }
17104     },
17105
17106     // private
17107     render : function(bulkRender){
17108         this.ui.render(bulkRender);
17109         if(!this.rendered){
17110             this.rendered = true;
17111             if(this.expanded){
17112                 this.expanded = false;
17113                 this.expand(false, false);
17114             }
17115         }
17116     },
17117
17118     // private
17119     renderIndent : function(deep, refresh){
17120         if(refresh){
17121             this.ui.childIndent = null;
17122         }
17123         this.ui.renderIndent();
17124         if(deep === true && this.childrenRendered){
17125             var cs = this.childNodes;
17126             for(var i = 0, len = cs.length; i < len; i++){
17127                 cs[i].renderIndent(true, refresh);
17128             }
17129         }
17130     }
17131 });/*
17132  * Based on:
17133  * Ext JS Library 1.1.1
17134  * Copyright(c) 2006-2007, Ext JS, LLC.
17135  *
17136  * Originally Released Under LGPL - original licence link has changed is not relivant.
17137  *
17138  * Fork - LGPL
17139  * <script type="text/javascript">
17140  */
17141  
17142 /**
17143  * @class Roo.tree.AsyncTreeNode
17144  * @extends Roo.tree.TreeNode
17145  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
17146  * @constructor
17147  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
17148  */
17149  Roo.tree.AsyncTreeNode = function(config){
17150     this.loaded = false;
17151     this.loading = false;
17152     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
17153     /**
17154     * @event beforeload
17155     * Fires before this node is loaded, return false to cancel
17156     * @param {Node} this This node
17157     */
17158     this.addEvents({'beforeload':true, 'load': true});
17159     /**
17160     * @event load
17161     * Fires when this node is loaded
17162     * @param {Node} this This node
17163     */
17164     /**
17165      * The loader used by this node (defaults to using the tree's defined loader)
17166      * @type TreeLoader
17167      * @property loader
17168      */
17169 };
17170 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
17171     expand : function(deep, anim, callback){
17172         if(this.loading){ // if an async load is already running, waiting til it's done
17173             var timer;
17174             var f = function(){
17175                 if(!this.loading){ // done loading
17176                     clearInterval(timer);
17177                     this.expand(deep, anim, callback);
17178                 }
17179             }.createDelegate(this);
17180             timer = setInterval(f, 200);
17181             return;
17182         }
17183         if(!this.loaded){
17184             if(this.fireEvent("beforeload", this) === false){
17185                 return;
17186             }
17187             this.loading = true;
17188             this.ui.beforeLoad(this);
17189             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
17190             if(loader){
17191                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
17192                 return;
17193             }
17194         }
17195         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
17196     },
17197     
17198     /**
17199      * Returns true if this node is currently loading
17200      * @return {Boolean}
17201      */
17202     isLoading : function(){
17203         return this.loading;  
17204     },
17205     
17206     loadComplete : function(deep, anim, callback){
17207         this.loading = false;
17208         this.loaded = true;
17209         this.ui.afterLoad(this);
17210         this.fireEvent("load", this);
17211         this.expand(deep, anim, callback);
17212     },
17213     
17214     /**
17215      * Returns true if this node has been loaded
17216      * @return {Boolean}
17217      */
17218     isLoaded : function(){
17219         return this.loaded;
17220     },
17221     
17222     hasChildNodes : function(){
17223         if(!this.isLeaf() && !this.loaded){
17224             return true;
17225         }else{
17226             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
17227         }
17228     },
17229
17230     /**
17231      * Trigger a reload for this node
17232      * @param {Function} callback
17233      */
17234     reload : function(callback){
17235         this.collapse(false, false);
17236         while(this.firstChild){
17237             this.removeChild(this.firstChild);
17238         }
17239         this.childrenRendered = false;
17240         this.loaded = false;
17241         if(this.isHiddenRoot()){
17242             this.expanded = false;
17243         }
17244         this.expand(false, false, callback);
17245     }
17246 });/*
17247  * Based on:
17248  * Ext JS Library 1.1.1
17249  * Copyright(c) 2006-2007, Ext JS, LLC.
17250  *
17251  * Originally Released Under LGPL - original licence link has changed is not relivant.
17252  *
17253  * Fork - LGPL
17254  * <script type="text/javascript">
17255  */
17256  
17257 /**
17258  * @class Roo.tree.TreeNodeUI
17259  * @constructor
17260  * @param {Object} node The node to render
17261  * The TreeNode UI implementation is separate from the
17262  * tree implementation. Unless you are customizing the tree UI,
17263  * you should never have to use this directly.
17264  */
17265 Roo.tree.TreeNodeUI = function(node){
17266     this.node = node;
17267     this.rendered = false;
17268     this.animating = false;
17269     this.emptyIcon = Roo.BLANK_IMAGE_URL;
17270 };
17271
17272 Roo.tree.TreeNodeUI.prototype = {
17273     removeChild : function(node){
17274         if(this.rendered){
17275             this.ctNode.removeChild(node.ui.getEl());
17276         }
17277     },
17278
17279     beforeLoad : function(){
17280          this.addClass("x-tree-node-loading");
17281     },
17282
17283     afterLoad : function(){
17284          this.removeClass("x-tree-node-loading");
17285     },
17286
17287     onTextChange : function(node, text, oldText){
17288         if(this.rendered){
17289             this.textNode.innerHTML = text;
17290         }
17291     },
17292
17293     onDisableChange : function(node, state){
17294         this.disabled = state;
17295         if(state){
17296             this.addClass("x-tree-node-disabled");
17297         }else{
17298             this.removeClass("x-tree-node-disabled");
17299         }
17300     },
17301
17302     onSelectedChange : function(state){
17303         if(state){
17304             this.focus();
17305             this.addClass("x-tree-selected");
17306         }else{
17307             //this.blur();
17308             this.removeClass("x-tree-selected");
17309         }
17310     },
17311
17312     onMove : function(tree, node, oldParent, newParent, index, refNode){
17313         this.childIndent = null;
17314         if(this.rendered){
17315             var targetNode = newParent.ui.getContainer();
17316             if(!targetNode){//target not rendered
17317                 this.holder = document.createElement("div");
17318                 this.holder.appendChild(this.wrap);
17319                 return;
17320             }
17321             var insertBefore = refNode ? refNode.ui.getEl() : null;
17322             if(insertBefore){
17323                 targetNode.insertBefore(this.wrap, insertBefore);
17324             }else{
17325                 targetNode.appendChild(this.wrap);
17326             }
17327             this.node.renderIndent(true);
17328         }
17329     },
17330
17331     addClass : function(cls){
17332         if(this.elNode){
17333             Roo.fly(this.elNode).addClass(cls);
17334         }
17335     },
17336
17337     removeClass : function(cls){
17338         if(this.elNode){
17339             Roo.fly(this.elNode).removeClass(cls);
17340         }
17341     },
17342
17343     remove : function(){
17344         if(this.rendered){
17345             this.holder = document.createElement("div");
17346             this.holder.appendChild(this.wrap);
17347         }
17348     },
17349
17350     fireEvent : function(){
17351         return this.node.fireEvent.apply(this.node, arguments);
17352     },
17353
17354     initEvents : function(){
17355         this.node.on("move", this.onMove, this);
17356         var E = Roo.EventManager;
17357         var a = this.anchor;
17358
17359         var el = Roo.fly(a, '_treeui');
17360
17361         if(Roo.isOpera){ // opera render bug ignores the CSS
17362             el.setStyle("text-decoration", "none");
17363         }
17364
17365         el.on("click", this.onClick, this);
17366         el.on("dblclick", this.onDblClick, this);
17367
17368         if(this.checkbox){
17369             Roo.EventManager.on(this.checkbox,
17370                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
17371         }
17372
17373         el.on("contextmenu", this.onContextMenu, this);
17374
17375         var icon = Roo.fly(this.iconNode);
17376         icon.on("click", this.onClick, this);
17377         icon.on("dblclick", this.onDblClick, this);
17378         icon.on("contextmenu", this.onContextMenu, this);
17379         E.on(this.ecNode, "click", this.ecClick, this, true);
17380
17381         if(this.node.disabled){
17382             this.addClass("x-tree-node-disabled");
17383         }
17384         if(this.node.hidden){
17385             this.addClass("x-tree-node-disabled");
17386         }
17387         var ot = this.node.getOwnerTree();
17388         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
17389         if(dd && (!this.node.isRoot || ot.rootVisible)){
17390             Roo.dd.Registry.register(this.elNode, {
17391                 node: this.node,
17392                 handles: this.getDDHandles(),
17393                 isHandle: false
17394             });
17395         }
17396     },
17397
17398     getDDHandles : function(){
17399         return [this.iconNode, this.textNode];
17400     },
17401
17402     hide : function(){
17403         if(this.rendered){
17404             this.wrap.style.display = "none";
17405         }
17406     },
17407
17408     show : function(){
17409         if(this.rendered){
17410             this.wrap.style.display = "";
17411         }
17412     },
17413
17414     onContextMenu : function(e){
17415         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
17416             e.preventDefault();
17417             this.focus();
17418             this.fireEvent("contextmenu", this.node, e);
17419         }
17420     },
17421
17422     onClick : function(e){
17423         if(this.dropping){
17424             e.stopEvent();
17425             return;
17426         }
17427         if(this.fireEvent("beforeclick", this.node, e) !== false){
17428             if(!this.disabled && this.node.attributes.href){
17429                 this.fireEvent("click", this.node, e);
17430                 return;
17431             }
17432             e.preventDefault();
17433             if(this.disabled){
17434                 return;
17435             }
17436
17437             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
17438                 this.node.toggle();
17439             }
17440
17441             this.fireEvent("click", this.node, e);
17442         }else{
17443             e.stopEvent();
17444         }
17445     },
17446
17447     onDblClick : function(e){
17448         e.preventDefault();
17449         if(this.disabled){
17450             return;
17451         }
17452         if(this.checkbox){
17453             this.toggleCheck();
17454         }
17455         if(!this.animating && this.node.hasChildNodes()){
17456             this.node.toggle();
17457         }
17458         this.fireEvent("dblclick", this.node, e);
17459     },
17460
17461     onCheckChange : function(){
17462         var checked = this.checkbox.checked;
17463         this.node.attributes.checked = checked;
17464         this.fireEvent('checkchange', this.node, checked);
17465     },
17466
17467     ecClick : function(e){
17468         if(!this.animating && this.node.hasChildNodes()){
17469             this.node.toggle();
17470         }
17471     },
17472
17473     startDrop : function(){
17474         this.dropping = true;
17475     },
17476
17477     // delayed drop so the click event doesn't get fired on a drop
17478     endDrop : function(){
17479        setTimeout(function(){
17480            this.dropping = false;
17481        }.createDelegate(this), 50);
17482     },
17483
17484     expand : function(){
17485         this.updateExpandIcon();
17486         this.ctNode.style.display = "";
17487     },
17488
17489     focus : function(){
17490         if(!this.node.preventHScroll){
17491             try{this.anchor.focus();
17492             }catch(e){}
17493         }else if(!Roo.isIE){
17494             try{
17495                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
17496                 var l = noscroll.scrollLeft;
17497                 this.anchor.focus();
17498                 noscroll.scrollLeft = l;
17499             }catch(e){}
17500         }
17501     },
17502
17503     toggleCheck : function(value){
17504         var cb = this.checkbox;
17505         if(cb){
17506             cb.checked = (value === undefined ? !cb.checked : value);
17507         }
17508     },
17509
17510     blur : function(){
17511         try{
17512             this.anchor.blur();
17513         }catch(e){}
17514     },
17515
17516     animExpand : function(callback){
17517         var ct = Roo.get(this.ctNode);
17518         ct.stopFx();
17519         if(!this.node.hasChildNodes()){
17520             this.updateExpandIcon();
17521             this.ctNode.style.display = "";
17522             Roo.callback(callback);
17523             return;
17524         }
17525         this.animating = true;
17526         this.updateExpandIcon();
17527
17528         ct.slideIn('t', {
17529            callback : function(){
17530                this.animating = false;
17531                Roo.callback(callback);
17532             },
17533             scope: this,
17534             duration: this.node.ownerTree.duration || .25
17535         });
17536     },
17537
17538     highlight : function(){
17539         var tree = this.node.getOwnerTree();
17540         Roo.fly(this.wrap).highlight(
17541             tree.hlColor || "C3DAF9",
17542             {endColor: tree.hlBaseColor}
17543         );
17544     },
17545
17546     collapse : function(){
17547         this.updateExpandIcon();
17548         this.ctNode.style.display = "none";
17549     },
17550
17551     animCollapse : function(callback){
17552         var ct = Roo.get(this.ctNode);
17553         ct.enableDisplayMode('block');
17554         ct.stopFx();
17555
17556         this.animating = true;
17557         this.updateExpandIcon();
17558
17559         ct.slideOut('t', {
17560             callback : function(){
17561                this.animating = false;
17562                Roo.callback(callback);
17563             },
17564             scope: this,
17565             duration: this.node.ownerTree.duration || .25
17566         });
17567     },
17568
17569     getContainer : function(){
17570         return this.ctNode;
17571     },
17572
17573     getEl : function(){
17574         return this.wrap;
17575     },
17576
17577     appendDDGhost : function(ghostNode){
17578         ghostNode.appendChild(this.elNode.cloneNode(true));
17579     },
17580
17581     getDDRepairXY : function(){
17582         return Roo.lib.Dom.getXY(this.iconNode);
17583     },
17584
17585     onRender : function(){
17586         this.render();
17587     },
17588
17589     render : function(bulkRender){
17590         var n = this.node, a = n.attributes;
17591         var targetNode = n.parentNode ?
17592               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
17593
17594         if(!this.rendered){
17595             this.rendered = true;
17596
17597             this.renderElements(n, a, targetNode, bulkRender);
17598
17599             if(a.qtip){
17600                if(this.textNode.setAttributeNS){
17601                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
17602                    if(a.qtipTitle){
17603                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
17604                    }
17605                }else{
17606                    this.textNode.setAttribute("ext:qtip", a.qtip);
17607                    if(a.qtipTitle){
17608                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
17609                    }
17610                }
17611             }else if(a.qtipCfg){
17612                 a.qtipCfg.target = Roo.id(this.textNode);
17613                 Roo.QuickTips.register(a.qtipCfg);
17614             }
17615             this.initEvents();
17616             if(!this.node.expanded){
17617                 this.updateExpandIcon();
17618             }
17619         }else{
17620             if(bulkRender === true) {
17621                 targetNode.appendChild(this.wrap);
17622             }
17623         }
17624     },
17625
17626     renderElements : function(n, a, targetNode, bulkRender)
17627     {
17628         // add some indent caching, this helps performance when rendering a large tree
17629         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
17630         var t = n.getOwnerTree();
17631         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
17632         if (typeof(n.attributes.html) != 'undefined') {
17633             txt = n.attributes.html;
17634         }
17635         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
17636         var cb = typeof a.checked == 'boolean';
17637         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
17638         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
17639             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
17640             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
17641             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
17642             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
17643             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
17644              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
17645                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
17646             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
17647             "</li>"];
17648
17649         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
17650             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
17651                                 n.nextSibling.ui.getEl(), buf.join(""));
17652         }else{
17653             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
17654         }
17655
17656         this.elNode = this.wrap.childNodes[0];
17657         this.ctNode = this.wrap.childNodes[1];
17658         var cs = this.elNode.childNodes;
17659         this.indentNode = cs[0];
17660         this.ecNode = cs[1];
17661         this.iconNode = cs[2];
17662         var index = 3;
17663         if(cb){
17664             this.checkbox = cs[3];
17665             index++;
17666         }
17667         this.anchor = cs[index];
17668         this.textNode = cs[index].firstChild;
17669     },
17670
17671     getAnchor : function(){
17672         return this.anchor;
17673     },
17674
17675     getTextEl : function(){
17676         return this.textNode;
17677     },
17678
17679     getIconEl : function(){
17680         return this.iconNode;
17681     },
17682
17683     isChecked : function(){
17684         return this.checkbox ? this.checkbox.checked : false;
17685     },
17686
17687     updateExpandIcon : function(){
17688         if(this.rendered){
17689             var n = this.node, c1, c2;
17690             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
17691             var hasChild = n.hasChildNodes();
17692             if(hasChild){
17693                 if(n.expanded){
17694                     cls += "-minus";
17695                     c1 = "x-tree-node-collapsed";
17696                     c2 = "x-tree-node-expanded";
17697                 }else{
17698                     cls += "-plus";
17699                     c1 = "x-tree-node-expanded";
17700                     c2 = "x-tree-node-collapsed";
17701                 }
17702                 if(this.wasLeaf){
17703                     this.removeClass("x-tree-node-leaf");
17704                     this.wasLeaf = false;
17705                 }
17706                 if(this.c1 != c1 || this.c2 != c2){
17707                     Roo.fly(this.elNode).replaceClass(c1, c2);
17708                     this.c1 = c1; this.c2 = c2;
17709                 }
17710             }else{
17711                 // this changes non-leafs into leafs if they have no children.
17712                 // it's not very rational behaviour..
17713                 
17714                 if(!this.wasLeaf && this.node.leaf){
17715                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
17716                     delete this.c1;
17717                     delete this.c2;
17718                     this.wasLeaf = true;
17719                 }
17720             }
17721             var ecc = "x-tree-ec-icon "+cls;
17722             if(this.ecc != ecc){
17723                 this.ecNode.className = ecc;
17724                 this.ecc = ecc;
17725             }
17726         }
17727     },
17728
17729     getChildIndent : function(){
17730         if(!this.childIndent){
17731             var buf = [];
17732             var p = this.node;
17733             while(p){
17734                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
17735                     if(!p.isLast()) {
17736                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
17737                     } else {
17738                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
17739                     }
17740                 }
17741                 p = p.parentNode;
17742             }
17743             this.childIndent = buf.join("");
17744         }
17745         return this.childIndent;
17746     },
17747
17748     renderIndent : function(){
17749         if(this.rendered){
17750             var indent = "";
17751             var p = this.node.parentNode;
17752             if(p){
17753                 indent = p.ui.getChildIndent();
17754             }
17755             if(this.indentMarkup != indent){ // don't rerender if not required
17756                 this.indentNode.innerHTML = indent;
17757                 this.indentMarkup = indent;
17758             }
17759             this.updateExpandIcon();
17760         }
17761     }
17762 };
17763
17764 Roo.tree.RootTreeNodeUI = function(){
17765     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
17766 };
17767 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
17768     render : function(){
17769         if(!this.rendered){
17770             var targetNode = this.node.ownerTree.innerCt.dom;
17771             this.node.expanded = true;
17772             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
17773             this.wrap = this.ctNode = targetNode.firstChild;
17774         }
17775     },
17776     collapse : function(){
17777     },
17778     expand : function(){
17779     }
17780 });/*
17781  * Based on:
17782  * Ext JS Library 1.1.1
17783  * Copyright(c) 2006-2007, Ext JS, LLC.
17784  *
17785  * Originally Released Under LGPL - original licence link has changed is not relivant.
17786  *
17787  * Fork - LGPL
17788  * <script type="text/javascript">
17789  */
17790 /**
17791  * @class Roo.tree.TreeLoader
17792  * @extends Roo.util.Observable
17793  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
17794  * nodes from a specified URL. The response must be a javascript Array definition
17795  * who's elements are node definition objects. eg:
17796  * <pre><code>
17797 {  success : true,
17798    data :      [
17799    
17800     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
17801     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
17802     ]
17803 }
17804
17805
17806 </code></pre>
17807  * <br><br>
17808  * The old style respose with just an array is still supported, but not recommended.
17809  * <br><br>
17810  *
17811  * A server request is sent, and child nodes are loaded only when a node is expanded.
17812  * The loading node's id is passed to the server under the parameter name "node" to
17813  * enable the server to produce the correct child nodes.
17814  * <br><br>
17815  * To pass extra parameters, an event handler may be attached to the "beforeload"
17816  * event, and the parameters specified in the TreeLoader's baseParams property:
17817  * <pre><code>
17818     myTreeLoader.on("beforeload", function(treeLoader, node) {
17819         this.baseParams.category = node.attributes.category;
17820     }, this);
17821 </code></pre><
17822  * This would pass an HTTP parameter called "category" to the server containing
17823  * the value of the Node's "category" attribute.
17824  * @constructor
17825  * Creates a new Treeloader.
17826  * @param {Object} config A config object containing config properties.
17827  */
17828 Roo.tree.TreeLoader = function(config){
17829     this.baseParams = {};
17830     this.requestMethod = "POST";
17831     Roo.apply(this, config);
17832
17833     this.addEvents({
17834     
17835         /**
17836          * @event beforeload
17837          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
17838          * @param {Object} This TreeLoader object.
17839          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17840          * @param {Object} callback The callback function specified in the {@link #load} call.
17841          */
17842         beforeload : true,
17843         /**
17844          * @event load
17845          * Fires when the node has been successfuly loaded.
17846          * @param {Object} This TreeLoader object.
17847          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17848          * @param {Object} response The response object containing the data from the server.
17849          */
17850         load : true,
17851         /**
17852          * @event loadexception
17853          * Fires if the network request failed.
17854          * @param {Object} This TreeLoader object.
17855          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17856          * @param {Object} response The response object containing the data from the server.
17857          */
17858         loadexception : true,
17859         /**
17860          * @event create
17861          * Fires before a node is created, enabling you to return custom Node types 
17862          * @param {Object} This TreeLoader object.
17863          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
17864          */
17865         create : true
17866     });
17867
17868     Roo.tree.TreeLoader.superclass.constructor.call(this);
17869 };
17870
17871 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
17872     /**
17873     * @cfg {String} dataUrl The URL from which to request a Json string which
17874     * specifies an array of node definition object representing the child nodes
17875     * to be loaded.
17876     */
17877     /**
17878     * @cfg {String} requestMethod either GET or POST
17879     * defaults to POST (due to BC)
17880     * to be loaded.
17881     */
17882     /**
17883     * @cfg {Object} baseParams (optional) An object containing properties which
17884     * specify HTTP parameters to be passed to each request for child nodes.
17885     */
17886     /**
17887     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
17888     * created by this loader. If the attributes sent by the server have an attribute in this object,
17889     * they take priority.
17890     */
17891     /**
17892     * @cfg {Object} uiProviders (optional) An object containing properties which
17893     * 
17894     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
17895     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
17896     * <i>uiProvider</i> attribute of a returned child node is a string rather
17897     * than a reference to a TreeNodeUI implementation, this that string value
17898     * is used as a property name in the uiProviders object. You can define the provider named
17899     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
17900     */
17901     uiProviders : {},
17902
17903     /**
17904     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
17905     * child nodes before loading.
17906     */
17907     clearOnLoad : true,
17908
17909     /**
17910     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
17911     * property on loading, rather than expecting an array. (eg. more compatible to a standard
17912     * Grid query { data : [ .....] }
17913     */
17914     
17915     root : false,
17916      /**
17917     * @cfg {String} queryParam (optional) 
17918     * Name of the query as it will be passed on the querystring (defaults to 'node')
17919     * eg. the request will be ?node=[id]
17920     */
17921     
17922     
17923     queryParam: false,
17924     
17925     /**
17926      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
17927      * This is called automatically when a node is expanded, but may be used to reload
17928      * a node (or append new children if the {@link #clearOnLoad} option is false.)
17929      * @param {Roo.tree.TreeNode} node
17930      * @param {Function} callback
17931      */
17932     load : function(node, callback){
17933         if(this.clearOnLoad){
17934             while(node.firstChild){
17935                 node.removeChild(node.firstChild);
17936             }
17937         }
17938         if(node.attributes.children){ // preloaded json children
17939             var cs = node.attributes.children;
17940             for(var i = 0, len = cs.length; i < len; i++){
17941                 node.appendChild(this.createNode(cs[i]));
17942             }
17943             if(typeof callback == "function"){
17944                 callback();
17945             }
17946         }else if(this.dataUrl){
17947             this.requestData(node, callback);
17948         }
17949     },
17950
17951     getParams: function(node){
17952         var buf = [], bp = this.baseParams;
17953         for(var key in bp){
17954             if(typeof bp[key] != "function"){
17955                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
17956             }
17957         }
17958         var n = this.queryParam === false ? 'node' : this.queryParam;
17959         buf.push(n + "=", encodeURIComponent(node.id));
17960         return buf.join("");
17961     },
17962
17963     requestData : function(node, callback){
17964         if(this.fireEvent("beforeload", this, node, callback) !== false){
17965             this.transId = Roo.Ajax.request({
17966                 method:this.requestMethod,
17967                 url: this.dataUrl||this.url,
17968                 success: this.handleResponse,
17969                 failure: this.handleFailure,
17970                 scope: this,
17971                 argument: {callback: callback, node: node},
17972                 params: this.getParams(node)
17973             });
17974         }else{
17975             // if the load is cancelled, make sure we notify
17976             // the node that we are done
17977             if(typeof callback == "function"){
17978                 callback();
17979             }
17980         }
17981     },
17982
17983     isLoading : function(){
17984         return this.transId ? true : false;
17985     },
17986
17987     abort : function(){
17988         if(this.isLoading()){
17989             Roo.Ajax.abort(this.transId);
17990         }
17991     },
17992
17993     // private
17994     createNode : function(attr)
17995     {
17996         // apply baseAttrs, nice idea Corey!
17997         if(this.baseAttrs){
17998             Roo.applyIf(attr, this.baseAttrs);
17999         }
18000         if(this.applyLoader !== false){
18001             attr.loader = this;
18002         }
18003         // uiProvider = depreciated..
18004         
18005         if(typeof(attr.uiProvider) == 'string'){
18006            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
18007                 /**  eval:var:attr */ eval(attr.uiProvider);
18008         }
18009         if(typeof(this.uiProviders['default']) != 'undefined') {
18010             attr.uiProvider = this.uiProviders['default'];
18011         }
18012         
18013         this.fireEvent('create', this, attr);
18014         
18015         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
18016         return(attr.leaf ?
18017                         new Roo.tree.TreeNode(attr) :
18018                         new Roo.tree.AsyncTreeNode(attr));
18019     },
18020
18021     processResponse : function(response, node, callback)
18022     {
18023         var json = response.responseText;
18024         try {
18025             
18026             var o = Roo.decode(json);
18027             
18028             if (this.root === false && typeof(o.success) != undefined) {
18029                 this.root = 'data'; // the default behaviour for list like data..
18030                 }
18031                 
18032             if (this.root !== false &&  !o.success) {
18033                 // it's a failure condition.
18034                 var a = response.argument;
18035                 this.fireEvent("loadexception", this, a.node, response);
18036                 Roo.log("Load failed - should have a handler really");
18037                 return;
18038             }
18039             
18040             
18041             
18042             if (this.root !== false) {
18043                  o = o[this.root];
18044             }
18045             
18046             for(var i = 0, len = o.length; i < len; i++){
18047                 var n = this.createNode(o[i]);
18048                 if(n){
18049                     node.appendChild(n);
18050                 }
18051             }
18052             if(typeof callback == "function"){
18053                 callback(this, node);
18054             }
18055         }catch(e){
18056             this.handleFailure(response);
18057         }
18058     },
18059
18060     handleResponse : function(response){
18061         this.transId = false;
18062         var a = response.argument;
18063         this.processResponse(response, a.node, a.callback);
18064         this.fireEvent("load", this, a.node, response);
18065     },
18066
18067     handleFailure : function(response)
18068     {
18069         // should handle failure better..
18070         this.transId = false;
18071         var a = response.argument;
18072         this.fireEvent("loadexception", this, a.node, response);
18073         if(typeof a.callback == "function"){
18074             a.callback(this, a.node);
18075         }
18076     }
18077 });/*
18078  * Based on:
18079  * Ext JS Library 1.1.1
18080  * Copyright(c) 2006-2007, Ext JS, LLC.
18081  *
18082  * Originally Released Under LGPL - original licence link has changed is not relivant.
18083  *
18084  * Fork - LGPL
18085  * <script type="text/javascript">
18086  */
18087
18088 /**
18089 * @class Roo.tree.TreeFilter
18090 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
18091 * @param {TreePanel} tree
18092 * @param {Object} config (optional)
18093  */
18094 Roo.tree.TreeFilter = function(tree, config){
18095     this.tree = tree;
18096     this.filtered = {};
18097     Roo.apply(this, config);
18098 };
18099
18100 Roo.tree.TreeFilter.prototype = {
18101     clearBlank:false,
18102     reverse:false,
18103     autoClear:false,
18104     remove:false,
18105
18106      /**
18107      * Filter the data by a specific attribute.
18108      * @param {String/RegExp} value Either string that the attribute value
18109      * should start with or a RegExp to test against the attribute
18110      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
18111      * @param {TreeNode} startNode (optional) The node to start the filter at.
18112      */
18113     filter : function(value, attr, startNode){
18114         attr = attr || "text";
18115         var f;
18116         if(typeof value == "string"){
18117             var vlen = value.length;
18118             // auto clear empty filter
18119             if(vlen == 0 && this.clearBlank){
18120                 this.clear();
18121                 return;
18122             }
18123             value = value.toLowerCase();
18124             f = function(n){
18125                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
18126             };
18127         }else if(value.exec){ // regex?
18128             f = function(n){
18129                 return value.test(n.attributes[attr]);
18130             };
18131         }else{
18132             throw 'Illegal filter type, must be string or regex';
18133         }
18134         this.filterBy(f, null, startNode);
18135         },
18136
18137     /**
18138      * Filter by a function. The passed function will be called with each
18139      * node in the tree (or from the startNode). If the function returns true, the node is kept
18140      * otherwise it is filtered. If a node is filtered, its children are also filtered.
18141      * @param {Function} fn The filter function
18142      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
18143      */
18144     filterBy : function(fn, scope, startNode){
18145         startNode = startNode || this.tree.root;
18146         if(this.autoClear){
18147             this.clear();
18148         }
18149         var af = this.filtered, rv = this.reverse;
18150         var f = function(n){
18151             if(n == startNode){
18152                 return true;
18153             }
18154             if(af[n.id]){
18155                 return false;
18156             }
18157             var m = fn.call(scope || n, n);
18158             if(!m || rv){
18159                 af[n.id] = n;
18160                 n.ui.hide();
18161                 return false;
18162             }
18163             return true;
18164         };
18165         startNode.cascade(f);
18166         if(this.remove){
18167            for(var id in af){
18168                if(typeof id != "function"){
18169                    var n = af[id];
18170                    if(n && n.parentNode){
18171                        n.parentNode.removeChild(n);
18172                    }
18173                }
18174            }
18175         }
18176     },
18177
18178     /**
18179      * Clears the current filter. Note: with the "remove" option
18180      * set a filter cannot be cleared.
18181      */
18182     clear : function(){
18183         var t = this.tree;
18184         var af = this.filtered;
18185         for(var id in af){
18186             if(typeof id != "function"){
18187                 var n = af[id];
18188                 if(n){
18189                     n.ui.show();
18190                 }
18191             }
18192         }
18193         this.filtered = {};
18194     }
18195 };
18196 /*
18197  * Based on:
18198  * Ext JS Library 1.1.1
18199  * Copyright(c) 2006-2007, Ext JS, LLC.
18200  *
18201  * Originally Released Under LGPL - original licence link has changed is not relivant.
18202  *
18203  * Fork - LGPL
18204  * <script type="text/javascript">
18205  */
18206  
18207
18208 /**
18209  * @class Roo.tree.TreeSorter
18210  * Provides sorting of nodes in a TreePanel
18211  * 
18212  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
18213  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
18214  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
18215  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
18216  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
18217  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
18218  * @constructor
18219  * @param {TreePanel} tree
18220  * @param {Object} config
18221  */
18222 Roo.tree.TreeSorter = function(tree, config){
18223     Roo.apply(this, config);
18224     tree.on("beforechildrenrendered", this.doSort, this);
18225     tree.on("append", this.updateSort, this);
18226     tree.on("insert", this.updateSort, this);
18227     
18228     var dsc = this.dir && this.dir.toLowerCase() == "desc";
18229     var p = this.property || "text";
18230     var sortType = this.sortType;
18231     var fs = this.folderSort;
18232     var cs = this.caseSensitive === true;
18233     var leafAttr = this.leafAttr || 'leaf';
18234
18235     this.sortFn = function(n1, n2){
18236         if(fs){
18237             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
18238                 return 1;
18239             }
18240             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
18241                 return -1;
18242             }
18243         }
18244         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
18245         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
18246         if(v1 < v2){
18247                         return dsc ? +1 : -1;
18248                 }else if(v1 > v2){
18249                         return dsc ? -1 : +1;
18250         }else{
18251                 return 0;
18252         }
18253     };
18254 };
18255
18256 Roo.tree.TreeSorter.prototype = {
18257     doSort : function(node){
18258         node.sort(this.sortFn);
18259     },
18260     
18261     compareNodes : function(n1, n2){
18262         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
18263     },
18264     
18265     updateSort : function(tree, node){
18266         if(node.childrenRendered){
18267             this.doSort.defer(1, this, [node]);
18268         }
18269     }
18270 };/*
18271  * Based on:
18272  * Ext JS Library 1.1.1
18273  * Copyright(c) 2006-2007, Ext JS, LLC.
18274  *
18275  * Originally Released Under LGPL - original licence link has changed is not relivant.
18276  *
18277  * Fork - LGPL
18278  * <script type="text/javascript">
18279  */
18280
18281 if(Roo.dd.DropZone){
18282     
18283 Roo.tree.TreeDropZone = function(tree, config){
18284     this.allowParentInsert = false;
18285     this.allowContainerDrop = false;
18286     this.appendOnly = false;
18287     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
18288     this.tree = tree;
18289     this.lastInsertClass = "x-tree-no-status";
18290     this.dragOverData = {};
18291 };
18292
18293 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
18294     ddGroup : "TreeDD",
18295     scroll:  true,
18296     
18297     expandDelay : 1000,
18298     
18299     expandNode : function(node){
18300         if(node.hasChildNodes() && !node.isExpanded()){
18301             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
18302         }
18303     },
18304     
18305     queueExpand : function(node){
18306         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
18307     },
18308     
18309     cancelExpand : function(){
18310         if(this.expandProcId){
18311             clearTimeout(this.expandProcId);
18312             this.expandProcId = false;
18313         }
18314     },
18315     
18316     isValidDropPoint : function(n, pt, dd, e, data){
18317         if(!n || !data){ return false; }
18318         var targetNode = n.node;
18319         var dropNode = data.node;
18320         // default drop rules
18321         if(!(targetNode && targetNode.isTarget && pt)){
18322             return false;
18323         }
18324         if(pt == "append" && targetNode.allowChildren === false){
18325             return false;
18326         }
18327         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
18328             return false;
18329         }
18330         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
18331             return false;
18332         }
18333         // reuse the object
18334         var overEvent = this.dragOverData;
18335         overEvent.tree = this.tree;
18336         overEvent.target = targetNode;
18337         overEvent.data = data;
18338         overEvent.point = pt;
18339         overEvent.source = dd;
18340         overEvent.rawEvent = e;
18341         overEvent.dropNode = dropNode;
18342         overEvent.cancel = false;  
18343         var result = this.tree.fireEvent("nodedragover", overEvent);
18344         return overEvent.cancel === false && result !== false;
18345     },
18346     
18347     getDropPoint : function(e, n, dd)
18348     {
18349         var tn = n.node;
18350         if(tn.isRoot){
18351             return tn.allowChildren !== false ? "append" : false; // always append for root
18352         }
18353         var dragEl = n.ddel;
18354         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
18355         var y = Roo.lib.Event.getPageY(e);
18356         //var noAppend = tn.allowChildren === false || tn.isLeaf();
18357         
18358         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
18359         var noAppend = tn.allowChildren === false;
18360         if(this.appendOnly || tn.parentNode.allowChildren === false){
18361             return noAppend ? false : "append";
18362         }
18363         var noBelow = false;
18364         if(!this.allowParentInsert){
18365             noBelow = tn.hasChildNodes() && tn.isExpanded();
18366         }
18367         var q = (b - t) / (noAppend ? 2 : 3);
18368         if(y >= t && y < (t + q)){
18369             return "above";
18370         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
18371             return "below";
18372         }else{
18373             return "append";
18374         }
18375     },
18376     
18377     onNodeEnter : function(n, dd, e, data)
18378     {
18379         this.cancelExpand();
18380     },
18381     
18382     onNodeOver : function(n, dd, e, data)
18383     {
18384        
18385         var pt = this.getDropPoint(e, n, dd);
18386         var node = n.node;
18387         
18388         // auto node expand check
18389         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
18390             this.queueExpand(node);
18391         }else if(pt != "append"){
18392             this.cancelExpand();
18393         }
18394         
18395         // set the insert point style on the target node
18396         var returnCls = this.dropNotAllowed;
18397         if(this.isValidDropPoint(n, pt, dd, e, data)){
18398            if(pt){
18399                var el = n.ddel;
18400                var cls;
18401                if(pt == "above"){
18402                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
18403                    cls = "x-tree-drag-insert-above";
18404                }else if(pt == "below"){
18405                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
18406                    cls = "x-tree-drag-insert-below";
18407                }else{
18408                    returnCls = "x-tree-drop-ok-append";
18409                    cls = "x-tree-drag-append";
18410                }
18411                if(this.lastInsertClass != cls){
18412                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
18413                    this.lastInsertClass = cls;
18414                }
18415            }
18416        }
18417        return returnCls;
18418     },
18419     
18420     onNodeOut : function(n, dd, e, data){
18421         
18422         this.cancelExpand();
18423         this.removeDropIndicators(n);
18424     },
18425     
18426     onNodeDrop : function(n, dd, e, data){
18427         var point = this.getDropPoint(e, n, dd);
18428         var targetNode = n.node;
18429         targetNode.ui.startDrop();
18430         if(!this.isValidDropPoint(n, point, dd, e, data)){
18431             targetNode.ui.endDrop();
18432             return false;
18433         }
18434         // first try to find the drop node
18435         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
18436         var dropEvent = {
18437             tree : this.tree,
18438             target: targetNode,
18439             data: data,
18440             point: point,
18441             source: dd,
18442             rawEvent: e,
18443             dropNode: dropNode,
18444             cancel: !dropNode   
18445         };
18446         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
18447         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
18448             targetNode.ui.endDrop();
18449             return false;
18450         }
18451         // allow target changing
18452         targetNode = dropEvent.target;
18453         if(point == "append" && !targetNode.isExpanded()){
18454             targetNode.expand(false, null, function(){
18455                 this.completeDrop(dropEvent);
18456             }.createDelegate(this));
18457         }else{
18458             this.completeDrop(dropEvent);
18459         }
18460         return true;
18461     },
18462     
18463     completeDrop : function(de){
18464         var ns = de.dropNode, p = de.point, t = de.target;
18465         if(!(ns instanceof Array)){
18466             ns = [ns];
18467         }
18468         var n;
18469         for(var i = 0, len = ns.length; i < len; i++){
18470             n = ns[i];
18471             if(p == "above"){
18472                 t.parentNode.insertBefore(n, t);
18473             }else if(p == "below"){
18474                 t.parentNode.insertBefore(n, t.nextSibling);
18475             }else{
18476                 t.appendChild(n);
18477             }
18478         }
18479         n.ui.focus();
18480         if(this.tree.hlDrop){
18481             n.ui.highlight();
18482         }
18483         t.ui.endDrop();
18484         this.tree.fireEvent("nodedrop", de);
18485     },
18486     
18487     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
18488         if(this.tree.hlDrop){
18489             dropNode.ui.focus();
18490             dropNode.ui.highlight();
18491         }
18492         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
18493     },
18494     
18495     getTree : function(){
18496         return this.tree;
18497     },
18498     
18499     removeDropIndicators : function(n){
18500         if(n && n.ddel){
18501             var el = n.ddel;
18502             Roo.fly(el).removeClass([
18503                     "x-tree-drag-insert-above",
18504                     "x-tree-drag-insert-below",
18505                     "x-tree-drag-append"]);
18506             this.lastInsertClass = "_noclass";
18507         }
18508     },
18509     
18510     beforeDragDrop : function(target, e, id){
18511         this.cancelExpand();
18512         return true;
18513     },
18514     
18515     afterRepair : function(data){
18516         if(data && Roo.enableFx){
18517             data.node.ui.highlight();
18518         }
18519         this.hideProxy();
18520     } 
18521     
18522 });
18523
18524 }
18525 /*
18526  * Based on:
18527  * Ext JS Library 1.1.1
18528  * Copyright(c) 2006-2007, Ext JS, LLC.
18529  *
18530  * Originally Released Under LGPL - original licence link has changed is not relivant.
18531  *
18532  * Fork - LGPL
18533  * <script type="text/javascript">
18534  */
18535  
18536
18537 if(Roo.dd.DragZone){
18538 Roo.tree.TreeDragZone = function(tree, config){
18539     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
18540     this.tree = tree;
18541 };
18542
18543 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
18544     ddGroup : "TreeDD",
18545    
18546     onBeforeDrag : function(data, e){
18547         var n = data.node;
18548         return n && n.draggable && !n.disabled;
18549     },
18550      
18551     
18552     onInitDrag : function(e){
18553         var data = this.dragData;
18554         this.tree.getSelectionModel().select(data.node);
18555         this.proxy.update("");
18556         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
18557         this.tree.fireEvent("startdrag", this.tree, data.node, e);
18558     },
18559     
18560     getRepairXY : function(e, data){
18561         return data.node.ui.getDDRepairXY();
18562     },
18563     
18564     onEndDrag : function(data, e){
18565         this.tree.fireEvent("enddrag", this.tree, data.node, e);
18566         
18567         
18568     },
18569     
18570     onValidDrop : function(dd, e, id){
18571         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
18572         this.hideProxy();
18573     },
18574     
18575     beforeInvalidDrop : function(e, id){
18576         // this scrolls the original position back into view
18577         var sm = this.tree.getSelectionModel();
18578         sm.clearSelections();
18579         sm.select(this.dragData.node);
18580     }
18581 });
18582 }/*
18583  * Based on:
18584  * Ext JS Library 1.1.1
18585  * Copyright(c) 2006-2007, Ext JS, LLC.
18586  *
18587  * Originally Released Under LGPL - original licence link has changed is not relivant.
18588  *
18589  * Fork - LGPL
18590  * <script type="text/javascript">
18591  */
18592 /**
18593  * @class Roo.tree.TreeEditor
18594  * @extends Roo.Editor
18595  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
18596  * as the editor field.
18597  * @constructor
18598  * @param {Object} config (used to be the tree panel.)
18599  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
18600  * 
18601  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
18602  * @cfg {Roo.form.TextField|Object} field The field configuration
18603  *
18604  * 
18605  */
18606 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
18607     var tree = config;
18608     var field;
18609     if (oldconfig) { // old style..
18610         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
18611     } else {
18612         // new style..
18613         tree = config.tree;
18614         config.field = config.field  || {};
18615         config.field.xtype = 'TextField';
18616         field = Roo.factory(config.field, Roo.form);
18617     }
18618     config = config || {};
18619     
18620     
18621     this.addEvents({
18622         /**
18623          * @event beforenodeedit
18624          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
18625          * false from the handler of this event.
18626          * @param {Editor} this
18627          * @param {Roo.tree.Node} node 
18628          */
18629         "beforenodeedit" : true
18630     });
18631     
18632     //Roo.log(config);
18633     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
18634
18635     this.tree = tree;
18636
18637     tree.on('beforeclick', this.beforeNodeClick, this);
18638     tree.getTreeEl().on('mousedown', this.hide, this);
18639     this.on('complete', this.updateNode, this);
18640     this.on('beforestartedit', this.fitToTree, this);
18641     this.on('startedit', this.bindScroll, this, {delay:10});
18642     this.on('specialkey', this.onSpecialKey, this);
18643 };
18644
18645 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
18646     /**
18647      * @cfg {String} alignment
18648      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
18649      */
18650     alignment: "l-l",
18651     // inherit
18652     autoSize: false,
18653     /**
18654      * @cfg {Boolean} hideEl
18655      * True to hide the bound element while the editor is displayed (defaults to false)
18656      */
18657     hideEl : false,
18658     /**
18659      * @cfg {String} cls
18660      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
18661      */
18662     cls: "x-small-editor x-tree-editor",
18663     /**
18664      * @cfg {Boolean} shim
18665      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
18666      */
18667     shim:false,
18668     // inherit
18669     shadow:"frame",
18670     /**
18671      * @cfg {Number} maxWidth
18672      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
18673      * the containing tree element's size, it will be automatically limited for you to the container width, taking
18674      * scroll and client offsets into account prior to each edit.
18675      */
18676     maxWidth: 250,
18677
18678     editDelay : 350,
18679
18680     // private
18681     fitToTree : function(ed, el){
18682         var td = this.tree.getTreeEl().dom, nd = el.dom;
18683         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
18684             td.scrollLeft = nd.offsetLeft;
18685         }
18686         var w = Math.min(
18687                 this.maxWidth,
18688                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
18689         this.setSize(w, '');
18690         
18691         return this.fireEvent('beforenodeedit', this, this.editNode);
18692         
18693     },
18694
18695     // private
18696     triggerEdit : function(node){
18697         this.completeEdit();
18698         this.editNode = node;
18699         this.startEdit(node.ui.textNode, node.text);
18700     },
18701
18702     // private
18703     bindScroll : function(){
18704         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
18705     },
18706
18707     // private
18708     beforeNodeClick : function(node, e){
18709         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
18710         this.lastClick = new Date();
18711         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
18712             e.stopEvent();
18713             this.triggerEdit(node);
18714             return false;
18715         }
18716         return true;
18717     },
18718
18719     // private
18720     updateNode : function(ed, value){
18721         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
18722         this.editNode.setText(value);
18723     },
18724
18725     // private
18726     onHide : function(){
18727         Roo.tree.TreeEditor.superclass.onHide.call(this);
18728         if(this.editNode){
18729             this.editNode.ui.focus();
18730         }
18731     },
18732
18733     // private
18734     onSpecialKey : function(field, e){
18735         var k = e.getKey();
18736         if(k == e.ESC){
18737             e.stopEvent();
18738             this.cancelEdit();
18739         }else if(k == e.ENTER && !e.hasModifier()){
18740             e.stopEvent();
18741             this.completeEdit();
18742         }
18743     }
18744 });//<Script type="text/javascript">
18745 /*
18746  * Based on:
18747  * Ext JS Library 1.1.1
18748  * Copyright(c) 2006-2007, Ext JS, LLC.
18749  *
18750  * Originally Released Under LGPL - original licence link has changed is not relivant.
18751  *
18752  * Fork - LGPL
18753  * <script type="text/javascript">
18754  */
18755  
18756 /**
18757  * Not documented??? - probably should be...
18758  */
18759
18760 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
18761     //focus: Roo.emptyFn, // prevent odd scrolling behavior
18762     
18763     renderElements : function(n, a, targetNode, bulkRender){
18764         //consel.log("renderElements?");
18765         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
18766
18767         var t = n.getOwnerTree();
18768         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
18769         
18770         var cols = t.columns;
18771         var bw = t.borderWidth;
18772         var c = cols[0];
18773         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
18774          var cb = typeof a.checked == "boolean";
18775         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18776         var colcls = 'x-t-' + tid + '-c0';
18777         var buf = [
18778             '<li class="x-tree-node">',
18779             
18780                 
18781                 '<div class="x-tree-node-el ', a.cls,'">',
18782                     // extran...
18783                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
18784                 
18785                 
18786                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
18787                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
18788                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
18789                            (a.icon ? ' x-tree-node-inline-icon' : ''),
18790                            (a.iconCls ? ' '+a.iconCls : ''),
18791                            '" unselectable="on" />',
18792                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
18793                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
18794                              
18795                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18796                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
18797                             '<span unselectable="on" qtip="' + tx + '">',
18798                              tx,
18799                              '</span></a>' ,
18800                     '</div>',
18801                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18802                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
18803                  ];
18804         for(var i = 1, len = cols.length; i < len; i++){
18805             c = cols[i];
18806             colcls = 'x-t-' + tid + '-c' +i;
18807             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18808             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
18809                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
18810                       "</div>");
18811          }
18812          
18813          buf.push(
18814             '</a>',
18815             '<div class="x-clear"></div></div>',
18816             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
18817             "</li>");
18818         
18819         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
18820             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
18821                                 n.nextSibling.ui.getEl(), buf.join(""));
18822         }else{
18823             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
18824         }
18825         var el = this.wrap.firstChild;
18826         this.elRow = el;
18827         this.elNode = el.firstChild;
18828         this.ranchor = el.childNodes[1];
18829         this.ctNode = this.wrap.childNodes[1];
18830         var cs = el.firstChild.childNodes;
18831         this.indentNode = cs[0];
18832         this.ecNode = cs[1];
18833         this.iconNode = cs[2];
18834         var index = 3;
18835         if(cb){
18836             this.checkbox = cs[3];
18837             index++;
18838         }
18839         this.anchor = cs[index];
18840         
18841         this.textNode = cs[index].firstChild;
18842         
18843         //el.on("click", this.onClick, this);
18844         //el.on("dblclick", this.onDblClick, this);
18845         
18846         
18847        // console.log(this);
18848     },
18849     initEvents : function(){
18850         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
18851         
18852             
18853         var a = this.ranchor;
18854
18855         var el = Roo.get(a);
18856
18857         if(Roo.isOpera){ // opera render bug ignores the CSS
18858             el.setStyle("text-decoration", "none");
18859         }
18860
18861         el.on("click", this.onClick, this);
18862         el.on("dblclick", this.onDblClick, this);
18863         el.on("contextmenu", this.onContextMenu, this);
18864         
18865     },
18866     
18867     /*onSelectedChange : function(state){
18868         if(state){
18869             this.focus();
18870             this.addClass("x-tree-selected");
18871         }else{
18872             //this.blur();
18873             this.removeClass("x-tree-selected");
18874         }
18875     },*/
18876     addClass : function(cls){
18877         if(this.elRow){
18878             Roo.fly(this.elRow).addClass(cls);
18879         }
18880         
18881     },
18882     
18883     
18884     removeClass : function(cls){
18885         if(this.elRow){
18886             Roo.fly(this.elRow).removeClass(cls);
18887         }
18888     }
18889
18890     
18891     
18892 });//<Script type="text/javascript">
18893
18894 /*
18895  * Based on:
18896  * Ext JS Library 1.1.1
18897  * Copyright(c) 2006-2007, Ext JS, LLC.
18898  *
18899  * Originally Released Under LGPL - original licence link has changed is not relivant.
18900  *
18901  * Fork - LGPL
18902  * <script type="text/javascript">
18903  */
18904  
18905
18906 /**
18907  * @class Roo.tree.ColumnTree
18908  * @extends Roo.data.TreePanel
18909  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
18910  * @cfg {int} borderWidth  compined right/left border allowance
18911  * @constructor
18912  * @param {String/HTMLElement/Element} el The container element
18913  * @param {Object} config
18914  */
18915 Roo.tree.ColumnTree =  function(el, config)
18916 {
18917    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
18918    this.addEvents({
18919         /**
18920         * @event resize
18921         * Fire this event on a container when it resizes
18922         * @param {int} w Width
18923         * @param {int} h Height
18924         */
18925        "resize" : true
18926     });
18927     this.on('resize', this.onResize, this);
18928 };
18929
18930 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
18931     //lines:false,
18932     
18933     
18934     borderWidth: Roo.isBorderBox ? 0 : 2, 
18935     headEls : false,
18936     
18937     render : function(){
18938         // add the header.....
18939        
18940         Roo.tree.ColumnTree.superclass.render.apply(this);
18941         
18942         this.el.addClass('x-column-tree');
18943         
18944         this.headers = this.el.createChild(
18945             {cls:'x-tree-headers'},this.innerCt.dom);
18946    
18947         var cols = this.columns, c;
18948         var totalWidth = 0;
18949         this.headEls = [];
18950         var  len = cols.length;
18951         for(var i = 0; i < len; i++){
18952              c = cols[i];
18953              totalWidth += c.width;
18954             this.headEls.push(this.headers.createChild({
18955                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
18956                  cn: {
18957                      cls:'x-tree-hd-text',
18958                      html: c.header
18959                  },
18960                  style:'width:'+(c.width-this.borderWidth)+'px;'
18961              }));
18962         }
18963         this.headers.createChild({cls:'x-clear'});
18964         // prevent floats from wrapping when clipped
18965         this.headers.setWidth(totalWidth);
18966         //this.innerCt.setWidth(totalWidth);
18967         this.innerCt.setStyle({ overflow: 'auto' });
18968         this.onResize(this.width, this.height);
18969              
18970         
18971     },
18972     onResize : function(w,h)
18973     {
18974         this.height = h;
18975         this.width = w;
18976         // resize cols..
18977         this.innerCt.setWidth(this.width);
18978         this.innerCt.setHeight(this.height-20);
18979         
18980         // headers...
18981         var cols = this.columns, c;
18982         var totalWidth = 0;
18983         var expEl = false;
18984         var len = cols.length;
18985         for(var i = 0; i < len; i++){
18986             c = cols[i];
18987             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
18988                 // it's the expander..
18989                 expEl  = this.headEls[i];
18990                 continue;
18991             }
18992             totalWidth += c.width;
18993             
18994         }
18995         if (expEl) {
18996             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
18997         }
18998         this.headers.setWidth(w-20);
18999
19000         
19001         
19002         
19003     }
19004 });
19005 /*
19006  * Based on:
19007  * Ext JS Library 1.1.1
19008  * Copyright(c) 2006-2007, Ext JS, LLC.
19009  *
19010  * Originally Released Under LGPL - original licence link has changed is not relivant.
19011  *
19012  * Fork - LGPL
19013  * <script type="text/javascript">
19014  */
19015  
19016 /**
19017  * @class Roo.menu.Menu
19018  * @extends Roo.util.Observable
19019  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
19020  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
19021  * @constructor
19022  * Creates a new Menu
19023  * @param {Object} config Configuration options
19024  */
19025 Roo.menu.Menu = function(config){
19026     Roo.apply(this, config);
19027     this.id = this.id || Roo.id();
19028     this.addEvents({
19029         /**
19030          * @event beforeshow
19031          * Fires before this menu is displayed
19032          * @param {Roo.menu.Menu} this
19033          */
19034         beforeshow : true,
19035         /**
19036          * @event beforehide
19037          * Fires before this menu is hidden
19038          * @param {Roo.menu.Menu} this
19039          */
19040         beforehide : true,
19041         /**
19042          * @event show
19043          * Fires after this menu is displayed
19044          * @param {Roo.menu.Menu} this
19045          */
19046         show : true,
19047         /**
19048          * @event hide
19049          * Fires after this menu is hidden
19050          * @param {Roo.menu.Menu} this
19051          */
19052         hide : true,
19053         /**
19054          * @event click
19055          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
19056          * @param {Roo.menu.Menu} this
19057          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19058          * @param {Roo.EventObject} e
19059          */
19060         click : true,
19061         /**
19062          * @event mouseover
19063          * Fires when the mouse is hovering over this menu
19064          * @param {Roo.menu.Menu} this
19065          * @param {Roo.EventObject} e
19066          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19067          */
19068         mouseover : true,
19069         /**
19070          * @event mouseout
19071          * Fires when the mouse exits this menu
19072          * @param {Roo.menu.Menu} this
19073          * @param {Roo.EventObject} e
19074          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19075          */
19076         mouseout : true,
19077         /**
19078          * @event itemclick
19079          * Fires when a menu item contained in this menu is clicked
19080          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
19081          * @param {Roo.EventObject} e
19082          */
19083         itemclick: true
19084     });
19085     if (this.registerMenu) {
19086         Roo.menu.MenuMgr.register(this);
19087     }
19088     
19089     var mis = this.items;
19090     this.items = new Roo.util.MixedCollection();
19091     if(mis){
19092         this.add.apply(this, mis);
19093     }
19094 };
19095
19096 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
19097     /**
19098      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
19099      */
19100     minWidth : 120,
19101     /**
19102      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
19103      * for bottom-right shadow (defaults to "sides")
19104      */
19105     shadow : "sides",
19106     /**
19107      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
19108      * this menu (defaults to "tl-tr?")
19109      */
19110     subMenuAlign : "tl-tr?",
19111     /**
19112      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
19113      * relative to its element of origin (defaults to "tl-bl?")
19114      */
19115     defaultAlign : "tl-bl?",
19116     /**
19117      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
19118      */
19119     allowOtherMenus : false,
19120     /**
19121      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
19122      */
19123     registerMenu : true,
19124
19125     hidden:true,
19126
19127     // private
19128     render : function(){
19129         if(this.el){
19130             return;
19131         }
19132         var el = this.el = new Roo.Layer({
19133             cls: "x-menu",
19134             shadow:this.shadow,
19135             constrain: false,
19136             parentEl: this.parentEl || document.body,
19137             zindex:15000
19138         });
19139
19140         this.keyNav = new Roo.menu.MenuNav(this);
19141
19142         if(this.plain){
19143             el.addClass("x-menu-plain");
19144         }
19145         if(this.cls){
19146             el.addClass(this.cls);
19147         }
19148         // generic focus element
19149         this.focusEl = el.createChild({
19150             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
19151         });
19152         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
19153         ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
19154         
19155         ul.on("mouseover", this.onMouseOver, this);
19156         ul.on("mouseout", this.onMouseOut, this);
19157         this.items.each(function(item){
19158             if (item.hidden) {
19159                 return;
19160             }
19161             
19162             var li = document.createElement("li");
19163             li.className = "x-menu-list-item";
19164             ul.dom.appendChild(li);
19165             item.render(li, this);
19166         }, this);
19167         this.ul = ul;
19168         this.autoWidth();
19169     },
19170
19171     // private
19172     autoWidth : function(){
19173         var el = this.el, ul = this.ul;
19174         if(!el){
19175             return;
19176         }
19177         var w = this.width;
19178         if(w){
19179             el.setWidth(w);
19180         }else if(Roo.isIE){
19181             el.setWidth(this.minWidth);
19182             var t = el.dom.offsetWidth; // force recalc
19183             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
19184         }
19185     },
19186
19187     // private
19188     delayAutoWidth : function(){
19189         if(this.rendered){
19190             if(!this.awTask){
19191                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
19192             }
19193             this.awTask.delay(20);
19194         }
19195     },
19196
19197     // private
19198     findTargetItem : function(e){
19199         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
19200         if(t && t.menuItemId){
19201             return this.items.get(t.menuItemId);
19202         }
19203     },
19204
19205     // private
19206     onClick : function(e){
19207         Roo.log("menu.onClick");
19208         var t = this.findTargetItem(e);
19209         if(!t){
19210             return;
19211         }
19212         Roo.log(e);
19213         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
19214             if(t == this.activeItem && t.shouldDeactivate(e)){
19215                 this.activeItem.deactivate();
19216                 delete this.activeItem;
19217                 return;
19218             }
19219             if(t.canActivate){
19220                 this.setActiveItem(t, true);
19221             }
19222             return;
19223             
19224             
19225         }
19226         
19227         t.onClick(e);
19228         this.fireEvent("click", this, t, e);
19229     },
19230
19231     // private
19232     setActiveItem : function(item, autoExpand){
19233         if(item != this.activeItem){
19234             if(this.activeItem){
19235                 this.activeItem.deactivate();
19236             }
19237             this.activeItem = item;
19238             item.activate(autoExpand);
19239         }else if(autoExpand){
19240             item.expandMenu();
19241         }
19242     },
19243
19244     // private
19245     tryActivate : function(start, step){
19246         var items = this.items;
19247         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
19248             var item = items.get(i);
19249             if(!item.disabled && item.canActivate){
19250                 this.setActiveItem(item, false);
19251                 return item;
19252             }
19253         }
19254         return false;
19255     },
19256
19257     // private
19258     onMouseOver : function(e){
19259         var t;
19260         if(t = this.findTargetItem(e)){
19261             if(t.canActivate && !t.disabled){
19262                 this.setActiveItem(t, true);
19263             }
19264         }
19265         this.fireEvent("mouseover", this, e, t);
19266     },
19267
19268     // private
19269     onMouseOut : function(e){
19270         var t;
19271         if(t = this.findTargetItem(e)){
19272             if(t == this.activeItem && t.shouldDeactivate(e)){
19273                 this.activeItem.deactivate();
19274                 delete this.activeItem;
19275             }
19276         }
19277         this.fireEvent("mouseout", this, e, t);
19278     },
19279
19280     /**
19281      * Read-only.  Returns true if the menu is currently displayed, else false.
19282      * @type Boolean
19283      */
19284     isVisible : function(){
19285         return this.el && !this.hidden;
19286     },
19287
19288     /**
19289      * Displays this menu relative to another element
19290      * @param {String/HTMLElement/Roo.Element} element The element to align to
19291      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
19292      * the element (defaults to this.defaultAlign)
19293      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19294      */
19295     show : function(el, pos, parentMenu){
19296         this.parentMenu = parentMenu;
19297         if(!this.el){
19298             this.render();
19299         }
19300         this.fireEvent("beforeshow", this);
19301         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
19302     },
19303
19304     /**
19305      * Displays this menu at a specific xy position
19306      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
19307      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19308      */
19309     showAt : function(xy, parentMenu, /* private: */_e){
19310         this.parentMenu = parentMenu;
19311         if(!this.el){
19312             this.render();
19313         }
19314         if(_e !== false){
19315             this.fireEvent("beforeshow", this);
19316             xy = this.el.adjustForConstraints(xy);
19317         }
19318         this.el.setXY(xy);
19319         this.el.show();
19320         this.hidden = false;
19321         this.focus();
19322         this.fireEvent("show", this);
19323     },
19324
19325     focus : function(){
19326         if(!this.hidden){
19327             this.doFocus.defer(50, this);
19328         }
19329     },
19330
19331     doFocus : function(){
19332         if(!this.hidden){
19333             this.focusEl.focus();
19334         }
19335     },
19336
19337     /**
19338      * Hides this menu and optionally all parent menus
19339      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
19340      */
19341     hide : function(deep){
19342         if(this.el && this.isVisible()){
19343             this.fireEvent("beforehide", this);
19344             if(this.activeItem){
19345                 this.activeItem.deactivate();
19346                 this.activeItem = null;
19347             }
19348             this.el.hide();
19349             this.hidden = true;
19350             this.fireEvent("hide", this);
19351         }
19352         if(deep === true && this.parentMenu){
19353             this.parentMenu.hide(true);
19354         }
19355     },
19356
19357     /**
19358      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
19359      * Any of the following are valid:
19360      * <ul>
19361      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
19362      * <li>An HTMLElement object which will be converted to a menu item</li>
19363      * <li>A menu item config object that will be created as a new menu item</li>
19364      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
19365      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
19366      * </ul>
19367      * Usage:
19368      * <pre><code>
19369 // Create the menu
19370 var menu = new Roo.menu.Menu();
19371
19372 // Create a menu item to add by reference
19373 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
19374
19375 // Add a bunch of items at once using different methods.
19376 // Only the last item added will be returned.
19377 var item = menu.add(
19378     menuItem,                // add existing item by ref
19379     'Dynamic Item',          // new TextItem
19380     '-',                     // new separator
19381     { text: 'Config Item' }  // new item by config
19382 );
19383 </code></pre>
19384      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
19385      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
19386      */
19387     add : function(){
19388         var a = arguments, l = a.length, item;
19389         for(var i = 0; i < l; i++){
19390             var el = a[i];
19391             if ((typeof(el) == "object") && el.xtype && el.xns) {
19392                 el = Roo.factory(el, Roo.menu);
19393             }
19394             
19395             if(el.render){ // some kind of Item
19396                 item = this.addItem(el);
19397             }else if(typeof el == "string"){ // string
19398                 if(el == "separator" || el == "-"){
19399                     item = this.addSeparator();
19400                 }else{
19401                     item = this.addText(el);
19402                 }
19403             }else if(el.tagName || el.el){ // element
19404                 item = this.addElement(el);
19405             }else if(typeof el == "object"){ // must be menu item config?
19406                 item = this.addMenuItem(el);
19407             }
19408         }
19409         return item;
19410     },
19411
19412     /**
19413      * Returns this menu's underlying {@link Roo.Element} object
19414      * @return {Roo.Element} The element
19415      */
19416     getEl : function(){
19417         if(!this.el){
19418             this.render();
19419         }
19420         return this.el;
19421     },
19422
19423     /**
19424      * Adds a separator bar to the menu
19425      * @return {Roo.menu.Item} The menu item that was added
19426      */
19427     addSeparator : function(){
19428         return this.addItem(new Roo.menu.Separator());
19429     },
19430
19431     /**
19432      * Adds an {@link Roo.Element} object to the menu
19433      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
19434      * @return {Roo.menu.Item} The menu item that was added
19435      */
19436     addElement : function(el){
19437         return this.addItem(new Roo.menu.BaseItem(el));
19438     },
19439
19440     /**
19441      * Adds an existing object based on {@link Roo.menu.Item} to the menu
19442      * @param {Roo.menu.Item} item The menu item to add
19443      * @return {Roo.menu.Item} The menu item that was added
19444      */
19445     addItem : function(item){
19446         this.items.add(item);
19447         if(this.ul){
19448             var li = document.createElement("li");
19449             li.className = "x-menu-list-item";
19450             this.ul.dom.appendChild(li);
19451             item.render(li, this);
19452             this.delayAutoWidth();
19453         }
19454         return item;
19455     },
19456
19457     /**
19458      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
19459      * @param {Object} config A MenuItem config object
19460      * @return {Roo.menu.Item} The menu item that was added
19461      */
19462     addMenuItem : function(config){
19463         if(!(config instanceof Roo.menu.Item)){
19464             if(typeof config.checked == "boolean"){ // must be check menu item config?
19465                 config = new Roo.menu.CheckItem(config);
19466             }else{
19467                 config = new Roo.menu.Item(config);
19468             }
19469         }
19470         return this.addItem(config);
19471     },
19472
19473     /**
19474      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
19475      * @param {String} text The text to display in the menu item
19476      * @return {Roo.menu.Item} The menu item that was added
19477      */
19478     addText : function(text){
19479         return this.addItem(new Roo.menu.TextItem({ text : text }));
19480     },
19481
19482     /**
19483      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
19484      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
19485      * @param {Roo.menu.Item} item The menu item to add
19486      * @return {Roo.menu.Item} The menu item that was added
19487      */
19488     insert : function(index, item){
19489         this.items.insert(index, item);
19490         if(this.ul){
19491             var li = document.createElement("li");
19492             li.className = "x-menu-list-item";
19493             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
19494             item.render(li, this);
19495             this.delayAutoWidth();
19496         }
19497         return item;
19498     },
19499
19500     /**
19501      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
19502      * @param {Roo.menu.Item} item The menu item to remove
19503      */
19504     remove : function(item){
19505         this.items.removeKey(item.id);
19506         item.destroy();
19507     },
19508
19509     /**
19510      * Removes and destroys all items in the menu
19511      */
19512     removeAll : function(){
19513         var f;
19514         while(f = this.items.first()){
19515             this.remove(f);
19516         }
19517     }
19518 });
19519
19520 // MenuNav is a private utility class used internally by the Menu
19521 Roo.menu.MenuNav = function(menu){
19522     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
19523     this.scope = this.menu = menu;
19524 };
19525
19526 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
19527     doRelay : function(e, h){
19528         var k = e.getKey();
19529         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
19530             this.menu.tryActivate(0, 1);
19531             return false;
19532         }
19533         return h.call(this.scope || this, e, this.menu);
19534     },
19535
19536     up : function(e, m){
19537         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
19538             m.tryActivate(m.items.length-1, -1);
19539         }
19540     },
19541
19542     down : function(e, m){
19543         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
19544             m.tryActivate(0, 1);
19545         }
19546     },
19547
19548     right : function(e, m){
19549         if(m.activeItem){
19550             m.activeItem.expandMenu(true);
19551         }
19552     },
19553
19554     left : function(e, m){
19555         m.hide();
19556         if(m.parentMenu && m.parentMenu.activeItem){
19557             m.parentMenu.activeItem.activate();
19558         }
19559     },
19560
19561     enter : function(e, m){
19562         if(m.activeItem){
19563             e.stopPropagation();
19564             m.activeItem.onClick(e);
19565             m.fireEvent("click", this, m.activeItem);
19566             return true;
19567         }
19568     }
19569 });/*
19570  * Based on:
19571  * Ext JS Library 1.1.1
19572  * Copyright(c) 2006-2007, Ext JS, LLC.
19573  *
19574  * Originally Released Under LGPL - original licence link has changed is not relivant.
19575  *
19576  * Fork - LGPL
19577  * <script type="text/javascript">
19578  */
19579  
19580 /**
19581  * @class Roo.menu.MenuMgr
19582  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
19583  * @singleton
19584  */
19585 Roo.menu.MenuMgr = function(){
19586    var menus, active, groups = {}, attached = false, lastShow = new Date();
19587
19588    // private - called when first menu is created
19589    function init(){
19590        menus = {};
19591        active = new Roo.util.MixedCollection();
19592        Roo.get(document).addKeyListener(27, function(){
19593            if(active.length > 0){
19594                hideAll();
19595            }
19596        });
19597    }
19598
19599    // private
19600    function hideAll(){
19601        if(active && active.length > 0){
19602            var c = active.clone();
19603            c.each(function(m){
19604                m.hide();
19605            });
19606        }
19607    }
19608
19609    // private
19610    function onHide(m){
19611        active.remove(m);
19612        if(active.length < 1){
19613            Roo.get(document).un("mousedown", onMouseDown);
19614            attached = false;
19615        }
19616    }
19617
19618    // private
19619    function onShow(m){
19620        var last = active.last();
19621        lastShow = new Date();
19622        active.add(m);
19623        if(!attached){
19624            Roo.get(document).on("mousedown", onMouseDown);
19625            attached = true;
19626        }
19627        if(m.parentMenu){
19628           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
19629           m.parentMenu.activeChild = m;
19630        }else if(last && last.isVisible()){
19631           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
19632        }
19633    }
19634
19635    // private
19636    function onBeforeHide(m){
19637        if(m.activeChild){
19638            m.activeChild.hide();
19639        }
19640        if(m.autoHideTimer){
19641            clearTimeout(m.autoHideTimer);
19642            delete m.autoHideTimer;
19643        }
19644    }
19645
19646    // private
19647    function onBeforeShow(m){
19648        var pm = m.parentMenu;
19649        if(!pm && !m.allowOtherMenus){
19650            hideAll();
19651        }else if(pm && pm.activeChild && active != m){
19652            pm.activeChild.hide();
19653        }
19654    }
19655
19656    // private
19657    function onMouseDown(e){
19658        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
19659            hideAll();
19660        }
19661    }
19662
19663    // private
19664    function onBeforeCheck(mi, state){
19665        if(state){
19666            var g = groups[mi.group];
19667            for(var i = 0, l = g.length; i < l; i++){
19668                if(g[i] != mi){
19669                    g[i].setChecked(false);
19670                }
19671            }
19672        }
19673    }
19674
19675    return {
19676
19677        /**
19678         * Hides all menus that are currently visible
19679         */
19680        hideAll : function(){
19681             hideAll();  
19682        },
19683
19684        // private
19685        register : function(menu){
19686            if(!menus){
19687                init();
19688            }
19689            menus[menu.id] = menu;
19690            menu.on("beforehide", onBeforeHide);
19691            menu.on("hide", onHide);
19692            menu.on("beforeshow", onBeforeShow);
19693            menu.on("show", onShow);
19694            var g = menu.group;
19695            if(g && menu.events["checkchange"]){
19696                if(!groups[g]){
19697                    groups[g] = [];
19698                }
19699                groups[g].push(menu);
19700                menu.on("checkchange", onCheck);
19701            }
19702        },
19703
19704         /**
19705          * Returns a {@link Roo.menu.Menu} object
19706          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
19707          * be used to generate and return a new Menu instance.
19708          */
19709        get : function(menu){
19710            if(typeof menu == "string"){ // menu id
19711                return menus[menu];
19712            }else if(menu.events){  // menu instance
19713                return menu;
19714            }else if(typeof menu.length == 'number'){ // array of menu items?
19715                return new Roo.menu.Menu({items:menu});
19716            }else{ // otherwise, must be a config
19717                return new Roo.menu.Menu(menu);
19718            }
19719        },
19720
19721        // private
19722        unregister : function(menu){
19723            delete menus[menu.id];
19724            menu.un("beforehide", onBeforeHide);
19725            menu.un("hide", onHide);
19726            menu.un("beforeshow", onBeforeShow);
19727            menu.un("show", onShow);
19728            var g = menu.group;
19729            if(g && menu.events["checkchange"]){
19730                groups[g].remove(menu);
19731                menu.un("checkchange", onCheck);
19732            }
19733        },
19734
19735        // private
19736        registerCheckable : function(menuItem){
19737            var g = menuItem.group;
19738            if(g){
19739                if(!groups[g]){
19740                    groups[g] = [];
19741                }
19742                groups[g].push(menuItem);
19743                menuItem.on("beforecheckchange", onBeforeCheck);
19744            }
19745        },
19746
19747        // private
19748        unregisterCheckable : function(menuItem){
19749            var g = menuItem.group;
19750            if(g){
19751                groups[g].remove(menuItem);
19752                menuItem.un("beforecheckchange", onBeforeCheck);
19753            }
19754        }
19755    };
19756 }();/*
19757  * Based on:
19758  * Ext JS Library 1.1.1
19759  * Copyright(c) 2006-2007, Ext JS, LLC.
19760  *
19761  * Originally Released Under LGPL - original licence link has changed is not relivant.
19762  *
19763  * Fork - LGPL
19764  * <script type="text/javascript">
19765  */
19766  
19767
19768 /**
19769  * @class Roo.menu.BaseItem
19770  * @extends Roo.Component
19771  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
19772  * management and base configuration options shared by all menu components.
19773  * @constructor
19774  * Creates a new BaseItem
19775  * @param {Object} config Configuration options
19776  */
19777 Roo.menu.BaseItem = function(config){
19778     Roo.menu.BaseItem.superclass.constructor.call(this, config);
19779
19780     this.addEvents({
19781         /**
19782          * @event click
19783          * Fires when this item is clicked
19784          * @param {Roo.menu.BaseItem} this
19785          * @param {Roo.EventObject} e
19786          */
19787         click: true,
19788         /**
19789          * @event activate
19790          * Fires when this item is activated
19791          * @param {Roo.menu.BaseItem} this
19792          */
19793         activate : true,
19794         /**
19795          * @event deactivate
19796          * Fires when this item is deactivated
19797          * @param {Roo.menu.BaseItem} this
19798          */
19799         deactivate : true
19800     });
19801
19802     if(this.handler){
19803         this.on("click", this.handler, this.scope, true);
19804     }
19805 };
19806
19807 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
19808     /**
19809      * @cfg {Function} handler
19810      * A function that will handle the click event of this menu item (defaults to undefined)
19811      */
19812     /**
19813      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
19814      */
19815     canActivate : false,
19816     
19817      /**
19818      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
19819      */
19820     hidden: false,
19821     
19822     /**
19823      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
19824      */
19825     activeClass : "x-menu-item-active",
19826     /**
19827      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
19828      */
19829     hideOnClick : true,
19830     /**
19831      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
19832      */
19833     hideDelay : 100,
19834
19835     // private
19836     ctype: "Roo.menu.BaseItem",
19837
19838     // private
19839     actionMode : "container",
19840
19841     // private
19842     render : function(container, parentMenu){
19843         this.parentMenu = parentMenu;
19844         Roo.menu.BaseItem.superclass.render.call(this, container);
19845         this.container.menuItemId = this.id;
19846     },
19847
19848     // private
19849     onRender : function(container, position){
19850         this.el = Roo.get(this.el);
19851         container.dom.appendChild(this.el.dom);
19852     },
19853
19854     // private
19855     onClick : function(e){
19856         if(!this.disabled && this.fireEvent("click", this, e) !== false
19857                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
19858             this.handleClick(e);
19859         }else{
19860             e.stopEvent();
19861         }
19862     },
19863
19864     // private
19865     activate : function(){
19866         if(this.disabled){
19867             return false;
19868         }
19869         var li = this.container;
19870         li.addClass(this.activeClass);
19871         this.region = li.getRegion().adjust(2, 2, -2, -2);
19872         this.fireEvent("activate", this);
19873         return true;
19874     },
19875
19876     // private
19877     deactivate : function(){
19878         this.container.removeClass(this.activeClass);
19879         this.fireEvent("deactivate", this);
19880     },
19881
19882     // private
19883     shouldDeactivate : function(e){
19884         return !this.region || !this.region.contains(e.getPoint());
19885     },
19886
19887     // private
19888     handleClick : function(e){
19889         if(this.hideOnClick){
19890             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
19891         }
19892     },
19893
19894     // private
19895     expandMenu : function(autoActivate){
19896         // do nothing
19897     },
19898
19899     // private
19900     hideMenu : function(){
19901         // do nothing
19902     }
19903 });/*
19904  * Based on:
19905  * Ext JS Library 1.1.1
19906  * Copyright(c) 2006-2007, Ext JS, LLC.
19907  *
19908  * Originally Released Under LGPL - original licence link has changed is not relivant.
19909  *
19910  * Fork - LGPL
19911  * <script type="text/javascript">
19912  */
19913  
19914 /**
19915  * @class Roo.menu.Adapter
19916  * @extends Roo.menu.BaseItem
19917  * 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.
19918  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
19919  * @constructor
19920  * Creates a new Adapter
19921  * @param {Object} config Configuration options
19922  */
19923 Roo.menu.Adapter = function(component, config){
19924     Roo.menu.Adapter.superclass.constructor.call(this, config);
19925     this.component = component;
19926 };
19927 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
19928     // private
19929     canActivate : true,
19930
19931     // private
19932     onRender : function(container, position){
19933         this.component.render(container);
19934         this.el = this.component.getEl();
19935     },
19936
19937     // private
19938     activate : function(){
19939         if(this.disabled){
19940             return false;
19941         }
19942         this.component.focus();
19943         this.fireEvent("activate", this);
19944         return true;
19945     },
19946
19947     // private
19948     deactivate : function(){
19949         this.fireEvent("deactivate", this);
19950     },
19951
19952     // private
19953     disable : function(){
19954         this.component.disable();
19955         Roo.menu.Adapter.superclass.disable.call(this);
19956     },
19957
19958     // private
19959     enable : function(){
19960         this.component.enable();
19961         Roo.menu.Adapter.superclass.enable.call(this);
19962     }
19963 });/*
19964  * Based on:
19965  * Ext JS Library 1.1.1
19966  * Copyright(c) 2006-2007, Ext JS, LLC.
19967  *
19968  * Originally Released Under LGPL - original licence link has changed is not relivant.
19969  *
19970  * Fork - LGPL
19971  * <script type="text/javascript">
19972  */
19973
19974 /**
19975  * @class Roo.menu.TextItem
19976  * @extends Roo.menu.BaseItem
19977  * Adds a static text string to a menu, usually used as either a heading or group separator.
19978  * Note: old style constructor with text is still supported.
19979  * 
19980  * @constructor
19981  * Creates a new TextItem
19982  * @param {Object} cfg Configuration
19983  */
19984 Roo.menu.TextItem = function(cfg){
19985     if (typeof(cfg) == 'string') {
19986         this.text = cfg;
19987     } else {
19988         Roo.apply(this,cfg);
19989     }
19990     
19991     Roo.menu.TextItem.superclass.constructor.call(this);
19992 };
19993
19994 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
19995     /**
19996      * @cfg {Boolean} text Text to show on item.
19997      */
19998     text : '',
19999     
20000     /**
20001      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20002      */
20003     hideOnClick : false,
20004     /**
20005      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
20006      */
20007     itemCls : "x-menu-text",
20008
20009     // private
20010     onRender : function(){
20011         var s = document.createElement("span");
20012         s.className = this.itemCls;
20013         s.innerHTML = this.text;
20014         this.el = s;
20015         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
20016     }
20017 });/*
20018  * Based on:
20019  * Ext JS Library 1.1.1
20020  * Copyright(c) 2006-2007, Ext JS, LLC.
20021  *
20022  * Originally Released Under LGPL - original licence link has changed is not relivant.
20023  *
20024  * Fork - LGPL
20025  * <script type="text/javascript">
20026  */
20027
20028 /**
20029  * @class Roo.menu.Separator
20030  * @extends Roo.menu.BaseItem
20031  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
20032  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
20033  * @constructor
20034  * @param {Object} config Configuration options
20035  */
20036 Roo.menu.Separator = function(config){
20037     Roo.menu.Separator.superclass.constructor.call(this, config);
20038 };
20039
20040 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
20041     /**
20042      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
20043      */
20044     itemCls : "x-menu-sep",
20045     /**
20046      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20047      */
20048     hideOnClick : false,
20049
20050     // private
20051     onRender : function(li){
20052         var s = document.createElement("span");
20053         s.className = this.itemCls;
20054         s.innerHTML = "&#160;";
20055         this.el = s;
20056         li.addClass("x-menu-sep-li");
20057         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
20058     }
20059 });/*
20060  * Based on:
20061  * Ext JS Library 1.1.1
20062  * Copyright(c) 2006-2007, Ext JS, LLC.
20063  *
20064  * Originally Released Under LGPL - original licence link has changed is not relivant.
20065  *
20066  * Fork - LGPL
20067  * <script type="text/javascript">
20068  */
20069 /**
20070  * @class Roo.menu.Item
20071  * @extends Roo.menu.BaseItem
20072  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
20073  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
20074  * activation and click handling.
20075  * @constructor
20076  * Creates a new Item
20077  * @param {Object} config Configuration options
20078  */
20079 Roo.menu.Item = function(config){
20080     Roo.menu.Item.superclass.constructor.call(this, config);
20081     if(this.menu){
20082         this.menu = Roo.menu.MenuMgr.get(this.menu);
20083     }
20084 };
20085 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
20086     
20087     /**
20088      * @cfg {String} text
20089      * The text to show on the menu item.
20090      */
20091     text: '',
20092      /**
20093      * @cfg {String} HTML to render in menu
20094      * The text to show on the menu item (HTML version).
20095      */
20096     html: '',
20097     /**
20098      * @cfg {String} icon
20099      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
20100      */
20101     icon: undefined,
20102     /**
20103      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
20104      */
20105     itemCls : "x-menu-item",
20106     /**
20107      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
20108      */
20109     canActivate : true,
20110     /**
20111      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
20112      */
20113     showDelay: 200,
20114     // doc'd in BaseItem
20115     hideDelay: 200,
20116
20117     // private
20118     ctype: "Roo.menu.Item",
20119     
20120     // private
20121     onRender : function(container, position){
20122         var el = document.createElement("a");
20123         el.hideFocus = true;
20124         el.unselectable = "on";
20125         el.href = this.href || "#";
20126         if(this.hrefTarget){
20127             el.target = this.hrefTarget;
20128         }
20129         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
20130         
20131         var html = this.html.length ? this.html  : String.format('{0}',this.text);
20132         
20133         el.innerHTML = String.format(
20134                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
20135                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
20136         this.el = el;
20137         Roo.menu.Item.superclass.onRender.call(this, container, position);
20138     },
20139
20140     /**
20141      * Sets the text to display in this menu item
20142      * @param {String} text The text to display
20143      * @param {Boolean} isHTML true to indicate text is pure html.
20144      */
20145     setText : function(text, isHTML){
20146         if (isHTML) {
20147             this.html = text;
20148         } else {
20149             this.text = text;
20150             this.html = '';
20151         }
20152         if(this.rendered){
20153             var html = this.html.length ? this.html  : String.format('{0}',this.text);
20154      
20155             this.el.update(String.format(
20156                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
20157                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
20158             this.parentMenu.autoWidth();
20159         }
20160     },
20161
20162     // private
20163     handleClick : function(e){
20164         if(!this.href){ // if no link defined, stop the event automatically
20165             e.stopEvent();
20166         }
20167         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
20168     },
20169
20170     // private
20171     activate : function(autoExpand){
20172         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
20173             this.focus();
20174             if(autoExpand){
20175                 this.expandMenu();
20176             }
20177         }
20178         return true;
20179     },
20180
20181     // private
20182     shouldDeactivate : function(e){
20183         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
20184             if(this.menu && this.menu.isVisible()){
20185                 return !this.menu.getEl().getRegion().contains(e.getPoint());
20186             }
20187             return true;
20188         }
20189         return false;
20190     },
20191
20192     // private
20193     deactivate : function(){
20194         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
20195         this.hideMenu();
20196     },
20197
20198     // private
20199     expandMenu : function(autoActivate){
20200         if(!this.disabled && this.menu){
20201             clearTimeout(this.hideTimer);
20202             delete this.hideTimer;
20203             if(!this.menu.isVisible() && !this.showTimer){
20204                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
20205             }else if (this.menu.isVisible() && autoActivate){
20206                 this.menu.tryActivate(0, 1);
20207             }
20208         }
20209     },
20210
20211     // private
20212     deferExpand : function(autoActivate){
20213         delete this.showTimer;
20214         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
20215         if(autoActivate){
20216             this.menu.tryActivate(0, 1);
20217         }
20218     },
20219
20220     // private
20221     hideMenu : function(){
20222         clearTimeout(this.showTimer);
20223         delete this.showTimer;
20224         if(!this.hideTimer && this.menu && this.menu.isVisible()){
20225             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
20226         }
20227     },
20228
20229     // private
20230     deferHide : function(){
20231         delete this.hideTimer;
20232         this.menu.hide();
20233     }
20234 });/*
20235  * Based on:
20236  * Ext JS Library 1.1.1
20237  * Copyright(c) 2006-2007, Ext JS, LLC.
20238  *
20239  * Originally Released Under LGPL - original licence link has changed is not relivant.
20240  *
20241  * Fork - LGPL
20242  * <script type="text/javascript">
20243  */
20244  
20245 /**
20246  * @class Roo.menu.CheckItem
20247  * @extends Roo.menu.Item
20248  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
20249  * @constructor
20250  * Creates a new CheckItem
20251  * @param {Object} config Configuration options
20252  */
20253 Roo.menu.CheckItem = function(config){
20254     Roo.menu.CheckItem.superclass.constructor.call(this, config);
20255     this.addEvents({
20256         /**
20257          * @event beforecheckchange
20258          * Fires before the checked value is set, providing an opportunity to cancel if needed
20259          * @param {Roo.menu.CheckItem} this
20260          * @param {Boolean} checked The new checked value that will be set
20261          */
20262         "beforecheckchange" : true,
20263         /**
20264          * @event checkchange
20265          * Fires after the checked value has been set
20266          * @param {Roo.menu.CheckItem} this
20267          * @param {Boolean} checked The checked value that was set
20268          */
20269         "checkchange" : true
20270     });
20271     if(this.checkHandler){
20272         this.on('checkchange', this.checkHandler, this.scope);
20273     }
20274 };
20275 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
20276     /**
20277      * @cfg {String} group
20278      * All check items with the same group name will automatically be grouped into a single-select
20279      * radio button group (defaults to '')
20280      */
20281     /**
20282      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
20283      */
20284     itemCls : "x-menu-item x-menu-check-item",
20285     /**
20286      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
20287      */
20288     groupClass : "x-menu-group-item",
20289
20290     /**
20291      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
20292      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
20293      * initialized with checked = true will be rendered as checked.
20294      */
20295     checked: false,
20296
20297     // private
20298     ctype: "Roo.menu.CheckItem",
20299
20300     // private
20301     onRender : function(c){
20302         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
20303         if(this.group){
20304             this.el.addClass(this.groupClass);
20305         }
20306         Roo.menu.MenuMgr.registerCheckable(this);
20307         if(this.checked){
20308             this.checked = false;
20309             this.setChecked(true, true);
20310         }
20311     },
20312
20313     // private
20314     destroy : function(){
20315         if(this.rendered){
20316             Roo.menu.MenuMgr.unregisterCheckable(this);
20317         }
20318         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
20319     },
20320
20321     /**
20322      * Set the checked state of this item
20323      * @param {Boolean} checked The new checked value
20324      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
20325      */
20326     setChecked : function(state, suppressEvent){
20327         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
20328             if(this.container){
20329                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
20330             }
20331             this.checked = state;
20332             if(suppressEvent !== true){
20333                 this.fireEvent("checkchange", this, state);
20334             }
20335         }
20336     },
20337
20338     // private
20339     handleClick : function(e){
20340        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
20341            this.setChecked(!this.checked);
20342        }
20343        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
20344     }
20345 });/*
20346  * Based on:
20347  * Ext JS Library 1.1.1
20348  * Copyright(c) 2006-2007, Ext JS, LLC.
20349  *
20350  * Originally Released Under LGPL - original licence link has changed is not relivant.
20351  *
20352  * Fork - LGPL
20353  * <script type="text/javascript">
20354  */
20355  
20356 /**
20357  * @class Roo.menu.DateItem
20358  * @extends Roo.menu.Adapter
20359  * A menu item that wraps the {@link Roo.DatPicker} component.
20360  * @constructor
20361  * Creates a new DateItem
20362  * @param {Object} config Configuration options
20363  */
20364 Roo.menu.DateItem = function(config){
20365     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
20366     /** The Roo.DatePicker object @type Roo.DatePicker */
20367     this.picker = this.component;
20368     this.addEvents({select: true});
20369     
20370     this.picker.on("render", function(picker){
20371         picker.getEl().swallowEvent("click");
20372         picker.container.addClass("x-menu-date-item");
20373     });
20374
20375     this.picker.on("select", this.onSelect, this);
20376 };
20377
20378 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
20379     // private
20380     onSelect : function(picker, date){
20381         this.fireEvent("select", this, date, picker);
20382         Roo.menu.DateItem.superclass.handleClick.call(this);
20383     }
20384 });/*
20385  * Based on:
20386  * Ext JS Library 1.1.1
20387  * Copyright(c) 2006-2007, Ext JS, LLC.
20388  *
20389  * Originally Released Under LGPL - original licence link has changed is not relivant.
20390  *
20391  * Fork - LGPL
20392  * <script type="text/javascript">
20393  */
20394  
20395 /**
20396  * @class Roo.menu.ColorItem
20397  * @extends Roo.menu.Adapter
20398  * A menu item that wraps the {@link Roo.ColorPalette} component.
20399  * @constructor
20400  * Creates a new ColorItem
20401  * @param {Object} config Configuration options
20402  */
20403 Roo.menu.ColorItem = function(config){
20404     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
20405     /** The Roo.ColorPalette object @type Roo.ColorPalette */
20406     this.palette = this.component;
20407     this.relayEvents(this.palette, ["select"]);
20408     if(this.selectHandler){
20409         this.on('select', this.selectHandler, this.scope);
20410     }
20411 };
20412 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
20413  * Based on:
20414  * Ext JS Library 1.1.1
20415  * Copyright(c) 2006-2007, Ext JS, LLC.
20416  *
20417  * Originally Released Under LGPL - original licence link has changed is not relivant.
20418  *
20419  * Fork - LGPL
20420  * <script type="text/javascript">
20421  */
20422  
20423
20424 /**
20425  * @class Roo.menu.DateMenu
20426  * @extends Roo.menu.Menu
20427  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
20428  * @constructor
20429  * Creates a new DateMenu
20430  * @param {Object} config Configuration options
20431  */
20432 Roo.menu.DateMenu = function(config){
20433     Roo.menu.DateMenu.superclass.constructor.call(this, config);
20434     this.plain = true;
20435     var di = new Roo.menu.DateItem(config);
20436     this.add(di);
20437     /**
20438      * The {@link Roo.DatePicker} instance for this DateMenu
20439      * @type DatePicker
20440      */
20441     this.picker = di.picker;
20442     /**
20443      * @event select
20444      * @param {DatePicker} picker
20445      * @param {Date} date
20446      */
20447     this.relayEvents(di, ["select"]);
20448     this.on('beforeshow', function(){
20449         if(this.picker){
20450             this.picker.hideMonthPicker(false);
20451         }
20452     }, this);
20453 };
20454 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
20455     cls:'x-date-menu'
20456 });/*
20457  * Based on:
20458  * Ext JS Library 1.1.1
20459  * Copyright(c) 2006-2007, Ext JS, LLC.
20460  *
20461  * Originally Released Under LGPL - original licence link has changed is not relivant.
20462  *
20463  * Fork - LGPL
20464  * <script type="text/javascript">
20465  */
20466  
20467
20468 /**
20469  * @class Roo.menu.ColorMenu
20470  * @extends Roo.menu.Menu
20471  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
20472  * @constructor
20473  * Creates a new ColorMenu
20474  * @param {Object} config Configuration options
20475  */
20476 Roo.menu.ColorMenu = function(config){
20477     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
20478     this.plain = true;
20479     var ci = new Roo.menu.ColorItem(config);
20480     this.add(ci);
20481     /**
20482      * The {@link Roo.ColorPalette} instance for this ColorMenu
20483      * @type ColorPalette
20484      */
20485     this.palette = ci.palette;
20486     /**
20487      * @event select
20488      * @param {ColorPalette} palette
20489      * @param {String} color
20490      */
20491     this.relayEvents(ci, ["select"]);
20492 };
20493 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
20494  * Based on:
20495  * Ext JS Library 1.1.1
20496  * Copyright(c) 2006-2007, Ext JS, LLC.
20497  *
20498  * Originally Released Under LGPL - original licence link has changed is not relivant.
20499  *
20500  * Fork - LGPL
20501  * <script type="text/javascript">
20502  */
20503  
20504 /**
20505  * @class Roo.form.Field
20506  * @extends Roo.BoxComponent
20507  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
20508  * @constructor
20509  * Creates a new Field
20510  * @param {Object} config Configuration options
20511  */
20512 Roo.form.Field = function(config){
20513     Roo.form.Field.superclass.constructor.call(this, config);
20514 };
20515
20516 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
20517     /**
20518      * @cfg {String} fieldLabel Label to use when rendering a form.
20519      */
20520        /**
20521      * @cfg {String} qtip Mouse over tip
20522      */
20523      
20524     /**
20525      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
20526      */
20527     invalidClass : "x-form-invalid",
20528     /**
20529      * @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")
20530      */
20531     invalidText : "The value in this field is invalid",
20532     /**
20533      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
20534      */
20535     focusClass : "x-form-focus",
20536     /**
20537      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
20538       automatic validation (defaults to "keyup").
20539      */
20540     validationEvent : "keyup",
20541     /**
20542      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
20543      */
20544     validateOnBlur : true,
20545     /**
20546      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
20547      */
20548     validationDelay : 250,
20549     /**
20550      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20551      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
20552      */
20553     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "off"},
20554     /**
20555      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
20556      */
20557     fieldClass : "x-form-field",
20558     /**
20559      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
20560      *<pre>
20561 Value         Description
20562 -----------   ----------------------------------------------------------------------
20563 qtip          Display a quick tip when the user hovers over the field
20564 title         Display a default browser title attribute popup
20565 under         Add a block div beneath the field containing the error text
20566 side          Add an error icon to the right of the field with a popup on hover
20567 [element id]  Add the error text directly to the innerHTML of the specified element
20568 </pre>
20569      */
20570     msgTarget : 'qtip',
20571     /**
20572      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
20573      */
20574     msgFx : 'normal',
20575
20576     /**
20577      * @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.
20578      */
20579     readOnly : false,
20580
20581     /**
20582      * @cfg {Boolean} disabled True to disable the field (defaults to false).
20583      */
20584     disabled : false,
20585
20586     /**
20587      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
20588      */
20589     inputType : undefined,
20590     
20591     /**
20592      * @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).
20593          */
20594         tabIndex : undefined,
20595         
20596     // private
20597     isFormField : true,
20598
20599     // private
20600     hasFocus : false,
20601     /**
20602      * @property {Roo.Element} fieldEl
20603      * Element Containing the rendered Field (with label etc.)
20604      */
20605     /**
20606      * @cfg {Mixed} value A value to initialize this field with.
20607      */
20608     value : undefined,
20609
20610     /**
20611      * @cfg {String} name The field's HTML name attribute.
20612      */
20613     /**
20614      * @cfg {String} cls A CSS class to apply to the field's underlying element.
20615      */
20616
20617         // private ??
20618         initComponent : function(){
20619         Roo.form.Field.superclass.initComponent.call(this);
20620         this.addEvents({
20621             /**
20622              * @event focus
20623              * Fires when this field receives input focus.
20624              * @param {Roo.form.Field} this
20625              */
20626             focus : true,
20627             /**
20628              * @event blur
20629              * Fires when this field loses input focus.
20630              * @param {Roo.form.Field} this
20631              */
20632             blur : true,
20633             /**
20634              * @event specialkey
20635              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
20636              * {@link Roo.EventObject#getKey} to determine which key was pressed.
20637              * @param {Roo.form.Field} this
20638              * @param {Roo.EventObject} e The event object
20639              */
20640             specialkey : true,
20641             /**
20642              * @event change
20643              * Fires just before the field blurs if the field value has changed.
20644              * @param {Roo.form.Field} this
20645              * @param {Mixed} newValue The new value
20646              * @param {Mixed} oldValue The original value
20647              */
20648             change : true,
20649             /**
20650              * @event invalid
20651              * Fires after the field has been marked as invalid.
20652              * @param {Roo.form.Field} this
20653              * @param {String} msg The validation message
20654              */
20655             invalid : true,
20656             /**
20657              * @event valid
20658              * Fires after the field has been validated with no errors.
20659              * @param {Roo.form.Field} this
20660              */
20661             valid : true,
20662              /**
20663              * @event keyup
20664              * Fires after the key up
20665              * @param {Roo.form.Field} this
20666              * @param {Roo.EventObject}  e The event Object
20667              */
20668             keyup : true
20669         });
20670     },
20671
20672     /**
20673      * Returns the name attribute of the field if available
20674      * @return {String} name The field name
20675      */
20676     getName: function(){
20677          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
20678     },
20679
20680     // private
20681     onRender : function(ct, position){
20682         Roo.form.Field.superclass.onRender.call(this, ct, position);
20683         if(!this.el){
20684             var cfg = this.getAutoCreate();
20685             if(!cfg.name){
20686                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
20687             }
20688             if (!cfg.name.length) {
20689                 delete cfg.name;
20690             }
20691             if(this.inputType){
20692                 cfg.type = this.inputType;
20693             }
20694             this.el = ct.createChild(cfg, position);
20695         }
20696         var type = this.el.dom.type;
20697         if(type){
20698             if(type == 'password'){
20699                 type = 'text';
20700             }
20701             this.el.addClass('x-form-'+type);
20702         }
20703         if(this.readOnly){
20704             this.el.dom.readOnly = true;
20705         }
20706         if(this.tabIndex !== undefined){
20707             this.el.dom.setAttribute('tabIndex', this.tabIndex);
20708         }
20709
20710         this.el.addClass([this.fieldClass, this.cls]);
20711         this.initValue();
20712     },
20713
20714     /**
20715      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
20716      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
20717      * @return {Roo.form.Field} this
20718      */
20719     applyTo : function(target){
20720         this.allowDomMove = false;
20721         this.el = Roo.get(target);
20722         this.render(this.el.dom.parentNode);
20723         return this;
20724     },
20725
20726     // private
20727     initValue : function(){
20728         if(this.value !== undefined){
20729             this.setValue(this.value);
20730         }else if(this.el.dom.value.length > 0){
20731             this.setValue(this.el.dom.value);
20732         }
20733     },
20734
20735     /**
20736      * Returns true if this field has been changed since it was originally loaded and is not disabled.
20737      */
20738     isDirty : function() {
20739         if(this.disabled) {
20740             return false;
20741         }
20742         return String(this.getValue()) !== String(this.originalValue);
20743     },
20744
20745     // private
20746     afterRender : function(){
20747         Roo.form.Field.superclass.afterRender.call(this);
20748         this.initEvents();
20749     },
20750
20751     // private
20752     fireKey : function(e){
20753         //Roo.log('field ' + e.getKey());
20754         if(e.isNavKeyPress()){
20755             this.fireEvent("specialkey", this, e);
20756         }
20757     },
20758
20759     /**
20760      * Resets the current field value to the originally loaded value and clears any validation messages
20761      */
20762     reset : function(){
20763         this.setValue(this.resetValue);
20764         this.clearInvalid();
20765     },
20766
20767     // private
20768     initEvents : function(){
20769         // safari killled keypress - so keydown is now used..
20770         this.el.on("keydown" , this.fireKey,  this);
20771         this.el.on("focus", this.onFocus,  this);
20772         this.el.on("blur", this.onBlur,  this);
20773         this.el.relayEvent('keyup', this);
20774
20775         // reference to original value for reset
20776         this.originalValue = this.getValue();
20777         this.resetValue =  this.getValue();
20778     },
20779
20780     // private
20781     onFocus : function(){
20782         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20783             this.el.addClass(this.focusClass);
20784         }
20785         if(!this.hasFocus){
20786             this.hasFocus = true;
20787             this.startValue = this.getValue();
20788             this.fireEvent("focus", this);
20789         }
20790     },
20791
20792     beforeBlur : Roo.emptyFn,
20793
20794     // private
20795     onBlur : function(){
20796         this.beforeBlur();
20797         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20798             this.el.removeClass(this.focusClass);
20799         }
20800         this.hasFocus = false;
20801         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
20802             this.validate();
20803         }
20804         var v = this.getValue();
20805         if(String(v) !== String(this.startValue)){
20806             this.fireEvent('change', this, v, this.startValue);
20807         }
20808         this.fireEvent("blur", this);
20809     },
20810
20811     /**
20812      * Returns whether or not the field value is currently valid
20813      * @param {Boolean} preventMark True to disable marking the field invalid
20814      * @return {Boolean} True if the value is valid, else false
20815      */
20816     isValid : function(preventMark){
20817         if(this.disabled){
20818             return true;
20819         }
20820         var restore = this.preventMark;
20821         this.preventMark = preventMark === true;
20822         var v = this.validateValue(this.processValue(this.getRawValue()));
20823         this.preventMark = restore;
20824         return v;
20825     },
20826
20827     /**
20828      * Validates the field value
20829      * @return {Boolean} True if the value is valid, else false
20830      */
20831     validate : function(){
20832         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
20833             this.clearInvalid();
20834             return true;
20835         }
20836         return false;
20837     },
20838
20839     processValue : function(value){
20840         return value;
20841     },
20842
20843     // private
20844     // Subclasses should provide the validation implementation by overriding this
20845     validateValue : function(value){
20846         return true;
20847     },
20848
20849     /**
20850      * Mark this field as invalid
20851      * @param {String} msg The validation message
20852      */
20853     markInvalid : function(msg){
20854         if(!this.rendered || this.preventMark){ // not rendered
20855             return;
20856         }
20857         
20858         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20859         
20860         obj.el.addClass(this.invalidClass);
20861         msg = msg || this.invalidText;
20862         switch(this.msgTarget){
20863             case 'qtip':
20864                 obj.el.dom.qtip = msg;
20865                 obj.el.dom.qclass = 'x-form-invalid-tip';
20866                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
20867                     Roo.QuickTips.enable();
20868                 }
20869                 break;
20870             case 'title':
20871                 this.el.dom.title = msg;
20872                 break;
20873             case 'under':
20874                 if(!this.errorEl){
20875                     var elp = this.el.findParent('.x-form-element', 5, true);
20876                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
20877                     this.errorEl.setWidth(elp.getWidth(true)-20);
20878                 }
20879                 this.errorEl.update(msg);
20880                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
20881                 break;
20882             case 'side':
20883                 if(!this.errorIcon){
20884                     var elp = this.el.findParent('.x-form-element', 5, true);
20885                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
20886                 }
20887                 this.alignErrorIcon();
20888                 this.errorIcon.dom.qtip = msg;
20889                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
20890                 this.errorIcon.show();
20891                 this.on('resize', this.alignErrorIcon, this);
20892                 break;
20893             default:
20894                 var t = Roo.getDom(this.msgTarget);
20895                 t.innerHTML = msg;
20896                 t.style.display = this.msgDisplay;
20897                 break;
20898         }
20899         this.fireEvent('invalid', this, msg);
20900     },
20901
20902     // private
20903     alignErrorIcon : function(){
20904         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
20905     },
20906
20907     /**
20908      * Clear any invalid styles/messages for this field
20909      */
20910     clearInvalid : function(){
20911         if(!this.rendered || this.preventMark){ // not rendered
20912             return;
20913         }
20914         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20915         
20916         obj.el.removeClass(this.invalidClass);
20917         switch(this.msgTarget){
20918             case 'qtip':
20919                 obj.el.dom.qtip = '';
20920                 break;
20921             case 'title':
20922                 this.el.dom.title = '';
20923                 break;
20924             case 'under':
20925                 if(this.errorEl){
20926                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
20927                 }
20928                 break;
20929             case 'side':
20930                 if(this.errorIcon){
20931                     this.errorIcon.dom.qtip = '';
20932                     this.errorIcon.hide();
20933                     this.un('resize', this.alignErrorIcon, this);
20934                 }
20935                 break;
20936             default:
20937                 var t = Roo.getDom(this.msgTarget);
20938                 t.innerHTML = '';
20939                 t.style.display = 'none';
20940                 break;
20941         }
20942         this.fireEvent('valid', this);
20943     },
20944
20945     /**
20946      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
20947      * @return {Mixed} value The field value
20948      */
20949     getRawValue : function(){
20950         var v = this.el.getValue();
20951         
20952         return v;
20953     },
20954
20955     /**
20956      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
20957      * @return {Mixed} value The field value
20958      */
20959     getValue : function(){
20960         var v = this.el.getValue();
20961          
20962         return v;
20963     },
20964
20965     /**
20966      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
20967      * @param {Mixed} value The value to set
20968      */
20969     setRawValue : function(v){
20970         return this.el.dom.value = (v === null || v === undefined ? '' : v);
20971     },
20972
20973     /**
20974      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
20975      * @param {Mixed} value The value to set
20976      */
20977     setValue : function(v){
20978         this.value = v;
20979         if(this.rendered){
20980             this.el.dom.value = (v === null || v === undefined ? '' : v);
20981              this.validate();
20982         }
20983     },
20984
20985     adjustSize : function(w, h){
20986         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
20987         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
20988         return s;
20989     },
20990
20991     adjustWidth : function(tag, w){
20992         tag = tag.toLowerCase();
20993         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
20994             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
20995                 if(tag == 'input'){
20996                     return w + 2;
20997                 }
20998                 if(tag == 'textarea'){
20999                     return w-2;
21000                 }
21001             }else if(Roo.isOpera){
21002                 if(tag == 'input'){
21003                     return w + 2;
21004                 }
21005                 if(tag == 'textarea'){
21006                     return w-2;
21007                 }
21008             }
21009         }
21010         return w;
21011     }
21012 });
21013
21014
21015 // anything other than normal should be considered experimental
21016 Roo.form.Field.msgFx = {
21017     normal : {
21018         show: function(msgEl, f){
21019             msgEl.setDisplayed('block');
21020         },
21021
21022         hide : function(msgEl, f){
21023             msgEl.setDisplayed(false).update('');
21024         }
21025     },
21026
21027     slide : {
21028         show: function(msgEl, f){
21029             msgEl.slideIn('t', {stopFx:true});
21030         },
21031
21032         hide : function(msgEl, f){
21033             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
21034         }
21035     },
21036
21037     slideRight : {
21038         show: function(msgEl, f){
21039             msgEl.fixDisplay();
21040             msgEl.alignTo(f.el, 'tl-tr');
21041             msgEl.slideIn('l', {stopFx:true});
21042         },
21043
21044         hide : function(msgEl, f){
21045             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
21046         }
21047     }
21048 };/*
21049  * Based on:
21050  * Ext JS Library 1.1.1
21051  * Copyright(c) 2006-2007, Ext JS, LLC.
21052  *
21053  * Originally Released Under LGPL - original licence link has changed is not relivant.
21054  *
21055  * Fork - LGPL
21056  * <script type="text/javascript">
21057  */
21058  
21059
21060 /**
21061  * @class Roo.form.TextField
21062  * @extends Roo.form.Field
21063  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
21064  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
21065  * @constructor
21066  * Creates a new TextField
21067  * @param {Object} config Configuration options
21068  */
21069 Roo.form.TextField = function(config){
21070     Roo.form.TextField.superclass.constructor.call(this, config);
21071     this.addEvents({
21072         /**
21073          * @event autosize
21074          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
21075          * according to the default logic, but this event provides a hook for the developer to apply additional
21076          * logic at runtime to resize the field if needed.
21077              * @param {Roo.form.Field} this This text field
21078              * @param {Number} width The new field width
21079              */
21080         autosize : true
21081     });
21082 };
21083
21084 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
21085     /**
21086      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
21087      */
21088     grow : false,
21089     /**
21090      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
21091      */
21092     growMin : 30,
21093     /**
21094      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
21095      */
21096     growMax : 800,
21097     /**
21098      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
21099      */
21100     vtype : null,
21101     /**
21102      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
21103      */
21104     maskRe : null,
21105     /**
21106      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
21107      */
21108     disableKeyFilter : false,
21109     /**
21110      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
21111      */
21112     allowBlank : true,
21113     /**
21114      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
21115      */
21116     minLength : 0,
21117     /**
21118      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
21119      */
21120     maxLength : Number.MAX_VALUE,
21121     /**
21122      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
21123      */
21124     minLengthText : "The minimum length for this field is {0}",
21125     /**
21126      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
21127      */
21128     maxLengthText : "The maximum length for this field is {0}",
21129     /**
21130      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
21131      */
21132     selectOnFocus : false,
21133     /**
21134      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
21135      */
21136     blankText : "This field is required",
21137     /**
21138      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
21139      * If available, this function will be called only after the basic validators all return true, and will be passed the
21140      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
21141      */
21142     validator : null,
21143     /**
21144      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
21145      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
21146      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
21147      */
21148     regex : null,
21149     /**
21150      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
21151      */
21152     regexText : "",
21153     /**
21154      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
21155      */
21156     emptyText : null,
21157    
21158
21159     // private
21160     initEvents : function()
21161     {
21162         if (this.emptyText) {
21163             this.el.attr('placeholder', this.emptyText);
21164         }
21165         
21166         Roo.form.TextField.superclass.initEvents.call(this);
21167         if(this.validationEvent == 'keyup'){
21168             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
21169             this.el.on('keyup', this.filterValidation, this);
21170         }
21171         else if(this.validationEvent !== false){
21172             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
21173         }
21174         
21175         if(this.selectOnFocus){
21176             this.on("focus", this.preFocus, this);
21177             
21178         }
21179         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
21180             this.el.on("keypress", this.filterKeys, this);
21181         }
21182         if(this.grow){
21183             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
21184             this.el.on("click", this.autoSize,  this);
21185         }
21186         if(this.el.is('input[type=password]') && Roo.isSafari){
21187             this.el.on('keydown', this.SafariOnKeyDown, this);
21188         }
21189     },
21190
21191     processValue : function(value){
21192         if(this.stripCharsRe){
21193             var newValue = value.replace(this.stripCharsRe, '');
21194             if(newValue !== value){
21195                 this.setRawValue(newValue);
21196                 return newValue;
21197             }
21198         }
21199         return value;
21200     },
21201
21202     filterValidation : function(e){
21203         if(!e.isNavKeyPress()){
21204             this.validationTask.delay(this.validationDelay);
21205         }
21206     },
21207
21208     // private
21209     onKeyUp : function(e){
21210         if(!e.isNavKeyPress()){
21211             this.autoSize();
21212         }
21213     },
21214
21215     /**
21216      * Resets the current field value to the originally-loaded value and clears any validation messages.
21217      *  
21218      */
21219     reset : function(){
21220         Roo.form.TextField.superclass.reset.call(this);
21221        
21222     },
21223
21224     
21225     // private
21226     preFocus : function(){
21227         
21228         if(this.selectOnFocus){
21229             this.el.dom.select();
21230         }
21231     },
21232
21233     
21234     // private
21235     filterKeys : function(e){
21236         var k = e.getKey();
21237         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
21238             return;
21239         }
21240         var c = e.getCharCode(), cc = String.fromCharCode(c);
21241         if(Roo.isIE && (e.isSpecialKey() || !cc)){
21242             return;
21243         }
21244         if(!this.maskRe.test(cc)){
21245             e.stopEvent();
21246         }
21247     },
21248
21249     setValue : function(v){
21250         
21251         Roo.form.TextField.superclass.setValue.apply(this, arguments);
21252         
21253         this.autoSize();
21254     },
21255
21256     /**
21257      * Validates a value according to the field's validation rules and marks the field as invalid
21258      * if the validation fails
21259      * @param {Mixed} value The value to validate
21260      * @return {Boolean} True if the value is valid, else false
21261      */
21262     validateValue : function(value){
21263         if(value.length < 1)  { // if it's blank
21264              if(this.allowBlank){
21265                 this.clearInvalid();
21266                 return true;
21267              }else{
21268                 this.markInvalid(this.blankText);
21269                 return false;
21270              }
21271         }
21272         if(value.length < this.minLength){
21273             this.markInvalid(String.format(this.minLengthText, this.minLength));
21274             return false;
21275         }
21276         if(value.length > this.maxLength){
21277             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
21278             return false;
21279         }
21280         if(this.vtype){
21281             var vt = Roo.form.VTypes;
21282             if(!vt[this.vtype](value, this)){
21283                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
21284                 return false;
21285             }
21286         }
21287         if(typeof this.validator == "function"){
21288             var msg = this.validator(value);
21289             if(msg !== true){
21290                 this.markInvalid(msg);
21291                 return false;
21292             }
21293         }
21294         if(this.regex && !this.regex.test(value)){
21295             this.markInvalid(this.regexText);
21296             return false;
21297         }
21298         return true;
21299     },
21300
21301     /**
21302      * Selects text in this field
21303      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
21304      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
21305      */
21306     selectText : function(start, end){
21307         var v = this.getRawValue();
21308         if(v.length > 0){
21309             start = start === undefined ? 0 : start;
21310             end = end === undefined ? v.length : end;
21311             var d = this.el.dom;
21312             if(d.setSelectionRange){
21313                 d.setSelectionRange(start, end);
21314             }else if(d.createTextRange){
21315                 var range = d.createTextRange();
21316                 range.moveStart("character", start);
21317                 range.moveEnd("character", v.length-end);
21318                 range.select();
21319             }
21320         }
21321     },
21322
21323     /**
21324      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
21325      * This only takes effect if grow = true, and fires the autosize event.
21326      */
21327     autoSize : function(){
21328         if(!this.grow || !this.rendered){
21329             return;
21330         }
21331         if(!this.metrics){
21332             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
21333         }
21334         var el = this.el;
21335         var v = el.dom.value;
21336         var d = document.createElement('div');
21337         d.appendChild(document.createTextNode(v));
21338         v = d.innerHTML;
21339         d = null;
21340         v += "&#160;";
21341         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
21342         this.el.setWidth(w);
21343         this.fireEvent("autosize", this, w);
21344     },
21345     
21346     // private
21347     SafariOnKeyDown : function(event)
21348     {
21349         // this is a workaround for a password hang bug on chrome/ webkit.
21350         
21351         var isSelectAll = false;
21352         
21353         if(this.el.dom.selectionEnd > 0){
21354             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
21355         }
21356         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
21357             event.preventDefault();
21358             this.setValue('');
21359             return;
21360         }
21361         
21362         if(isSelectAll){ // backspace and delete key
21363             
21364             event.preventDefault();
21365             // this is very hacky as keydown always get's upper case.
21366             //
21367             var cc = String.fromCharCode(event.getCharCode());
21368             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
21369             
21370         }
21371         
21372         
21373     }
21374 });/*
21375  * Based on:
21376  * Ext JS Library 1.1.1
21377  * Copyright(c) 2006-2007, Ext JS, LLC.
21378  *
21379  * Originally Released Under LGPL - original licence link has changed is not relivant.
21380  *
21381  * Fork - LGPL
21382  * <script type="text/javascript">
21383  */
21384  
21385 /**
21386  * @class Roo.form.Hidden
21387  * @extends Roo.form.TextField
21388  * Simple Hidden element used on forms 
21389  * 
21390  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
21391  * 
21392  * @constructor
21393  * Creates a new Hidden form element.
21394  * @param {Object} config Configuration options
21395  */
21396
21397
21398
21399 // easy hidden field...
21400 Roo.form.Hidden = function(config){
21401     Roo.form.Hidden.superclass.constructor.call(this, config);
21402 };
21403   
21404 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
21405     fieldLabel:      '',
21406     inputType:      'hidden',
21407     width:          50,
21408     allowBlank:     true,
21409     labelSeparator: '',
21410     hidden:         true,
21411     itemCls :       'x-form-item-display-none'
21412
21413
21414 });
21415
21416
21417 /*
21418  * Based on:
21419  * Ext JS Library 1.1.1
21420  * Copyright(c) 2006-2007, Ext JS, LLC.
21421  *
21422  * Originally Released Under LGPL - original licence link has changed is not relivant.
21423  *
21424  * Fork - LGPL
21425  * <script type="text/javascript">
21426  */
21427  
21428 /**
21429  * @class Roo.form.TriggerField
21430  * @extends Roo.form.TextField
21431  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
21432  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
21433  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
21434  * for which you can provide a custom implementation.  For example:
21435  * <pre><code>
21436 var trigger = new Roo.form.TriggerField();
21437 trigger.onTriggerClick = myTriggerFn;
21438 trigger.applyTo('my-field');
21439 </code></pre>
21440  *
21441  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
21442  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
21443  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
21444  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
21445  * @constructor
21446  * Create a new TriggerField.
21447  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
21448  * to the base TextField)
21449  */
21450 Roo.form.TriggerField = function(config){
21451     this.mimicing = false;
21452     Roo.form.TriggerField.superclass.constructor.call(this, config);
21453 };
21454
21455 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
21456     /**
21457      * @cfg {String} triggerClass A CSS class to apply to the trigger
21458      */
21459     /**
21460      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21461      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
21462      */
21463     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "off"},
21464     /**
21465      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
21466      */
21467     hideTrigger:false,
21468
21469     /** @cfg {Boolean} grow @hide */
21470     /** @cfg {Number} growMin @hide */
21471     /** @cfg {Number} growMax @hide */
21472
21473     /**
21474      * @hide 
21475      * @method
21476      */
21477     autoSize: Roo.emptyFn,
21478     // private
21479     monitorTab : true,
21480     // private
21481     deferHeight : true,
21482
21483     
21484     actionMode : 'wrap',
21485     // private
21486     onResize : function(w, h){
21487         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
21488         if(typeof w == 'number'){
21489             var x = w - this.trigger.getWidth();
21490             this.el.setWidth(this.adjustWidth('input', x));
21491             this.trigger.setStyle('left', x+'px');
21492         }
21493     },
21494
21495     // private
21496     adjustSize : Roo.BoxComponent.prototype.adjustSize,
21497
21498     // private
21499     getResizeEl : function(){
21500         return this.wrap;
21501     },
21502
21503     // private
21504     getPositionEl : function(){
21505         return this.wrap;
21506     },
21507
21508     // private
21509     alignErrorIcon : function(){
21510         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
21511     },
21512
21513     // private
21514     onRender : function(ct, position){
21515         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
21516         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
21517         this.trigger = this.wrap.createChild(this.triggerConfig ||
21518                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
21519         if(this.hideTrigger){
21520             this.trigger.setDisplayed(false);
21521         }
21522         this.initTrigger();
21523         if(!this.width){
21524             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
21525         }
21526     },
21527
21528     // private
21529     initTrigger : function(){
21530         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
21531         this.trigger.addClassOnOver('x-form-trigger-over');
21532         this.trigger.addClassOnClick('x-form-trigger-click');
21533     },
21534
21535     // private
21536     onDestroy : function(){
21537         if(this.trigger){
21538             this.trigger.removeAllListeners();
21539             this.trigger.remove();
21540         }
21541         if(this.wrap){
21542             this.wrap.remove();
21543         }
21544         Roo.form.TriggerField.superclass.onDestroy.call(this);
21545     },
21546
21547     // private
21548     onFocus : function(){
21549         Roo.form.TriggerField.superclass.onFocus.call(this);
21550         if(!this.mimicing){
21551             this.wrap.addClass('x-trigger-wrap-focus');
21552             this.mimicing = true;
21553             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
21554             if(this.monitorTab){
21555                 this.el.on("keydown", this.checkTab, this);
21556             }
21557         }
21558     },
21559
21560     // private
21561     checkTab : function(e){
21562         if(e.getKey() == e.TAB){
21563             this.triggerBlur();
21564         }
21565     },
21566
21567     // private
21568     onBlur : function(){
21569         // do nothing
21570     },
21571
21572     // private
21573     mimicBlur : function(e, t){
21574         if(!this.wrap.contains(t) && this.validateBlur()){
21575             this.triggerBlur();
21576         }
21577     },
21578
21579     // private
21580     triggerBlur : function(){
21581         this.mimicing = false;
21582         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
21583         if(this.monitorTab){
21584             this.el.un("keydown", this.checkTab, this);
21585         }
21586         this.wrap.removeClass('x-trigger-wrap-focus');
21587         Roo.form.TriggerField.superclass.onBlur.call(this);
21588     },
21589
21590     // private
21591     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
21592     validateBlur : function(e, t){
21593         return true;
21594     },
21595
21596     // private
21597     onDisable : function(){
21598         Roo.form.TriggerField.superclass.onDisable.call(this);
21599         if(this.wrap){
21600             this.wrap.addClass('x-item-disabled');
21601         }
21602     },
21603
21604     // private
21605     onEnable : function(){
21606         Roo.form.TriggerField.superclass.onEnable.call(this);
21607         if(this.wrap){
21608             this.wrap.removeClass('x-item-disabled');
21609         }
21610     },
21611
21612     // private
21613     onShow : function(){
21614         var ae = this.getActionEl();
21615         
21616         if(ae){
21617             ae.dom.style.display = '';
21618             ae.dom.style.visibility = 'visible';
21619         }
21620     },
21621
21622     // private
21623     
21624     onHide : function(){
21625         var ae = this.getActionEl();
21626         ae.dom.style.display = 'none';
21627     },
21628
21629     /**
21630      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
21631      * by an implementing function.
21632      * @method
21633      * @param {EventObject} e
21634      */
21635     onTriggerClick : Roo.emptyFn
21636 });
21637
21638 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
21639 // to be extended by an implementing class.  For an example of implementing this class, see the custom
21640 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
21641 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
21642     initComponent : function(){
21643         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
21644
21645         this.triggerConfig = {
21646             tag:'span', cls:'x-form-twin-triggers', cn:[
21647             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
21648             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
21649         ]};
21650     },
21651
21652     getTrigger : function(index){
21653         return this.triggers[index];
21654     },
21655
21656     initTrigger : function(){
21657         var ts = this.trigger.select('.x-form-trigger', true);
21658         this.wrap.setStyle('overflow', 'hidden');
21659         var triggerField = this;
21660         ts.each(function(t, all, index){
21661             t.hide = function(){
21662                 var w = triggerField.wrap.getWidth();
21663                 this.dom.style.display = 'none';
21664                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21665             };
21666             t.show = function(){
21667                 var w = triggerField.wrap.getWidth();
21668                 this.dom.style.display = '';
21669                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21670             };
21671             var triggerIndex = 'Trigger'+(index+1);
21672
21673             if(this['hide'+triggerIndex]){
21674                 t.dom.style.display = 'none';
21675             }
21676             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
21677             t.addClassOnOver('x-form-trigger-over');
21678             t.addClassOnClick('x-form-trigger-click');
21679         }, this);
21680         this.triggers = ts.elements;
21681     },
21682
21683     onTrigger1Click : Roo.emptyFn,
21684     onTrigger2Click : Roo.emptyFn
21685 });/*
21686  * Based on:
21687  * Ext JS Library 1.1.1
21688  * Copyright(c) 2006-2007, Ext JS, LLC.
21689  *
21690  * Originally Released Under LGPL - original licence link has changed is not relivant.
21691  *
21692  * Fork - LGPL
21693  * <script type="text/javascript">
21694  */
21695  
21696 /**
21697  * @class Roo.form.TextArea
21698  * @extends Roo.form.TextField
21699  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
21700  * support for auto-sizing.
21701  * @constructor
21702  * Creates a new TextArea
21703  * @param {Object} config Configuration options
21704  */
21705 Roo.form.TextArea = function(config){
21706     Roo.form.TextArea.superclass.constructor.call(this, config);
21707     // these are provided exchanges for backwards compat
21708     // minHeight/maxHeight were replaced by growMin/growMax to be
21709     // compatible with TextField growing config values
21710     if(this.minHeight !== undefined){
21711         this.growMin = this.minHeight;
21712     }
21713     if(this.maxHeight !== undefined){
21714         this.growMax = this.maxHeight;
21715     }
21716 };
21717
21718 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
21719     /**
21720      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
21721      */
21722     growMin : 60,
21723     /**
21724      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
21725      */
21726     growMax: 1000,
21727     /**
21728      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
21729      * in the field (equivalent to setting overflow: hidden, defaults to false)
21730      */
21731     preventScrollbars: false,
21732     /**
21733      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21734      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
21735      */
21736
21737     // private
21738     onRender : function(ct, position){
21739         if(!this.el){
21740             this.defaultAutoCreate = {
21741                 tag: "textarea",
21742                 style:"width:300px;height:60px;",
21743                 autocomplete: "off"
21744             };
21745         }
21746         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
21747         if(this.grow){
21748             this.textSizeEl = Roo.DomHelper.append(document.body, {
21749                 tag: "pre", cls: "x-form-grow-sizer"
21750             });
21751             if(this.preventScrollbars){
21752                 this.el.setStyle("overflow", "hidden");
21753             }
21754             this.el.setHeight(this.growMin);
21755         }
21756     },
21757
21758     onDestroy : function(){
21759         if(this.textSizeEl){
21760             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
21761         }
21762         Roo.form.TextArea.superclass.onDestroy.call(this);
21763     },
21764
21765     // private
21766     onKeyUp : function(e){
21767         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
21768             this.autoSize();
21769         }
21770     },
21771
21772     /**
21773      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
21774      * This only takes effect if grow = true, and fires the autosize event if the height changes.
21775      */
21776     autoSize : function(){
21777         if(!this.grow || !this.textSizeEl){
21778             return;
21779         }
21780         var el = this.el;
21781         var v = el.dom.value;
21782         var ts = this.textSizeEl;
21783
21784         ts.innerHTML = '';
21785         ts.appendChild(document.createTextNode(v));
21786         v = ts.innerHTML;
21787
21788         Roo.fly(ts).setWidth(this.el.getWidth());
21789         if(v.length < 1){
21790             v = "&#160;&#160;";
21791         }else{
21792             if(Roo.isIE){
21793                 v = v.replace(/\n/g, '<p>&#160;</p>');
21794             }
21795             v += "&#160;\n&#160;";
21796         }
21797         ts.innerHTML = v;
21798         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
21799         if(h != this.lastHeight){
21800             this.lastHeight = h;
21801             this.el.setHeight(h);
21802             this.fireEvent("autosize", this, h);
21803         }
21804     }
21805 });/*
21806  * Based on:
21807  * Ext JS Library 1.1.1
21808  * Copyright(c) 2006-2007, Ext JS, LLC.
21809  *
21810  * Originally Released Under LGPL - original licence link has changed is not relivant.
21811  *
21812  * Fork - LGPL
21813  * <script type="text/javascript">
21814  */
21815  
21816
21817 /**
21818  * @class Roo.form.NumberField
21819  * @extends Roo.form.TextField
21820  * Numeric text field that provides automatic keystroke filtering and numeric validation.
21821  * @constructor
21822  * Creates a new NumberField
21823  * @param {Object} config Configuration options
21824  */
21825 Roo.form.NumberField = function(config){
21826     Roo.form.NumberField.superclass.constructor.call(this, config);
21827 };
21828
21829 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
21830     /**
21831      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
21832      */
21833     fieldClass: "x-form-field x-form-num-field",
21834     /**
21835      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
21836      */
21837     allowDecimals : true,
21838     /**
21839      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
21840      */
21841     decimalSeparator : ".",
21842     /**
21843      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
21844      */
21845     decimalPrecision : 2,
21846     /**
21847      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
21848      */
21849     allowNegative : true,
21850     /**
21851      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
21852      */
21853     minValue : Number.NEGATIVE_INFINITY,
21854     /**
21855      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
21856      */
21857     maxValue : Number.MAX_VALUE,
21858     /**
21859      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
21860      */
21861     minText : "The minimum value for this field is {0}",
21862     /**
21863      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
21864      */
21865     maxText : "The maximum value for this field is {0}",
21866     /**
21867      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
21868      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
21869      */
21870     nanText : "{0} is not a valid number",
21871
21872     // private
21873     initEvents : function(){
21874         Roo.form.NumberField.superclass.initEvents.call(this);
21875         var allowed = "0123456789";
21876         if(this.allowDecimals){
21877             allowed += this.decimalSeparator;
21878         }
21879         if(this.allowNegative){
21880             allowed += "-";
21881         }
21882         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
21883         var keyPress = function(e){
21884             var k = e.getKey();
21885             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
21886                 return;
21887             }
21888             var c = e.getCharCode();
21889             if(allowed.indexOf(String.fromCharCode(c)) === -1){
21890                 e.stopEvent();
21891             }
21892         };
21893         this.el.on("keypress", keyPress, this);
21894     },
21895
21896     // private
21897     validateValue : function(value){
21898         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
21899             return false;
21900         }
21901         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
21902              return true;
21903         }
21904         var num = this.parseValue(value);
21905         if(isNaN(num)){
21906             this.markInvalid(String.format(this.nanText, value));
21907             return false;
21908         }
21909         if(num < this.minValue){
21910             this.markInvalid(String.format(this.minText, this.minValue));
21911             return false;
21912         }
21913         if(num > this.maxValue){
21914             this.markInvalid(String.format(this.maxText, this.maxValue));
21915             return false;
21916         }
21917         return true;
21918     },
21919
21920     getValue : function(){
21921         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
21922     },
21923
21924     // private
21925     parseValue : function(value){
21926         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
21927         return isNaN(value) ? '' : value;
21928     },
21929
21930     // private
21931     fixPrecision : function(value){
21932         var nan = isNaN(value);
21933         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
21934             return nan ? '' : value;
21935         }
21936         return parseFloat(value).toFixed(this.decimalPrecision);
21937     },
21938
21939     setValue : function(v){
21940         v = this.fixPrecision(v);
21941         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
21942     },
21943
21944     // private
21945     decimalPrecisionFcn : function(v){
21946         return Math.floor(v);
21947     },
21948
21949     beforeBlur : function(){
21950         var v = this.parseValue(this.getRawValue());
21951         if(v){
21952             this.setValue(v);
21953         }
21954     }
21955 });/*
21956  * Based on:
21957  * Ext JS Library 1.1.1
21958  * Copyright(c) 2006-2007, Ext JS, LLC.
21959  *
21960  * Originally Released Under LGPL - original licence link has changed is not relivant.
21961  *
21962  * Fork - LGPL
21963  * <script type="text/javascript">
21964  */
21965  
21966 /**
21967  * @class Roo.form.DateField
21968  * @extends Roo.form.TriggerField
21969  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
21970 * @constructor
21971 * Create a new DateField
21972 * @param {Object} config
21973  */
21974 Roo.form.DateField = function(config){
21975     Roo.form.DateField.superclass.constructor.call(this, config);
21976     
21977       this.addEvents({
21978          
21979         /**
21980          * @event select
21981          * Fires when a date is selected
21982              * @param {Roo.form.DateField} combo This combo box
21983              * @param {Date} date The date selected
21984              */
21985         'select' : true
21986          
21987     });
21988     
21989     
21990     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
21991     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
21992     this.ddMatch = null;
21993     if(this.disabledDates){
21994         var dd = this.disabledDates;
21995         var re = "(?:";
21996         for(var i = 0; i < dd.length; i++){
21997             re += dd[i];
21998             if(i != dd.length-1) re += "|";
21999         }
22000         this.ddMatch = new RegExp(re + ")");
22001     }
22002 };
22003
22004 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
22005     /**
22006      * @cfg {String} format
22007      * The default date format string which can be overriden for localization support.  The format must be
22008      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22009      */
22010     format : "m/d/y",
22011     /**
22012      * @cfg {String} altFormats
22013      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22014      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22015      */
22016     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
22017     /**
22018      * @cfg {Array} disabledDays
22019      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22020      */
22021     disabledDays : null,
22022     /**
22023      * @cfg {String} disabledDaysText
22024      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22025      */
22026     disabledDaysText : "Disabled",
22027     /**
22028      * @cfg {Array} disabledDates
22029      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22030      * expression so they are very powerful. Some examples:
22031      * <ul>
22032      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22033      * <li>["03/08", "09/16"] would disable those days for every year</li>
22034      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22035      * <li>["03/../2006"] would disable every day in March 2006</li>
22036      * <li>["^03"] would disable every day in every March</li>
22037      * </ul>
22038      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22039      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22040      */
22041     disabledDates : null,
22042     /**
22043      * @cfg {String} disabledDatesText
22044      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22045      */
22046     disabledDatesText : "Disabled",
22047     /**
22048      * @cfg {Date/String} minValue
22049      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22050      * valid format (defaults to null).
22051      */
22052     minValue : null,
22053     /**
22054      * @cfg {Date/String} maxValue
22055      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22056      * valid format (defaults to null).
22057      */
22058     maxValue : null,
22059     /**
22060      * @cfg {String} minText
22061      * The error text to display when the date in the cell is before minValue (defaults to
22062      * 'The date in this field must be after {minValue}').
22063      */
22064     minText : "The date in this field must be equal to or after {0}",
22065     /**
22066      * @cfg {String} maxText
22067      * The error text to display when the date in the cell is after maxValue (defaults to
22068      * 'The date in this field must be before {maxValue}').
22069      */
22070     maxText : "The date in this field must be equal to or before {0}",
22071     /**
22072      * @cfg {String} invalidText
22073      * The error text to display when the date in the field is invalid (defaults to
22074      * '{value} is not a valid date - it must be in the format {format}').
22075      */
22076     invalidText : "{0} is not a valid date - it must be in the format {1}",
22077     /**
22078      * @cfg {String} triggerClass
22079      * An additional CSS class used to style the trigger button.  The trigger will always get the
22080      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22081      * which displays a calendar icon).
22082      */
22083     triggerClass : 'x-form-date-trigger',
22084     
22085
22086     /**
22087      * @cfg {Boolean} useIso
22088      * if enabled, then the date field will use a hidden field to store the 
22089      * real value as iso formated date. default (false)
22090      */ 
22091     useIso : false,
22092     /**
22093      * @cfg {String/Object} autoCreate
22094      * A DomHelper element spec, or true for a default element spec (defaults to
22095      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22096      */ 
22097     // private
22098     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22099     
22100     // private
22101     hiddenField: false,
22102     
22103     onRender : function(ct, position)
22104     {
22105         Roo.form.DateField.superclass.onRender.call(this, ct, position);
22106         if (this.useIso) {
22107             //this.el.dom.removeAttribute('name'); 
22108             Roo.log("Changing name?");
22109             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
22110             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22111                     'before', true);
22112             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22113             // prevent input submission
22114             this.hiddenName = this.name;
22115         }
22116             
22117             
22118     },
22119     
22120     // private
22121     validateValue : function(value)
22122     {
22123         value = this.formatDate(value);
22124         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
22125             Roo.log('super failed');
22126             return false;
22127         }
22128         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22129              return true;
22130         }
22131         var svalue = value;
22132         value = this.parseDate(value);
22133         if(!value){
22134             Roo.log('parse date failed' + svalue);
22135             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22136             return false;
22137         }
22138         var time = value.getTime();
22139         if(this.minValue && time < this.minValue.getTime()){
22140             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22141             return false;
22142         }
22143         if(this.maxValue && time > this.maxValue.getTime()){
22144             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22145             return false;
22146         }
22147         if(this.disabledDays){
22148             var day = value.getDay();
22149             for(var i = 0; i < this.disabledDays.length; i++) {
22150                 if(day === this.disabledDays[i]){
22151                     this.markInvalid(this.disabledDaysText);
22152                     return false;
22153                 }
22154             }
22155         }
22156         var fvalue = this.formatDate(value);
22157         if(this.ddMatch && this.ddMatch.test(fvalue)){
22158             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22159             return false;
22160         }
22161         return true;
22162     },
22163
22164     // private
22165     // Provides logic to override the default TriggerField.validateBlur which just returns true
22166     validateBlur : function(){
22167         return !this.menu || !this.menu.isVisible();
22168     },
22169     
22170     getName: function()
22171     {
22172         // returns hidden if it's set..
22173         if (!this.rendered) {return ''};
22174         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
22175         
22176     },
22177
22178     /**
22179      * Returns the current date value of the date field.
22180      * @return {Date} The date value
22181      */
22182     getValue : function(){
22183         
22184         return  this.hiddenField ?
22185                 this.hiddenField.value :
22186                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
22187     },
22188
22189     /**
22190      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22191      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
22192      * (the default format used is "m/d/y").
22193      * <br />Usage:
22194      * <pre><code>
22195 //All of these calls set the same date value (May 4, 2006)
22196
22197 //Pass a date object:
22198 var dt = new Date('5/4/06');
22199 dateField.setValue(dt);
22200
22201 //Pass a date string (default format):
22202 dateField.setValue('5/4/06');
22203
22204 //Pass a date string (custom format):
22205 dateField.format = 'Y-m-d';
22206 dateField.setValue('2006-5-4');
22207 </code></pre>
22208      * @param {String/Date} date The date or valid date string
22209      */
22210     setValue : function(date){
22211         if (this.hiddenField) {
22212             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22213         }
22214         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22215         // make sure the value field is always stored as a date..
22216         this.value = this.parseDate(date);
22217         
22218         
22219     },
22220
22221     // private
22222     parseDate : function(value){
22223         if(!value || value instanceof Date){
22224             return value;
22225         }
22226         var v = Date.parseDate(value, this.format);
22227          if (!v && this.useIso) {
22228             v = Date.parseDate(value, 'Y-m-d');
22229         }
22230         if(!v && this.altFormats){
22231             if(!this.altFormatsArray){
22232                 this.altFormatsArray = this.altFormats.split("|");
22233             }
22234             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22235                 v = Date.parseDate(value, this.altFormatsArray[i]);
22236             }
22237         }
22238         return v;
22239     },
22240
22241     // private
22242     formatDate : function(date, fmt){
22243         return (!date || !(date instanceof Date)) ?
22244                date : date.dateFormat(fmt || this.format);
22245     },
22246
22247     // private
22248     menuListeners : {
22249         select: function(m, d){
22250             
22251             this.setValue(d);
22252             this.fireEvent('select', this, d);
22253         },
22254         show : function(){ // retain focus styling
22255             this.onFocus();
22256         },
22257         hide : function(){
22258             this.focus.defer(10, this);
22259             var ml = this.menuListeners;
22260             this.menu.un("select", ml.select,  this);
22261             this.menu.un("show", ml.show,  this);
22262             this.menu.un("hide", ml.hide,  this);
22263         }
22264     },
22265
22266     // private
22267     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22268     onTriggerClick : function(){
22269         if(this.disabled){
22270             return;
22271         }
22272         if(this.menu == null){
22273             this.menu = new Roo.menu.DateMenu();
22274         }
22275         Roo.apply(this.menu.picker,  {
22276             showClear: this.allowBlank,
22277             minDate : this.minValue,
22278             maxDate : this.maxValue,
22279             disabledDatesRE : this.ddMatch,
22280             disabledDatesText : this.disabledDatesText,
22281             disabledDays : this.disabledDays,
22282             disabledDaysText : this.disabledDaysText,
22283             format : this.useIso ? 'Y-m-d' : this.format,
22284             minText : String.format(this.minText, this.formatDate(this.minValue)),
22285             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22286         });
22287         this.menu.on(Roo.apply({}, this.menuListeners, {
22288             scope:this
22289         }));
22290         this.menu.picker.setValue(this.getValue() || new Date());
22291         this.menu.show(this.el, "tl-bl?");
22292     },
22293
22294     beforeBlur : function(){
22295         var v = this.parseDate(this.getRawValue());
22296         if(v){
22297             this.setValue(v);
22298         }
22299     },
22300
22301     /*@
22302      * overide
22303      * 
22304      */
22305     isDirty : function() {
22306         if(this.disabled) {
22307             return false;
22308         }
22309         
22310         if(typeof(this.startValue) === 'undefined'){
22311             return false;
22312         }
22313         
22314         return String(this.getValue()) !== String(this.startValue);
22315         
22316     }
22317 });/*
22318  * Based on:
22319  * Ext JS Library 1.1.1
22320  * Copyright(c) 2006-2007, Ext JS, LLC.
22321  *
22322  * Originally Released Under LGPL - original licence link has changed is not relivant.
22323  *
22324  * Fork - LGPL
22325  * <script type="text/javascript">
22326  */
22327  
22328 /**
22329  * @class Roo.form.MonthField
22330  * @extends Roo.form.TriggerField
22331  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
22332 * @constructor
22333 * Create a new MonthField
22334 * @param {Object} config
22335  */
22336 Roo.form.MonthField = function(config){
22337     
22338     Roo.form.MonthField.superclass.constructor.call(this, config);
22339     
22340       this.addEvents({
22341          
22342         /**
22343          * @event select
22344          * Fires when a date is selected
22345              * @param {Roo.form.MonthFieeld} combo This combo box
22346              * @param {Date} date The date selected
22347              */
22348         'select' : true
22349          
22350     });
22351     
22352     
22353     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
22354     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22355     this.ddMatch = null;
22356     if(this.disabledDates){
22357         var dd = this.disabledDates;
22358         var re = "(?:";
22359         for(var i = 0; i < dd.length; i++){
22360             re += dd[i];
22361             if(i != dd.length-1) re += "|";
22362         }
22363         this.ddMatch = new RegExp(re + ")");
22364     }
22365 };
22366
22367 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
22368     /**
22369      * @cfg {String} format
22370      * The default date format string which can be overriden for localization support.  The format must be
22371      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22372      */
22373     format : "M Y",
22374     /**
22375      * @cfg {String} altFormats
22376      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22377      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22378      */
22379     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
22380     /**
22381      * @cfg {Array} disabledDays
22382      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22383      */
22384     disabledDays : [0,1,2,3,4,5,6],
22385     /**
22386      * @cfg {String} disabledDaysText
22387      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22388      */
22389     disabledDaysText : "Disabled",
22390     /**
22391      * @cfg {Array} disabledDates
22392      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22393      * expression so they are very powerful. Some examples:
22394      * <ul>
22395      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22396      * <li>["03/08", "09/16"] would disable those days for every year</li>
22397      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22398      * <li>["03/../2006"] would disable every day in March 2006</li>
22399      * <li>["^03"] would disable every day in every March</li>
22400      * </ul>
22401      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22402      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22403      */
22404     disabledDates : null,
22405     /**
22406      * @cfg {String} disabledDatesText
22407      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22408      */
22409     disabledDatesText : "Disabled",
22410     /**
22411      * @cfg {Date/String} minValue
22412      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22413      * valid format (defaults to null).
22414      */
22415     minValue : null,
22416     /**
22417      * @cfg {Date/String} maxValue
22418      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22419      * valid format (defaults to null).
22420      */
22421     maxValue : null,
22422     /**
22423      * @cfg {String} minText
22424      * The error text to display when the date in the cell is before minValue (defaults to
22425      * 'The date in this field must be after {minValue}').
22426      */
22427     minText : "The date in this field must be equal to or after {0}",
22428     /**
22429      * @cfg {String} maxTextf
22430      * The error text to display when the date in the cell is after maxValue (defaults to
22431      * 'The date in this field must be before {maxValue}').
22432      */
22433     maxText : "The date in this field must be equal to or before {0}",
22434     /**
22435      * @cfg {String} invalidText
22436      * The error text to display when the date in the field is invalid (defaults to
22437      * '{value} is not a valid date - it must be in the format {format}').
22438      */
22439     invalidText : "{0} is not a valid date - it must be in the format {1}",
22440     /**
22441      * @cfg {String} triggerClass
22442      * An additional CSS class used to style the trigger button.  The trigger will always get the
22443      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22444      * which displays a calendar icon).
22445      */
22446     triggerClass : 'x-form-date-trigger',
22447     
22448
22449     /**
22450      * @cfg {Boolean} useIso
22451      * if enabled, then the date field will use a hidden field to store the 
22452      * real value as iso formated date. default (true)
22453      */ 
22454     useIso : true,
22455     /**
22456      * @cfg {String/Object} autoCreate
22457      * A DomHelper element spec, or true for a default element spec (defaults to
22458      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22459      */ 
22460     // private
22461     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22462     
22463     // private
22464     hiddenField: false,
22465     
22466     hideMonthPicker : false,
22467     
22468     onRender : function(ct, position)
22469     {
22470         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
22471         if (this.useIso) {
22472             this.el.dom.removeAttribute('name'); 
22473             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22474                     'before', true);
22475             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22476             // prevent input submission
22477             this.hiddenName = this.name;
22478         }
22479             
22480             
22481     },
22482     
22483     // private
22484     validateValue : function(value)
22485     {
22486         value = this.formatDate(value);
22487         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
22488             return false;
22489         }
22490         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22491              return true;
22492         }
22493         var svalue = value;
22494         value = this.parseDate(value);
22495         if(!value){
22496             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22497             return false;
22498         }
22499         var time = value.getTime();
22500         if(this.minValue && time < this.minValue.getTime()){
22501             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22502             return false;
22503         }
22504         if(this.maxValue && time > this.maxValue.getTime()){
22505             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22506             return false;
22507         }
22508         /*if(this.disabledDays){
22509             var day = value.getDay();
22510             for(var i = 0; i < this.disabledDays.length; i++) {
22511                 if(day === this.disabledDays[i]){
22512                     this.markInvalid(this.disabledDaysText);
22513                     return false;
22514                 }
22515             }
22516         }
22517         */
22518         var fvalue = this.formatDate(value);
22519         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
22520             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22521             return false;
22522         }
22523         */
22524         return true;
22525     },
22526
22527     // private
22528     // Provides logic to override the default TriggerField.validateBlur which just returns true
22529     validateBlur : function(){
22530         return !this.menu || !this.menu.isVisible();
22531     },
22532
22533     /**
22534      * Returns the current date value of the date field.
22535      * @return {Date} The date value
22536      */
22537     getValue : function(){
22538         
22539         
22540         
22541         return  this.hiddenField ?
22542                 this.hiddenField.value :
22543                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
22544     },
22545
22546     /**
22547      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22548      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
22549      * (the default format used is "m/d/y").
22550      * <br />Usage:
22551      * <pre><code>
22552 //All of these calls set the same date value (May 4, 2006)
22553
22554 //Pass a date object:
22555 var dt = new Date('5/4/06');
22556 monthField.setValue(dt);
22557
22558 //Pass a date string (default format):
22559 monthField.setValue('5/4/06');
22560
22561 //Pass a date string (custom format):
22562 monthField.format = 'Y-m-d';
22563 monthField.setValue('2006-5-4');
22564 </code></pre>
22565      * @param {String/Date} date The date or valid date string
22566      */
22567     setValue : function(date){
22568         Roo.log('month setValue' + date);
22569         // can only be first of month..
22570         
22571         var val = this.parseDate(date);
22572         
22573         if (this.hiddenField) {
22574             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22575         }
22576         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22577         this.value = this.parseDate(date);
22578     },
22579
22580     // private
22581     parseDate : function(value){
22582         if(!value || value instanceof Date){
22583             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
22584             return value;
22585         }
22586         var v = Date.parseDate(value, this.format);
22587         if (!v && this.useIso) {
22588             v = Date.parseDate(value, 'Y-m-d');
22589         }
22590         if (v) {
22591             // 
22592             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
22593         }
22594         
22595         
22596         if(!v && this.altFormats){
22597             if(!this.altFormatsArray){
22598                 this.altFormatsArray = this.altFormats.split("|");
22599             }
22600             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22601                 v = Date.parseDate(value, this.altFormatsArray[i]);
22602             }
22603         }
22604         return v;
22605     },
22606
22607     // private
22608     formatDate : function(date, fmt){
22609         return (!date || !(date instanceof Date)) ?
22610                date : date.dateFormat(fmt || this.format);
22611     },
22612
22613     // private
22614     menuListeners : {
22615         select: function(m, d){
22616             this.setValue(d);
22617             this.fireEvent('select', this, d);
22618         },
22619         show : function(){ // retain focus styling
22620             this.onFocus();
22621         },
22622         hide : function(){
22623             this.focus.defer(10, this);
22624             var ml = this.menuListeners;
22625             this.menu.un("select", ml.select,  this);
22626             this.menu.un("show", ml.show,  this);
22627             this.menu.un("hide", ml.hide,  this);
22628         }
22629     },
22630     // private
22631     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22632     onTriggerClick : function(){
22633         if(this.disabled){
22634             return;
22635         }
22636         if(this.menu == null){
22637             this.menu = new Roo.menu.DateMenu();
22638            
22639         }
22640         
22641         Roo.apply(this.menu.picker,  {
22642             
22643             showClear: this.allowBlank,
22644             minDate : this.minValue,
22645             maxDate : this.maxValue,
22646             disabledDatesRE : this.ddMatch,
22647             disabledDatesText : this.disabledDatesText,
22648             
22649             format : this.useIso ? 'Y-m-d' : this.format,
22650             minText : String.format(this.minText, this.formatDate(this.minValue)),
22651             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22652             
22653         });
22654          this.menu.on(Roo.apply({}, this.menuListeners, {
22655             scope:this
22656         }));
22657        
22658         
22659         var m = this.menu;
22660         var p = m.picker;
22661         
22662         // hide month picker get's called when we called by 'before hide';
22663         
22664         var ignorehide = true;
22665         p.hideMonthPicker  = function(disableAnim){
22666             if (ignorehide) {
22667                 return;
22668             }
22669              if(this.monthPicker){
22670                 Roo.log("hideMonthPicker called");
22671                 if(disableAnim === true){
22672                     this.monthPicker.hide();
22673                 }else{
22674                     this.monthPicker.slideOut('t', {duration:.2});
22675                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
22676                     p.fireEvent("select", this, this.value);
22677                     m.hide();
22678                 }
22679             }
22680         }
22681         
22682         Roo.log('picker set value');
22683         Roo.log(this.getValue());
22684         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
22685         m.show(this.el, 'tl-bl?');
22686         ignorehide  = false;
22687         // this will trigger hideMonthPicker..
22688         
22689         
22690         // hidden the day picker
22691         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
22692         
22693         
22694         
22695       
22696         
22697         p.showMonthPicker.defer(100, p);
22698     
22699         
22700        
22701     },
22702
22703     beforeBlur : function(){
22704         var v = this.parseDate(this.getRawValue());
22705         if(v){
22706             this.setValue(v);
22707         }
22708     }
22709
22710     /** @cfg {Boolean} grow @hide */
22711     /** @cfg {Number} growMin @hide */
22712     /** @cfg {Number} growMax @hide */
22713     /**
22714      * @hide
22715      * @method autoSize
22716      */
22717 });/*
22718  * Based on:
22719  * Ext JS Library 1.1.1
22720  * Copyright(c) 2006-2007, Ext JS, LLC.
22721  *
22722  * Originally Released Under LGPL - original licence link has changed is not relivant.
22723  *
22724  * Fork - LGPL
22725  * <script type="text/javascript">
22726  */
22727  
22728
22729 /**
22730  * @class Roo.form.ComboBox
22731  * @extends Roo.form.TriggerField
22732  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
22733  * @constructor
22734  * Create a new ComboBox.
22735  * @param {Object} config Configuration options
22736  */
22737 Roo.form.ComboBox = function(config){
22738     Roo.form.ComboBox.superclass.constructor.call(this, config);
22739     this.addEvents({
22740         /**
22741          * @event expand
22742          * Fires when the dropdown list is expanded
22743              * @param {Roo.form.ComboBox} combo This combo box
22744              */
22745         'expand' : true,
22746         /**
22747          * @event collapse
22748          * Fires when the dropdown list is collapsed
22749              * @param {Roo.form.ComboBox} combo This combo box
22750              */
22751         'collapse' : true,
22752         /**
22753          * @event beforeselect
22754          * Fires before a list item is selected. Return false to cancel the selection.
22755              * @param {Roo.form.ComboBox} combo This combo box
22756              * @param {Roo.data.Record} record The data record returned from the underlying store
22757              * @param {Number} index The index of the selected item in the dropdown list
22758              */
22759         'beforeselect' : true,
22760         /**
22761          * @event select
22762          * Fires when a list item is selected
22763              * @param {Roo.form.ComboBox} combo This combo box
22764              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
22765              * @param {Number} index The index of the selected item in the dropdown list
22766              */
22767         'select' : true,
22768         /**
22769          * @event beforequery
22770          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
22771          * The event object passed has these properties:
22772              * @param {Roo.form.ComboBox} combo This combo box
22773              * @param {String} query The query
22774              * @param {Boolean} forceAll true to force "all" query
22775              * @param {Boolean} cancel true to cancel the query
22776              * @param {Object} e The query event object
22777              */
22778         'beforequery': true,
22779          /**
22780          * @event add
22781          * Fires when the 'add' icon is pressed (add a listener to enable add button)
22782              * @param {Roo.form.ComboBox} combo This combo box
22783              */
22784         'add' : true,
22785         /**
22786          * @event edit
22787          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
22788              * @param {Roo.form.ComboBox} combo This combo box
22789              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
22790              */
22791         'edit' : true
22792         
22793         
22794     });
22795     if(this.transform){
22796         this.allowDomMove = false;
22797         var s = Roo.getDom(this.transform);
22798         if(!this.hiddenName){
22799             this.hiddenName = s.name;
22800         }
22801         if(!this.store){
22802             this.mode = 'local';
22803             var d = [], opts = s.options;
22804             for(var i = 0, len = opts.length;i < len; i++){
22805                 var o = opts[i];
22806                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
22807                 if(o.selected) {
22808                     this.value = value;
22809                 }
22810                 d.push([value, o.text]);
22811             }
22812             this.store = new Roo.data.SimpleStore({
22813                 'id': 0,
22814                 fields: ['value', 'text'],
22815                 data : d
22816             });
22817             this.valueField = 'value';
22818             this.displayField = 'text';
22819         }
22820         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
22821         if(!this.lazyRender){
22822             this.target = true;
22823             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
22824             s.parentNode.removeChild(s); // remove it
22825             this.render(this.el.parentNode);
22826         }else{
22827             s.parentNode.removeChild(s); // remove it
22828         }
22829
22830     }
22831     if (this.store) {
22832         this.store = Roo.factory(this.store, Roo.data);
22833     }
22834     
22835     this.selectedIndex = -1;
22836     if(this.mode == 'local'){
22837         if(config.queryDelay === undefined){
22838             this.queryDelay = 10;
22839         }
22840         if(config.minChars === undefined){
22841             this.minChars = 0;
22842         }
22843     }
22844 };
22845
22846 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
22847     /**
22848      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
22849      */
22850     /**
22851      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
22852      * rendering into an Roo.Editor, defaults to false)
22853      */
22854     /**
22855      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
22856      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
22857      */
22858     /**
22859      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
22860      */
22861     /**
22862      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
22863      * the dropdown list (defaults to undefined, with no header element)
22864      */
22865
22866      /**
22867      * @cfg {String/Roo.Template} tpl The template to use to render the output
22868      */
22869      
22870     // private
22871     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
22872     /**
22873      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
22874      */
22875     listWidth: undefined,
22876     /**
22877      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
22878      * mode = 'remote' or 'text' if mode = 'local')
22879      */
22880     displayField: undefined,
22881     /**
22882      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
22883      * mode = 'remote' or 'value' if mode = 'local'). 
22884      * Note: use of a valueField requires the user make a selection
22885      * in order for a value to be mapped.
22886      */
22887     valueField: undefined,
22888     
22889     
22890     /**
22891      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
22892      * field's data value (defaults to the underlying DOM element's name)
22893      */
22894     hiddenName: undefined,
22895     /**
22896      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
22897      */
22898     listClass: '',
22899     /**
22900      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
22901      */
22902     selectedClass: 'x-combo-selected',
22903     /**
22904      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
22905      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
22906      * which displays a downward arrow icon).
22907      */
22908     triggerClass : 'x-form-arrow-trigger',
22909     /**
22910      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
22911      */
22912     shadow:'sides',
22913     /**
22914      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
22915      * anchor positions (defaults to 'tl-bl')
22916      */
22917     listAlign: 'tl-bl?',
22918     /**
22919      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
22920      */
22921     maxHeight: 300,
22922     /**
22923      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
22924      * query specified by the allQuery config option (defaults to 'query')
22925      */
22926     triggerAction: 'query',
22927     /**
22928      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
22929      * (defaults to 4, does not apply if editable = false)
22930      */
22931     minChars : 4,
22932     /**
22933      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
22934      * delay (typeAheadDelay) if it matches a known value (defaults to false)
22935      */
22936     typeAhead: false,
22937     /**
22938      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
22939      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
22940      */
22941     queryDelay: 500,
22942     /**
22943      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
22944      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
22945      */
22946     pageSize: 0,
22947     /**
22948      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
22949      * when editable = true (defaults to false)
22950      */
22951     selectOnFocus:false,
22952     /**
22953      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
22954      */
22955     queryParam: 'query',
22956     /**
22957      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
22958      * when mode = 'remote' (defaults to 'Loading...')
22959      */
22960     loadingText: 'Loading...',
22961     /**
22962      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
22963      */
22964     resizable: false,
22965     /**
22966      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
22967      */
22968     handleHeight : 8,
22969     /**
22970      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
22971      * traditional select (defaults to true)
22972      */
22973     editable: true,
22974     /**
22975      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
22976      */
22977     allQuery: '',
22978     /**
22979      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
22980      */
22981     mode: 'remote',
22982     /**
22983      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
22984      * listWidth has a higher value)
22985      */
22986     minListWidth : 70,
22987     /**
22988      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
22989      * allow the user to set arbitrary text into the field (defaults to false)
22990      */
22991     forceSelection:false,
22992     /**
22993      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
22994      * if typeAhead = true (defaults to 250)
22995      */
22996     typeAheadDelay : 250,
22997     /**
22998      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
22999      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
23000      */
23001     valueNotFoundText : undefined,
23002     /**
23003      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
23004      */
23005     blockFocus : false,
23006     
23007     /**
23008      * @cfg {Boolean} disableClear Disable showing of clear button.
23009      */
23010     disableClear : false,
23011     /**
23012      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
23013      */
23014     alwaysQuery : false,
23015     
23016     //private
23017     addicon : false,
23018     editicon: false,
23019     
23020     // element that contains real text value.. (when hidden is used..)
23021      
23022     // private
23023     onRender : function(ct, position){
23024         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
23025         if(this.hiddenName){
23026             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
23027                     'before', true);
23028             this.hiddenField.value =
23029                 this.hiddenValue !== undefined ? this.hiddenValue :
23030                 this.value !== undefined ? this.value : '';
23031
23032             // prevent input submission
23033             this.el.dom.removeAttribute('name');
23034              
23035              
23036         }
23037         if(Roo.isGecko){
23038             this.el.dom.setAttribute('autocomplete', 'off');
23039         }
23040
23041         var cls = 'x-combo-list';
23042
23043         this.list = new Roo.Layer({
23044             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
23045         });
23046
23047         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
23048         this.list.setWidth(lw);
23049         this.list.swallowEvent('mousewheel');
23050         this.assetHeight = 0;
23051
23052         if(this.title){
23053             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
23054             this.assetHeight += this.header.getHeight();
23055         }
23056
23057         this.innerList = this.list.createChild({cls:cls+'-inner'});
23058         this.innerList.on('mouseover', this.onViewOver, this);
23059         this.innerList.on('mousemove', this.onViewMove, this);
23060         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23061         
23062         if(this.allowBlank && !this.pageSize && !this.disableClear){
23063             this.footer = this.list.createChild({cls:cls+'-ft'});
23064             this.pageTb = new Roo.Toolbar(this.footer);
23065            
23066         }
23067         if(this.pageSize){
23068             this.footer = this.list.createChild({cls:cls+'-ft'});
23069             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
23070                     {pageSize: this.pageSize});
23071             
23072         }
23073         
23074         if (this.pageTb && this.allowBlank && !this.disableClear) {
23075             var _this = this;
23076             this.pageTb.add(new Roo.Toolbar.Fill(), {
23077                 cls: 'x-btn-icon x-btn-clear',
23078                 text: '&#160;',
23079                 handler: function()
23080                 {
23081                     _this.collapse();
23082                     _this.clearValue();
23083                     _this.onSelect(false, -1);
23084                 }
23085             });
23086         }
23087         if (this.footer) {
23088             this.assetHeight += this.footer.getHeight();
23089         }
23090         
23091
23092         if(!this.tpl){
23093             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
23094         }
23095
23096         this.view = new Roo.View(this.innerList, this.tpl, {
23097             singleSelect:true, store: this.store, selectedClass: this.selectedClass
23098         });
23099
23100         this.view.on('click', this.onViewClick, this);
23101
23102         this.store.on('beforeload', this.onBeforeLoad, this);
23103         this.store.on('load', this.onLoad, this);
23104         this.store.on('loadexception', this.onLoadException, this);
23105
23106         if(this.resizable){
23107             this.resizer = new Roo.Resizable(this.list,  {
23108                pinned:true, handles:'se'
23109             });
23110             this.resizer.on('resize', function(r, w, h){
23111                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
23112                 this.listWidth = w;
23113                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
23114                 this.restrictHeight();
23115             }, this);
23116             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
23117         }
23118         if(!this.editable){
23119             this.editable = true;
23120             this.setEditable(false);
23121         }  
23122         
23123         
23124         if (typeof(this.events.add.listeners) != 'undefined') {
23125             
23126             this.addicon = this.wrap.createChild(
23127                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
23128        
23129             this.addicon.on('click', function(e) {
23130                 this.fireEvent('add', this);
23131             }, this);
23132         }
23133         if (typeof(this.events.edit.listeners) != 'undefined') {
23134             
23135             this.editicon = this.wrap.createChild(
23136                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
23137             if (this.addicon) {
23138                 this.editicon.setStyle('margin-left', '40px');
23139             }
23140             this.editicon.on('click', function(e) {
23141                 
23142                 // we fire even  if inothing is selected..
23143                 this.fireEvent('edit', this, this.lastData );
23144                 
23145             }, this);
23146         }
23147         
23148         
23149         
23150     },
23151
23152     // private
23153     initEvents : function(){
23154         Roo.form.ComboBox.superclass.initEvents.call(this);
23155
23156         this.keyNav = new Roo.KeyNav(this.el, {
23157             "up" : function(e){
23158                 this.inKeyMode = true;
23159                 this.selectPrev();
23160             },
23161
23162             "down" : function(e){
23163                 if(!this.isExpanded()){
23164                     this.onTriggerClick();
23165                 }else{
23166                     this.inKeyMode = true;
23167                     this.selectNext();
23168                 }
23169             },
23170
23171             "enter" : function(e){
23172                 this.onViewClick();
23173                 //return true;
23174             },
23175
23176             "esc" : function(e){
23177                 this.collapse();
23178             },
23179
23180             "tab" : function(e){
23181                 this.onViewClick(false);
23182                 this.fireEvent("specialkey", this, e);
23183                 return true;
23184             },
23185
23186             scope : this,
23187
23188             doRelay : function(foo, bar, hname){
23189                 if(hname == 'down' || this.scope.isExpanded()){
23190                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
23191                 }
23192                 return true;
23193             },
23194
23195             forceKeyDown: true
23196         });
23197         this.queryDelay = Math.max(this.queryDelay || 10,
23198                 this.mode == 'local' ? 10 : 250);
23199         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
23200         if(this.typeAhead){
23201             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
23202         }
23203         if(this.editable !== false){
23204             this.el.on("keyup", this.onKeyUp, this);
23205         }
23206         if(this.forceSelection){
23207             this.on('blur', this.doForce, this);
23208         }
23209     },
23210
23211     onDestroy : function(){
23212         if(this.view){
23213             this.view.setStore(null);
23214             this.view.el.removeAllListeners();
23215             this.view.el.remove();
23216             this.view.purgeListeners();
23217         }
23218         if(this.list){
23219             this.list.destroy();
23220         }
23221         if(this.store){
23222             this.store.un('beforeload', this.onBeforeLoad, this);
23223             this.store.un('load', this.onLoad, this);
23224             this.store.un('loadexception', this.onLoadException, this);
23225         }
23226         Roo.form.ComboBox.superclass.onDestroy.call(this);
23227     },
23228
23229     // private
23230     fireKey : function(e){
23231         if(e.isNavKeyPress() && !this.list.isVisible()){
23232             this.fireEvent("specialkey", this, e);
23233         }
23234     },
23235
23236     // private
23237     onResize: function(w, h){
23238         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
23239         
23240         if(typeof w != 'number'){
23241             // we do not handle it!?!?
23242             return;
23243         }
23244         var tw = this.trigger.getWidth();
23245         tw += this.addicon ? this.addicon.getWidth() : 0;
23246         tw += this.editicon ? this.editicon.getWidth() : 0;
23247         var x = w - tw;
23248         this.el.setWidth( this.adjustWidth('input', x));
23249             
23250         this.trigger.setStyle('left', x+'px');
23251         
23252         if(this.list && this.listWidth === undefined){
23253             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
23254             this.list.setWidth(lw);
23255             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23256         }
23257         
23258     
23259         
23260     },
23261
23262     /**
23263      * Allow or prevent the user from directly editing the field text.  If false is passed,
23264      * the user will only be able to select from the items defined in the dropdown list.  This method
23265      * is the runtime equivalent of setting the 'editable' config option at config time.
23266      * @param {Boolean} value True to allow the user to directly edit the field text
23267      */
23268     setEditable : function(value){
23269         if(value == this.editable){
23270             return;
23271         }
23272         this.editable = value;
23273         if(!value){
23274             this.el.dom.setAttribute('readOnly', true);
23275             this.el.on('mousedown', this.onTriggerClick,  this);
23276             this.el.addClass('x-combo-noedit');
23277         }else{
23278             this.el.dom.setAttribute('readOnly', false);
23279             this.el.un('mousedown', this.onTriggerClick,  this);
23280             this.el.removeClass('x-combo-noedit');
23281         }
23282     },
23283
23284     // private
23285     onBeforeLoad : function(){
23286         if(!this.hasFocus){
23287             return;
23288         }
23289         this.innerList.update(this.loadingText ?
23290                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
23291         this.restrictHeight();
23292         this.selectedIndex = -1;
23293     },
23294
23295     // private
23296     onLoad : function(){
23297         if(!this.hasFocus){
23298             return;
23299         }
23300         if(this.store.getCount() > 0){
23301             this.expand();
23302             this.restrictHeight();
23303             if(this.lastQuery == this.allQuery){
23304                 if(this.editable){
23305                     this.el.dom.select();
23306                 }
23307                 if(!this.selectByValue(this.value, true)){
23308                     this.select(0, true);
23309                 }
23310             }else{
23311                 this.selectNext();
23312                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
23313                     this.taTask.delay(this.typeAheadDelay);
23314                 }
23315             }
23316         }else{
23317             this.onEmptyResults();
23318         }
23319         //this.el.focus();
23320     },
23321     // private
23322     onLoadException : function()
23323     {
23324         this.collapse();
23325         Roo.log(this.store.reader.jsonData);
23326         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
23327             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
23328         }
23329         
23330         
23331     },
23332     // private
23333     onTypeAhead : function(){
23334         if(this.store.getCount() > 0){
23335             var r = this.store.getAt(0);
23336             var newValue = r.data[this.displayField];
23337             var len = newValue.length;
23338             var selStart = this.getRawValue().length;
23339             if(selStart != len){
23340                 this.setRawValue(newValue);
23341                 this.selectText(selStart, newValue.length);
23342             }
23343         }
23344     },
23345
23346     // private
23347     onSelect : function(record, index){
23348         if(this.fireEvent('beforeselect', this, record, index) !== false){
23349             this.setFromData(index > -1 ? record.data : false);
23350             this.collapse();
23351             this.fireEvent('select', this, record, index);
23352         }
23353     },
23354
23355     /**
23356      * Returns the currently selected field value or empty string if no value is set.
23357      * @return {String} value The selected value
23358      */
23359     getValue : function(){
23360         if(this.valueField){
23361             return typeof this.value != 'undefined' ? this.value : '';
23362         }else{
23363             return Roo.form.ComboBox.superclass.getValue.call(this);
23364         }
23365     },
23366
23367     /**
23368      * Clears any text/value currently set in the field
23369      */
23370     clearValue : function(){
23371         if(this.hiddenField){
23372             this.hiddenField.value = '';
23373         }
23374         this.value = '';
23375         this.setRawValue('');
23376         this.lastSelectionText = '';
23377         
23378     },
23379
23380     /**
23381      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
23382      * will be displayed in the field.  If the value does not match the data value of an existing item,
23383      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
23384      * Otherwise the field will be blank (although the value will still be set).
23385      * @param {String} value The value to match
23386      */
23387     setValue : function(v){
23388         var text = v;
23389         if(this.valueField){
23390             var r = this.findRecord(this.valueField, v);
23391             if(r){
23392                 text = r.data[this.displayField];
23393             }else if(this.valueNotFoundText !== undefined){
23394                 text = this.valueNotFoundText;
23395             }
23396         }
23397         this.lastSelectionText = text;
23398         if(this.hiddenField){
23399             this.hiddenField.value = v;
23400         }
23401         Roo.form.ComboBox.superclass.setValue.call(this, text);
23402         this.value = v;
23403     },
23404     /**
23405      * @property {Object} the last set data for the element
23406      */
23407     
23408     lastData : false,
23409     /**
23410      * Sets the value of the field based on a object which is related to the record format for the store.
23411      * @param {Object} value the value to set as. or false on reset?
23412      */
23413     setFromData : function(o){
23414         var dv = ''; // display value
23415         var vv = ''; // value value..
23416         this.lastData = o;
23417         if (this.displayField) {
23418             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
23419         } else {
23420             // this is an error condition!!!
23421             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
23422         }
23423         
23424         if(this.valueField){
23425             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
23426         }
23427         if(this.hiddenField){
23428             this.hiddenField.value = vv;
23429             
23430             this.lastSelectionText = dv;
23431             Roo.form.ComboBox.superclass.setValue.call(this, dv);
23432             this.value = vv;
23433             return;
23434         }
23435         // no hidden field.. - we store the value in 'value', but still display
23436         // display field!!!!
23437         this.lastSelectionText = dv;
23438         Roo.form.ComboBox.superclass.setValue.call(this, dv);
23439         this.value = vv;
23440         
23441         
23442     },
23443     // private
23444     reset : function(){
23445         // overridden so that last data is reset..
23446         this.setValue(this.resetValue);
23447         this.clearInvalid();
23448         this.lastData = false;
23449         if (this.view) {
23450             this.view.clearSelections();
23451         }
23452     },
23453     // private
23454     findRecord : function(prop, value){
23455         var record;
23456         if(this.store.getCount() > 0){
23457             this.store.each(function(r){
23458                 if(r.data[prop] == value){
23459                     record = r;
23460                     return false;
23461                 }
23462                 return true;
23463             });
23464         }
23465         return record;
23466     },
23467     
23468     getName: function()
23469     {
23470         // returns hidden if it's set..
23471         if (!this.rendered) {return ''};
23472         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
23473         
23474     },
23475     // private
23476     onViewMove : function(e, t){
23477         this.inKeyMode = false;
23478     },
23479
23480     // private
23481     onViewOver : function(e, t){
23482         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
23483             return;
23484         }
23485         var item = this.view.findItemFromChild(t);
23486         if(item){
23487             var index = this.view.indexOf(item);
23488             this.select(index, false);
23489         }
23490     },
23491
23492     // private
23493     onViewClick : function(doFocus)
23494     {
23495         var index = this.view.getSelectedIndexes()[0];
23496         var r = this.store.getAt(index);
23497         if(r){
23498             this.onSelect(r, index);
23499         }
23500         if(doFocus !== false && !this.blockFocus){
23501             this.el.focus();
23502         }
23503     },
23504
23505     // private
23506     restrictHeight : function(){
23507         this.innerList.dom.style.height = '';
23508         var inner = this.innerList.dom;
23509         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
23510         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
23511         this.list.beginUpdate();
23512         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
23513         this.list.alignTo(this.el, this.listAlign);
23514         this.list.endUpdate();
23515     },
23516
23517     // private
23518     onEmptyResults : function(){
23519         this.collapse();
23520     },
23521
23522     /**
23523      * Returns true if the dropdown list is expanded, else false.
23524      */
23525     isExpanded : function(){
23526         return this.list.isVisible();
23527     },
23528
23529     /**
23530      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
23531      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23532      * @param {String} value The data value of the item to select
23533      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23534      * selected item if it is not currently in view (defaults to true)
23535      * @return {Boolean} True if the value matched an item in the list, else false
23536      */
23537     selectByValue : function(v, scrollIntoView){
23538         if(v !== undefined && v !== null){
23539             var r = this.findRecord(this.valueField || this.displayField, v);
23540             if(r){
23541                 this.select(this.store.indexOf(r), scrollIntoView);
23542                 return true;
23543             }
23544         }
23545         return false;
23546     },
23547
23548     /**
23549      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
23550      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23551      * @param {Number} index The zero-based index of the list item to select
23552      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23553      * selected item if it is not currently in view (defaults to true)
23554      */
23555     select : function(index, scrollIntoView){
23556         this.selectedIndex = index;
23557         this.view.select(index);
23558         if(scrollIntoView !== false){
23559             var el = this.view.getNode(index);
23560             if(el){
23561                 this.innerList.scrollChildIntoView(el, false);
23562             }
23563         }
23564     },
23565
23566     // private
23567     selectNext : function(){
23568         var ct = this.store.getCount();
23569         if(ct > 0){
23570             if(this.selectedIndex == -1){
23571                 this.select(0);
23572             }else if(this.selectedIndex < ct-1){
23573                 this.select(this.selectedIndex+1);
23574             }
23575         }
23576     },
23577
23578     // private
23579     selectPrev : function(){
23580         var ct = this.store.getCount();
23581         if(ct > 0){
23582             if(this.selectedIndex == -1){
23583                 this.select(0);
23584             }else if(this.selectedIndex != 0){
23585                 this.select(this.selectedIndex-1);
23586             }
23587         }
23588     },
23589
23590     // private
23591     onKeyUp : function(e){
23592         if(this.editable !== false && !e.isSpecialKey()){
23593             this.lastKey = e.getKey();
23594             this.dqTask.delay(this.queryDelay);
23595         }
23596     },
23597
23598     // private
23599     validateBlur : function(){
23600         return !this.list || !this.list.isVisible();   
23601     },
23602
23603     // private
23604     initQuery : function(){
23605         this.doQuery(this.getRawValue());
23606     },
23607
23608     // private
23609     doForce : function(){
23610         if(this.el.dom.value.length > 0){
23611             this.el.dom.value =
23612                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
23613              
23614         }
23615     },
23616
23617     /**
23618      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
23619      * query allowing the query action to be canceled if needed.
23620      * @param {String} query The SQL query to execute
23621      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
23622      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
23623      * saved in the current store (defaults to false)
23624      */
23625     doQuery : function(q, forceAll){
23626         if(q === undefined || q === null){
23627             q = '';
23628         }
23629         var qe = {
23630             query: q,
23631             forceAll: forceAll,
23632             combo: this,
23633             cancel:false
23634         };
23635         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
23636             return false;
23637         }
23638         q = qe.query;
23639         forceAll = qe.forceAll;
23640         if(forceAll === true || (q.length >= this.minChars)){
23641             if(this.lastQuery != q || this.alwaysQuery){
23642                 this.lastQuery = q;
23643                 if(this.mode == 'local'){
23644                     this.selectedIndex = -1;
23645                     if(forceAll){
23646                         this.store.clearFilter();
23647                     }else{
23648                         this.store.filter(this.displayField, q);
23649                     }
23650                     this.onLoad();
23651                 }else{
23652                     this.store.baseParams[this.queryParam] = q;
23653                     this.store.load({
23654                         params: this.getParams(q)
23655                     });
23656                     this.expand();
23657                 }
23658             }else{
23659                 this.selectedIndex = -1;
23660                 this.onLoad();   
23661             }
23662         }
23663     },
23664
23665     // private
23666     getParams : function(q){
23667         var p = {};
23668         //p[this.queryParam] = q;
23669         if(this.pageSize){
23670             p.start = 0;
23671             p.limit = this.pageSize;
23672         }
23673         return p;
23674     },
23675
23676     /**
23677      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
23678      */
23679     collapse : function(){
23680         if(!this.isExpanded()){
23681             return;
23682         }
23683         this.list.hide();
23684         Roo.get(document).un('mousedown', this.collapseIf, this);
23685         Roo.get(document).un('mousewheel', this.collapseIf, this);
23686         if (!this.editable) {
23687             Roo.get(document).un('keydown', this.listKeyPress, this);
23688         }
23689         this.fireEvent('collapse', this);
23690     },
23691
23692     // private
23693     collapseIf : function(e){
23694         if(!e.within(this.wrap) && !e.within(this.list)){
23695             this.collapse();
23696         }
23697     },
23698
23699     /**
23700      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
23701      */
23702     expand : function(){
23703         if(this.isExpanded() || !this.hasFocus){
23704             return;
23705         }
23706         this.list.alignTo(this.el, this.listAlign);
23707         this.list.show();
23708         Roo.get(document).on('mousedown', this.collapseIf, this);
23709         Roo.get(document).on('mousewheel', this.collapseIf, this);
23710         if (!this.editable) {
23711             Roo.get(document).on('keydown', this.listKeyPress, this);
23712         }
23713         
23714         this.fireEvent('expand', this);
23715     },
23716
23717     // private
23718     // Implements the default empty TriggerField.onTriggerClick function
23719     onTriggerClick : function(){
23720         if(this.disabled){
23721             return;
23722         }
23723         if(this.isExpanded()){
23724             this.collapse();
23725             if (!this.blockFocus) {
23726                 this.el.focus();
23727             }
23728             
23729         }else {
23730             this.hasFocus = true;
23731             if(this.triggerAction == 'all') {
23732                 this.doQuery(this.allQuery, true);
23733             } else {
23734                 this.doQuery(this.getRawValue());
23735             }
23736             if (!this.blockFocus) {
23737                 this.el.focus();
23738             }
23739         }
23740     },
23741     listKeyPress : function(e)
23742     {
23743         //Roo.log('listkeypress');
23744         // scroll to first matching element based on key pres..
23745         if (e.isSpecialKey()) {
23746             return false;
23747         }
23748         var k = String.fromCharCode(e.getKey()).toUpperCase();
23749         //Roo.log(k);
23750         var match  = false;
23751         var csel = this.view.getSelectedNodes();
23752         var cselitem = false;
23753         if (csel.length) {
23754             var ix = this.view.indexOf(csel[0]);
23755             cselitem  = this.store.getAt(ix);
23756             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
23757                 cselitem = false;
23758             }
23759             
23760         }
23761         
23762         this.store.each(function(v) { 
23763             if (cselitem) {
23764                 // start at existing selection.
23765                 if (cselitem.id == v.id) {
23766                     cselitem = false;
23767                 }
23768                 return;
23769             }
23770                 
23771             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
23772                 match = this.store.indexOf(v);
23773                 return false;
23774             }
23775         }, this);
23776         
23777         if (match === false) {
23778             return true; // no more action?
23779         }
23780         // scroll to?
23781         this.view.select(match);
23782         var sn = Roo.get(this.view.getSelectedNodes()[0])
23783         sn.scrollIntoView(sn.dom.parentNode, false);
23784     }
23785
23786     /** 
23787     * @cfg {Boolean} grow 
23788     * @hide 
23789     */
23790     /** 
23791     * @cfg {Number} growMin 
23792     * @hide 
23793     */
23794     /** 
23795     * @cfg {Number} growMax 
23796     * @hide 
23797     */
23798     /**
23799      * @hide
23800      * @method autoSize
23801      */
23802 });/*
23803  * Copyright(c) 2010-2012, Roo J Solutions Limited
23804  *
23805  * Licence LGPL
23806  *
23807  */
23808
23809 /**
23810  * @class Roo.form.ComboBoxArray
23811  * @extends Roo.form.TextField
23812  * A facebook style adder... for lists of email / people / countries  etc...
23813  * pick multiple items from a combo box, and shows each one.
23814  *
23815  *  Fred [x]  Brian [x]  [Pick another |v]
23816  *
23817  *
23818  *  For this to work: it needs various extra information
23819  *    - normal combo problay has
23820  *      name, hiddenName
23821  *    + displayField, valueField
23822  *
23823  *    For our purpose...
23824  *
23825  *
23826  *   If we change from 'extends' to wrapping...
23827  *   
23828  *  
23829  *
23830  
23831  
23832  * @constructor
23833  * Create a new ComboBoxArray.
23834  * @param {Object} config Configuration options
23835  */
23836  
23837
23838 Roo.form.ComboBoxArray = function(config)
23839 {
23840     
23841     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
23842     
23843     this.items = new Roo.util.MixedCollection(false);
23844     
23845     // construct the child combo...
23846     
23847     
23848     
23849     
23850    
23851     
23852 }
23853
23854  
23855 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
23856
23857     /**
23858      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
23859      */
23860     
23861     lastData : false,
23862     
23863     // behavies liek a hiddne field
23864     inputType:      'hidden',
23865     /**
23866      * @cfg {Number} width The width of the box that displays the selected element
23867      */ 
23868     width:          300,
23869
23870     
23871     
23872     /**
23873      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
23874      */
23875     name : false,
23876     /**
23877      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
23878      */
23879     hiddenName : false,
23880     
23881     
23882     // private the array of items that are displayed..
23883     items  : false,
23884     // private - the hidden field el.
23885     hiddenEl : false,
23886     // private - the filed el..
23887     el : false,
23888     
23889     //validateValue : function() { return true; }, // all values are ok!
23890     //onAddClick: function() { },
23891     
23892     onRender : function(ct, position) 
23893     {
23894         
23895         // create the standard hidden element
23896         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
23897         
23898         
23899         // give fake names to child combo;
23900         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
23901         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
23902         
23903         this.combo = Roo.factory(this.combo, Roo.form);
23904         this.combo.onRender(ct, position);
23905         if (typeof(this.combo.width) != 'undefined') {
23906             this.combo.onResize(this.combo.width,0);
23907         }
23908         
23909         this.combo.initEvents();
23910         
23911         // assigned so form know we need to do this..
23912         this.store          = this.combo.store;
23913         this.valueField     = this.combo.valueField;
23914         this.displayField   = this.combo.displayField ;
23915         
23916         
23917         this.combo.wrap.addClass('x-cbarray-grp');
23918         
23919         var cbwrap = this.combo.wrap.createChild(
23920             {tag: 'div', cls: 'x-cbarray-cb'},
23921             this.combo.el.dom
23922         );
23923         
23924              
23925         this.hiddenEl = this.combo.wrap.createChild({
23926             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
23927         });
23928         this.el = this.combo.wrap.createChild({
23929             tag: 'input',  type:'hidden' , name: this.name, value : ''
23930         });
23931          //   this.el.dom.removeAttribute("name");
23932         
23933         
23934         this.outerWrap = this.combo.wrap;
23935         this.wrap = cbwrap;
23936         
23937         this.outerWrap.setWidth(this.width);
23938         this.outerWrap.dom.removeChild(this.el.dom);
23939         
23940         this.wrap.dom.appendChild(this.el.dom);
23941         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
23942         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
23943         
23944         this.combo.trigger.setStyle('position','relative');
23945         this.combo.trigger.setStyle('left', '0px');
23946         this.combo.trigger.setStyle('top', '2px');
23947         
23948         this.combo.el.setStyle('vertical-align', 'text-bottom');
23949         
23950         //this.trigger.setStyle('vertical-align', 'top');
23951         
23952         // this should use the code from combo really... on('add' ....)
23953         if (this.adder) {
23954             
23955         
23956             this.adder = this.outerWrap.createChild(
23957                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
23958             var _t = this;
23959             this.adder.on('click', function(e) {
23960                 _t.fireEvent('adderclick', this, e);
23961             }, _t);
23962         }
23963         //var _t = this;
23964         //this.adder.on('click', this.onAddClick, _t);
23965         
23966         
23967         this.combo.on('select', function(cb, rec, ix) {
23968             this.addItem(rec.data);
23969             
23970             cb.setValue('');
23971             cb.el.dom.value = '';
23972             //cb.lastData = rec.data;
23973             // add to list
23974             
23975         }, this);
23976         
23977         
23978     },
23979     
23980     
23981     getName: function()
23982     {
23983         // returns hidden if it's set..
23984         if (!this.rendered) {return ''};
23985         return  this.hiddenName ? this.hiddenName : this.name;
23986         
23987     },
23988     
23989     
23990     onResize: function(w, h){
23991         
23992         return;
23993         // not sure if this is needed..
23994         //this.combo.onResize(w,h);
23995         
23996         if(typeof w != 'number'){
23997             // we do not handle it!?!?
23998             return;
23999         }
24000         var tw = this.combo.trigger.getWidth();
24001         tw += this.addicon ? this.addicon.getWidth() : 0;
24002         tw += this.editicon ? this.editicon.getWidth() : 0;
24003         var x = w - tw;
24004         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
24005             
24006         this.combo.trigger.setStyle('left', '0px');
24007         
24008         if(this.list && this.listWidth === undefined){
24009             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
24010             this.list.setWidth(lw);
24011             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
24012         }
24013         
24014     
24015         
24016     },
24017     
24018     addItem: function(rec)
24019     {
24020         var valueField = this.combo.valueField;
24021         var displayField = this.combo.displayField;
24022         if (this.items.indexOfKey(rec[valueField]) > -1) {
24023             //console.log("GOT " + rec.data.id);
24024             return;
24025         }
24026         
24027         var x = new Roo.form.ComboBoxArray.Item({
24028             //id : rec[this.idField],
24029             data : rec,
24030             displayField : displayField ,
24031             tipField : displayField ,
24032             cb : this
24033         });
24034         // use the 
24035         this.items.add(rec[valueField],x);
24036         // add it before the element..
24037         this.updateHiddenEl();
24038         x.render(this.outerWrap, this.wrap.dom);
24039         // add the image handler..
24040     },
24041     
24042     updateHiddenEl : function()
24043     {
24044         this.validate();
24045         if (!this.hiddenEl) {
24046             return;
24047         }
24048         var ar = [];
24049         var idField = this.combo.valueField;
24050         
24051         this.items.each(function(f) {
24052             ar.push(f.data[idField]);
24053            
24054         });
24055         this.hiddenEl.dom.value = ar.join(',');
24056         this.validate();
24057     },
24058     
24059     reset : function()
24060     {
24061         //Roo.form.ComboBoxArray.superclass.reset.call(this); 
24062         this.items.each(function(f) {
24063            f.remove(); 
24064         });
24065         this.el.dom.value = '';
24066         if (this.hiddenEl) {
24067             this.hiddenEl.dom.value = '';
24068         }
24069         
24070     },
24071     getValue: function()
24072     {
24073         return this.hiddenEl ? this.hiddenEl.dom.value : '';
24074     },
24075     setValue: function(v) // not a valid action - must use addItems..
24076     {
24077          
24078         this.reset();
24079         
24080         
24081         
24082         if (this.store.isLocal && (typeof(v) == 'string')) {
24083             // then we can use the store to find the values..
24084             // comma seperated at present.. this needs to allow JSON based encoding..
24085             this.hiddenEl.value  = v;
24086             var v_ar = [];
24087             Roo.each(v.split(','), function(k) {
24088                 Roo.log("CHECK " + this.valueField + ',' + k);
24089                 var li = this.store.query(this.valueField, k);
24090                 if (!li.length) {
24091                     return;
24092                 }
24093                 var add = {};
24094                 add[this.valueField] = k;
24095                 add[this.displayField] = li.item(0).data[this.displayField];
24096                 
24097                 this.addItem(add);
24098             }, this) 
24099              
24100         }
24101         if (typeof(v) == 'object') {
24102             // then let's assume it's an array of objects..
24103             Roo.each(v, function(l) {
24104                 this.addItem(l);
24105             }, this);
24106              
24107         }
24108         
24109         
24110     },
24111     setFromData: function(v)
24112     {
24113         // this recieves an object, if setValues is called.
24114         this.reset();
24115         this.el.dom.value = v[this.displayField];
24116         this.hiddenEl.dom.value = v[this.valueField];
24117         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
24118             return;
24119         }
24120         var kv = v[this.valueField];
24121         var dv = v[this.displayField];
24122         kv = typeof(kv) != 'string' ? '' : kv;
24123         dv = typeof(dv) != 'string' ? '' : dv;
24124         
24125         
24126         var keys = kv.split(',');
24127         var display = dv.split(',');
24128         for (var i = 0 ; i < keys.length; i++) {
24129             
24130             add = {};
24131             add[this.valueField] = keys[i];
24132             add[this.displayField] = display[i];
24133             this.addItem(add);
24134         }
24135       
24136         
24137     },
24138     
24139     /**
24140      * Validates the combox array value
24141      * @return {Boolean} True if the value is valid, else false
24142      */
24143     validate : function(){
24144         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
24145             this.clearInvalid();
24146             return true;
24147         }
24148         return false;
24149     },
24150     
24151     validateValue : function(value){
24152         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
24153         
24154     },
24155     
24156     /*@
24157      * overide
24158      * 
24159      */
24160     isDirty : function() {
24161         if(this.disabled) {
24162             return false;
24163         }
24164         
24165         try {
24166             var d = Roo.decode(String(this.originalValue));
24167         } catch (e) {
24168             return String(this.getValue()) !== String(this.originalValue);
24169         }
24170         
24171         var originalValue = [];
24172         
24173         for (var i = 0; i < d.length; i++){
24174             originalValue.push(d[i][this.valueField]);
24175         }
24176         
24177         return String(this.getValue()) !== String(originalValue.join(','));
24178         
24179     }
24180     
24181 });
24182
24183
24184
24185 /**
24186  * @class Roo.form.ComboBoxArray.Item
24187  * @extends Roo.BoxComponent
24188  * A selected item in the list
24189  *  Fred [x]  Brian [x]  [Pick another |v]
24190  * 
24191  * @constructor
24192  * Create a new item.
24193  * @param {Object} config Configuration options
24194  */
24195  
24196 Roo.form.ComboBoxArray.Item = function(config) {
24197     config.id = Roo.id();
24198     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
24199 }
24200
24201 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
24202     data : {},
24203     cb: false,
24204     displayField : false,
24205     tipField : false,
24206     
24207     
24208     defaultAutoCreate : {
24209         tag: 'div',
24210         cls: 'x-cbarray-item',
24211         cn : [ 
24212             { tag: 'div' },
24213             {
24214                 tag: 'img',
24215                 width:16,
24216                 height : 16,
24217                 src : Roo.BLANK_IMAGE_URL ,
24218                 align: 'center'
24219             }
24220         ]
24221         
24222     },
24223     
24224  
24225     onRender : function(ct, position)
24226     {
24227         Roo.form.Field.superclass.onRender.call(this, ct, position);
24228         
24229         if(!this.el){
24230             var cfg = this.getAutoCreate();
24231             this.el = ct.createChild(cfg, position);
24232         }
24233         
24234         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
24235         
24236         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
24237             this.cb.renderer(this.data) :
24238             String.format('{0}',this.data[this.displayField]);
24239         
24240             
24241         this.el.child('div').dom.setAttribute('qtip',
24242                         String.format('{0}',this.data[this.tipField])
24243         );
24244         
24245         this.el.child('img').on('click', this.remove, this);
24246         
24247     },
24248    
24249     remove : function()
24250     {
24251         
24252         this.cb.items.remove(this);
24253         this.el.child('img').un('click', this.remove, this);
24254         this.el.remove();
24255         this.cb.updateHiddenEl();
24256     }
24257 });/*
24258  * Based on:
24259  * Ext JS Library 1.1.1
24260  * Copyright(c) 2006-2007, Ext JS, LLC.
24261  *
24262  * Originally Released Under LGPL - original licence link has changed is not relivant.
24263  *
24264  * Fork - LGPL
24265  * <script type="text/javascript">
24266  */
24267 /**
24268  * @class Roo.form.Checkbox
24269  * @extends Roo.form.Field
24270  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
24271  * @constructor
24272  * Creates a new Checkbox
24273  * @param {Object} config Configuration options
24274  */
24275 Roo.form.Checkbox = function(config){
24276     Roo.form.Checkbox.superclass.constructor.call(this, config);
24277     this.addEvents({
24278         /**
24279          * @event check
24280          * Fires when the checkbox is checked or unchecked.
24281              * @param {Roo.form.Checkbox} this This checkbox
24282              * @param {Boolean} checked The new checked value
24283              */
24284         check : true
24285     });
24286 };
24287
24288 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
24289     /**
24290      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
24291      */
24292     focusClass : undefined,
24293     /**
24294      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
24295      */
24296     fieldClass: "x-form-field",
24297     /**
24298      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
24299      */
24300     checked: false,
24301     /**
24302      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
24303      * {tag: "input", type: "checkbox", autocomplete: "off"})
24304      */
24305     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
24306     /**
24307      * @cfg {String} boxLabel The text that appears beside the checkbox
24308      */
24309     boxLabel : "",
24310     /**
24311      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
24312      */  
24313     inputValue : '1',
24314     /**
24315      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24316      */
24317      valueOff: '0', // value when not checked..
24318
24319     actionMode : 'viewEl', 
24320     //
24321     // private
24322     itemCls : 'x-menu-check-item x-form-item',
24323     groupClass : 'x-menu-group-item',
24324     inputType : 'hidden',
24325     
24326     
24327     inSetChecked: false, // check that we are not calling self...
24328     
24329     inputElement: false, // real input element?
24330     basedOn: false, // ????
24331     
24332     isFormField: true, // not sure where this is needed!!!!
24333
24334     onResize : function(){
24335         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
24336         if(!this.boxLabel){
24337             this.el.alignTo(this.wrap, 'c-c');
24338         }
24339     },
24340
24341     initEvents : function(){
24342         Roo.form.Checkbox.superclass.initEvents.call(this);
24343         this.el.on("click", this.onClick,  this);
24344         this.el.on("change", this.onClick,  this);
24345     },
24346
24347
24348     getResizeEl : function(){
24349         return this.wrap;
24350     },
24351
24352     getPositionEl : function(){
24353         return this.wrap;
24354     },
24355
24356     // private
24357     onRender : function(ct, position){
24358         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24359         /*
24360         if(this.inputValue !== undefined){
24361             this.el.dom.value = this.inputValue;
24362         }
24363         */
24364         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24365         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24366         var viewEl = this.wrap.createChild({ 
24367             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24368         this.viewEl = viewEl;   
24369         this.wrap.on('click', this.onClick,  this); 
24370         
24371         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24372         this.el.on('propertychange', this.setFromHidden,  this);  //ie
24373         
24374         
24375         
24376         if(this.boxLabel){
24377             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24378         //    viewEl.on('click', this.onClick,  this); 
24379         }
24380         //if(this.checked){
24381             this.setChecked(this.checked);
24382         //}else{
24383             //this.checked = this.el.dom;
24384         //}
24385
24386     },
24387
24388     // private
24389     initValue : Roo.emptyFn,
24390
24391     /**
24392      * Returns the checked state of the checkbox.
24393      * @return {Boolean} True if checked, else false
24394      */
24395     getValue : function(){
24396         if(this.el){
24397             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
24398         }
24399         return this.valueOff;
24400         
24401     },
24402
24403         // private
24404     onClick : function(){ 
24405         this.setChecked(!this.checked);
24406
24407         //if(this.el.dom.checked != this.checked){
24408         //    this.setValue(this.el.dom.checked);
24409        // }
24410     },
24411
24412     /**
24413      * Sets the checked state of the checkbox.
24414      * On is always based on a string comparison between inputValue and the param.
24415      * @param {Boolean/String} value - the value to set 
24416      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
24417      */
24418     setValue : function(v,suppressEvent){
24419         
24420         
24421         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
24422         //if(this.el && this.el.dom){
24423         //    this.el.dom.checked = this.checked;
24424         //    this.el.dom.defaultChecked = this.checked;
24425         //}
24426         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
24427         //this.fireEvent("check", this, this.checked);
24428     },
24429     // private..
24430     setChecked : function(state,suppressEvent)
24431     {
24432         if (this.inSetChecked) {
24433             this.checked = state;
24434             return;
24435         }
24436         
24437     
24438         if(this.wrap){
24439             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
24440         }
24441         this.checked = state;
24442         if(suppressEvent !== true){
24443             this.fireEvent('check', this, state);
24444         }
24445         this.inSetChecked = true;
24446         this.el.dom.value = state ? this.inputValue : this.valueOff;
24447         this.inSetChecked = false;
24448         
24449     },
24450     // handle setting of hidden value by some other method!!?!?
24451     setFromHidden: function()
24452     {
24453         if(!this.el){
24454             return;
24455         }
24456         //console.log("SET FROM HIDDEN");
24457         //alert('setFrom hidden');
24458         this.setValue(this.el.dom.value);
24459     },
24460     
24461     onDestroy : function()
24462     {
24463         if(this.viewEl){
24464             Roo.get(this.viewEl).remove();
24465         }
24466          
24467         Roo.form.Checkbox.superclass.onDestroy.call(this);
24468     }
24469
24470 });/*
24471  * Based on:
24472  * Ext JS Library 1.1.1
24473  * Copyright(c) 2006-2007, Ext JS, LLC.
24474  *
24475  * Originally Released Under LGPL - original licence link has changed is not relivant.
24476  *
24477  * Fork - LGPL
24478  * <script type="text/javascript">
24479  */
24480  
24481 /**
24482  * @class Roo.form.Radio
24483  * @extends Roo.form.Checkbox
24484  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
24485  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
24486  * @constructor
24487  * Creates a new Radio
24488  * @param {Object} config Configuration options
24489  */
24490 Roo.form.Radio = function(){
24491     Roo.form.Radio.superclass.constructor.apply(this, arguments);
24492 };
24493 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
24494     inputType: 'radio',
24495
24496     /**
24497      * If this radio is part of a group, it will return the selected value
24498      * @return {String}
24499      */
24500     getGroupValue : function(){
24501         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
24502     },
24503     
24504     
24505     onRender : function(ct, position){
24506         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24507         
24508         if(this.inputValue !== undefined){
24509             this.el.dom.value = this.inputValue;
24510         }
24511          
24512         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24513         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24514         //var viewEl = this.wrap.createChild({ 
24515         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24516         //this.viewEl = viewEl;   
24517         //this.wrap.on('click', this.onClick,  this); 
24518         
24519         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24520         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
24521         
24522         
24523         
24524         if(this.boxLabel){
24525             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24526         //    viewEl.on('click', this.onClick,  this); 
24527         }
24528          if(this.checked){
24529             this.el.dom.checked =   'checked' ;
24530         }
24531          
24532     } 
24533     
24534     
24535 });//<script type="text/javascript">
24536
24537 /*
24538  * Based  Ext JS Library 1.1.1
24539  * Copyright(c) 2006-2007, Ext JS, LLC.
24540  * LGPL
24541  *
24542  */
24543  
24544 /**
24545  * @class Roo.HtmlEditorCore
24546  * @extends Roo.Component
24547  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
24548  *
24549  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
24550  */
24551
24552 Roo.HtmlEditorCore = function(config){
24553     
24554     
24555     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
24556     this.addEvents({
24557         /**
24558          * @event initialize
24559          * Fires when the editor is fully initialized (including the iframe)
24560          * @param {Roo.HtmlEditorCore} this
24561          */
24562         initialize: true,
24563         /**
24564          * @event activate
24565          * Fires when the editor is first receives the focus. Any insertion must wait
24566          * until after this event.
24567          * @param {Roo.HtmlEditorCore} this
24568          */
24569         activate: true,
24570          /**
24571          * @event beforesync
24572          * Fires before the textarea is updated with content from the editor iframe. Return false
24573          * to cancel the sync.
24574          * @param {Roo.HtmlEditorCore} this
24575          * @param {String} html
24576          */
24577         beforesync: true,
24578          /**
24579          * @event beforepush
24580          * Fires before the iframe editor is updated with content from the textarea. Return false
24581          * to cancel the push.
24582          * @param {Roo.HtmlEditorCore} this
24583          * @param {String} html
24584          */
24585         beforepush: true,
24586          /**
24587          * @event sync
24588          * Fires when the textarea is updated with content from the editor iframe.
24589          * @param {Roo.HtmlEditorCore} this
24590          * @param {String} html
24591          */
24592         sync: true,
24593          /**
24594          * @event push
24595          * Fires when the iframe editor is updated with content from the textarea.
24596          * @param {Roo.HtmlEditorCore} this
24597          * @param {String} html
24598          */
24599         push: true,
24600         
24601         /**
24602          * @event editorevent
24603          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
24604          * @param {Roo.HtmlEditorCore} this
24605          */
24606         editorevent: true
24607     });
24608      
24609 };
24610
24611
24612 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
24613
24614
24615      /**
24616      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
24617      */
24618     
24619     owner : false,
24620     
24621      /**
24622      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
24623      *                        Roo.resizable.
24624      */
24625     resizable : false,
24626      /**
24627      * @cfg {Number} height (in pixels)
24628      */   
24629     height: 300,
24630    /**
24631      * @cfg {Number} width (in pixels)
24632      */   
24633     width: 500,
24634     
24635     /**
24636      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
24637      * 
24638      */
24639     stylesheets: false,
24640     
24641     // id of frame..
24642     frameId: false,
24643     
24644     // private properties
24645     validationEvent : false,
24646     deferHeight: true,
24647     initialized : false,
24648     activated : false,
24649     sourceEditMode : false,
24650 //    onFocus : Roo.emptyFn,
24651     iframePad:3,
24652     hideMode:'offsets',
24653     
24654      
24655     
24656
24657     /**
24658      * Protected method that will not generally be called directly. It
24659      * is called when the editor initializes the iframe with HTML contents. Override this method if you
24660      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
24661      */
24662     getDocMarkup : function(){
24663         // body styles..
24664         var st = '';
24665         Roo.log(this.stylesheets);
24666         
24667         // inherit styels from page...?? 
24668         if (this.stylesheets === false) {
24669             
24670             Roo.get(document.head).select('style').each(function(node) {
24671                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24672             });
24673             
24674             Roo.get(document.head).select('link').each(function(node) { 
24675                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24676             });
24677             
24678         } else if (!this.stylesheets.length) {
24679                 // simple..
24680                 st = '<style type="text/css">' +
24681                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24682                    '</style>';
24683         } else {
24684             Roo.each(this.stylesheets, function(s) {
24685                 st += '<link rel="stylesheet" type="text/css" href="' + s +'" />'
24686             });
24687             
24688         }
24689         
24690         st +=  '<style type="text/css">' +
24691             'IMG { cursor: pointer } ' +
24692         '</style>';
24693
24694         
24695         return '<html><head>' + st  +
24696             //<style type="text/css">' +
24697             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24698             //'</style>' +
24699             ' </head><body class="roo-htmleditor-body"></body></html>';
24700     },
24701
24702     // private
24703     onRender : function(ct, position)
24704     {
24705         var _t = this;
24706         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
24707         this.el = this.owner.el;
24708         
24709         
24710         this.el.dom.style.border = '0 none';
24711         this.el.dom.setAttribute('tabIndex', -1);
24712         this.el.addClass('x-hidden');
24713         
24714         
24715         
24716         if(Roo.isIE){ // fix IE 1px bogus margin
24717             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
24718         }
24719        
24720         
24721         this.frameId = Roo.id();
24722         
24723          
24724         
24725         var iframe = this.owner.wrap.createChild({
24726             tag: 'iframe',
24727             id: this.frameId,
24728             name: this.frameId,
24729             frameBorder : 'no',
24730             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
24731         }, this.el
24732         );
24733         
24734         
24735         this.iframe = iframe.dom;
24736
24737          this.assignDocWin();
24738         
24739         this.doc.designMode = 'on';
24740        
24741         this.doc.open();
24742         this.doc.write(this.getDocMarkup());
24743         this.doc.close();
24744
24745         
24746         var task = { // must defer to wait for browser to be ready
24747             run : function(){
24748                 //console.log("run task?" + this.doc.readyState);
24749                 this.assignDocWin();
24750                 if(this.doc.body || this.doc.readyState == 'complete'){
24751                     try {
24752                         this.doc.designMode="on";
24753                     } catch (e) {
24754                         return;
24755                     }
24756                     Roo.TaskMgr.stop(task);
24757                     this.initEditor.defer(10, this);
24758                 }
24759             },
24760             interval : 10,
24761             duration: 10000,
24762             scope: this
24763         };
24764         Roo.TaskMgr.start(task);
24765
24766         
24767          
24768     },
24769
24770     // private
24771     onResize : function(w, h)
24772     {
24773         //Roo.log('resize: ' +w + ',' + h );
24774         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
24775         if(!this.iframe){
24776             return;
24777         }
24778         if(typeof w == 'number'){
24779             
24780             this.iframe.style.width = w + 'px';
24781         }
24782         if(typeof h == 'number'){
24783             
24784             this.iframe.style.height = h + 'px';
24785             if(this.doc){
24786                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
24787             }
24788         }
24789         
24790     },
24791
24792     /**
24793      * Toggles the editor between standard and source edit mode.
24794      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24795      */
24796     toggleSourceEdit : function(sourceEditMode){
24797         
24798         this.sourceEditMode = sourceEditMode === true;
24799         
24800         if(this.sourceEditMode){
24801  
24802             this.iframe.className = 'x-hidden';     //FIXME - what's the BS styles for these
24803             
24804         }else{
24805  
24806             this.iframe.className = '';
24807             this.deferFocus();
24808         }
24809         //this.setSize(this.owner.wrap.getSize());
24810         //this.fireEvent('editmodechange', this, this.sourceEditMode);
24811     },
24812
24813     
24814   
24815
24816     /**
24817      * Protected method that will not generally be called directly. If you need/want
24818      * custom HTML cleanup, this is the method you should override.
24819      * @param {String} html The HTML to be cleaned
24820      * return {String} The cleaned HTML
24821      */
24822     cleanHtml : function(html){
24823         html = String(html);
24824         if(html.length > 5){
24825             if(Roo.isSafari){ // strip safari nonsense
24826                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
24827             }
24828         }
24829         if(html == '&nbsp;'){
24830             html = '';
24831         }
24832         return html;
24833     },
24834
24835     /**
24836      * HTML Editor -> Textarea
24837      * Protected method that will not generally be called directly. Syncs the contents
24838      * of the editor iframe with the textarea.
24839      */
24840     syncValue : function(){
24841         if(this.initialized){
24842             var bd = (this.doc.body || this.doc.documentElement);
24843             //this.cleanUpPaste(); -- this is done else where and causes havoc..
24844             var html = bd.innerHTML;
24845             if(Roo.isSafari){
24846                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
24847                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
24848                 if(m && m[1]){
24849                     html = '<div style="'+m[0]+'">' + html + '</div>';
24850                 }
24851             }
24852             html = this.cleanHtml(html);
24853             // fix up the special chars.. normaly like back quotes in word...
24854             // however we do not want to do this with chinese..
24855             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
24856                 var cc = b.charCodeAt();
24857                 if (
24858                     (cc >= 0x4E00 && cc < 0xA000 ) ||
24859                     (cc >= 0x3400 && cc < 0x4E00 ) ||
24860                     (cc >= 0xf900 && cc < 0xfb00 )
24861                 ) {
24862                         return b;
24863                 }
24864                 return "&#"+cc+";" 
24865             });
24866             if(this.owner.fireEvent('beforesync', this, html) !== false){
24867                 this.el.dom.value = html;
24868                 this.owner.fireEvent('sync', this, html);
24869             }
24870         }
24871     },
24872
24873     /**
24874      * Protected method that will not generally be called directly. Pushes the value of the textarea
24875      * into the iframe editor.
24876      */
24877     pushValue : function(){
24878         if(this.initialized){
24879             var v = this.el.dom.value;
24880             
24881             if(v.length < 1){
24882                 v = '&#160;';
24883             }
24884             
24885             if(this.owner.fireEvent('beforepush', this, v) !== false){
24886                 var d = (this.doc.body || this.doc.documentElement);
24887                 d.innerHTML = v;
24888                 this.cleanUpPaste();
24889                 this.el.dom.value = d.innerHTML;
24890                 this.owner.fireEvent('push', this, v);
24891             }
24892         }
24893     },
24894
24895     // private
24896     deferFocus : function(){
24897         this.focus.defer(10, this);
24898     },
24899
24900     // doc'ed in Field
24901     focus : function(){
24902         if(this.win && !this.sourceEditMode){
24903             this.win.focus();
24904         }else{
24905             this.el.focus();
24906         }
24907     },
24908     
24909     assignDocWin: function()
24910     {
24911         var iframe = this.iframe;
24912         
24913          if(Roo.isIE){
24914             this.doc = iframe.contentWindow.document;
24915             this.win = iframe.contentWindow;
24916         } else {
24917             if (!Roo.get(this.frameId)) {
24918                 return;
24919             }
24920             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
24921             this.win = Roo.get(this.frameId).dom.contentWindow;
24922         }
24923     },
24924     
24925     // private
24926     initEditor : function(){
24927         //console.log("INIT EDITOR");
24928         this.assignDocWin();
24929         
24930         
24931         
24932         this.doc.designMode="on";
24933         this.doc.open();
24934         this.doc.write(this.getDocMarkup());
24935         this.doc.close();
24936         
24937         var dbody = (this.doc.body || this.doc.documentElement);
24938         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
24939         // this copies styles from the containing element into thsi one..
24940         // not sure why we need all of this..
24941         var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
24942         ss['background-attachment'] = 'fixed'; // w3c
24943         dbody.bgProperties = 'fixed'; // ie
24944         Roo.DomHelper.applyStyles(dbody, ss);
24945         Roo.EventManager.on(this.doc, {
24946             //'mousedown': this.onEditorEvent,
24947             'mouseup': this.onEditorEvent,
24948             'dblclick': this.onEditorEvent,
24949             'click': this.onEditorEvent,
24950             'keyup': this.onEditorEvent,
24951             buffer:100,
24952             scope: this
24953         });
24954         if(Roo.isGecko){
24955             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
24956         }
24957         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
24958             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
24959         }
24960         this.initialized = true;
24961
24962         this.owner.fireEvent('initialize', this);
24963         this.pushValue();
24964         
24965         this.win.on('focus', this.onFocus, this);
24966         
24967     },
24968     
24969     onFocus : function()
24970     {
24971         Roo.log('onFocus!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1');
24972     },
24973
24974     // private
24975     onDestroy : function(){
24976         
24977         
24978         
24979         if(this.rendered){
24980             
24981             //for (var i =0; i < this.toolbars.length;i++) {
24982             //    // fixme - ask toolbars for heights?
24983             //    this.toolbars[i].onDestroy();
24984            // }
24985             
24986             //this.wrap.dom.innerHTML = '';
24987             //this.wrap.remove();
24988         }
24989     },
24990
24991     // private
24992     onFirstFocus : function(){
24993         
24994         this.assignDocWin();
24995         
24996         
24997         this.activated = true;
24998          
24999     
25000         if(Roo.isGecko){ // prevent silly gecko errors
25001             this.win.focus();
25002             var s = this.win.getSelection();
25003             if(!s.focusNode || s.focusNode.nodeType != 3){
25004                 var r = s.getRangeAt(0);
25005                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
25006                 r.collapse(true);
25007                 this.deferFocus();
25008             }
25009             try{
25010                 this.execCmd('useCSS', true);
25011                 this.execCmd('styleWithCSS', false);
25012             }catch(e){}
25013         }
25014         this.owner.fireEvent('activate', this);
25015     },
25016
25017     // private
25018     adjustFont: function(btn){
25019         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
25020         //if(Roo.isSafari){ // safari
25021         //    adjust *= 2;
25022        // }
25023         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
25024         if(Roo.isSafari){ // safari
25025             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
25026             v =  (v < 10) ? 10 : v;
25027             v =  (v > 48) ? 48 : v;
25028             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
25029             
25030         }
25031         
25032         
25033         v = Math.max(1, v+adjust);
25034         
25035         this.execCmd('FontSize', v  );
25036     },
25037
25038     onEditorEvent : function(e){
25039         this.owner.fireEvent('editorevent', this, e);
25040       //  this.updateToolbar();
25041         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
25042     },
25043
25044     insertTag : function(tg)
25045     {
25046         // could be a bit smarter... -> wrap the current selected tRoo..
25047         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
25048             
25049             range = this.createRange(this.getSelection());
25050             var wrappingNode = this.doc.createElement(tg.toLowerCase());
25051             wrappingNode.appendChild(range.extractContents());
25052             range.insertNode(wrappingNode);
25053
25054             return;
25055             
25056             
25057             
25058         }
25059         this.execCmd("formatblock",   tg);
25060         
25061     },
25062     
25063     insertText : function(txt)
25064     {
25065         
25066         
25067         var range = this.createRange();
25068         range.deleteContents();
25069                //alert(Sender.getAttribute('label'));
25070                
25071         range.insertNode(this.doc.createTextNode(txt));
25072     } ,
25073     
25074      
25075
25076     /**
25077      * Executes a Midas editor command on the editor document and performs necessary focus and
25078      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
25079      * @param {String} cmd The Midas command
25080      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25081      */
25082     relayCmd : function(cmd, value){
25083         this.win.focus();
25084         this.execCmd(cmd, value);
25085         this.owner.fireEvent('editorevent', this);
25086         //this.updateToolbar();
25087         this.owner.deferFocus();
25088     },
25089
25090     /**
25091      * Executes a Midas editor command directly on the editor document.
25092      * For visual commands, you should use {@link #relayCmd} instead.
25093      * <b>This should only be called after the editor is initialized.</b>
25094      * @param {String} cmd The Midas command
25095      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25096      */
25097     execCmd : function(cmd, value){
25098         this.doc.execCommand(cmd, false, value === undefined ? null : value);
25099         this.syncValue();
25100     },
25101  
25102  
25103    
25104     /**
25105      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
25106      * to insert tRoo.
25107      * @param {String} text | dom node.. 
25108      */
25109     insertAtCursor : function(text)
25110     {
25111         
25112         
25113         
25114         if(!this.activated){
25115             return;
25116         }
25117         /*
25118         if(Roo.isIE){
25119             this.win.focus();
25120             var r = this.doc.selection.createRange();
25121             if(r){
25122                 r.collapse(true);
25123                 r.pasteHTML(text);
25124                 this.syncValue();
25125                 this.deferFocus();
25126             
25127             }
25128             return;
25129         }
25130         */
25131         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
25132             this.win.focus();
25133             
25134             
25135             // from jquery ui (MIT licenced)
25136             var range, node;
25137             var win = this.win;
25138             
25139             if (win.getSelection && win.getSelection().getRangeAt) {
25140                 range = win.getSelection().getRangeAt(0);
25141                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
25142                 range.insertNode(node);
25143             } else if (win.document.selection && win.document.selection.createRange) {
25144                 // no firefox support
25145                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25146                 win.document.selection.createRange().pasteHTML(txt);
25147             } else {
25148                 // no firefox support
25149                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25150                 this.execCmd('InsertHTML', txt);
25151             } 
25152             
25153             this.syncValue();
25154             
25155             this.deferFocus();
25156         }
25157     },
25158  // private
25159     mozKeyPress : function(e){
25160         if(e.ctrlKey){
25161             var c = e.getCharCode(), cmd;
25162           
25163             if(c > 0){
25164                 c = String.fromCharCode(c).toLowerCase();
25165                 switch(c){
25166                     case 'b':
25167                         cmd = 'bold';
25168                         break;
25169                     case 'i':
25170                         cmd = 'italic';
25171                         break;
25172                     
25173                     case 'u':
25174                         cmd = 'underline';
25175                         break;
25176                     
25177                     case 'v':
25178                         this.cleanUpPaste.defer(100, this);
25179                         return;
25180                         
25181                 }
25182                 if(cmd){
25183                     this.win.focus();
25184                     this.execCmd(cmd);
25185                     this.deferFocus();
25186                     e.preventDefault();
25187                 }
25188                 
25189             }
25190         }
25191     },
25192
25193     // private
25194     fixKeys : function(){ // load time branching for fastest keydown performance
25195         if(Roo.isIE){
25196             return function(e){
25197                 var k = e.getKey(), r;
25198                 if(k == e.TAB){
25199                     e.stopEvent();
25200                     r = this.doc.selection.createRange();
25201                     if(r){
25202                         r.collapse(true);
25203                         r.pasteHTML('&#160;&#160;&#160;&#160;');
25204                         this.deferFocus();
25205                     }
25206                     return;
25207                 }
25208                 
25209                 if(k == e.ENTER){
25210                     r = this.doc.selection.createRange();
25211                     if(r){
25212                         var target = r.parentElement();
25213                         if(!target || target.tagName.toLowerCase() != 'li'){
25214                             e.stopEvent();
25215                             r.pasteHTML('<br />');
25216                             r.collapse(false);
25217                             r.select();
25218                         }
25219                     }
25220                 }
25221                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25222                     this.cleanUpPaste.defer(100, this);
25223                     return;
25224                 }
25225                 
25226                 
25227             };
25228         }else if(Roo.isOpera){
25229             return function(e){
25230                 var k = e.getKey();
25231                 if(k == e.TAB){
25232                     e.stopEvent();
25233                     this.win.focus();
25234                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
25235                     this.deferFocus();
25236                 }
25237                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25238                     this.cleanUpPaste.defer(100, this);
25239                     return;
25240                 }
25241                 
25242             };
25243         }else if(Roo.isSafari){
25244             return function(e){
25245                 var k = e.getKey();
25246                 
25247                 if(k == e.TAB){
25248                     e.stopEvent();
25249                     this.execCmd('InsertText','\t');
25250                     this.deferFocus();
25251                     return;
25252                 }
25253                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25254                     this.cleanUpPaste.defer(100, this);
25255                     return;
25256                 }
25257                 
25258              };
25259         }
25260     }(),
25261     
25262     getAllAncestors: function()
25263     {
25264         var p = this.getSelectedNode();
25265         var a = [];
25266         if (!p) {
25267             a.push(p); // push blank onto stack..
25268             p = this.getParentElement();
25269         }
25270         
25271         
25272         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
25273             a.push(p);
25274             p = p.parentNode;
25275         }
25276         a.push(this.doc.body);
25277         return a;
25278     },
25279     lastSel : false,
25280     lastSelNode : false,
25281     
25282     
25283     getSelection : function() 
25284     {
25285         this.assignDocWin();
25286         return Roo.isIE ? this.doc.selection : this.win.getSelection();
25287     },
25288     
25289     getSelectedNode: function() 
25290     {
25291         // this may only work on Gecko!!!
25292         
25293         // should we cache this!!!!
25294         
25295         
25296         
25297          
25298         var range = this.createRange(this.getSelection()).cloneRange();
25299         
25300         if (Roo.isIE) {
25301             var parent = range.parentElement();
25302             while (true) {
25303                 var testRange = range.duplicate();
25304                 testRange.moveToElementText(parent);
25305                 if (testRange.inRange(range)) {
25306                     break;
25307                 }
25308                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
25309                     break;
25310                 }
25311                 parent = parent.parentElement;
25312             }
25313             return parent;
25314         }
25315         
25316         // is ancestor a text element.
25317         var ac =  range.commonAncestorContainer;
25318         if (ac.nodeType == 3) {
25319             ac = ac.parentNode;
25320         }
25321         
25322         var ar = ac.childNodes;
25323          
25324         var nodes = [];
25325         var other_nodes = [];
25326         var has_other_nodes = false;
25327         for (var i=0;i<ar.length;i++) {
25328             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
25329                 continue;
25330             }
25331             // fullly contained node.
25332             
25333             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
25334                 nodes.push(ar[i]);
25335                 continue;
25336             }
25337             
25338             // probably selected..
25339             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
25340                 other_nodes.push(ar[i]);
25341                 continue;
25342             }
25343             // outer..
25344             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
25345                 continue;
25346             }
25347             
25348             
25349             has_other_nodes = true;
25350         }
25351         if (!nodes.length && other_nodes.length) {
25352             nodes= other_nodes;
25353         }
25354         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
25355             return false;
25356         }
25357         
25358         return nodes[0];
25359     },
25360     createRange: function(sel)
25361     {
25362         // this has strange effects when using with 
25363         // top toolbar - not sure if it's a great idea.
25364         //this.editor.contentWindow.focus();
25365         if (typeof sel != "undefined") {
25366             try {
25367                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
25368             } catch(e) {
25369                 return this.doc.createRange();
25370             }
25371         } else {
25372             return this.doc.createRange();
25373         }
25374     },
25375     getParentElement: function()
25376     {
25377         
25378         this.assignDocWin();
25379         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
25380         
25381         var range = this.createRange(sel);
25382          
25383         try {
25384             var p = range.commonAncestorContainer;
25385             while (p.nodeType == 3) { // text node
25386                 p = p.parentNode;
25387             }
25388             return p;
25389         } catch (e) {
25390             return null;
25391         }
25392     
25393     },
25394     /***
25395      *
25396      * Range intersection.. the hard stuff...
25397      *  '-1' = before
25398      *  '0' = hits..
25399      *  '1' = after.
25400      *         [ -- selected range --- ]
25401      *   [fail]                        [fail]
25402      *
25403      *    basically..
25404      *      if end is before start or  hits it. fail.
25405      *      if start is after end or hits it fail.
25406      *
25407      *   if either hits (but other is outside. - then it's not 
25408      *   
25409      *    
25410      **/
25411     
25412     
25413     // @see http://www.thismuchiknow.co.uk/?p=64.
25414     rangeIntersectsNode : function(range, node)
25415     {
25416         var nodeRange = node.ownerDocument.createRange();
25417         try {
25418             nodeRange.selectNode(node);
25419         } catch (e) {
25420             nodeRange.selectNodeContents(node);
25421         }
25422     
25423         var rangeStartRange = range.cloneRange();
25424         rangeStartRange.collapse(true);
25425     
25426         var rangeEndRange = range.cloneRange();
25427         rangeEndRange.collapse(false);
25428     
25429         var nodeStartRange = nodeRange.cloneRange();
25430         nodeStartRange.collapse(true);
25431     
25432         var nodeEndRange = nodeRange.cloneRange();
25433         nodeEndRange.collapse(false);
25434     
25435         return rangeStartRange.compareBoundaryPoints(
25436                  Range.START_TO_START, nodeEndRange) == -1 &&
25437                rangeEndRange.compareBoundaryPoints(
25438                  Range.START_TO_START, nodeStartRange) == 1;
25439         
25440          
25441     },
25442     rangeCompareNode : function(range, node)
25443     {
25444         var nodeRange = node.ownerDocument.createRange();
25445         try {
25446             nodeRange.selectNode(node);
25447         } catch (e) {
25448             nodeRange.selectNodeContents(node);
25449         }
25450         
25451         
25452         range.collapse(true);
25453     
25454         nodeRange.collapse(true);
25455      
25456         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
25457         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
25458          
25459         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
25460         
25461         var nodeIsBefore   =  ss == 1;
25462         var nodeIsAfter    = ee == -1;
25463         
25464         if (nodeIsBefore && nodeIsAfter)
25465             return 0; // outer
25466         if (!nodeIsBefore && nodeIsAfter)
25467             return 1; //right trailed.
25468         
25469         if (nodeIsBefore && !nodeIsAfter)
25470             return 2;  // left trailed.
25471         // fully contined.
25472         return 3;
25473     },
25474
25475     // private? - in a new class?
25476     cleanUpPaste :  function()
25477     {
25478         // cleans up the whole document..
25479          Roo.log('cleanuppaste');
25480         this.cleanUpChildren(this.doc.body);
25481         var clean = this.cleanWordChars(this.doc.body.innerHTML);
25482         if (clean != this.doc.body.innerHTML) {
25483             this.doc.body.innerHTML = clean;
25484         }
25485         
25486     },
25487     
25488     cleanWordChars : function(input) {// change the chars to hex code
25489         var he = Roo.HtmlEditorCore;
25490         
25491         var output = input;
25492         Roo.each(he.swapCodes, function(sw) { 
25493             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
25494             
25495             output = output.replace(swapper, sw[1]);
25496         });
25497         
25498         return output;
25499     },
25500     
25501     
25502     cleanUpChildren : function (n)
25503     {
25504         if (!n.childNodes.length) {
25505             return;
25506         }
25507         for (var i = n.childNodes.length-1; i > -1 ; i--) {
25508            this.cleanUpChild(n.childNodes[i]);
25509         }
25510     },
25511     
25512     
25513         
25514     
25515     cleanUpChild : function (node)
25516     {
25517         var ed = this;
25518         //console.log(node);
25519         if (node.nodeName == "#text") {
25520             // clean up silly Windows -- stuff?
25521             return; 
25522         }
25523         if (node.nodeName == "#comment") {
25524             node.parentNode.removeChild(node);
25525             // clean up silly Windows -- stuff?
25526             return; 
25527         }
25528         
25529         if (Roo.HtmlEditorCore.black.indexOf(node.tagName.toLowerCase()) > -1) {
25530             // remove node.
25531             node.parentNode.removeChild(node);
25532             return;
25533             
25534         }
25535         
25536         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
25537         
25538         // remove <a name=....> as rendering on yahoo mailer is borked with this.
25539         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
25540         
25541         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
25542         //    remove_keep_children = true;
25543         //}
25544         
25545         if (remove_keep_children) {
25546             this.cleanUpChildren(node);
25547             // inserts everything just before this node...
25548             while (node.childNodes.length) {
25549                 var cn = node.childNodes[0];
25550                 node.removeChild(cn);
25551                 node.parentNode.insertBefore(cn, node);
25552             }
25553             node.parentNode.removeChild(node);
25554             return;
25555         }
25556         
25557         if (!node.attributes || !node.attributes.length) {
25558             this.cleanUpChildren(node);
25559             return;
25560         }
25561         
25562         function cleanAttr(n,v)
25563         {
25564             
25565             if (v.match(/^\./) || v.match(/^\//)) {
25566                 return;
25567             }
25568             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
25569                 return;
25570             }
25571             if (v.match(/^#/)) {
25572                 return;
25573             }
25574 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
25575             node.removeAttribute(n);
25576             
25577         }
25578         
25579         function cleanStyle(n,v)
25580         {
25581             if (v.match(/expression/)) { //XSS?? should we even bother..
25582                 node.removeAttribute(n);
25583                 return;
25584             }
25585             var cwhite = typeof(ed.cwhite) == 'undefined' ? Roo.HtmlEditorCore.cwhite : ed.cwhite;
25586             var cblack = typeof(ed.cblack) == 'undefined' ? Roo.HtmlEditorCore.cblack : ed.cblack;
25587             
25588             
25589             var parts = v.split(/;/);
25590             var clean = [];
25591             
25592             Roo.each(parts, function(p) {
25593                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
25594                 if (!p.length) {
25595                     return true;
25596                 }
25597                 var l = p.split(':').shift().replace(/\s+/g,'');
25598                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
25599                 
25600                 
25601                 if ( cblack.indexOf(l) > -1) {
25602 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25603                     //node.removeAttribute(n);
25604                     return true;
25605                 }
25606                 //Roo.log()
25607                 // only allow 'c whitelisted system attributes'
25608                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
25609 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25610                     //node.removeAttribute(n);
25611                     return true;
25612                 }
25613                 
25614                 
25615                  
25616                 
25617                 clean.push(p);
25618                 return true;
25619             });
25620             if (clean.length) { 
25621                 node.setAttribute(n, clean.join(';'));
25622             } else {
25623                 node.removeAttribute(n);
25624             }
25625             
25626         }
25627         
25628         
25629         for (var i = node.attributes.length-1; i > -1 ; i--) {
25630             var a = node.attributes[i];
25631             //console.log(a);
25632             
25633             if (a.name.toLowerCase().substr(0,2)=='on')  {
25634                 node.removeAttribute(a.name);
25635                 continue;
25636             }
25637             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
25638                 node.removeAttribute(a.name);
25639                 continue;
25640             }
25641             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
25642                 cleanAttr(a.name,a.value); // fixme..
25643                 continue;
25644             }
25645             if (a.name == 'style') {
25646                 cleanStyle(a.name,a.value);
25647                 continue;
25648             }
25649             /// clean up MS crap..
25650             // tecnically this should be a list of valid class'es..
25651             
25652             
25653             if (a.name == 'class') {
25654                 if (a.value.match(/^Mso/)) {
25655                     node.className = '';
25656                 }
25657                 
25658                 if (a.value.match(/body/)) {
25659                     node.className = '';
25660                 }
25661                 continue;
25662             }
25663             
25664             // style cleanup!?
25665             // class cleanup?
25666             
25667         }
25668         
25669         
25670         this.cleanUpChildren(node);
25671         
25672         
25673     }
25674     
25675     
25676     // hide stuff that is not compatible
25677     /**
25678      * @event blur
25679      * @hide
25680      */
25681     /**
25682      * @event change
25683      * @hide
25684      */
25685     /**
25686      * @event focus
25687      * @hide
25688      */
25689     /**
25690      * @event specialkey
25691      * @hide
25692      */
25693     /**
25694      * @cfg {String} fieldClass @hide
25695      */
25696     /**
25697      * @cfg {String} focusClass @hide
25698      */
25699     /**
25700      * @cfg {String} autoCreate @hide
25701      */
25702     /**
25703      * @cfg {String} inputType @hide
25704      */
25705     /**
25706      * @cfg {String} invalidClass @hide
25707      */
25708     /**
25709      * @cfg {String} invalidText @hide
25710      */
25711     /**
25712      * @cfg {String} msgFx @hide
25713      */
25714     /**
25715      * @cfg {String} validateOnBlur @hide
25716      */
25717 });
25718
25719 Roo.HtmlEditorCore.white = [
25720         'area', 'br', 'img', 'input', 'hr', 'wbr',
25721         
25722        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
25723        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
25724        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
25725        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
25726        'table',   'ul',         'xmp', 
25727        
25728        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
25729       'thead',   'tr', 
25730      
25731       'dir', 'menu', 'ol', 'ul', 'dl',
25732        
25733       'embed',  'object'
25734 ];
25735
25736
25737 Roo.HtmlEditorCore.black = [
25738     //    'embed',  'object', // enable - backend responsiblity to clean thiese
25739         'applet', // 
25740         'base',   'basefont', 'bgsound', 'blink',  'body', 
25741         'frame',  'frameset', 'head',    'html',   'ilayer', 
25742         'iframe', 'layer',  'link',     'meta',    'object',   
25743         'script', 'style' ,'title',  'xml' // clean later..
25744 ];
25745 Roo.HtmlEditorCore.clean = [
25746     'script', 'style', 'title', 'xml'
25747 ];
25748 Roo.HtmlEditorCore.remove = [
25749     'font'
25750 ];
25751 // attributes..
25752
25753 Roo.HtmlEditorCore.ablack = [
25754     'on'
25755 ];
25756     
25757 Roo.HtmlEditorCore.aclean = [ 
25758     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
25759 ];
25760
25761 // protocols..
25762 Roo.HtmlEditorCore.pwhite= [
25763         'http',  'https',  'mailto'
25764 ];
25765
25766 // white listed style attributes.
25767 Roo.HtmlEditorCore.cwhite= [
25768       //  'text-align', /// default is to allow most things..
25769       
25770          
25771 //        'font-size'//??
25772 ];
25773
25774 // black listed style attributes.
25775 Roo.HtmlEditorCore.cblack= [
25776       //  'font-size' -- this can be set by the project 
25777 ];
25778
25779
25780 Roo.HtmlEditorCore.swapCodes   =[ 
25781     [    8211, "--" ], 
25782     [    8212, "--" ], 
25783     [    8216,  "'" ],  
25784     [    8217, "'" ],  
25785     [    8220, '"' ],  
25786     [    8221, '"' ],  
25787     [    8226, "*" ],  
25788     [    8230, "..." ]
25789 ]; 
25790
25791     //<script type="text/javascript">
25792
25793 /*
25794  * Ext JS Library 1.1.1
25795  * Copyright(c) 2006-2007, Ext JS, LLC.
25796  * Licence LGPL
25797  * 
25798  */
25799  
25800  
25801 Roo.form.HtmlEditor = function(config){
25802     
25803     
25804     
25805     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
25806     
25807     if (!this.toolbars) {
25808         this.toolbars = [];
25809     }
25810     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
25811     
25812     
25813 };
25814
25815 /**
25816  * @class Roo.form.HtmlEditor
25817  * @extends Roo.form.Field
25818  * Provides a lightweight HTML Editor component.
25819  *
25820  * This has been tested on Fireforx / Chrome.. IE may not be so great..
25821  * 
25822  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
25823  * supported by this editor.</b><br/><br/>
25824  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
25825  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
25826  */
25827 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
25828       /**
25829      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
25830      */
25831     toolbars : false,
25832    
25833      /**
25834      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
25835      *                        Roo.resizable.
25836      */
25837     resizable : false,
25838      /**
25839      * @cfg {Number} height (in pixels)
25840      */   
25841     height: 300,
25842    /**
25843      * @cfg {Number} width (in pixels)
25844      */   
25845     width: 500,
25846     
25847     /**
25848      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
25849      * 
25850      */
25851     stylesheets: false,
25852     
25853     autosave : false,
25854     
25855     // id of frame..
25856     frameId: false,
25857     
25858     // private properties
25859     validationEvent : false,
25860     deferHeight: true,
25861     initialized : false,
25862     activated : false,
25863     
25864 //    onFocus : Roo.emptyFn,
25865     iframePad:3,
25866     hideMode:'offsets',
25867     
25868     defaultAutoCreate : { // modified by initCompnoent..
25869         tag: "textarea",
25870         style:"width:500px;height:300px;",
25871         autocomplete: "off"
25872     },
25873
25874     // private
25875     initComponent : function(){
25876         this.addEvents({
25877             /**
25878              * @event initialize
25879              * Fires when the editor is fully initialized (including the iframe)
25880              * @param {HtmlEditor} this
25881              */
25882             initialize: true,
25883             /**
25884              * @event activate
25885              * Fires when the editor is first receives the focus. Any insertion must wait
25886              * until after this event.
25887              * @param {HtmlEditor} this
25888              */
25889             activate: true,
25890              /**
25891              * @event beforesync
25892              * Fires before the textarea is updated with content from the editor iframe. Return false
25893              * to cancel the sync.
25894              * @param {HtmlEditor} this
25895              * @param {String} html
25896              */
25897             beforesync: true,
25898              /**
25899              * @event beforepush
25900              * Fires before the iframe editor is updated with content from the textarea. Return false
25901              * to cancel the push.
25902              * @param {HtmlEditor} this
25903              * @param {String} html
25904              */
25905             beforepush: true,
25906              /**
25907              * @event sync
25908              * Fires when the textarea is updated with content from the editor iframe.
25909              * @param {HtmlEditor} this
25910              * @param {String} html
25911              */
25912             sync: true,
25913              /**
25914              * @event push
25915              * Fires when the iframe editor is updated with content from the textarea.
25916              * @param {HtmlEditor} this
25917              * @param {String} html
25918              */
25919             push: true,
25920              /**
25921              * @event editmodechange
25922              * Fires when the editor switches edit modes
25923              * @param {HtmlEditor} this
25924              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
25925              */
25926             editmodechange: true,
25927             /**
25928              * @event editorevent
25929              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
25930              * @param {HtmlEditor} this
25931              */
25932             editorevent: true,
25933             /**
25934              * @event firstfocus
25935              * Fires when on first focus - needed by toolbars..
25936              * @param {HtmlEditor} this
25937              */
25938             firstfocus: true
25939         });
25940         this.defaultAutoCreate =  {
25941             tag: "textarea",
25942             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
25943             autocomplete: "off"
25944         };
25945     },
25946
25947     onFocus : function()
25948     {
25949         Roo.log('onFocus!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1');
25950     },
25951     /**
25952      * Protected method that will not generally be called directly. It
25953      * is called when the editor creates its toolbar. Override this method if you need to
25954      * add custom toolbar buttons.
25955      * @param {HtmlEditor} editor
25956      */
25957     createToolbar : function(editor){
25958         Roo.log("create toolbars");
25959         if (!editor.toolbars || !editor.toolbars.length) {
25960             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
25961         }
25962         
25963         for (var i =0 ; i < editor.toolbars.length;i++) {
25964             editor.toolbars[i] = Roo.factory(
25965                     typeof(editor.toolbars[i]) == 'string' ?
25966                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
25967                 Roo.form.HtmlEditor);
25968             editor.toolbars[i].init(editor);
25969         }
25970          
25971         
25972     },
25973
25974      
25975     // private
25976     onRender : function(ct, position)
25977     {
25978         var _t = this;
25979         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
25980         
25981         this.wrap = this.el.wrap({
25982             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
25983         });
25984         
25985         this.editorcore.onRender(ct, position);
25986          
25987         if (this.resizable) {
25988             this.resizeEl = new Roo.Resizable(this.wrap, {
25989                 pinned : true,
25990                 wrap: true,
25991                 dynamic : true,
25992                 minHeight : this.height,
25993                 height: this.height,
25994                 handles : this.resizable,
25995                 width: this.width,
25996                 listeners : {
25997                     resize : function(r, w, h) {
25998                         _t.onResize(w,h); // -something
25999                     }
26000                 }
26001             });
26002             
26003         }
26004         this.createToolbar(this);
26005        
26006         
26007         if(!this.width){
26008             this.setSize(this.wrap.getSize());
26009         }
26010         if (this.resizeEl) {
26011             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
26012             // should trigger onReize..
26013         }
26014         
26015 //        if(this.autosave){
26016 //            this.autoSaveFn = setInterval(this.autosave, 1000);
26017 //        }
26018     },
26019
26020     // private
26021     onResize : function(w, h)
26022     {
26023         //Roo.log('resize: ' +w + ',' + h );
26024         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
26025         var ew = false;
26026         var eh = false;
26027         
26028         if(this.el ){
26029             if(typeof w == 'number'){
26030                 var aw = w - this.wrap.getFrameWidth('lr');
26031                 this.el.setWidth(this.adjustWidth('textarea', aw));
26032                 ew = aw;
26033             }
26034             if(typeof h == 'number'){
26035                 var tbh = 0;
26036                 for (var i =0; i < this.toolbars.length;i++) {
26037                     // fixme - ask toolbars for heights?
26038                     tbh += this.toolbars[i].tb.el.getHeight();
26039                     if (this.toolbars[i].footer) {
26040                         tbh += this.toolbars[i].footer.el.getHeight();
26041                     }
26042                 }
26043                 
26044                 
26045                 
26046                 
26047                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
26048                 ah -= 5; // knock a few pixes off for look..
26049                 this.el.setHeight(this.adjustWidth('textarea', ah));
26050                 var eh = ah;
26051             }
26052         }
26053         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
26054         this.editorcore.onResize(ew,eh);
26055         
26056     },
26057
26058     /**
26059      * Toggles the editor between standard and source edit mode.
26060      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
26061      */
26062     toggleSourceEdit : function(sourceEditMode)
26063     {
26064         this.editorcore.toggleSourceEdit(sourceEditMode);
26065         
26066         if(this.editorcore.sourceEditMode){
26067             Roo.log('editor - showing textarea');
26068             
26069 //            Roo.log('in');
26070 //            Roo.log(this.syncValue());
26071             this.editorcore.syncValue();
26072             this.el.removeClass('x-hidden');
26073             this.el.dom.removeAttribute('tabIndex');
26074             this.el.focus();
26075         }else{
26076             Roo.log('editor - hiding textarea');
26077 //            Roo.log('out')
26078 //            Roo.log(this.pushValue()); 
26079             this.editorcore.pushValue();
26080             
26081             this.el.addClass('x-hidden');
26082             this.el.dom.setAttribute('tabIndex', -1);
26083             //this.deferFocus();
26084         }
26085          
26086         this.setSize(this.wrap.getSize());
26087         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
26088     },
26089  
26090     // private (for BoxComponent)
26091     adjustSize : Roo.BoxComponent.prototype.adjustSize,
26092
26093     // private (for BoxComponent)
26094     getResizeEl : function(){
26095         return this.wrap;
26096     },
26097
26098     // private (for BoxComponent)
26099     getPositionEl : function(){
26100         return this.wrap;
26101     },
26102
26103     // private
26104     initEvents : function(){
26105         this.originalValue = this.getValue();
26106     },
26107
26108     /**
26109      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26110      * @method
26111      */
26112     markInvalid : Roo.emptyFn,
26113     /**
26114      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26115      * @method
26116      */
26117     clearInvalid : Roo.emptyFn,
26118
26119     setValue : function(v){
26120         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
26121         this.editorcore.pushValue();
26122     },
26123
26124      
26125     // private
26126     deferFocus : function(){
26127         this.focus.defer(10, this);
26128     },
26129
26130     // doc'ed in Field
26131     focus : function(){
26132         this.editorcore.focus();
26133         
26134     },
26135       
26136
26137     // private
26138     onDestroy : function(){
26139         
26140         
26141         
26142         if(this.rendered){
26143             
26144             for (var i =0; i < this.toolbars.length;i++) {
26145                 // fixme - ask toolbars for heights?
26146                 this.toolbars[i].onDestroy();
26147             }
26148             
26149             this.wrap.dom.innerHTML = '';
26150             this.wrap.remove();
26151         }
26152     },
26153
26154     // private
26155     onFirstFocus : function(){
26156         //Roo.log("onFirstFocus");
26157         this.editorcore.onFirstFocus();
26158          for (var i =0; i < this.toolbars.length;i++) {
26159             this.toolbars[i].onFirstFocus();
26160         }
26161         
26162     },
26163     
26164     // private
26165     syncValue : function()
26166     {
26167         this.editorcore.syncValue();
26168     }
26169      
26170     
26171     // hide stuff that is not compatible
26172     /**
26173      * @event blur
26174      * @hide
26175      */
26176     /**
26177      * @event change
26178      * @hide
26179      */
26180     /**
26181      * @event focus
26182      * @hide
26183      */
26184     /**
26185      * @event specialkey
26186      * @hide
26187      */
26188     /**
26189      * @cfg {String} fieldClass @hide
26190      */
26191     /**
26192      * @cfg {String} focusClass @hide
26193      */
26194     /**
26195      * @cfg {String} autoCreate @hide
26196      */
26197     /**
26198      * @cfg {String} inputType @hide
26199      */
26200     /**
26201      * @cfg {String} invalidClass @hide
26202      */
26203     /**
26204      * @cfg {String} invalidText @hide
26205      */
26206     /**
26207      * @cfg {String} msgFx @hide
26208      */
26209     /**
26210      * @cfg {String} validateOnBlur @hide
26211      */
26212 });
26213  
26214     // <script type="text/javascript">
26215 /*
26216  * Based on
26217  * Ext JS Library 1.1.1
26218  * Copyright(c) 2006-2007, Ext JS, LLC.
26219  *  
26220  
26221  */
26222
26223 /**
26224  * @class Roo.form.HtmlEditorToolbar1
26225  * Basic Toolbar
26226  * 
26227  * Usage:
26228  *
26229  new Roo.form.HtmlEditor({
26230     ....
26231     toolbars : [
26232         new Roo.form.HtmlEditorToolbar1({
26233             disable : { fonts: 1 , format: 1, ..., ... , ...],
26234             btns : [ .... ]
26235         })
26236     }
26237      
26238  * 
26239  * @cfg {Object} disable List of elements to disable..
26240  * @cfg {Array} btns List of additional buttons.
26241  * 
26242  * 
26243  * NEEDS Extra CSS? 
26244  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
26245  */
26246  
26247 Roo.form.HtmlEditor.ToolbarStandard = function(config)
26248 {
26249     
26250     Roo.apply(this, config);
26251     
26252     // default disabled, based on 'good practice'..
26253     this.disable = this.disable || {};
26254     Roo.applyIf(this.disable, {
26255         fontSize : true,
26256         colors : true,
26257         specialElements : true
26258     });
26259     
26260     
26261     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26262     // dont call parent... till later.
26263 }
26264
26265 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
26266     
26267     tb: false,
26268     
26269     rendered: false,
26270     
26271     editor : false,
26272     editorcore : false,
26273     /**
26274      * @cfg {Object} disable  List of toolbar elements to disable
26275          
26276      */
26277     disable : false,
26278     
26279     
26280      /**
26281      * @cfg {String} createLinkText The default text for the create link prompt
26282      */
26283     createLinkText : 'Please enter the URL for the link:',
26284     /**
26285      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
26286      */
26287     defaultLinkValue : 'http:/'+'/',
26288    
26289     
26290       /**
26291      * @cfg {Array} fontFamilies An array of available font families
26292      */
26293     fontFamilies : [
26294         'Arial',
26295         'Courier New',
26296         'Tahoma',
26297         'Times New Roman',
26298         'Verdana'
26299     ],
26300     
26301     specialChars : [
26302            "&#169;",
26303           "&#174;",     
26304           "&#8482;",    
26305           "&#163;" ,    
26306          // "&#8212;",    
26307           "&#8230;",    
26308           "&#247;" ,    
26309         //  "&#225;" ,     ?? a acute?
26310            "&#8364;"    , //Euro
26311        //   "&#8220;"    ,
26312         //  "&#8221;"    ,
26313         //  "&#8226;"    ,
26314           "&#176;"  //   , // degrees
26315
26316          // "&#233;"     , // e ecute
26317          // "&#250;"     , // u ecute?
26318     ],
26319     
26320     specialElements : [
26321         {
26322             text: "Insert Table",
26323             xtype: 'MenuItem',
26324             xns : Roo.Menu,
26325             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
26326                 
26327         },
26328         {    
26329             text: "Insert Image",
26330             xtype: 'MenuItem',
26331             xns : Roo.Menu,
26332             ihtml : '<img src="about:blank"/>'
26333             
26334         }
26335         
26336          
26337     ],
26338     
26339     
26340     inputElements : [ 
26341             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
26342             "input:submit", "input:button", "select", "textarea", "label" ],
26343     formats : [
26344         ["p"] ,  
26345         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
26346         ["pre"],[ "code"], 
26347         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
26348         ['div'],['span']
26349     ],
26350     
26351     cleanStyles : [
26352         "font-size"
26353     ],
26354      /**
26355      * @cfg {String} defaultFont default font to use.
26356      */
26357     defaultFont: 'tahoma',
26358    
26359     fontSelect : false,
26360     
26361     
26362     formatCombo : false,
26363     
26364     init : function(editor)
26365     {
26366         this.editor = editor;
26367         this.editorcore = editor.editorcore ? editor.editorcore : editor;
26368         var editorcore = this.editorcore;
26369         
26370         var _t = this;
26371         
26372         var fid = editorcore.frameId;
26373         var etb = this;
26374         function btn(id, toggle, handler){
26375             var xid = fid + '-'+ id ;
26376             return {
26377                 id : xid,
26378                 cmd : id,
26379                 cls : 'x-btn-icon x-edit-'+id,
26380                 enableToggle:toggle !== false,
26381                 scope: _t, // was editor...
26382                 handler:handler||_t.relayBtnCmd,
26383                 clickEvent:'mousedown',
26384                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
26385                 tabIndex:-1
26386             };
26387         }
26388         
26389         
26390         
26391         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
26392         this.tb = tb;
26393          // stop form submits
26394         tb.el.on('click', function(e){
26395             e.preventDefault(); // what does this do?
26396         });
26397
26398         if(!this.disable.font) { // && !Roo.isSafari){
26399             /* why no safari for fonts 
26400             editor.fontSelect = tb.el.createChild({
26401                 tag:'select',
26402                 tabIndex: -1,
26403                 cls:'x-font-select',
26404                 html: this.createFontOptions()
26405             });
26406             
26407             editor.fontSelect.on('change', function(){
26408                 var font = editor.fontSelect.dom.value;
26409                 editor.relayCmd('fontname', font);
26410                 editor.deferFocus();
26411             }, editor);
26412             
26413             tb.add(
26414                 editor.fontSelect.dom,
26415                 '-'
26416             );
26417             */
26418             
26419         };
26420         if(!this.disable.formats){
26421             this.formatCombo = new Roo.form.ComboBox({
26422                 store: new Roo.data.SimpleStore({
26423                     id : 'tag',
26424                     fields: ['tag'],
26425                     data : this.formats // from states.js
26426                 }),
26427                 blockFocus : true,
26428                 name : '',
26429                 //autoCreate : {tag: "div",  size: "20"},
26430                 displayField:'tag',
26431                 typeAhead: false,
26432                 mode: 'local',
26433                 editable : false,
26434                 triggerAction: 'all',
26435                 emptyText:'Add tag',
26436                 selectOnFocus:true,
26437                 width:135,
26438                 listeners : {
26439                     'select': function(c, r, i) {
26440                         editorcore.insertTag(r.get('tag'));
26441                         editor.focus();
26442                     }
26443                 }
26444
26445             });
26446             tb.addField(this.formatCombo);
26447             
26448         }
26449         
26450         if(!this.disable.format){
26451             tb.add(
26452                 btn('bold'),
26453                 btn('italic'),
26454                 btn('underline')
26455             );
26456         };
26457         if(!this.disable.fontSize){
26458             tb.add(
26459                 '-',
26460                 
26461                 
26462                 btn('increasefontsize', false, editorcore.adjustFont),
26463                 btn('decreasefontsize', false, editorcore.adjustFont)
26464             );
26465         };
26466         
26467         
26468         if(!this.disable.colors){
26469             tb.add(
26470                 '-', {
26471                     id:editorcore.frameId +'-forecolor',
26472                     cls:'x-btn-icon x-edit-forecolor',
26473                     clickEvent:'mousedown',
26474                     tooltip: this.buttonTips['forecolor'] || undefined,
26475                     tabIndex:-1,
26476                     menu : new Roo.menu.ColorMenu({
26477                         allowReselect: true,
26478                         focus: Roo.emptyFn,
26479                         value:'000000',
26480                         plain:true,
26481                         selectHandler: function(cp, color){
26482                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
26483                             editor.deferFocus();
26484                         },
26485                         scope: editorcore,
26486                         clickEvent:'mousedown'
26487                     })
26488                 }, {
26489                     id:editorcore.frameId +'backcolor',
26490                     cls:'x-btn-icon x-edit-backcolor',
26491                     clickEvent:'mousedown',
26492                     tooltip: this.buttonTips['backcolor'] || undefined,
26493                     tabIndex:-1,
26494                     menu : new Roo.menu.ColorMenu({
26495                         focus: Roo.emptyFn,
26496                         value:'FFFFFF',
26497                         plain:true,
26498                         allowReselect: true,
26499                         selectHandler: function(cp, color){
26500                             if(Roo.isGecko){
26501                                 editorcore.execCmd('useCSS', false);
26502                                 editorcore.execCmd('hilitecolor', color);
26503                                 editorcore.execCmd('useCSS', true);
26504                                 editor.deferFocus();
26505                             }else{
26506                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
26507                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
26508                                 editor.deferFocus();
26509                             }
26510                         },
26511                         scope:editorcore,
26512                         clickEvent:'mousedown'
26513                     })
26514                 }
26515             );
26516         };
26517         // now add all the items...
26518         
26519
26520         if(!this.disable.alignments){
26521             tb.add(
26522                 '-',
26523                 btn('justifyleft'),
26524                 btn('justifycenter'),
26525                 btn('justifyright')
26526             );
26527         };
26528
26529         //if(!Roo.isSafari){
26530             if(!this.disable.links){
26531                 tb.add(
26532                     '-',
26533                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
26534                 );
26535             };
26536
26537             if(!this.disable.lists){
26538                 tb.add(
26539                     '-',
26540                     btn('insertorderedlist'),
26541                     btn('insertunorderedlist')
26542                 );
26543             }
26544             if(!this.disable.sourceEdit){
26545                 tb.add(
26546                     '-',
26547                     btn('sourceedit', true, function(btn){
26548                         Roo.log(this);
26549                         this.toggleSourceEdit(btn.pressed);
26550                     })
26551                 );
26552             }
26553         //}
26554         
26555         var smenu = { };
26556         // special menu.. - needs to be tidied up..
26557         if (!this.disable.special) {
26558             smenu = {
26559                 text: "&#169;",
26560                 cls: 'x-edit-none',
26561                 
26562                 menu : {
26563                     items : []
26564                 }
26565             };
26566             for (var i =0; i < this.specialChars.length; i++) {
26567                 smenu.menu.items.push({
26568                     
26569                     html: this.specialChars[i],
26570                     handler: function(a,b) {
26571                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
26572                         //editor.insertAtCursor(a.html);
26573                         
26574                     },
26575                     tabIndex:-1
26576                 });
26577             }
26578             
26579             
26580             tb.add(smenu);
26581             
26582             
26583         }
26584         
26585         var cmenu = { };
26586         if (!this.disable.cleanStyles) {
26587             cmenu = {
26588                 cls: 'x-btn-icon x-btn-clear',
26589                 
26590                 menu : {
26591                     items : []
26592                 }
26593             };
26594             for (var i =0; i < this.cleanStyles.length; i++) {
26595                 cmenu.menu.items.push({
26596                     actiontype : this.cleanStyles[i],
26597                     html: 'Remove ' + this.cleanStyles[i],
26598                     handler: function(a,b) {
26599                         Roo.log(a);
26600                         Roo.log(b);
26601                         var c = Roo.get(editorcore.doc.body);
26602                         c.select('[style]').each(function(s) {
26603                             s.dom.style.removeProperty(a.actiontype);
26604                         });
26605                         
26606                     },
26607                     tabIndex:-1
26608                 });
26609             }
26610             
26611             tb.add(cmenu);
26612         }
26613          
26614         if (!this.disable.specialElements) {
26615             var semenu = {
26616                 text: "Other;",
26617                 cls: 'x-edit-none',
26618                 menu : {
26619                     items : []
26620                 }
26621             };
26622             for (var i =0; i < this.specialElements.length; i++) {
26623                 semenu.menu.items.push(
26624                     Roo.apply({ 
26625                         handler: function(a,b) {
26626                             editor.insertAtCursor(this.ihtml);
26627                         }
26628                     }, this.specialElements[i])
26629                 );
26630                     
26631             }
26632             
26633             tb.add(semenu);
26634             
26635             
26636         }
26637          
26638         
26639         if (this.btns) {
26640             for(var i =0; i< this.btns.length;i++) {
26641                 var b = Roo.factory(this.btns[i],Roo.form);
26642                 b.cls =  'x-edit-none';
26643                 b.scope = editorcore;
26644                 tb.add(b);
26645             }
26646         
26647         }
26648         
26649         
26650         
26651         // disable everything...
26652         
26653         this.tb.items.each(function(item){
26654            if(item.id != editorcore.frameId+ '-sourceedit'){
26655                 item.disable();
26656             }
26657         });
26658         this.rendered = true;
26659         
26660         // the all the btns;
26661         editor.on('editorevent', this.updateToolbar, this);
26662         // other toolbars need to implement this..
26663         //editor.on('editmodechange', this.updateToolbar, this);
26664     },
26665     
26666     
26667     relayBtnCmd : function(btn) {
26668         this.editorcore.relayCmd(btn.cmd);
26669     },
26670     // private used internally
26671     createLink : function(){
26672         Roo.log("create link?");
26673         var url = prompt(this.createLinkText, this.defaultLinkValue);
26674         if(url && url != 'http:/'+'/'){
26675             this.editorcore.relayCmd('createlink', url);
26676         }
26677     },
26678
26679     
26680     /**
26681      * Protected method that will not generally be called directly. It triggers
26682      * a toolbar update by reading the markup state of the current selection in the editor.
26683      */
26684     updateToolbar: function(){
26685
26686         if(!this.editorcore.activated){
26687             this.editor.onFirstFocus();
26688             return;
26689         }
26690
26691         var btns = this.tb.items.map, 
26692             doc = this.editorcore.doc,
26693             frameId = this.editorcore.frameId;
26694
26695         if(!this.disable.font && !Roo.isSafari){
26696             /*
26697             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
26698             if(name != this.fontSelect.dom.value){
26699                 this.fontSelect.dom.value = name;
26700             }
26701             */
26702         }
26703         if(!this.disable.format){
26704             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
26705             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
26706             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
26707         }
26708         if(!this.disable.alignments){
26709             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
26710             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
26711             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
26712         }
26713         if(!Roo.isSafari && !this.disable.lists){
26714             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
26715             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
26716         }
26717         
26718         var ans = this.editorcore.getAllAncestors();
26719         if (this.formatCombo) {
26720             
26721             
26722             var store = this.formatCombo.store;
26723             this.formatCombo.setValue("");
26724             for (var i =0; i < ans.length;i++) {
26725                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
26726                     // select it..
26727                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
26728                     break;
26729                 }
26730             }
26731         }
26732         
26733         
26734         
26735         // hides menus... - so this cant be on a menu...
26736         Roo.menu.MenuMgr.hideAll();
26737
26738         //this.editorsyncValue();
26739     },
26740    
26741     
26742     createFontOptions : function(){
26743         var buf = [], fs = this.fontFamilies, ff, lc;
26744         
26745         
26746         
26747         for(var i = 0, len = fs.length; i< len; i++){
26748             ff = fs[i];
26749             lc = ff.toLowerCase();
26750             buf.push(
26751                 '<option value="',lc,'" style="font-family:',ff,';"',
26752                     (this.defaultFont == lc ? ' selected="true">' : '>'),
26753                     ff,
26754                 '</option>'
26755             );
26756         }
26757         return buf.join('');
26758     },
26759     
26760     toggleSourceEdit : function(sourceEditMode){
26761         
26762         Roo.log("toolbar toogle");
26763         if(sourceEditMode === undefined){
26764             sourceEditMode = !this.sourceEditMode;
26765         }
26766         this.sourceEditMode = sourceEditMode === true;
26767         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
26768         // just toggle the button?
26769         if(btn.pressed !== this.sourceEditMode){
26770             btn.toggle(this.sourceEditMode);
26771             return;
26772         }
26773         
26774         if(sourceEditMode){
26775             Roo.log("disabling buttons");
26776             this.tb.items.each(function(item){
26777                 if(item.cmd != 'sourceedit'){
26778                     item.disable();
26779                 }
26780             });
26781           
26782         }else{
26783             Roo.log("enabling buttons");
26784             if(this.editorcore.initialized){
26785                 this.tb.items.each(function(item){
26786                     item.enable();
26787                 });
26788             }
26789             
26790         }
26791         Roo.log("calling toggole on editor");
26792         // tell the editor that it's been pressed..
26793         this.editor.toggleSourceEdit(sourceEditMode);
26794        
26795     },
26796      /**
26797      * Object collection of toolbar tooltips for the buttons in the editor. The key
26798      * is the command id associated with that button and the value is a valid QuickTips object.
26799      * For example:
26800 <pre><code>
26801 {
26802     bold : {
26803         title: 'Bold (Ctrl+B)',
26804         text: 'Make the selected text bold.',
26805         cls: 'x-html-editor-tip'
26806     },
26807     italic : {
26808         title: 'Italic (Ctrl+I)',
26809         text: 'Make the selected text italic.',
26810         cls: 'x-html-editor-tip'
26811     },
26812     ...
26813 </code></pre>
26814     * @type Object
26815      */
26816     buttonTips : {
26817         bold : {
26818             title: 'Bold (Ctrl+B)',
26819             text: 'Make the selected text bold.',
26820             cls: 'x-html-editor-tip'
26821         },
26822         italic : {
26823             title: 'Italic (Ctrl+I)',
26824             text: 'Make the selected text italic.',
26825             cls: 'x-html-editor-tip'
26826         },
26827         underline : {
26828             title: 'Underline (Ctrl+U)',
26829             text: 'Underline the selected text.',
26830             cls: 'x-html-editor-tip'
26831         },
26832         increasefontsize : {
26833             title: 'Grow Text',
26834             text: 'Increase the font size.',
26835             cls: 'x-html-editor-tip'
26836         },
26837         decreasefontsize : {
26838             title: 'Shrink Text',
26839             text: 'Decrease the font size.',
26840             cls: 'x-html-editor-tip'
26841         },
26842         backcolor : {
26843             title: 'Text Highlight Color',
26844             text: 'Change the background color of the selected text.',
26845             cls: 'x-html-editor-tip'
26846         },
26847         forecolor : {
26848             title: 'Font Color',
26849             text: 'Change the color of the selected text.',
26850             cls: 'x-html-editor-tip'
26851         },
26852         justifyleft : {
26853             title: 'Align Text Left',
26854             text: 'Align text to the left.',
26855             cls: 'x-html-editor-tip'
26856         },
26857         justifycenter : {
26858             title: 'Center Text',
26859             text: 'Center text in the editor.',
26860             cls: 'x-html-editor-tip'
26861         },
26862         justifyright : {
26863             title: 'Align Text Right',
26864             text: 'Align text to the right.',
26865             cls: 'x-html-editor-tip'
26866         },
26867         insertunorderedlist : {
26868             title: 'Bullet List',
26869             text: 'Start a bulleted list.',
26870             cls: 'x-html-editor-tip'
26871         },
26872         insertorderedlist : {
26873             title: 'Numbered List',
26874             text: 'Start a numbered list.',
26875             cls: 'x-html-editor-tip'
26876         },
26877         createlink : {
26878             title: 'Hyperlink',
26879             text: 'Make the selected text a hyperlink.',
26880             cls: 'x-html-editor-tip'
26881         },
26882         sourceedit : {
26883             title: 'Source Edit',
26884             text: 'Switch to source editing mode.',
26885             cls: 'x-html-editor-tip'
26886         }
26887     },
26888     // private
26889     onDestroy : function(){
26890         if(this.rendered){
26891             
26892             this.tb.items.each(function(item){
26893                 if(item.menu){
26894                     item.menu.removeAll();
26895                     if(item.menu.el){
26896                         item.menu.el.destroy();
26897                     }
26898                 }
26899                 item.destroy();
26900             });
26901              
26902         }
26903     },
26904     onFirstFocus: function() {
26905         this.tb.items.each(function(item){
26906            item.enable();
26907         });
26908     }
26909 });
26910
26911
26912
26913
26914 // <script type="text/javascript">
26915 /*
26916  * Based on
26917  * Ext JS Library 1.1.1
26918  * Copyright(c) 2006-2007, Ext JS, LLC.
26919  *  
26920  
26921  */
26922
26923  
26924 /**
26925  * @class Roo.form.HtmlEditor.ToolbarContext
26926  * Context Toolbar
26927  * 
26928  * Usage:
26929  *
26930  new Roo.form.HtmlEditor({
26931     ....
26932     toolbars : [
26933         { xtype: 'ToolbarStandard', styles : {} }
26934         { xtype: 'ToolbarContext', disable : {} }
26935     ]
26936 })
26937
26938      
26939  * 
26940  * @config : {Object} disable List of elements to disable.. (not done yet.)
26941  * @config : {Object} styles  Map of styles available.
26942  * 
26943  */
26944
26945 Roo.form.HtmlEditor.ToolbarContext = function(config)
26946 {
26947     
26948     Roo.apply(this, config);
26949     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26950     // dont call parent... till later.
26951     this.styles = this.styles || {};
26952 }
26953
26954  
26955
26956 Roo.form.HtmlEditor.ToolbarContext.types = {
26957     'IMG' : {
26958         width : {
26959             title: "Width",
26960             width: 40
26961         },
26962         height:  {
26963             title: "Height",
26964             width: 40
26965         },
26966         align: {
26967             title: "Align",
26968             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
26969             width : 80
26970             
26971         },
26972         border: {
26973             title: "Border",
26974             width: 40
26975         },
26976         alt: {
26977             title: "Alt",
26978             width: 120
26979         },
26980         src : {
26981             title: "Src",
26982             width: 220
26983         }
26984         
26985     },
26986     'A' : {
26987         name : {
26988             title: "Name",
26989             width: 50
26990         },
26991         target:  {
26992             title: "Target",
26993             width: 120
26994         },
26995         href:  {
26996             title: "Href",
26997             width: 220
26998         } // border?
26999         
27000     },
27001     'TABLE' : {
27002         rows : {
27003             title: "Rows",
27004             width: 20
27005         },
27006         cols : {
27007             title: "Cols",
27008             width: 20
27009         },
27010         width : {
27011             title: "Width",
27012             width: 40
27013         },
27014         height : {
27015             title: "Height",
27016             width: 40
27017         },
27018         border : {
27019             title: "Border",
27020             width: 20
27021         }
27022     },
27023     'TD' : {
27024         width : {
27025             title: "Width",
27026             width: 40
27027         },
27028         height : {
27029             title: "Height",
27030             width: 40
27031         },   
27032         align: {
27033             title: "Align",
27034             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
27035             width: 80
27036         },
27037         valign: {
27038             title: "Valign",
27039             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
27040             width: 80
27041         },
27042         colspan: {
27043             title: "Colspan",
27044             width: 20
27045             
27046         },
27047          'font-family'  : {
27048             title : "Font",
27049             style : 'fontFamily',
27050             displayField: 'display',
27051             optname : 'font-family',
27052             width: 140
27053         }
27054     },
27055     'INPUT' : {
27056         name : {
27057             title: "name",
27058             width: 120
27059         },
27060         value : {
27061             title: "Value",
27062             width: 120
27063         },
27064         width : {
27065             title: "Width",
27066             width: 40
27067         }
27068     },
27069     'LABEL' : {
27070         'for' : {
27071             title: "For",
27072             width: 120
27073         }
27074     },
27075     'TEXTAREA' : {
27076           name : {
27077             title: "name",
27078             width: 120
27079         },
27080         rows : {
27081             title: "Rows",
27082             width: 20
27083         },
27084         cols : {
27085             title: "Cols",
27086             width: 20
27087         }
27088     },
27089     'SELECT' : {
27090         name : {
27091             title: "name",
27092             width: 120
27093         },
27094         selectoptions : {
27095             title: "Options",
27096             width: 200
27097         }
27098     },
27099     
27100     // should we really allow this??
27101     // should this just be 
27102     'BODY' : {
27103         title : {
27104             title: "Title",
27105             width: 200,
27106             disabled : true
27107         }
27108     },
27109     'SPAN' : {
27110         'font-family'  : {
27111             title : "Font",
27112             style : 'fontFamily',
27113             displayField: 'display',
27114             optname : 'font-family',
27115             width: 140
27116         }
27117     },
27118     'DIV' : {
27119         'font-family'  : {
27120             title : "Font",
27121             style : 'fontFamily',
27122             displayField: 'display',
27123             optname : 'font-family',
27124             width: 140
27125         }
27126     },
27127      'P' : {
27128         'font-family'  : {
27129             title : "Font",
27130             style : 'fontFamily',
27131             displayField: 'display',
27132             optname : 'font-family',
27133             width: 140
27134         }
27135     },
27136     
27137     '*' : {
27138         // empty..
27139     }
27140
27141 };
27142
27143 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
27144 Roo.form.HtmlEditor.ToolbarContext.stores = false;
27145
27146 Roo.form.HtmlEditor.ToolbarContext.options = {
27147         'font-family'  : [ 
27148                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
27149                 [ 'Courier New', 'Courier New'],
27150                 [ 'Tahoma', 'Tahoma'],
27151                 [ 'Times New Roman,serif', 'Times'],
27152                 [ 'Verdana','Verdana' ]
27153         ]
27154 };
27155
27156 // fixme - these need to be configurable..
27157  
27158
27159 Roo.form.HtmlEditor.ToolbarContext.types
27160
27161
27162 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
27163     
27164     tb: false,
27165     
27166     rendered: false,
27167     
27168     editor : false,
27169     editorcore : false,
27170     /**
27171      * @cfg {Object} disable  List of toolbar elements to disable
27172          
27173      */
27174     disable : false,
27175     /**
27176      * @cfg {Object} styles List of styles 
27177      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
27178      *
27179      * These must be defined in the page, so they get rendered correctly..
27180      * .headline { }
27181      * TD.underline { }
27182      * 
27183      */
27184     styles : false,
27185     
27186     options: false,
27187     
27188     toolbars : false,
27189     
27190     init : function(editor)
27191     {
27192         this.editor = editor;
27193         this.editorcore = editor.editorcore ? editor.editorcore : editor;
27194         var editorcore = this.editorcore;
27195         
27196         var fid = editorcore.frameId;
27197         var etb = this;
27198         function btn(id, toggle, handler){
27199             var xid = fid + '-'+ id ;
27200             return {
27201                 id : xid,
27202                 cmd : id,
27203                 cls : 'x-btn-icon x-edit-'+id,
27204                 enableToggle:toggle !== false,
27205                 scope: editorcore, // was editor...
27206                 handler:handler||editorcore.relayBtnCmd,
27207                 clickEvent:'mousedown',
27208                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
27209                 tabIndex:-1
27210             };
27211         }
27212         // create a new element.
27213         var wdiv = editor.wrap.createChild({
27214                 tag: 'div'
27215             }, editor.wrap.dom.firstChild.nextSibling, true);
27216         
27217         // can we do this more than once??
27218         
27219          // stop form submits
27220       
27221  
27222         // disable everything...
27223         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27224         this.toolbars = {};
27225            
27226         for (var i in  ty) {
27227           
27228             this.toolbars[i] = this.buildToolbar(ty[i],i);
27229         }
27230         this.tb = this.toolbars.BODY;
27231         this.tb.el.show();
27232         this.buildFooter();
27233         this.footer.show();
27234         editor.on('hide', function( ) { this.footer.hide() }, this);
27235         editor.on('show', function( ) { this.footer.show() }, this);
27236         
27237          
27238         this.rendered = true;
27239         
27240         // the all the btns;
27241         editor.on('editorevent', this.updateToolbar, this);
27242         // other toolbars need to implement this..
27243         //editor.on('editmodechange', this.updateToolbar, this);
27244     },
27245     
27246     
27247     
27248     /**
27249      * Protected method that will not generally be called directly. It triggers
27250      * a toolbar update by reading the markup state of the current selection in the editor.
27251      */
27252     updateToolbar: function(editor,ev,sel){
27253
27254         //Roo.log(ev);
27255         // capture mouse up - this is handy for selecting images..
27256         // perhaps should go somewhere else...
27257         if(!this.editorcore.activated){
27258              this.editor.onFirstFocus();
27259             return;
27260         }
27261         
27262         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
27263         // selectNode - might want to handle IE?
27264         if (ev &&
27265             (ev.type == 'mouseup' || ev.type == 'click' ) &&
27266             ev.target && ev.target.tagName == 'IMG') {
27267             // they have click on an image...
27268             // let's see if we can change the selection...
27269             sel = ev.target;
27270          
27271               var nodeRange = sel.ownerDocument.createRange();
27272             try {
27273                 nodeRange.selectNode(sel);
27274             } catch (e) {
27275                 nodeRange.selectNodeContents(sel);
27276             }
27277             //nodeRange.collapse(true);
27278             var s = this.editorcore.win.getSelection();
27279             s.removeAllRanges();
27280             s.addRange(nodeRange);
27281         }  
27282         
27283       
27284         var updateFooter = sel ? false : true;
27285         
27286         
27287         var ans = this.editorcore.getAllAncestors();
27288         
27289         // pick
27290         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27291         
27292         if (!sel) { 
27293             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
27294             sel = sel ? sel : this.editorcore.doc.body;
27295             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
27296             
27297         }
27298         // pick a menu that exists..
27299         var tn = sel.tagName.toUpperCase();
27300         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
27301         
27302         tn = sel.tagName.toUpperCase();
27303         
27304         var lastSel = this.tb.selectedNode
27305         
27306         this.tb.selectedNode = sel;
27307         
27308         // if current menu does not match..
27309         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode)) {
27310                 
27311             this.tb.el.hide();
27312             ///console.log("show: " + tn);
27313             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
27314             this.tb.el.show();
27315             // update name
27316             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
27317             
27318             
27319             // update attributes
27320             if (this.tb.fields) {
27321                 this.tb.fields.each(function(e) {
27322                     if (e.stylename) {
27323                         e.setValue(sel.style[e.stylename]);
27324                         return;
27325                     } 
27326                    e.setValue(sel.getAttribute(e.attrname));
27327                 });
27328             }
27329             
27330             var hasStyles = false;
27331             for(var i in this.styles) {
27332                 hasStyles = true;
27333                 break;
27334             }
27335             
27336             // update styles
27337             if (hasStyles) { 
27338                 var st = this.tb.fields.item(0);
27339                 
27340                 st.store.removeAll();
27341                
27342                 
27343                 var cn = sel.className.split(/\s+/);
27344                 
27345                 var avs = [];
27346                 if (this.styles['*']) {
27347                     
27348                     Roo.each(this.styles['*'], function(v) {
27349                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27350                     });
27351                 }
27352                 if (this.styles[tn]) { 
27353                     Roo.each(this.styles[tn], function(v) {
27354                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27355                     });
27356                 }
27357                 
27358                 st.store.loadData(avs);
27359                 st.collapse();
27360                 st.setValue(cn);
27361             }
27362             // flag our selected Node.
27363             this.tb.selectedNode = sel;
27364            
27365            
27366             Roo.menu.MenuMgr.hideAll();
27367
27368         }
27369         
27370         if (!updateFooter) {
27371             //this.footDisp.dom.innerHTML = ''; 
27372             return;
27373         }
27374         // update the footer
27375         //
27376         var html = '';
27377         
27378         this.footerEls = ans.reverse();
27379         Roo.each(this.footerEls, function(a,i) {
27380             if (!a) { return; }
27381             html += html.length ? ' &gt; '  :  '';
27382             
27383             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
27384             
27385         });
27386        
27387         // 
27388         var sz = this.footDisp.up('td').getSize();
27389         this.footDisp.dom.style.width = (sz.width -10) + 'px';
27390         this.footDisp.dom.style.marginLeft = '5px';
27391         
27392         this.footDisp.dom.style.overflow = 'hidden';
27393         
27394         this.footDisp.dom.innerHTML = html;
27395             
27396         //this.editorsyncValue();
27397     },
27398      
27399     
27400    
27401        
27402     // private
27403     onDestroy : function(){
27404         if(this.rendered){
27405             
27406             this.tb.items.each(function(item){
27407                 if(item.menu){
27408                     item.menu.removeAll();
27409                     if(item.menu.el){
27410                         item.menu.el.destroy();
27411                     }
27412                 }
27413                 item.destroy();
27414             });
27415              
27416         }
27417     },
27418     onFirstFocus: function() {
27419         // need to do this for all the toolbars..
27420         this.tb.items.each(function(item){
27421            item.enable();
27422         });
27423     },
27424     buildToolbar: function(tlist, nm)
27425     {
27426         var editor = this.editor;
27427         var editorcore = this.editorcore;
27428          // create a new element.
27429         var wdiv = editor.wrap.createChild({
27430                 tag: 'div'
27431             }, editor.wrap.dom.firstChild.nextSibling, true);
27432         
27433        
27434         var tb = new Roo.Toolbar(wdiv);
27435         // add the name..
27436         
27437         tb.add(nm+ ":&nbsp;");
27438         
27439         var styles = [];
27440         for(var i in this.styles) {
27441             styles.push(i);
27442         }
27443         
27444         // styles...
27445         if (styles && styles.length) {
27446             
27447             // this needs a multi-select checkbox...
27448             tb.addField( new Roo.form.ComboBox({
27449                 store: new Roo.data.SimpleStore({
27450                     id : 'val',
27451                     fields: ['val', 'selected'],
27452                     data : [] 
27453                 }),
27454                 name : '-roo-edit-className',
27455                 attrname : 'className',
27456                 displayField: 'val',
27457                 typeAhead: false,
27458                 mode: 'local',
27459                 editable : false,
27460                 triggerAction: 'all',
27461                 emptyText:'Select Style',
27462                 selectOnFocus:true,
27463                 width: 130,
27464                 listeners : {
27465                     'select': function(c, r, i) {
27466                         // initial support only for on class per el..
27467                         tb.selectedNode.className =  r ? r.get('val') : '';
27468                         editorcore.syncValue();
27469                     }
27470                 }
27471     
27472             }));
27473         }
27474         
27475         var tbc = Roo.form.HtmlEditor.ToolbarContext;
27476         var tbops = tbc.options;
27477         
27478         for (var i in tlist) {
27479             
27480             var item = tlist[i];
27481             tb.add(item.title + ":&nbsp;");
27482             
27483             
27484             //optname == used so you can configure the options available..
27485             var opts = item.opts ? item.opts : false;
27486             if (item.optname) {
27487                 opts = tbops[item.optname];
27488            
27489             }
27490             
27491             if (opts) {
27492                 // opts == pulldown..
27493                 tb.addField( new Roo.form.ComboBox({
27494                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
27495                         id : 'val',
27496                         fields: ['val', 'display'],
27497                         data : opts  
27498                     }),
27499                     name : '-roo-edit-' + i,
27500                     attrname : i,
27501                     stylename : item.style ? item.style : false,
27502                     displayField: item.displayField ? item.displayField : 'val',
27503                     valueField :  'val',
27504                     typeAhead: false,
27505                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
27506                     editable : false,
27507                     triggerAction: 'all',
27508                     emptyText:'Select',
27509                     selectOnFocus:true,
27510                     width: item.width ? item.width  : 130,
27511                     listeners : {
27512                         'select': function(c, r, i) {
27513                             if (c.stylename) {
27514                                 tb.selectedNode.style[c.stylename] =  r.get('val');
27515                                 return;
27516                             }
27517                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
27518                         }
27519                     }
27520
27521                 }));
27522                 continue;
27523                     
27524                  
27525                 
27526                 tb.addField( new Roo.form.TextField({
27527                     name: i,
27528                     width: 100,
27529                     //allowBlank:false,
27530                     value: ''
27531                 }));
27532                 continue;
27533             }
27534             tb.addField( new Roo.form.TextField({
27535                 name: '-roo-edit-' + i,
27536                 attrname : i,
27537                 
27538                 width: item.width,
27539                 //allowBlank:true,
27540                 value: '',
27541                 listeners: {
27542                     'change' : function(f, nv, ov) {
27543                         tb.selectedNode.setAttribute(f.attrname, nv);
27544                     }
27545                 }
27546             }));
27547              
27548         }
27549         tb.addFill();
27550         var _this = this;
27551         tb.addButton( {
27552             text: 'Remove Tag',
27553     
27554             listeners : {
27555                 click : function ()
27556                 {
27557                     // remove
27558                     // undo does not work.
27559                      
27560                     var sn = tb.selectedNode;
27561                     
27562                     var pn = sn.parentNode;
27563                     
27564                     var stn =  sn.childNodes[0];
27565                     var en = sn.childNodes[sn.childNodes.length - 1 ];
27566                     while (sn.childNodes.length) {
27567                         var node = sn.childNodes[0];
27568                         sn.removeChild(node);
27569                         //Roo.log(node);
27570                         pn.insertBefore(node, sn);
27571                         
27572                     }
27573                     pn.removeChild(sn);
27574                     var range = editorcore.createRange();
27575         
27576                     range.setStart(stn,0);
27577                     range.setEnd(en,0); //????
27578                     //range.selectNode(sel);
27579                     
27580                     
27581                     var selection = editorcore.getSelection();
27582                     selection.removeAllRanges();
27583                     selection.addRange(range);
27584                     
27585                     
27586                     
27587                     //_this.updateToolbar(null, null, pn);
27588                     _this.updateToolbar(null, null, null);
27589                     _this.footDisp.dom.innerHTML = ''; 
27590                 }
27591             }
27592             
27593                     
27594                 
27595             
27596         });
27597         
27598         
27599         tb.el.on('click', function(e){
27600             e.preventDefault(); // what does this do?
27601         });
27602         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
27603         tb.el.hide();
27604         tb.name = nm;
27605         // dont need to disable them... as they will get hidden
27606         return tb;
27607          
27608         
27609     },
27610     buildFooter : function()
27611     {
27612         
27613         var fel = this.editor.wrap.createChild();
27614         this.footer = new Roo.Toolbar(fel);
27615         // toolbar has scrolly on left / right?
27616         var footDisp= new Roo.Toolbar.Fill();
27617         var _t = this;
27618         this.footer.add(
27619             {
27620                 text : '&lt;',
27621                 xtype: 'Button',
27622                 handler : function() {
27623                     _t.footDisp.scrollTo('left',0,true)
27624                 }
27625             }
27626         );
27627         this.footer.add( footDisp );
27628         this.footer.add( 
27629             {
27630                 text : '&gt;',
27631                 xtype: 'Button',
27632                 handler : function() {
27633                     // no animation..
27634                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
27635                 }
27636             }
27637         );
27638         var fel = Roo.get(footDisp.el);
27639         fel.addClass('x-editor-context');
27640         this.footDispWrap = fel; 
27641         this.footDispWrap.overflow  = 'hidden';
27642         
27643         this.footDisp = fel.createChild();
27644         this.footDispWrap.on('click', this.onContextClick, this)
27645         
27646         
27647     },
27648     onContextClick : function (ev,dom)
27649     {
27650         ev.preventDefault();
27651         var  cn = dom.className;
27652         //Roo.log(cn);
27653         if (!cn.match(/x-ed-loc-/)) {
27654             return;
27655         }
27656         var n = cn.split('-').pop();
27657         var ans = this.footerEls;
27658         var sel = ans[n];
27659         
27660          // pick
27661         var range = this.editorcore.createRange();
27662         
27663         range.selectNodeContents(sel);
27664         //range.selectNode(sel);
27665         
27666         
27667         var selection = this.editorcore.getSelection();
27668         selection.removeAllRanges();
27669         selection.addRange(range);
27670         
27671         
27672         
27673         this.updateToolbar(null, null, sel);
27674         
27675         
27676     }
27677     
27678     
27679     
27680     
27681     
27682 });
27683
27684
27685
27686
27687
27688 /*
27689  * Based on:
27690  * Ext JS Library 1.1.1
27691  * Copyright(c) 2006-2007, Ext JS, LLC.
27692  *
27693  * Originally Released Under LGPL - original licence link has changed is not relivant.
27694  *
27695  * Fork - LGPL
27696  * <script type="text/javascript">
27697  */
27698  
27699 /**
27700  * @class Roo.form.BasicForm
27701  * @extends Roo.util.Observable
27702  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
27703  * @constructor
27704  * @param {String/HTMLElement/Roo.Element} el The form element or its id
27705  * @param {Object} config Configuration options
27706  */
27707 Roo.form.BasicForm = function(el, config){
27708     this.allItems = [];
27709     this.childForms = [];
27710     Roo.apply(this, config);
27711     /*
27712      * The Roo.form.Field items in this form.
27713      * @type MixedCollection
27714      */
27715      
27716      
27717     this.items = new Roo.util.MixedCollection(false, function(o){
27718         return o.id || (o.id = Roo.id());
27719     });
27720     this.addEvents({
27721         /**
27722          * @event beforeaction
27723          * Fires before any action is performed. Return false to cancel the action.
27724          * @param {Form} this
27725          * @param {Action} action The action to be performed
27726          */
27727         beforeaction: true,
27728         /**
27729          * @event actionfailed
27730          * Fires when an action fails.
27731          * @param {Form} this
27732          * @param {Action} action The action that failed
27733          */
27734         actionfailed : true,
27735         /**
27736          * @event actioncomplete
27737          * Fires when an action is completed.
27738          * @param {Form} this
27739          * @param {Action} action The action that completed
27740          */
27741         actioncomplete : true
27742     });
27743     if(el){
27744         this.initEl(el);
27745     }
27746     Roo.form.BasicForm.superclass.constructor.call(this);
27747 };
27748
27749 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
27750     /**
27751      * @cfg {String} method
27752      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
27753      */
27754     /**
27755      * @cfg {DataReader} reader
27756      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
27757      * This is optional as there is built-in support for processing JSON.
27758      */
27759     /**
27760      * @cfg {DataReader} errorReader
27761      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
27762      * This is completely optional as there is built-in support for processing JSON.
27763      */
27764     /**
27765      * @cfg {String} url
27766      * The URL to use for form actions if one isn't supplied in the action options.
27767      */
27768     /**
27769      * @cfg {Boolean} fileUpload
27770      * Set to true if this form is a file upload.
27771      */
27772      
27773     /**
27774      * @cfg {Object} baseParams
27775      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
27776      */
27777      /**
27778      
27779     /**
27780      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
27781      */
27782     timeout: 30,
27783
27784     // private
27785     activeAction : null,
27786
27787     /**
27788      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
27789      * or setValues() data instead of when the form was first created.
27790      */
27791     trackResetOnLoad : false,
27792     
27793     
27794     /**
27795      * childForms - used for multi-tab forms
27796      * @type {Array}
27797      */
27798     childForms : false,
27799     
27800     /**
27801      * allItems - full list of fields.
27802      * @type {Array}
27803      */
27804     allItems : false,
27805     
27806     /**
27807      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
27808      * element by passing it or its id or mask the form itself by passing in true.
27809      * @type Mixed
27810      */
27811     waitMsgTarget : false,
27812
27813     // private
27814     initEl : function(el){
27815         this.el = Roo.get(el);
27816         this.id = this.el.id || Roo.id();
27817         this.el.on('submit', this.onSubmit, this);
27818         this.el.addClass('x-form');
27819     },
27820
27821     // private
27822     onSubmit : function(e){
27823         e.stopEvent();
27824     },
27825
27826     /**
27827      * Returns true if client-side validation on the form is successful.
27828      * @return Boolean
27829      */
27830     isValid : function(){
27831         var valid = true;
27832         this.items.each(function(f){
27833            if(!f.validate()){
27834                valid = false;
27835            }
27836         });
27837         return valid;
27838     },
27839
27840     /**
27841      * Returns true if any fields in this form have changed since their original load.
27842      * @return Boolean
27843      */
27844     isDirty : function(){
27845         var dirty = false;
27846         this.items.each(function(f){
27847            if(f.isDirty()){
27848                dirty = true;
27849                return false;
27850            }
27851         });
27852         return dirty;
27853     },
27854
27855     /**
27856      * Performs a predefined action (submit or load) or custom actions you define on this form.
27857      * @param {String} actionName The name of the action type
27858      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
27859      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
27860      * accept other config options):
27861      * <pre>
27862 Property          Type             Description
27863 ----------------  ---------------  ----------------------------------------------------------------------------------
27864 url               String           The url for the action (defaults to the form's url)
27865 method            String           The form method to use (defaults to the form's method, or POST if not defined)
27866 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
27867 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
27868                                    validate the form on the client (defaults to false)
27869      * </pre>
27870      * @return {BasicForm} this
27871      */
27872     doAction : function(action, options){
27873         if(typeof action == 'string'){
27874             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
27875         }
27876         if(this.fireEvent('beforeaction', this, action) !== false){
27877             this.beforeAction(action);
27878             action.run.defer(100, action);
27879         }
27880         return this;
27881     },
27882
27883     /**
27884      * Shortcut to do a submit action.
27885      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27886      * @return {BasicForm} this
27887      */
27888     submit : function(options){
27889         this.doAction('submit', options);
27890         return this;
27891     },
27892
27893     /**
27894      * Shortcut to do a load action.
27895      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27896      * @return {BasicForm} this
27897      */
27898     load : function(options){
27899         this.doAction('load', options);
27900         return this;
27901     },
27902
27903     /**
27904      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
27905      * @param {Record} record The record to edit
27906      * @return {BasicForm} this
27907      */
27908     updateRecord : function(record){
27909         record.beginEdit();
27910         var fs = record.fields;
27911         fs.each(function(f){
27912             var field = this.findField(f.name);
27913             if(field){
27914                 record.set(f.name, field.getValue());
27915             }
27916         }, this);
27917         record.endEdit();
27918         return this;
27919     },
27920
27921     /**
27922      * Loads an Roo.data.Record into this form.
27923      * @param {Record} record The record to load
27924      * @return {BasicForm} this
27925      */
27926     loadRecord : function(record){
27927         this.setValues(record.data);
27928         return this;
27929     },
27930
27931     // private
27932     beforeAction : function(action){
27933         var o = action.options;
27934         
27935        
27936         if(this.waitMsgTarget === true){
27937             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
27938         }else if(this.waitMsgTarget){
27939             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
27940             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
27941         }else {
27942             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
27943         }
27944          
27945     },
27946
27947     // private
27948     afterAction : function(action, success){
27949         this.activeAction = null;
27950         var o = action.options;
27951         
27952         if(this.waitMsgTarget === true){
27953             this.el.unmask();
27954         }else if(this.waitMsgTarget){
27955             this.waitMsgTarget.unmask();
27956         }else{
27957             Roo.MessageBox.updateProgress(1);
27958             Roo.MessageBox.hide();
27959         }
27960          
27961         if(success){
27962             if(o.reset){
27963                 this.reset();
27964             }
27965             Roo.callback(o.success, o.scope, [this, action]);
27966             this.fireEvent('actioncomplete', this, action);
27967             
27968         }else{
27969             
27970             // failure condition..
27971             // we have a scenario where updates need confirming.
27972             // eg. if a locking scenario exists..
27973             // we look for { errors : { needs_confirm : true }} in the response.
27974             if (
27975                 (typeof(action.result) != 'undefined')  &&
27976                 (typeof(action.result.errors) != 'undefined')  &&
27977                 (typeof(action.result.errors.needs_confirm) != 'undefined')
27978            ){
27979                 var _t = this;
27980                 Roo.MessageBox.confirm(
27981                     "Change requires confirmation",
27982                     action.result.errorMsg,
27983                     function(r) {
27984                         if (r != 'yes') {
27985                             return;
27986                         }
27987                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
27988                     }
27989                     
27990                 );
27991                 
27992                 
27993                 
27994                 return;
27995             }
27996             
27997             Roo.callback(o.failure, o.scope, [this, action]);
27998             // show an error message if no failed handler is set..
27999             if (!this.hasListener('actionfailed')) {
28000                 Roo.MessageBox.alert("Error",
28001                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
28002                         action.result.errorMsg :
28003                         "Saving Failed, please check your entries or try again"
28004                 );
28005             }
28006             
28007             this.fireEvent('actionfailed', this, action);
28008         }
28009         
28010     },
28011
28012     /**
28013      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
28014      * @param {String} id The value to search for
28015      * @return Field
28016      */
28017     findField : function(id){
28018         var field = this.items.get(id);
28019         if(!field){
28020             this.items.each(function(f){
28021                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
28022                     field = f;
28023                     return false;
28024                 }
28025             });
28026         }
28027         return field || null;
28028     },
28029
28030     /**
28031      * Add a secondary form to this one, 
28032      * Used to provide tabbed forms. One form is primary, with hidden values 
28033      * which mirror the elements from the other forms.
28034      * 
28035      * @param {Roo.form.Form} form to add.
28036      * 
28037      */
28038     addForm : function(form)
28039     {
28040        
28041         if (this.childForms.indexOf(form) > -1) {
28042             // already added..
28043             return;
28044         }
28045         this.childForms.push(form);
28046         var n = '';
28047         Roo.each(form.allItems, function (fe) {
28048             
28049             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
28050             if (this.findField(n)) { // already added..
28051                 return;
28052             }
28053             var add = new Roo.form.Hidden({
28054                 name : n
28055             });
28056             add.render(this.el);
28057             
28058             this.add( add );
28059         }, this);
28060         
28061     },
28062     /**
28063      * Mark fields in this form invalid in bulk.
28064      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
28065      * @return {BasicForm} this
28066      */
28067     markInvalid : function(errors){
28068         if(errors instanceof Array){
28069             for(var i = 0, len = errors.length; i < len; i++){
28070                 var fieldError = errors[i];
28071                 var f = this.findField(fieldError.id);
28072                 if(f){
28073                     f.markInvalid(fieldError.msg);
28074                 }
28075             }
28076         }else{
28077             var field, id;
28078             for(id in errors){
28079                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
28080                     field.markInvalid(errors[id]);
28081                 }
28082             }
28083         }
28084         Roo.each(this.childForms || [], function (f) {
28085             f.markInvalid(errors);
28086         });
28087         
28088         return this;
28089     },
28090
28091     /**
28092      * Set values for fields in this form in bulk.
28093      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
28094      * @return {BasicForm} this
28095      */
28096     setValues : function(values){
28097         if(values instanceof Array){ // array of objects
28098             for(var i = 0, len = values.length; i < len; i++){
28099                 var v = values[i];
28100                 var f = this.findField(v.id);
28101                 if(f){
28102                     f.setValue(v.value);
28103                     if(this.trackResetOnLoad){
28104                         f.originalValue = f.getValue();
28105                     }
28106                 }
28107             }
28108         }else{ // object hash
28109             var field, id;
28110             for(id in values){
28111                 if(typeof values[id] != 'function' && (field = this.findField(id))){
28112                     
28113                     if (field.setFromData && 
28114                         field.valueField && 
28115                         field.displayField &&
28116                         // combos' with local stores can 
28117                         // be queried via setValue()
28118                         // to set their value..
28119                         (field.store && !field.store.isLocal)
28120                         ) {
28121                         // it's a combo
28122                         var sd = { };
28123                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
28124                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
28125                         field.setFromData(sd);
28126                         
28127                     } else {
28128                         field.setValue(values[id]);
28129                     }
28130                     
28131                     
28132                     if(this.trackResetOnLoad){
28133                         field.originalValue = field.getValue();
28134                     }
28135                 }
28136             }
28137         }
28138          
28139         Roo.each(this.childForms || [], function (f) {
28140             f.setValues(values);
28141         });
28142                 
28143         return this;
28144     },
28145
28146     /**
28147      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
28148      * they are returned as an array.
28149      * @param {Boolean} asString
28150      * @return {Object}
28151      */
28152     getValues : function(asString){
28153         if (this.childForms) {
28154             // copy values from the child forms
28155             Roo.each(this.childForms, function (f) {
28156                 this.setValues(f.getValues());
28157             }, this);
28158         }
28159         
28160         
28161         
28162         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
28163         if(asString === true){
28164             return fs;
28165         }
28166         return Roo.urlDecode(fs);
28167     },
28168     
28169     /**
28170      * Returns the fields in this form as an object with key/value pairs. 
28171      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
28172      * @return {Object}
28173      */
28174     getFieldValues : function(with_hidden)
28175     {
28176         if (this.childForms) {
28177             // copy values from the child forms
28178             // should this call getFieldValues - probably not as we do not currently copy
28179             // hidden fields when we generate..
28180             Roo.each(this.childForms, function (f) {
28181                 this.setValues(f.getValues());
28182             }, this);
28183         }
28184         
28185         var ret = {};
28186         this.items.each(function(f){
28187             if (!f.getName()) {
28188                 return;
28189             }
28190             var v = f.getValue();
28191             if (f.inputType =='radio') {
28192                 if (typeof(ret[f.getName()]) == 'undefined') {
28193                     ret[f.getName()] = ''; // empty..
28194                 }
28195                 
28196                 if (!f.el.dom.checked) {
28197                     return;
28198                     
28199                 }
28200                 v = f.el.dom.value;
28201                 
28202             }
28203             
28204             // not sure if this supported any more..
28205             if ((typeof(v) == 'object') && f.getRawValue) {
28206                 v = f.getRawValue() ; // dates..
28207             }
28208             // combo boxes where name != hiddenName...
28209             if (f.name != f.getName()) {
28210                 ret[f.name] = f.getRawValue();
28211             }
28212             ret[f.getName()] = v;
28213         });
28214         
28215         return ret;
28216     },
28217
28218     /**
28219      * Clears all invalid messages in this form.
28220      * @return {BasicForm} this
28221      */
28222     clearInvalid : function(){
28223         this.items.each(function(f){
28224            f.clearInvalid();
28225         });
28226         
28227         Roo.each(this.childForms || [], function (f) {
28228             f.clearInvalid();
28229         });
28230         
28231         
28232         return this;
28233     },
28234
28235     /**
28236      * Resets this form.
28237      * @return {BasicForm} this
28238      */
28239     reset : function(){
28240         this.items.each(function(f){
28241             f.reset();
28242         });
28243         
28244         Roo.each(this.childForms || [], function (f) {
28245             f.reset();
28246         });
28247        
28248         
28249         return this;
28250     },
28251
28252     /**
28253      * Add Roo.form components to this form.
28254      * @param {Field} field1
28255      * @param {Field} field2 (optional)
28256      * @param {Field} etc (optional)
28257      * @return {BasicForm} this
28258      */
28259     add : function(){
28260         this.items.addAll(Array.prototype.slice.call(arguments, 0));
28261         return this;
28262     },
28263
28264
28265     /**
28266      * Removes a field from the items collection (does NOT remove its markup).
28267      * @param {Field} field
28268      * @return {BasicForm} this
28269      */
28270     remove : function(field){
28271         this.items.remove(field);
28272         return this;
28273     },
28274
28275     /**
28276      * Looks at the fields in this form, checks them for an id attribute,
28277      * and calls applyTo on the existing dom element with that id.
28278      * @return {BasicForm} this
28279      */
28280     render : function(){
28281         this.items.each(function(f){
28282             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
28283                 f.applyTo(f.id);
28284             }
28285         });
28286         return this;
28287     },
28288
28289     /**
28290      * Calls {@link Ext#apply} for all fields in this form with the passed object.
28291      * @param {Object} values
28292      * @return {BasicForm} this
28293      */
28294     applyToFields : function(o){
28295         this.items.each(function(f){
28296            Roo.apply(f, o);
28297         });
28298         return this;
28299     },
28300
28301     /**
28302      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
28303      * @param {Object} values
28304      * @return {BasicForm} this
28305      */
28306     applyIfToFields : function(o){
28307         this.items.each(function(f){
28308            Roo.applyIf(f, o);
28309         });
28310         return this;
28311     }
28312 });
28313
28314 // back compat
28315 Roo.BasicForm = Roo.form.BasicForm;/*
28316  * Based on:
28317  * Ext JS Library 1.1.1
28318  * Copyright(c) 2006-2007, Ext JS, LLC.
28319  *
28320  * Originally Released Under LGPL - original licence link has changed is not relivant.
28321  *
28322  * Fork - LGPL
28323  * <script type="text/javascript">
28324  */
28325
28326 /**
28327  * @class Roo.form.Form
28328  * @extends Roo.form.BasicForm
28329  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
28330  * @constructor
28331  * @param {Object} config Configuration options
28332  */
28333 Roo.form.Form = function(config){
28334     var xitems =  [];
28335     if (config.items) {
28336         xitems = config.items;
28337         delete config.items;
28338     }
28339    
28340     
28341     Roo.form.Form.superclass.constructor.call(this, null, config);
28342     this.url = this.url || this.action;
28343     if(!this.root){
28344         this.root = new Roo.form.Layout(Roo.applyIf({
28345             id: Roo.id()
28346         }, config));
28347     }
28348     this.active = this.root;
28349     /**
28350      * Array of all the buttons that have been added to this form via {@link addButton}
28351      * @type Array
28352      */
28353     this.buttons = [];
28354     this.allItems = [];
28355     this.addEvents({
28356         /**
28357          * @event clientvalidation
28358          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
28359          * @param {Form} this
28360          * @param {Boolean} valid true if the form has passed client-side validation
28361          */
28362         clientvalidation: true,
28363         /**
28364          * @event rendered
28365          * Fires when the form is rendered
28366          * @param {Roo.form.Form} form
28367          */
28368         rendered : true
28369     });
28370     
28371     if (this.progressUrl) {
28372             // push a hidden field onto the list of fields..
28373             this.addxtype( {
28374                     xns: Roo.form, 
28375                     xtype : 'Hidden', 
28376                     name : 'UPLOAD_IDENTIFIER' 
28377             });
28378         }
28379         
28380     
28381     Roo.each(xitems, this.addxtype, this);
28382     
28383     
28384     
28385 };
28386
28387 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
28388     /**
28389      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
28390      */
28391     /**
28392      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
28393      */
28394     /**
28395      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
28396      */
28397     buttonAlign:'center',
28398
28399     /**
28400      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
28401      */
28402     minButtonWidth:75,
28403
28404     /**
28405      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
28406      * This property cascades to child containers if not set.
28407      */
28408     labelAlign:'left',
28409
28410     /**
28411      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
28412      * fires a looping event with that state. This is required to bind buttons to the valid
28413      * state using the config value formBind:true on the button.
28414      */
28415     monitorValid : false,
28416
28417     /**
28418      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
28419      */
28420     monitorPoll : 200,
28421     
28422     /**
28423      * @cfg {String} progressUrl - Url to return progress data 
28424      */
28425     
28426     progressUrl : false,
28427   
28428     /**
28429      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
28430      * fields are added and the column is closed. If no fields are passed the column remains open
28431      * until end() is called.
28432      * @param {Object} config The config to pass to the column
28433      * @param {Field} field1 (optional)
28434      * @param {Field} field2 (optional)
28435      * @param {Field} etc (optional)
28436      * @return Column The column container object
28437      */
28438     column : function(c){
28439         var col = new Roo.form.Column(c);
28440         this.start(col);
28441         if(arguments.length > 1){ // duplicate code required because of Opera
28442             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28443             this.end();
28444         }
28445         return col;
28446     },
28447
28448     /**
28449      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
28450      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
28451      * until end() is called.
28452      * @param {Object} config The config to pass to the fieldset
28453      * @param {Field} field1 (optional)
28454      * @param {Field} field2 (optional)
28455      * @param {Field} etc (optional)
28456      * @return FieldSet The fieldset container object
28457      */
28458     fieldset : function(c){
28459         var fs = new Roo.form.FieldSet(c);
28460         this.start(fs);
28461         if(arguments.length > 1){ // duplicate code required because of Opera
28462             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28463             this.end();
28464         }
28465         return fs;
28466     },
28467
28468     /**
28469      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
28470      * fields are added and the container is closed. If no fields are passed the container remains open
28471      * until end() is called.
28472      * @param {Object} config The config to pass to the Layout
28473      * @param {Field} field1 (optional)
28474      * @param {Field} field2 (optional)
28475      * @param {Field} etc (optional)
28476      * @return Layout The container object
28477      */
28478     container : function(c){
28479         var l = new Roo.form.Layout(c);
28480         this.start(l);
28481         if(arguments.length > 1){ // duplicate code required because of Opera
28482             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28483             this.end();
28484         }
28485         return l;
28486     },
28487
28488     /**
28489      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
28490      * @param {Object} container A Roo.form.Layout or subclass of Layout
28491      * @return {Form} this
28492      */
28493     start : function(c){
28494         // cascade label info
28495         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
28496         this.active.stack.push(c);
28497         c.ownerCt = this.active;
28498         this.active = c;
28499         return this;
28500     },
28501
28502     /**
28503      * Closes the current open container
28504      * @return {Form} this
28505      */
28506     end : function(){
28507         if(this.active == this.root){
28508             return this;
28509         }
28510         this.active = this.active.ownerCt;
28511         return this;
28512     },
28513
28514     /**
28515      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
28516      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
28517      * as the label of the field.
28518      * @param {Field} field1
28519      * @param {Field} field2 (optional)
28520      * @param {Field} etc. (optional)
28521      * @return {Form} this
28522      */
28523     add : function(){
28524         this.active.stack.push.apply(this.active.stack, arguments);
28525         this.allItems.push.apply(this.allItems,arguments);
28526         var r = [];
28527         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
28528             if(a[i].isFormField){
28529                 r.push(a[i]);
28530             }
28531         }
28532         if(r.length > 0){
28533             Roo.form.Form.superclass.add.apply(this, r);
28534         }
28535         return this;
28536     },
28537     
28538
28539     
28540     
28541     
28542      /**
28543      * Find any element that has been added to a form, using it's ID or name
28544      * This can include framesets, columns etc. along with regular fields..
28545      * @param {String} id - id or name to find.
28546      
28547      * @return {Element} e - or false if nothing found.
28548      */
28549     findbyId : function(id)
28550     {
28551         var ret = false;
28552         if (!id) {
28553             return ret;
28554         }
28555         Roo.each(this.allItems, function(f){
28556             if (f.id == id || f.name == id ){
28557                 ret = f;
28558                 return false;
28559             }
28560         });
28561         return ret;
28562     },
28563
28564     
28565     
28566     /**
28567      * Render this form into the passed container. This should only be called once!
28568      * @param {String/HTMLElement/Element} container The element this component should be rendered into
28569      * @return {Form} this
28570      */
28571     render : function(ct)
28572     {
28573         
28574         
28575         
28576         ct = Roo.get(ct);
28577         var o = this.autoCreate || {
28578             tag: 'form',
28579             method : this.method || 'POST',
28580             id : this.id || Roo.id()
28581         };
28582         this.initEl(ct.createChild(o));
28583
28584         this.root.render(this.el);
28585         
28586        
28587              
28588         this.items.each(function(f){
28589             f.render('x-form-el-'+f.id);
28590         });
28591
28592         if(this.buttons.length > 0){
28593             // tables are required to maintain order and for correct IE layout
28594             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
28595                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
28596                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
28597             }}, null, true);
28598             var tr = tb.getElementsByTagName('tr')[0];
28599             for(var i = 0, len = this.buttons.length; i < len; i++) {
28600                 var b = this.buttons[i];
28601                 var td = document.createElement('td');
28602                 td.className = 'x-form-btn-td';
28603                 b.render(tr.appendChild(td));
28604             }
28605         }
28606         if(this.monitorValid){ // initialize after render
28607             this.startMonitoring();
28608         }
28609         this.fireEvent('rendered', this);
28610         return this;
28611     },
28612
28613     /**
28614      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
28615      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
28616      * object or a valid Roo.DomHelper element config
28617      * @param {Function} handler The function called when the button is clicked
28618      * @param {Object} scope (optional) The scope of the handler function
28619      * @return {Roo.Button}
28620      */
28621     addButton : function(config, handler, scope){
28622         var bc = {
28623             handler: handler,
28624             scope: scope,
28625             minWidth: this.minButtonWidth,
28626             hideParent:true
28627         };
28628         if(typeof config == "string"){
28629             bc.text = config;
28630         }else{
28631             Roo.apply(bc, config);
28632         }
28633         var btn = new Roo.Button(null, bc);
28634         this.buttons.push(btn);
28635         return btn;
28636     },
28637
28638      /**
28639      * Adds a series of form elements (using the xtype property as the factory method.
28640      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
28641      * @param {Object} config 
28642      */
28643     
28644     addxtype : function()
28645     {
28646         var ar = Array.prototype.slice.call(arguments, 0);
28647         var ret = false;
28648         for(var i = 0; i < ar.length; i++) {
28649             if (!ar[i]) {
28650                 continue; // skip -- if this happends something invalid got sent, we 
28651                 // should ignore it, as basically that interface element will not show up
28652                 // and that should be pretty obvious!!
28653             }
28654             
28655             if (Roo.form[ar[i].xtype]) {
28656                 ar[i].form = this;
28657                 var fe = Roo.factory(ar[i], Roo.form);
28658                 if (!ret) {
28659                     ret = fe;
28660                 }
28661                 fe.form = this;
28662                 if (fe.store) {
28663                     fe.store.form = this;
28664                 }
28665                 if (fe.isLayout) {  
28666                          
28667                     this.start(fe);
28668                     this.allItems.push(fe);
28669                     if (fe.items && fe.addxtype) {
28670                         fe.addxtype.apply(fe, fe.items);
28671                         delete fe.items;
28672                     }
28673                      this.end();
28674                     continue;
28675                 }
28676                 
28677                 
28678                  
28679                 this.add(fe);
28680               //  console.log('adding ' + ar[i].xtype);
28681             }
28682             if (ar[i].xtype == 'Button') {  
28683                 //console.log('adding button');
28684                 //console.log(ar[i]);
28685                 this.addButton(ar[i]);
28686                 this.allItems.push(fe);
28687                 continue;
28688             }
28689             
28690             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
28691                 alert('end is not supported on xtype any more, use items');
28692             //    this.end();
28693             //    //console.log('adding end');
28694             }
28695             
28696         }
28697         return ret;
28698     },
28699     
28700     /**
28701      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
28702      * option "monitorValid"
28703      */
28704     startMonitoring : function(){
28705         if(!this.bound){
28706             this.bound = true;
28707             Roo.TaskMgr.start({
28708                 run : this.bindHandler,
28709                 interval : this.monitorPoll || 200,
28710                 scope: this
28711             });
28712         }
28713     },
28714
28715     /**
28716      * Stops monitoring of the valid state of this form
28717      */
28718     stopMonitoring : function(){
28719         this.bound = false;
28720     },
28721
28722     // private
28723     bindHandler : function(){
28724         if(!this.bound){
28725             return false; // stops binding
28726         }
28727         var valid = true;
28728         this.items.each(function(f){
28729             if(!f.isValid(true)){
28730                 valid = false;
28731                 return false;
28732             }
28733         });
28734         for(var i = 0, len = this.buttons.length; i < len; i++){
28735             var btn = this.buttons[i];
28736             if(btn.formBind === true && btn.disabled === valid){
28737                 btn.setDisabled(!valid);
28738             }
28739         }
28740         this.fireEvent('clientvalidation', this, valid);
28741     }
28742     
28743     
28744     
28745     
28746     
28747     
28748     
28749     
28750 });
28751
28752
28753 // back compat
28754 Roo.Form = Roo.form.Form;
28755 /*
28756  * Based on:
28757  * Ext JS Library 1.1.1
28758  * Copyright(c) 2006-2007, Ext JS, LLC.
28759  *
28760  * Originally Released Under LGPL - original licence link has changed is not relivant.
28761  *
28762  * Fork - LGPL
28763  * <script type="text/javascript">
28764  */
28765
28766 // as we use this in bootstrap.
28767 Roo.namespace('Roo.form');
28768  /**
28769  * @class Roo.form.Action
28770  * Internal Class used to handle form actions
28771  * @constructor
28772  * @param {Roo.form.BasicForm} el The form element or its id
28773  * @param {Object} config Configuration options
28774  */
28775
28776  
28777  
28778 // define the action interface
28779 Roo.form.Action = function(form, options){
28780     this.form = form;
28781     this.options = options || {};
28782 };
28783 /**
28784  * Client Validation Failed
28785  * @const 
28786  */
28787 Roo.form.Action.CLIENT_INVALID = 'client';
28788 /**
28789  * Server Validation Failed
28790  * @const 
28791  */
28792 Roo.form.Action.SERVER_INVALID = 'server';
28793  /**
28794  * Connect to Server Failed
28795  * @const 
28796  */
28797 Roo.form.Action.CONNECT_FAILURE = 'connect';
28798 /**
28799  * Reading Data from Server Failed
28800  * @const 
28801  */
28802 Roo.form.Action.LOAD_FAILURE = 'load';
28803
28804 Roo.form.Action.prototype = {
28805     type : 'default',
28806     failureType : undefined,
28807     response : undefined,
28808     result : undefined,
28809
28810     // interface method
28811     run : function(options){
28812
28813     },
28814
28815     // interface method
28816     success : function(response){
28817
28818     },
28819
28820     // interface method
28821     handleResponse : function(response){
28822
28823     },
28824
28825     // default connection failure
28826     failure : function(response){
28827         
28828         this.response = response;
28829         this.failureType = Roo.form.Action.CONNECT_FAILURE;
28830         this.form.afterAction(this, false);
28831     },
28832
28833     processResponse : function(response){
28834         this.response = response;
28835         if(!response.responseText){
28836             return true;
28837         }
28838         this.result = this.handleResponse(response);
28839         return this.result;
28840     },
28841
28842     // utility functions used internally
28843     getUrl : function(appendParams){
28844         var url = this.options.url || this.form.url || this.form.el.dom.action;
28845         if(appendParams){
28846             var p = this.getParams();
28847             if(p){
28848                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
28849             }
28850         }
28851         return url;
28852     },
28853
28854     getMethod : function(){
28855         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
28856     },
28857
28858     getParams : function(){
28859         var bp = this.form.baseParams;
28860         var p = this.options.params;
28861         if(p){
28862             if(typeof p == "object"){
28863                 p = Roo.urlEncode(Roo.applyIf(p, bp));
28864             }else if(typeof p == 'string' && bp){
28865                 p += '&' + Roo.urlEncode(bp);
28866             }
28867         }else if(bp){
28868             p = Roo.urlEncode(bp);
28869         }
28870         return p;
28871     },
28872
28873     createCallback : function(){
28874         return {
28875             success: this.success,
28876             failure: this.failure,
28877             scope: this,
28878             timeout: (this.form.timeout*1000),
28879             upload: this.form.fileUpload ? this.success : undefined
28880         };
28881     }
28882 };
28883
28884 Roo.form.Action.Submit = function(form, options){
28885     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
28886 };
28887
28888 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
28889     type : 'submit',
28890
28891     haveProgress : false,
28892     uploadComplete : false,
28893     
28894     // uploadProgress indicator.
28895     uploadProgress : function()
28896     {
28897         if (!this.form.progressUrl) {
28898             return;
28899         }
28900         
28901         if (!this.haveProgress) {
28902             Roo.MessageBox.progress("Uploading", "Uploading");
28903         }
28904         if (this.uploadComplete) {
28905            Roo.MessageBox.hide();
28906            return;
28907         }
28908         
28909         this.haveProgress = true;
28910    
28911         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
28912         
28913         var c = new Roo.data.Connection();
28914         c.request({
28915             url : this.form.progressUrl,
28916             params: {
28917                 id : uid
28918             },
28919             method: 'GET',
28920             success : function(req){
28921                //console.log(data);
28922                 var rdata = false;
28923                 var edata;
28924                 try  {
28925                    rdata = Roo.decode(req.responseText)
28926                 } catch (e) {
28927                     Roo.log("Invalid data from server..");
28928                     Roo.log(edata);
28929                     return;
28930                 }
28931                 if (!rdata || !rdata.success) {
28932                     Roo.log(rdata);
28933                     Roo.MessageBox.alert(Roo.encode(rdata));
28934                     return;
28935                 }
28936                 var data = rdata.data;
28937                 
28938                 if (this.uploadComplete) {
28939                    Roo.MessageBox.hide();
28940                    return;
28941                 }
28942                    
28943                 if (data){
28944                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
28945                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
28946                     );
28947                 }
28948                 this.uploadProgress.defer(2000,this);
28949             },
28950        
28951             failure: function(data) {
28952                 Roo.log('progress url failed ');
28953                 Roo.log(data);
28954             },
28955             scope : this
28956         });
28957            
28958     },
28959     
28960     
28961     run : function()
28962     {
28963         // run get Values on the form, so it syncs any secondary forms.
28964         this.form.getValues();
28965         
28966         var o = this.options;
28967         var method = this.getMethod();
28968         var isPost = method == 'POST';
28969         if(o.clientValidation === false || this.form.isValid()){
28970             
28971             if (this.form.progressUrl) {
28972                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
28973                     (new Date() * 1) + '' + Math.random());
28974                     
28975             } 
28976             
28977             
28978             Roo.Ajax.request(Roo.apply(this.createCallback(), {
28979                 form:this.form.el.dom,
28980                 url:this.getUrl(!isPost),
28981                 method: method,
28982                 params:isPost ? this.getParams() : null,
28983                 isUpload: this.form.fileUpload
28984             }));
28985             
28986             this.uploadProgress();
28987
28988         }else if (o.clientValidation !== false){ // client validation failed
28989             this.failureType = Roo.form.Action.CLIENT_INVALID;
28990             this.form.afterAction(this, false);
28991         }
28992     },
28993
28994     success : function(response)
28995     {
28996         this.uploadComplete= true;
28997         if (this.haveProgress) {
28998             Roo.MessageBox.hide();
28999         }
29000         
29001         
29002         var result = this.processResponse(response);
29003         if(result === true || result.success){
29004             this.form.afterAction(this, true);
29005             return;
29006         }
29007         if(result.errors){
29008             this.form.markInvalid(result.errors);
29009             this.failureType = Roo.form.Action.SERVER_INVALID;
29010         }
29011         this.form.afterAction(this, false);
29012     },
29013     failure : function(response)
29014     {
29015         this.uploadComplete= true;
29016         if (this.haveProgress) {
29017             Roo.MessageBox.hide();
29018         }
29019         
29020         this.response = response;
29021         this.failureType = Roo.form.Action.CONNECT_FAILURE;
29022         this.form.afterAction(this, false);
29023     },
29024     
29025     handleResponse : function(response){
29026         if(this.form.errorReader){
29027             var rs = this.form.errorReader.read(response);
29028             var errors = [];
29029             if(rs.records){
29030                 for(var i = 0, len = rs.records.length; i < len; i++) {
29031                     var r = rs.records[i];
29032                     errors[i] = r.data;
29033                 }
29034             }
29035             if(errors.length < 1){
29036                 errors = null;
29037             }
29038             return {
29039                 success : rs.success,
29040                 errors : errors
29041             };
29042         }
29043         var ret = false;
29044         try {
29045             ret = Roo.decode(response.responseText);
29046         } catch (e) {
29047             ret = {
29048                 success: false,
29049                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
29050                 errors : []
29051             };
29052         }
29053         return ret;
29054         
29055     }
29056 });
29057
29058
29059 Roo.form.Action.Load = function(form, options){
29060     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
29061     this.reader = this.form.reader;
29062 };
29063
29064 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
29065     type : 'load',
29066
29067     run : function(){
29068         
29069         Roo.Ajax.request(Roo.apply(
29070                 this.createCallback(), {
29071                     method:this.getMethod(),
29072                     url:this.getUrl(false),
29073                     params:this.getParams()
29074         }));
29075     },
29076
29077     success : function(response){
29078         
29079         var result = this.processResponse(response);
29080         if(result === true || !result.success || !result.data){
29081             this.failureType = Roo.form.Action.LOAD_FAILURE;
29082             this.form.afterAction(this, false);
29083             return;
29084         }
29085         this.form.clearInvalid();
29086         this.form.setValues(result.data);
29087         this.form.afterAction(this, true);
29088     },
29089
29090     handleResponse : function(response){
29091         if(this.form.reader){
29092             var rs = this.form.reader.read(response);
29093             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
29094             return {
29095                 success : rs.success,
29096                 data : data
29097             };
29098         }
29099         return Roo.decode(response.responseText);
29100     }
29101 });
29102
29103 Roo.form.Action.ACTION_TYPES = {
29104     'load' : Roo.form.Action.Load,
29105     'submit' : Roo.form.Action.Submit
29106 };/*
29107  * Based on:
29108  * Ext JS Library 1.1.1
29109  * Copyright(c) 2006-2007, Ext JS, LLC.
29110  *
29111  * Originally Released Under LGPL - original licence link has changed is not relivant.
29112  *
29113  * Fork - LGPL
29114  * <script type="text/javascript">
29115  */
29116  
29117 /**
29118  * @class Roo.form.Layout
29119  * @extends Roo.Component
29120  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
29121  * @constructor
29122  * @param {Object} config Configuration options
29123  */
29124 Roo.form.Layout = function(config){
29125     var xitems = [];
29126     if (config.items) {
29127         xitems = config.items;
29128         delete config.items;
29129     }
29130     Roo.form.Layout.superclass.constructor.call(this, config);
29131     this.stack = [];
29132     Roo.each(xitems, this.addxtype, this);
29133      
29134 };
29135
29136 Roo.extend(Roo.form.Layout, Roo.Component, {
29137     /**
29138      * @cfg {String/Object} autoCreate
29139      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
29140      */
29141     /**
29142      * @cfg {String/Object/Function} style
29143      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
29144      * a function which returns such a specification.
29145      */
29146     /**
29147      * @cfg {String} labelAlign
29148      * Valid values are "left," "top" and "right" (defaults to "left")
29149      */
29150     /**
29151      * @cfg {Number} labelWidth
29152      * Fixed width in pixels of all field labels (defaults to undefined)
29153      */
29154     /**
29155      * @cfg {Boolean} clear
29156      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
29157      */
29158     clear : true,
29159     /**
29160      * @cfg {String} labelSeparator
29161      * The separator to use after field labels (defaults to ':')
29162      */
29163     labelSeparator : ':',
29164     /**
29165      * @cfg {Boolean} hideLabels
29166      * True to suppress the display of field labels in this layout (defaults to false)
29167      */
29168     hideLabels : false,
29169
29170     // private
29171     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
29172     
29173     isLayout : true,
29174     
29175     // private
29176     onRender : function(ct, position){
29177         if(this.el){ // from markup
29178             this.el = Roo.get(this.el);
29179         }else {  // generate
29180             var cfg = this.getAutoCreate();
29181             this.el = ct.createChild(cfg, position);
29182         }
29183         if(this.style){
29184             this.el.applyStyles(this.style);
29185         }
29186         if(this.labelAlign){
29187             this.el.addClass('x-form-label-'+this.labelAlign);
29188         }
29189         if(this.hideLabels){
29190             this.labelStyle = "display:none";
29191             this.elementStyle = "padding-left:0;";
29192         }else{
29193             if(typeof this.labelWidth == 'number'){
29194                 this.labelStyle = "width:"+this.labelWidth+"px;";
29195                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
29196             }
29197             if(this.labelAlign == 'top'){
29198                 this.labelStyle = "width:auto;";
29199                 this.elementStyle = "padding-left:0;";
29200             }
29201         }
29202         var stack = this.stack;
29203         var slen = stack.length;
29204         if(slen > 0){
29205             if(!this.fieldTpl){
29206                 var t = new Roo.Template(
29207                     '<div class="x-form-item {5}">',
29208                         '<label for="{0}" style="{2}">{1}{4}</label>',
29209                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29210                         '</div>',
29211                     '</div><div class="x-form-clear-left"></div>'
29212                 );
29213                 t.disableFormats = true;
29214                 t.compile();
29215                 Roo.form.Layout.prototype.fieldTpl = t;
29216             }
29217             for(var i = 0; i < slen; i++) {
29218                 if(stack[i].isFormField){
29219                     this.renderField(stack[i]);
29220                 }else{
29221                     this.renderComponent(stack[i]);
29222                 }
29223             }
29224         }
29225         if(this.clear){
29226             this.el.createChild({cls:'x-form-clear'});
29227         }
29228     },
29229
29230     // private
29231     renderField : function(f){
29232         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
29233                f.id, //0
29234                f.fieldLabel, //1
29235                f.labelStyle||this.labelStyle||'', //2
29236                this.elementStyle||'', //3
29237                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
29238                f.itemCls||this.itemCls||''  //5
29239        ], true).getPrevSibling());
29240     },
29241
29242     // private
29243     renderComponent : function(c){
29244         c.render(c.isLayout ? this.el : this.el.createChild());    
29245     },
29246     /**
29247      * Adds a object form elements (using the xtype property as the factory method.)
29248      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
29249      * @param {Object} config 
29250      */
29251     addxtype : function(o)
29252     {
29253         // create the lement.
29254         o.form = this.form;
29255         var fe = Roo.factory(o, Roo.form);
29256         this.form.allItems.push(fe);
29257         this.stack.push(fe);
29258         
29259         if (fe.isFormField) {
29260             this.form.items.add(fe);
29261         }
29262          
29263         return fe;
29264     }
29265 });
29266
29267 /**
29268  * @class Roo.form.Column
29269  * @extends Roo.form.Layout
29270  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
29271  * @constructor
29272  * @param {Object} config Configuration options
29273  */
29274 Roo.form.Column = function(config){
29275     Roo.form.Column.superclass.constructor.call(this, config);
29276 };
29277
29278 Roo.extend(Roo.form.Column, Roo.form.Layout, {
29279     /**
29280      * @cfg {Number/String} width
29281      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29282      */
29283     /**
29284      * @cfg {String/Object} autoCreate
29285      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
29286      */
29287
29288     // private
29289     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
29290
29291     // private
29292     onRender : function(ct, position){
29293         Roo.form.Column.superclass.onRender.call(this, ct, position);
29294         if(this.width){
29295             this.el.setWidth(this.width);
29296         }
29297     }
29298 });
29299
29300
29301 /**
29302  * @class Roo.form.Row
29303  * @extends Roo.form.Layout
29304  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
29305  * @constructor
29306  * @param {Object} config Configuration options
29307  */
29308
29309  
29310 Roo.form.Row = function(config){
29311     Roo.form.Row.superclass.constructor.call(this, config);
29312 };
29313  
29314 Roo.extend(Roo.form.Row, Roo.form.Layout, {
29315       /**
29316      * @cfg {Number/String} width
29317      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29318      */
29319     /**
29320      * @cfg {Number/String} height
29321      * The fixed height of the column in pixels or CSS value (defaults to "auto")
29322      */
29323     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
29324     
29325     padWidth : 20,
29326     // private
29327     onRender : function(ct, position){
29328         //console.log('row render');
29329         if(!this.rowTpl){
29330             var t = new Roo.Template(
29331                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
29332                     '<label for="{0}" style="{2}">{1}{4}</label>',
29333                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29334                     '</div>',
29335                 '</div>'
29336             );
29337             t.disableFormats = true;
29338             t.compile();
29339             Roo.form.Layout.prototype.rowTpl = t;
29340         }
29341         this.fieldTpl = this.rowTpl;
29342         
29343         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
29344         var labelWidth = 100;
29345         
29346         if ((this.labelAlign != 'top')) {
29347             if (typeof this.labelWidth == 'number') {
29348                 labelWidth = this.labelWidth
29349             }
29350             this.padWidth =  20 + labelWidth;
29351             
29352         }
29353         
29354         Roo.form.Column.superclass.onRender.call(this, ct, position);
29355         if(this.width){
29356             this.el.setWidth(this.width);
29357         }
29358         if(this.height){
29359             this.el.setHeight(this.height);
29360         }
29361     },
29362     
29363     // private
29364     renderField : function(f){
29365         f.fieldEl = this.fieldTpl.append(this.el, [
29366                f.id, f.fieldLabel,
29367                f.labelStyle||this.labelStyle||'',
29368                this.elementStyle||'',
29369                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
29370                f.itemCls||this.itemCls||'',
29371                f.width ? f.width + this.padWidth : 160 + this.padWidth
29372        ],true);
29373     }
29374 });
29375  
29376
29377 /**
29378  * @class Roo.form.FieldSet
29379  * @extends Roo.form.Layout
29380  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
29381  * @constructor
29382  * @param {Object} config Configuration options
29383  */
29384 Roo.form.FieldSet = function(config){
29385     Roo.form.FieldSet.superclass.constructor.call(this, config);
29386 };
29387
29388 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
29389     /**
29390      * @cfg {String} legend
29391      * The text to display as the legend for the FieldSet (defaults to '')
29392      */
29393     /**
29394      * @cfg {String/Object} autoCreate
29395      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
29396      */
29397
29398     // private
29399     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
29400
29401     // private
29402     onRender : function(ct, position){
29403         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
29404         if(this.legend){
29405             this.setLegend(this.legend);
29406         }
29407     },
29408
29409     // private
29410     setLegend : function(text){
29411         if(this.rendered){
29412             this.el.child('legend').update(text);
29413         }
29414     }
29415 });/*
29416  * Based on:
29417  * Ext JS Library 1.1.1
29418  * Copyright(c) 2006-2007, Ext JS, LLC.
29419  *
29420  * Originally Released Under LGPL - original licence link has changed is not relivant.
29421  *
29422  * Fork - LGPL
29423  * <script type="text/javascript">
29424  */
29425 /**
29426  * @class Roo.form.VTypes
29427  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
29428  * @singleton
29429  */
29430 Roo.form.VTypes = function(){
29431     // closure these in so they are only created once.
29432     var alpha = /^[a-zA-Z_]+$/;
29433     var alphanum = /^[a-zA-Z0-9_]+$/;
29434     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,4}$/;
29435     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
29436
29437     // All these messages and functions are configurable
29438     return {
29439         /**
29440          * The function used to validate email addresses
29441          * @param {String} value The email address
29442          */
29443         'email' : function(v){
29444             return email.test(v);
29445         },
29446         /**
29447          * The error text to display when the email validation function returns false
29448          * @type String
29449          */
29450         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
29451         /**
29452          * The keystroke filter mask to be applied on email input
29453          * @type RegExp
29454          */
29455         'emailMask' : /[a-z0-9_\.\-@]/i,
29456
29457         /**
29458          * The function used to validate URLs
29459          * @param {String} value The URL
29460          */
29461         'url' : function(v){
29462             return url.test(v);
29463         },
29464         /**
29465          * The error text to display when the url validation function returns false
29466          * @type String
29467          */
29468         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
29469         
29470         /**
29471          * The function used to validate alpha values
29472          * @param {String} value The value
29473          */
29474         'alpha' : function(v){
29475             return alpha.test(v);
29476         },
29477         /**
29478          * The error text to display when the alpha validation function returns false
29479          * @type String
29480          */
29481         'alphaText' : 'This field should only contain letters and _',
29482         /**
29483          * The keystroke filter mask to be applied on alpha input
29484          * @type RegExp
29485          */
29486         'alphaMask' : /[a-z_]/i,
29487
29488         /**
29489          * The function used to validate alphanumeric values
29490          * @param {String} value The value
29491          */
29492         'alphanum' : function(v){
29493             return alphanum.test(v);
29494         },
29495         /**
29496          * The error text to display when the alphanumeric validation function returns false
29497          * @type String
29498          */
29499         'alphanumText' : 'This field should only contain letters, numbers and _',
29500         /**
29501          * The keystroke filter mask to be applied on alphanumeric input
29502          * @type RegExp
29503          */
29504         'alphanumMask' : /[a-z0-9_]/i
29505     };
29506 }();//<script type="text/javascript">
29507
29508 /**
29509  * @class Roo.form.FCKeditor
29510  * @extends Roo.form.TextArea
29511  * Wrapper around the FCKEditor http://www.fckeditor.net
29512  * @constructor
29513  * Creates a new FCKeditor
29514  * @param {Object} config Configuration options
29515  */
29516 Roo.form.FCKeditor = function(config){
29517     Roo.form.FCKeditor.superclass.constructor.call(this, config);
29518     this.addEvents({
29519          /**
29520          * @event editorinit
29521          * Fired when the editor is initialized - you can add extra handlers here..
29522          * @param {FCKeditor} this
29523          * @param {Object} the FCK object.
29524          */
29525         editorinit : true
29526     });
29527     
29528     
29529 };
29530 Roo.form.FCKeditor.editors = { };
29531 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
29532 {
29533     //defaultAutoCreate : {
29534     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
29535     //},
29536     // private
29537     /**
29538      * @cfg {Object} fck options - see fck manual for details.
29539      */
29540     fckconfig : false,
29541     
29542     /**
29543      * @cfg {Object} fck toolbar set (Basic or Default)
29544      */
29545     toolbarSet : 'Basic',
29546     /**
29547      * @cfg {Object} fck BasePath
29548      */ 
29549     basePath : '/fckeditor/',
29550     
29551     
29552     frame : false,
29553     
29554     value : '',
29555     
29556    
29557     onRender : function(ct, position)
29558     {
29559         if(!this.el){
29560             this.defaultAutoCreate = {
29561                 tag: "textarea",
29562                 style:"width:300px;height:60px;",
29563                 autocomplete: "off"
29564             };
29565         }
29566         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
29567         /*
29568         if(this.grow){
29569             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
29570             if(this.preventScrollbars){
29571                 this.el.setStyle("overflow", "hidden");
29572             }
29573             this.el.setHeight(this.growMin);
29574         }
29575         */
29576         //console.log('onrender' + this.getId() );
29577         Roo.form.FCKeditor.editors[this.getId()] = this;
29578          
29579
29580         this.replaceTextarea() ;
29581         
29582     },
29583     
29584     getEditor : function() {
29585         return this.fckEditor;
29586     },
29587     /**
29588      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
29589      * @param {Mixed} value The value to set
29590      */
29591     
29592     
29593     setValue : function(value)
29594     {
29595         //console.log('setValue: ' + value);
29596         
29597         if(typeof(value) == 'undefined') { // not sure why this is happending...
29598             return;
29599         }
29600         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29601         
29602         //if(!this.el || !this.getEditor()) {
29603         //    this.value = value;
29604             //this.setValue.defer(100,this,[value]);    
29605         //    return;
29606         //} 
29607         
29608         if(!this.getEditor()) {
29609             return;
29610         }
29611         
29612         this.getEditor().SetData(value);
29613         
29614         //
29615
29616     },
29617
29618     /**
29619      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
29620      * @return {Mixed} value The field value
29621      */
29622     getValue : function()
29623     {
29624         
29625         if (this.frame && this.frame.dom.style.display == 'none') {
29626             return Roo.form.FCKeditor.superclass.getValue.call(this);
29627         }
29628         
29629         if(!this.el || !this.getEditor()) {
29630            
29631            // this.getValue.defer(100,this); 
29632             return this.value;
29633         }
29634        
29635         
29636         var value=this.getEditor().GetData();
29637         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29638         return Roo.form.FCKeditor.superclass.getValue.call(this);
29639         
29640
29641     },
29642
29643     /**
29644      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
29645      * @return {Mixed} value The field value
29646      */
29647     getRawValue : function()
29648     {
29649         if (this.frame && this.frame.dom.style.display == 'none') {
29650             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29651         }
29652         
29653         if(!this.el || !this.getEditor()) {
29654             //this.getRawValue.defer(100,this); 
29655             return this.value;
29656             return;
29657         }
29658         
29659         
29660         
29661         var value=this.getEditor().GetData();
29662         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
29663         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29664          
29665     },
29666     
29667     setSize : function(w,h) {
29668         
29669         
29670         
29671         //if (this.frame && this.frame.dom.style.display == 'none') {
29672         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29673         //    return;
29674         //}
29675         //if(!this.el || !this.getEditor()) {
29676         //    this.setSize.defer(100,this, [w,h]); 
29677         //    return;
29678         //}
29679         
29680         
29681         
29682         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29683         
29684         this.frame.dom.setAttribute('width', w);
29685         this.frame.dom.setAttribute('height', h);
29686         this.frame.setSize(w,h);
29687         
29688     },
29689     
29690     toggleSourceEdit : function(value) {
29691         
29692       
29693          
29694         this.el.dom.style.display = value ? '' : 'none';
29695         this.frame.dom.style.display = value ?  'none' : '';
29696         
29697     },
29698     
29699     
29700     focus: function(tag)
29701     {
29702         if (this.frame.dom.style.display == 'none') {
29703             return Roo.form.FCKeditor.superclass.focus.call(this);
29704         }
29705         if(!this.el || !this.getEditor()) {
29706             this.focus.defer(100,this, [tag]); 
29707             return;
29708         }
29709         
29710         
29711         
29712         
29713         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
29714         this.getEditor().Focus();
29715         if (tgs.length) {
29716             if (!this.getEditor().Selection.GetSelection()) {
29717                 this.focus.defer(100,this, [tag]); 
29718                 return;
29719             }
29720             
29721             
29722             var r = this.getEditor().EditorDocument.createRange();
29723             r.setStart(tgs[0],0);
29724             r.setEnd(tgs[0],0);
29725             this.getEditor().Selection.GetSelection().removeAllRanges();
29726             this.getEditor().Selection.GetSelection().addRange(r);
29727             this.getEditor().Focus();
29728         }
29729         
29730     },
29731     
29732     
29733     
29734     replaceTextarea : function()
29735     {
29736         if ( document.getElementById( this.getId() + '___Frame' ) )
29737             return ;
29738         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
29739         //{
29740             // We must check the elements firstly using the Id and then the name.
29741         var oTextarea = document.getElementById( this.getId() );
29742         
29743         var colElementsByName = document.getElementsByName( this.getId() ) ;
29744          
29745         oTextarea.style.display = 'none' ;
29746
29747         if ( oTextarea.tabIndex ) {            
29748             this.TabIndex = oTextarea.tabIndex ;
29749         }
29750         
29751         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
29752         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
29753         this.frame = Roo.get(this.getId() + '___Frame')
29754     },
29755     
29756     _getConfigHtml : function()
29757     {
29758         var sConfig = '' ;
29759
29760         for ( var o in this.fckconfig ) {
29761             sConfig += sConfig.length > 0  ? '&amp;' : '';
29762             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
29763         }
29764
29765         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
29766     },
29767     
29768     
29769     _getIFrameHtml : function()
29770     {
29771         var sFile = 'fckeditor.html' ;
29772         /* no idea what this is about..
29773         try
29774         {
29775             if ( (/fcksource=true/i).test( window.top.location.search ) )
29776                 sFile = 'fckeditor.original.html' ;
29777         }
29778         catch (e) { 
29779         */
29780
29781         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
29782         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
29783         
29784         
29785         var html = '<iframe id="' + this.getId() +
29786             '___Frame" src="' + sLink +
29787             '" width="' + this.width +
29788             '" height="' + this.height + '"' +
29789             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
29790             ' frameborder="0" scrolling="no"></iframe>' ;
29791
29792         return html ;
29793     },
29794     
29795     _insertHtmlBefore : function( html, element )
29796     {
29797         if ( element.insertAdjacentHTML )       {
29798             // IE
29799             element.insertAdjacentHTML( 'beforeBegin', html ) ;
29800         } else { // Gecko
29801             var oRange = document.createRange() ;
29802             oRange.setStartBefore( element ) ;
29803             var oFragment = oRange.createContextualFragment( html );
29804             element.parentNode.insertBefore( oFragment, element ) ;
29805         }
29806     }
29807     
29808     
29809   
29810     
29811     
29812     
29813     
29814
29815 });
29816
29817 //Roo.reg('fckeditor', Roo.form.FCKeditor);
29818
29819 function FCKeditor_OnComplete(editorInstance){
29820     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
29821     f.fckEditor = editorInstance;
29822     //console.log("loaded");
29823     f.fireEvent('editorinit', f, editorInstance);
29824
29825   
29826
29827  
29828
29829
29830
29831
29832
29833
29834
29835
29836
29837
29838
29839
29840
29841
29842
29843 //<script type="text/javascript">
29844 /**
29845  * @class Roo.form.GridField
29846  * @extends Roo.form.Field
29847  * Embed a grid (or editable grid into a form)
29848  * STATUS ALPHA
29849  * 
29850  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
29851  * it needs 
29852  * xgrid.store = Roo.data.Store
29853  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
29854  * xgrid.store.reader = Roo.data.JsonReader 
29855  * 
29856  * 
29857  * @constructor
29858  * Creates a new GridField
29859  * @param {Object} config Configuration options
29860  */
29861 Roo.form.GridField = function(config){
29862     Roo.form.GridField.superclass.constructor.call(this, config);
29863      
29864 };
29865
29866 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
29867     /**
29868      * @cfg {Number} width  - used to restrict width of grid..
29869      */
29870     width : 100,
29871     /**
29872      * @cfg {Number} height - used to restrict height of grid..
29873      */
29874     height : 50,
29875      /**
29876      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
29877          * 
29878          *}
29879      */
29880     xgrid : false, 
29881     /**
29882      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
29883      * {tag: "input", type: "checkbox", autocomplete: "off"})
29884      */
29885    // defaultAutoCreate : { tag: 'div' },
29886     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
29887     /**
29888      * @cfg {String} addTitle Text to include for adding a title.
29889      */
29890     addTitle : false,
29891     //
29892     onResize : function(){
29893         Roo.form.Field.superclass.onResize.apply(this, arguments);
29894     },
29895
29896     initEvents : function(){
29897         // Roo.form.Checkbox.superclass.initEvents.call(this);
29898         // has no events...
29899        
29900     },
29901
29902
29903     getResizeEl : function(){
29904         return this.wrap;
29905     },
29906
29907     getPositionEl : function(){
29908         return this.wrap;
29909     },
29910
29911     // private
29912     onRender : function(ct, position){
29913         
29914         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
29915         var style = this.style;
29916         delete this.style;
29917         
29918         Roo.form.GridField.superclass.onRender.call(this, ct, position);
29919         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
29920         this.viewEl = this.wrap.createChild({ tag: 'div' });
29921         if (style) {
29922             this.viewEl.applyStyles(style);
29923         }
29924         if (this.width) {
29925             this.viewEl.setWidth(this.width);
29926         }
29927         if (this.height) {
29928             this.viewEl.setHeight(this.height);
29929         }
29930         //if(this.inputValue !== undefined){
29931         //this.setValue(this.value);
29932         
29933         
29934         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
29935         
29936         
29937         this.grid.render();
29938         this.grid.getDataSource().on('remove', this.refreshValue, this);
29939         this.grid.getDataSource().on('update', this.refreshValue, this);
29940         this.grid.on('afteredit', this.refreshValue, this);
29941  
29942     },
29943      
29944     
29945     /**
29946      * Sets the value of the item. 
29947      * @param {String} either an object  or a string..
29948      */
29949     setValue : function(v){
29950         //this.value = v;
29951         v = v || []; // empty set..
29952         // this does not seem smart - it really only affects memoryproxy grids..
29953         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
29954             var ds = this.grid.getDataSource();
29955             // assumes a json reader..
29956             var data = {}
29957             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
29958             ds.loadData( data);
29959         }
29960         // clear selection so it does not get stale.
29961         if (this.grid.sm) { 
29962             this.grid.sm.clearSelections();
29963         }
29964         
29965         Roo.form.GridField.superclass.setValue.call(this, v);
29966         this.refreshValue();
29967         // should load data in the grid really....
29968     },
29969     
29970     // private
29971     refreshValue: function() {
29972          var val = [];
29973         this.grid.getDataSource().each(function(r) {
29974             val.push(r.data);
29975         });
29976         this.el.dom.value = Roo.encode(val);
29977     }
29978     
29979      
29980     
29981     
29982 });/*
29983  * Based on:
29984  * Ext JS Library 1.1.1
29985  * Copyright(c) 2006-2007, Ext JS, LLC.
29986  *
29987  * Originally Released Under LGPL - original licence link has changed is not relivant.
29988  *
29989  * Fork - LGPL
29990  * <script type="text/javascript">
29991  */
29992 /**
29993  * @class Roo.form.DisplayField
29994  * @extends Roo.form.Field
29995  * A generic Field to display non-editable data.
29996  * @constructor
29997  * Creates a new Display Field item.
29998  * @param {Object} config Configuration options
29999  */
30000 Roo.form.DisplayField = function(config){
30001     Roo.form.DisplayField.superclass.constructor.call(this, config);
30002     
30003 };
30004
30005 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
30006     inputType:      'hidden',
30007     allowBlank:     true,
30008     readOnly:         true,
30009     
30010  
30011     /**
30012      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30013      */
30014     focusClass : undefined,
30015     /**
30016      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30017      */
30018     fieldClass: 'x-form-field',
30019     
30020      /**
30021      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
30022      */
30023     valueRenderer: undefined,
30024     
30025     width: 100,
30026     /**
30027      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30028      * {tag: "input", type: "checkbox", autocomplete: "off"})
30029      */
30030      
30031  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
30032
30033     onResize : function(){
30034         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
30035         
30036     },
30037
30038     initEvents : function(){
30039         // Roo.form.Checkbox.superclass.initEvents.call(this);
30040         // has no events...
30041        
30042     },
30043
30044
30045     getResizeEl : function(){
30046         return this.wrap;
30047     },
30048
30049     getPositionEl : function(){
30050         return this.wrap;
30051     },
30052
30053     // private
30054     onRender : function(ct, position){
30055         
30056         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
30057         //if(this.inputValue !== undefined){
30058         this.wrap = this.el.wrap();
30059         
30060         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
30061         
30062         if (this.bodyStyle) {
30063             this.viewEl.applyStyles(this.bodyStyle);
30064         }
30065         //this.viewEl.setStyle('padding', '2px');
30066         
30067         this.setValue(this.value);
30068         
30069     },
30070 /*
30071     // private
30072     initValue : Roo.emptyFn,
30073
30074   */
30075
30076         // private
30077     onClick : function(){
30078         
30079     },
30080
30081     /**
30082      * Sets the checked state of the checkbox.
30083      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
30084      */
30085     setValue : function(v){
30086         this.value = v;
30087         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
30088         // this might be called before we have a dom element..
30089         if (!this.viewEl) {
30090             return;
30091         }
30092         this.viewEl.dom.innerHTML = html;
30093         Roo.form.DisplayField.superclass.setValue.call(this, v);
30094
30095     }
30096 });/*
30097  * 
30098  * Licence- LGPL
30099  * 
30100  */
30101
30102 /**
30103  * @class Roo.form.DayPicker
30104  * @extends Roo.form.Field
30105  * A Day picker show [M] [T] [W] ....
30106  * @constructor
30107  * Creates a new Day Picker
30108  * @param {Object} config Configuration options
30109  */
30110 Roo.form.DayPicker= function(config){
30111     Roo.form.DayPicker.superclass.constructor.call(this, config);
30112      
30113 };
30114
30115 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
30116     /**
30117      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30118      */
30119     focusClass : undefined,
30120     /**
30121      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30122      */
30123     fieldClass: "x-form-field",
30124    
30125     /**
30126      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30127      * {tag: "input", type: "checkbox", autocomplete: "off"})
30128      */
30129     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
30130     
30131    
30132     actionMode : 'viewEl', 
30133     //
30134     // private
30135  
30136     inputType : 'hidden',
30137     
30138      
30139     inputElement: false, // real input element?
30140     basedOn: false, // ????
30141     
30142     isFormField: true, // not sure where this is needed!!!!
30143
30144     onResize : function(){
30145         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
30146         if(!this.boxLabel){
30147             this.el.alignTo(this.wrap, 'c-c');
30148         }
30149     },
30150
30151     initEvents : function(){
30152         Roo.form.Checkbox.superclass.initEvents.call(this);
30153         this.el.on("click", this.onClick,  this);
30154         this.el.on("change", this.onClick,  this);
30155     },
30156
30157
30158     getResizeEl : function(){
30159         return this.wrap;
30160     },
30161
30162     getPositionEl : function(){
30163         return this.wrap;
30164     },
30165
30166     
30167     // private
30168     onRender : function(ct, position){
30169         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
30170        
30171         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
30172         
30173         var r1 = '<table><tr>';
30174         var r2 = '<tr class="x-form-daypick-icons">';
30175         for (var i=0; i < 7; i++) {
30176             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
30177             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
30178         }
30179         
30180         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
30181         viewEl.select('img').on('click', this.onClick, this);
30182         this.viewEl = viewEl;   
30183         
30184         
30185         // this will not work on Chrome!!!
30186         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
30187         this.el.on('propertychange', this.setFromHidden,  this);  //ie
30188         
30189         
30190           
30191
30192     },
30193
30194     // private
30195     initValue : Roo.emptyFn,
30196
30197     /**
30198      * Returns the checked state of the checkbox.
30199      * @return {Boolean} True if checked, else false
30200      */
30201     getValue : function(){
30202         return this.el.dom.value;
30203         
30204     },
30205
30206         // private
30207     onClick : function(e){ 
30208         //this.setChecked(!this.checked);
30209         Roo.get(e.target).toggleClass('x-menu-item-checked');
30210         this.refreshValue();
30211         //if(this.el.dom.checked != this.checked){
30212         //    this.setValue(this.el.dom.checked);
30213        // }
30214     },
30215     
30216     // private
30217     refreshValue : function()
30218     {
30219         var val = '';
30220         this.viewEl.select('img',true).each(function(e,i,n)  {
30221             val += e.is(".x-menu-item-checked") ? String(n) : '';
30222         });
30223         this.setValue(val, true);
30224     },
30225
30226     /**
30227      * Sets the checked state of the checkbox.
30228      * On is always based on a string comparison between inputValue and the param.
30229      * @param {Boolean/String} value - the value to set 
30230      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
30231      */
30232     setValue : function(v,suppressEvent){
30233         if (!this.el.dom) {
30234             return;
30235         }
30236         var old = this.el.dom.value ;
30237         this.el.dom.value = v;
30238         if (suppressEvent) {
30239             return ;
30240         }
30241          
30242         // update display..
30243         this.viewEl.select('img',true).each(function(e,i,n)  {
30244             
30245             var on = e.is(".x-menu-item-checked");
30246             var newv = v.indexOf(String(n)) > -1;
30247             if (on != newv) {
30248                 e.toggleClass('x-menu-item-checked');
30249             }
30250             
30251         });
30252         
30253         
30254         this.fireEvent('change', this, v, old);
30255         
30256         
30257     },
30258    
30259     // handle setting of hidden value by some other method!!?!?
30260     setFromHidden: function()
30261     {
30262         if(!this.el){
30263             return;
30264         }
30265         //console.log("SET FROM HIDDEN");
30266         //alert('setFrom hidden');
30267         this.setValue(this.el.dom.value);
30268     },
30269     
30270     onDestroy : function()
30271     {
30272         if(this.viewEl){
30273             Roo.get(this.viewEl).remove();
30274         }
30275          
30276         Roo.form.DayPicker.superclass.onDestroy.call(this);
30277     }
30278
30279 });/*
30280  * RooJS Library 1.1.1
30281  * Copyright(c) 2008-2011  Alan Knowles
30282  *
30283  * License - LGPL
30284  */
30285  
30286
30287 /**
30288  * @class Roo.form.ComboCheck
30289  * @extends Roo.form.ComboBox
30290  * A combobox for multiple select items.
30291  *
30292  * FIXME - could do with a reset button..
30293  * 
30294  * @constructor
30295  * Create a new ComboCheck
30296  * @param {Object} config Configuration options
30297  */
30298 Roo.form.ComboCheck = function(config){
30299     Roo.form.ComboCheck.superclass.constructor.call(this, config);
30300     // should verify some data...
30301     // like
30302     // hiddenName = required..
30303     // displayField = required
30304     // valudField == required
30305     var req= [ 'hiddenName', 'displayField', 'valueField' ];
30306     var _t = this;
30307     Roo.each(req, function(e) {
30308         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
30309             throw "Roo.form.ComboCheck : missing value for: " + e;
30310         }
30311     });
30312     
30313     
30314 };
30315
30316 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
30317      
30318      
30319     editable : false,
30320      
30321     selectedClass: 'x-menu-item-checked', 
30322     
30323     // private
30324     onRender : function(ct, position){
30325         var _t = this;
30326         
30327         
30328         
30329         if(!this.tpl){
30330             var cls = 'x-combo-list';
30331
30332             
30333             this.tpl =  new Roo.Template({
30334                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
30335                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
30336                    '<span>{' + this.displayField + '}</span>' +
30337                     '</div>' 
30338                 
30339             });
30340         }
30341  
30342         
30343         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
30344         this.view.singleSelect = false;
30345         this.view.multiSelect = true;
30346         this.view.toggleSelect = true;
30347         this.pageTb.add(new Roo.Toolbar.Fill(), {
30348             
30349             text: 'Done',
30350             handler: function()
30351             {
30352                 _t.collapse();
30353             }
30354         });
30355     },
30356     
30357     onViewOver : function(e, t){
30358         // do nothing...
30359         return;
30360         
30361     },
30362     
30363     onViewClick : function(doFocus,index){
30364         return;
30365         
30366     },
30367     select: function () {
30368         //Roo.log("SELECT CALLED");
30369     },
30370      
30371     selectByValue : function(xv, scrollIntoView){
30372         var ar = this.getValueArray();
30373         var sels = [];
30374         
30375         Roo.each(ar, function(v) {
30376             if(v === undefined || v === null){
30377                 return;
30378             }
30379             var r = this.findRecord(this.valueField, v);
30380             if(r){
30381                 sels.push(this.store.indexOf(r))
30382                 
30383             }
30384         },this);
30385         this.view.select(sels);
30386         return false;
30387     },
30388     
30389     
30390     
30391     onSelect : function(record, index){
30392        // Roo.log("onselect Called");
30393        // this is only called by the clear button now..
30394         this.view.clearSelections();
30395         this.setValue('[]');
30396         if (this.value != this.valueBefore) {
30397             this.fireEvent('change', this, this.value, this.valueBefore);
30398             this.valueBefore = this.value;
30399         }
30400     },
30401     getValueArray : function()
30402     {
30403         var ar = [] ;
30404         
30405         try {
30406             //Roo.log(this.value);
30407             if (typeof(this.value) == 'undefined') {
30408                 return [];
30409             }
30410             var ar = Roo.decode(this.value);
30411             return  ar instanceof Array ? ar : []; //?? valid?
30412             
30413         } catch(e) {
30414             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
30415             return [];
30416         }
30417          
30418     },
30419     expand : function ()
30420     {
30421         
30422         Roo.form.ComboCheck.superclass.expand.call(this);
30423         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
30424         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
30425         
30426
30427     },
30428     
30429     collapse : function(){
30430         Roo.form.ComboCheck.superclass.collapse.call(this);
30431         var sl = this.view.getSelectedIndexes();
30432         var st = this.store;
30433         var nv = [];
30434         var tv = [];
30435         var r;
30436         Roo.each(sl, function(i) {
30437             r = st.getAt(i);
30438             nv.push(r.get(this.valueField));
30439         },this);
30440         this.setValue(Roo.encode(nv));
30441         if (this.value != this.valueBefore) {
30442
30443             this.fireEvent('change', this, this.value, this.valueBefore);
30444             this.valueBefore = this.value;
30445         }
30446         
30447     },
30448     
30449     setValue : function(v){
30450         // Roo.log(v);
30451         this.value = v;
30452         
30453         var vals = this.getValueArray();
30454         var tv = [];
30455         Roo.each(vals, function(k) {
30456             var r = this.findRecord(this.valueField, k);
30457             if(r){
30458                 tv.push(r.data[this.displayField]);
30459             }else if(this.valueNotFoundText !== undefined){
30460                 tv.push( this.valueNotFoundText );
30461             }
30462         },this);
30463        // Roo.log(tv);
30464         
30465         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
30466         this.hiddenField.value = v;
30467         this.value = v;
30468     }
30469     
30470 });/*
30471  * Based on:
30472  * Ext JS Library 1.1.1
30473  * Copyright(c) 2006-2007, Ext JS, LLC.
30474  *
30475  * Originally Released Under LGPL - original licence link has changed is not relivant.
30476  *
30477  * Fork - LGPL
30478  * <script type="text/javascript">
30479  */
30480  
30481 /**
30482  * @class Roo.form.Signature
30483  * @extends Roo.form.Field
30484  * Signature field.  
30485  * @constructor
30486  * 
30487  * @param {Object} config Configuration options
30488  */
30489
30490 Roo.form.Signature = function(config){
30491     Roo.form.Signature.superclass.constructor.call(this, config);
30492     
30493     this.addEvents({// not in used??
30494          /**
30495          * @event confirm
30496          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
30497              * @param {Roo.form.Signature} combo This combo box
30498              */
30499         'confirm' : true,
30500         /**
30501          * @event reset
30502          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
30503              * @param {Roo.form.ComboBox} combo This combo box
30504              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
30505              */
30506         'reset' : true
30507     });
30508 };
30509
30510 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
30511     /**
30512      * @cfg {Object} labels Label to use when rendering a form.
30513      * defaults to 
30514      * labels : { 
30515      *      clear : "Clear",
30516      *      confirm : "Confirm"
30517      *  }
30518      */
30519     labels : { 
30520         clear : "Clear",
30521         confirm : "Confirm"
30522     },
30523     /**
30524      * @cfg {Number} width The signature panel width (defaults to 300)
30525      */
30526     width: 300,
30527     /**
30528      * @cfg {Number} height The signature panel height (defaults to 100)
30529      */
30530     height : 100,
30531     /**
30532      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
30533      */
30534     allowBlank : false,
30535     
30536     //private
30537     // {Object} signPanel The signature SVG panel element (defaults to {})
30538     signPanel : {},
30539     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
30540     isMouseDown : false,
30541     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
30542     isConfirmed : false,
30543     // {String} signatureTmp SVG mapping string (defaults to empty string)
30544     signatureTmp : '',
30545     
30546     
30547     defaultAutoCreate : { // modified by initCompnoent..
30548         tag: "input",
30549         type:"hidden"
30550     },
30551
30552     // private
30553     onRender : function(ct, position){
30554         
30555         Roo.form.Signature.superclass.onRender.call(this, ct, position);
30556         
30557         this.wrap = this.el.wrap({
30558             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
30559         });
30560         
30561         this.createToolbar(this);
30562         this.signPanel = this.wrap.createChild({
30563                 tag: 'div',
30564                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
30565             }, this.el
30566         );
30567             
30568         this.svgID = Roo.id();
30569         this.svgEl = this.signPanel.createChild({
30570               xmlns : 'http://www.w3.org/2000/svg',
30571               tag : 'svg',
30572               id : this.svgID + "-svg",
30573               width: this.width,
30574               height: this.height,
30575               viewBox: '0 0 '+this.width+' '+this.height,
30576               cn : [
30577                 {
30578                     tag: "rect",
30579                     id: this.svgID + "-svg-r",
30580                     width: this.width,
30581                     height: this.height,
30582                     fill: "#ffa"
30583                 },
30584                 {
30585                     tag: "line",
30586                     id: this.svgID + "-svg-l",
30587                     x1: "0", // start
30588                     y1: (this.height*0.8), // start set the line in 80% of height
30589                     x2: this.width, // end
30590                     y2: (this.height*0.8), // end set the line in 80% of height
30591                     'stroke': "#666",
30592                     'stroke-width': "1",
30593                     'stroke-dasharray': "3",
30594                     'shape-rendering': "crispEdges",
30595                     'pointer-events': "none"
30596                 },
30597                 {
30598                     tag: "path",
30599                     id: this.svgID + "-svg-p",
30600                     'stroke': "navy",
30601                     'stroke-width': "3",
30602                     'fill': "none",
30603                     'pointer-events': 'none'
30604                 }
30605               ]
30606         });
30607         this.createSVG();
30608         this.svgBox = this.svgEl.dom.getScreenCTM();
30609     },
30610     createSVG : function(){ 
30611         var svg = this.signPanel;
30612         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
30613         var t = this;
30614
30615         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
30616         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
30617         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
30618         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
30619         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
30620         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
30621         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
30622         
30623     },
30624     isTouchEvent : function(e){
30625         return e.type.match(/^touch/);
30626     },
30627     getCoords : function (e) {
30628         var pt    = this.svgEl.dom.createSVGPoint();
30629         pt.x = e.clientX; 
30630         pt.y = e.clientY;
30631         if (this.isTouchEvent(e)) {
30632             pt.x =  e.targetTouches[0].clientX 
30633             pt.y = e.targetTouches[0].clientY;
30634         }
30635         var a = this.svgEl.dom.getScreenCTM();
30636         var b = a.inverse();
30637         var mx = pt.matrixTransform(b);
30638         return mx.x + ',' + mx.y;
30639     },
30640     //mouse event headler 
30641     down : function (e) {
30642         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
30643         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
30644         
30645         this.isMouseDown = true;
30646         
30647         e.preventDefault();
30648     },
30649     move : function (e) {
30650         if (this.isMouseDown) {
30651             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
30652             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
30653         }
30654         
30655         e.preventDefault();
30656     },
30657     up : function (e) {
30658         this.isMouseDown = false;
30659         var sp = this.signatureTmp.split(' ');
30660         
30661         if(sp.length > 1){
30662             if(!sp[sp.length-2].match(/^L/)){
30663                 sp.pop();
30664                 sp.pop();
30665                 sp.push("");
30666                 this.signatureTmp = sp.join(" ");
30667             }
30668         }
30669         if(this.getValue() != this.signatureTmp){
30670             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30671             this.isConfirmed = false;
30672         }
30673         e.preventDefault();
30674     },
30675     
30676     /**
30677      * Protected method that will not generally be called directly. It
30678      * is called when the editor creates its toolbar. Override this method if you need to
30679      * add custom toolbar buttons.
30680      * @param {HtmlEditor} editor
30681      */
30682     createToolbar : function(editor){
30683          function btn(id, toggle, handler){
30684             var xid = fid + '-'+ id ;
30685             return {
30686                 id : xid,
30687                 cmd : id,
30688                 cls : 'x-btn-icon x-edit-'+id,
30689                 enableToggle:toggle !== false,
30690                 scope: editor, // was editor...
30691                 handler:handler||editor.relayBtnCmd,
30692                 clickEvent:'mousedown',
30693                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
30694                 tabIndex:-1
30695             };
30696         }
30697         
30698         
30699         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
30700         this.tb = tb;
30701         this.tb.add(
30702            {
30703                 cls : ' x-signature-btn x-signature-'+id,
30704                 scope: editor, // was editor...
30705                 handler: this.reset,
30706                 clickEvent:'mousedown',
30707                 text: this.labels.clear
30708             },
30709             {
30710                  xtype : 'Fill',
30711                  xns: Roo.Toolbar
30712             }, 
30713             {
30714                 cls : '  x-signature-btn x-signature-'+id,
30715                 scope: editor, // was editor...
30716                 handler: this.confirmHandler,
30717                 clickEvent:'mousedown',
30718                 text: this.labels.confirm
30719             }
30720         );
30721     
30722     },
30723     //public
30724     /**
30725      * when user is clicked confirm then show this image.....
30726      * 
30727      * @return {String} Image Data URI
30728      */
30729     getImageDataURI : function(){
30730         var svg = this.svgEl.dom.parentNode.innerHTML;
30731         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
30732         return src; 
30733     },
30734     /**
30735      * 
30736      * @return {Boolean} this.isConfirmed
30737      */
30738     getConfirmed : function(){
30739         return this.isConfirmed;
30740     },
30741     /**
30742      * 
30743      * @return {Number} this.width
30744      */
30745     getWidth : function(){
30746         return this.width;
30747     },
30748     /**
30749      * 
30750      * @return {Number} this.height
30751      */
30752     getHeight : function(){
30753         return this.height;
30754     },
30755     // private
30756     getSignature : function(){
30757         return this.signatureTmp;
30758     },
30759     // private
30760     reset : function(){
30761         this.signatureTmp = '';
30762         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30763         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
30764         this.isConfirmed = false;
30765         Roo.form.Signature.superclass.reset.call(this);
30766     },
30767     setSignature : function(s){
30768         this.signatureTmp = s;
30769         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30770         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
30771         this.setValue(s);
30772         this.isConfirmed = false;
30773         Roo.form.Signature.superclass.reset.call(this);
30774     }, 
30775     test : function(){
30776 //        Roo.log(this.signPanel.dom.contentWindow.up())
30777     },
30778     //private
30779     setConfirmed : function(){
30780         
30781         
30782         
30783 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
30784     },
30785     // private
30786     confirmHandler : function(){
30787         if(!this.getSignature()){
30788             return;
30789         }
30790         
30791         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
30792         this.setValue(this.getSignature());
30793         this.isConfirmed = true;
30794         
30795         this.fireEvent('confirm', this);
30796     },
30797     // private
30798     // Subclasses should provide the validation implementation by overriding this
30799     validateValue : function(value){
30800         if(this.allowBlank){
30801             return true;
30802         }
30803         
30804         if(this.isConfirmed){
30805             return true;
30806         }
30807         return false;
30808     }
30809 });/*
30810  * Based on:
30811  * Ext JS Library 1.1.1
30812  * Copyright(c) 2006-2007, Ext JS, LLC.
30813  *
30814  * Originally Released Under LGPL - original licence link has changed is not relivant.
30815  *
30816  * Fork - LGPL
30817  * <script type="text/javascript">
30818  */
30819  
30820
30821 /**
30822  * @class Roo.form.ComboBox
30823  * @extends Roo.form.TriggerField
30824  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
30825  * @constructor
30826  * Create a new ComboBox.
30827  * @param {Object} config Configuration options
30828  */
30829 Roo.form.Select = function(config){
30830     Roo.form.Select.superclass.constructor.call(this, config);
30831      
30832 };
30833
30834 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
30835     /**
30836      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
30837      */
30838     /**
30839      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
30840      * rendering into an Roo.Editor, defaults to false)
30841      */
30842     /**
30843      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
30844      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
30845      */
30846     /**
30847      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
30848      */
30849     /**
30850      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
30851      * the dropdown list (defaults to undefined, with no header element)
30852      */
30853
30854      /**
30855      * @cfg {String/Roo.Template} tpl The template to use to render the output
30856      */
30857      
30858     // private
30859     defaultAutoCreate : {tag: "select"  },
30860     /**
30861      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
30862      */
30863     listWidth: undefined,
30864     /**
30865      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
30866      * mode = 'remote' or 'text' if mode = 'local')
30867      */
30868     displayField: undefined,
30869     /**
30870      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
30871      * mode = 'remote' or 'value' if mode = 'local'). 
30872      * Note: use of a valueField requires the user make a selection
30873      * in order for a value to be mapped.
30874      */
30875     valueField: undefined,
30876     
30877     
30878     /**
30879      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
30880      * field's data value (defaults to the underlying DOM element's name)
30881      */
30882     hiddenName: undefined,
30883     /**
30884      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
30885      */
30886     listClass: '',
30887     /**
30888      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
30889      */
30890     selectedClass: 'x-combo-selected',
30891     /**
30892      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
30893      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
30894      * which displays a downward arrow icon).
30895      */
30896     triggerClass : 'x-form-arrow-trigger',
30897     /**
30898      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
30899      */
30900     shadow:'sides',
30901     /**
30902      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
30903      * anchor positions (defaults to 'tl-bl')
30904      */
30905     listAlign: 'tl-bl?',
30906     /**
30907      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
30908      */
30909     maxHeight: 300,
30910     /**
30911      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
30912      * query specified by the allQuery config option (defaults to 'query')
30913      */
30914     triggerAction: 'query',
30915     /**
30916      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
30917      * (defaults to 4, does not apply if editable = false)
30918      */
30919     minChars : 4,
30920     /**
30921      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
30922      * delay (typeAheadDelay) if it matches a known value (defaults to false)
30923      */
30924     typeAhead: false,
30925     /**
30926      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
30927      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
30928      */
30929     queryDelay: 500,
30930     /**
30931      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
30932      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
30933      */
30934     pageSize: 0,
30935     /**
30936      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
30937      * when editable = true (defaults to false)
30938      */
30939     selectOnFocus:false,
30940     /**
30941      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
30942      */
30943     queryParam: 'query',
30944     /**
30945      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
30946      * when mode = 'remote' (defaults to 'Loading...')
30947      */
30948     loadingText: 'Loading...',
30949     /**
30950      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
30951      */
30952     resizable: false,
30953     /**
30954      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
30955      */
30956     handleHeight : 8,
30957     /**
30958      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
30959      * traditional select (defaults to true)
30960      */
30961     editable: true,
30962     /**
30963      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
30964      */
30965     allQuery: '',
30966     /**
30967      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
30968      */
30969     mode: 'remote',
30970     /**
30971      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
30972      * listWidth has a higher value)
30973      */
30974     minListWidth : 70,
30975     /**
30976      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
30977      * allow the user to set arbitrary text into the field (defaults to false)
30978      */
30979     forceSelection:false,
30980     /**
30981      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
30982      * if typeAhead = true (defaults to 250)
30983      */
30984     typeAheadDelay : 250,
30985     /**
30986      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
30987      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
30988      */
30989     valueNotFoundText : undefined,
30990     
30991     /**
30992      * @cfg {String} defaultValue The value displayed after loading the store.
30993      */
30994     defaultValue: '',
30995     
30996     /**
30997      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
30998      */
30999     blockFocus : false,
31000     
31001     /**
31002      * @cfg {Boolean} disableClear Disable showing of clear button.
31003      */
31004     disableClear : false,
31005     /**
31006      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
31007      */
31008     alwaysQuery : false,
31009     
31010     //private
31011     addicon : false,
31012     editicon: false,
31013     
31014     // element that contains real text value.. (when hidden is used..)
31015      
31016     // private
31017     onRender : function(ct, position){
31018         Roo.form.Field.prototype.onRender.call(this, ct, position);
31019         
31020         if(this.store){
31021             this.store.on('beforeload', this.onBeforeLoad, this);
31022             this.store.on('load', this.onLoad, this);
31023             this.store.on('loadexception', this.onLoadException, this);
31024             this.store.load({});
31025         }
31026         
31027         
31028         
31029     },
31030
31031     // private
31032     initEvents : function(){
31033         //Roo.form.ComboBox.superclass.initEvents.call(this);
31034  
31035     },
31036
31037     onDestroy : function(){
31038        
31039         if(this.store){
31040             this.store.un('beforeload', this.onBeforeLoad, this);
31041             this.store.un('load', this.onLoad, this);
31042             this.store.un('loadexception', this.onLoadException, this);
31043         }
31044         //Roo.form.ComboBox.superclass.onDestroy.call(this);
31045     },
31046
31047     // private
31048     fireKey : function(e){
31049         if(e.isNavKeyPress() && !this.list.isVisible()){
31050             this.fireEvent("specialkey", this, e);
31051         }
31052     },
31053
31054     // private
31055     onResize: function(w, h){
31056         
31057         return; 
31058     
31059         
31060     },
31061
31062     /**
31063      * Allow or prevent the user from directly editing the field text.  If false is passed,
31064      * the user will only be able to select from the items defined in the dropdown list.  This method
31065      * is the runtime equivalent of setting the 'editable' config option at config time.
31066      * @param {Boolean} value True to allow the user to directly edit the field text
31067      */
31068     setEditable : function(value){
31069          
31070     },
31071
31072     // private
31073     onBeforeLoad : function(){
31074         
31075         Roo.log("Select before load");
31076         return;
31077     
31078         this.innerList.update(this.loadingText ?
31079                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
31080         //this.restrictHeight();
31081         this.selectedIndex = -1;
31082     },
31083
31084     // private
31085     onLoad : function(){
31086
31087     
31088         var dom = this.el.dom;
31089         dom.innerHTML = '';
31090          var od = dom.ownerDocument;
31091          
31092         if (this.emptyText) {
31093             var op = od.createElement('option');
31094             op.setAttribute('value', '');
31095             op.innerHTML = String.format('{0}', this.emptyText);
31096             dom.appendChild(op);
31097         }
31098         if(this.store.getCount() > 0){
31099            
31100             var vf = this.valueField;
31101             var df = this.displayField;
31102             this.store.data.each(function(r) {
31103                 // which colmsn to use... testing - cdoe / title..
31104                 var op = od.createElement('option');
31105                 op.setAttribute('value', r.data[vf]);
31106                 op.innerHTML = String.format('{0}', r.data[df]);
31107                 dom.appendChild(op);
31108             });
31109             if (typeof(this.defaultValue != 'undefined')) {
31110                 this.setValue(this.defaultValue);
31111             }
31112             
31113              
31114         }else{
31115             //this.onEmptyResults();
31116         }
31117         //this.el.focus();
31118     },
31119     // private
31120     onLoadException : function()
31121     {
31122         dom.innerHTML = '';
31123             
31124         Roo.log("Select on load exception");
31125         return;
31126     
31127         this.collapse();
31128         Roo.log(this.store.reader.jsonData);
31129         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
31130             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
31131         }
31132         
31133         
31134     },
31135     // private
31136     onTypeAhead : function(){
31137          
31138     },
31139
31140     // private
31141     onSelect : function(record, index){
31142         Roo.log('on select?');
31143         return;
31144         if(this.fireEvent('beforeselect', this, record, index) !== false){
31145             this.setFromData(index > -1 ? record.data : false);
31146             this.collapse();
31147             this.fireEvent('select', this, record, index);
31148         }
31149     },
31150
31151     /**
31152      * Returns the currently selected field value or empty string if no value is set.
31153      * @return {String} value The selected value
31154      */
31155     getValue : function(){
31156         var dom = this.el.dom;
31157         this.value = dom.options[dom.selectedIndex].value;
31158         return this.value;
31159         
31160     },
31161
31162     /**
31163      * Clears any text/value currently set in the field
31164      */
31165     clearValue : function(){
31166         this.value = '';
31167         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
31168         
31169     },
31170
31171     /**
31172      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
31173      * will be displayed in the field.  If the value does not match the data value of an existing item,
31174      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
31175      * Otherwise the field will be blank (although the value will still be set).
31176      * @param {String} value The value to match
31177      */
31178     setValue : function(v){
31179         var d = this.el.dom;
31180         for (var i =0; i < d.options.length;i++) {
31181             if (v == d.options[i].value) {
31182                 d.selectedIndex = i;
31183                 this.value = v;
31184                 return;
31185             }
31186         }
31187         this.clearValue();
31188     },
31189     /**
31190      * @property {Object} the last set data for the element
31191      */
31192     
31193     lastData : false,
31194     /**
31195      * Sets the value of the field based on a object which is related to the record format for the store.
31196      * @param {Object} value the value to set as. or false on reset?
31197      */
31198     setFromData : function(o){
31199         Roo.log('setfrom data?');
31200          
31201         
31202         
31203     },
31204     // private
31205     reset : function(){
31206         this.clearValue();
31207     },
31208     // private
31209     findRecord : function(prop, value){
31210         
31211         return false;
31212     
31213         var record;
31214         if(this.store.getCount() > 0){
31215             this.store.each(function(r){
31216                 if(r.data[prop] == value){
31217                     record = r;
31218                     return false;
31219                 }
31220                 return true;
31221             });
31222         }
31223         return record;
31224     },
31225     
31226     getName: function()
31227     {
31228         // returns hidden if it's set..
31229         if (!this.rendered) {return ''};
31230         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
31231         
31232     },
31233      
31234
31235     
31236
31237     // private
31238     onEmptyResults : function(){
31239         Roo.log('empty results');
31240         //this.collapse();
31241     },
31242
31243     /**
31244      * Returns true if the dropdown list is expanded, else false.
31245      */
31246     isExpanded : function(){
31247         return false;
31248     },
31249
31250     /**
31251      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
31252      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31253      * @param {String} value The data value of the item to select
31254      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31255      * selected item if it is not currently in view (defaults to true)
31256      * @return {Boolean} True if the value matched an item in the list, else false
31257      */
31258     selectByValue : function(v, scrollIntoView){
31259         Roo.log('select By Value');
31260         return false;
31261     
31262         if(v !== undefined && v !== null){
31263             var r = this.findRecord(this.valueField || this.displayField, v);
31264             if(r){
31265                 this.select(this.store.indexOf(r), scrollIntoView);
31266                 return true;
31267             }
31268         }
31269         return false;
31270     },
31271
31272     /**
31273      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
31274      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31275      * @param {Number} index The zero-based index of the list item to select
31276      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31277      * selected item if it is not currently in view (defaults to true)
31278      */
31279     select : function(index, scrollIntoView){
31280         Roo.log('select ');
31281         return  ;
31282         
31283         this.selectedIndex = index;
31284         this.view.select(index);
31285         if(scrollIntoView !== false){
31286             var el = this.view.getNode(index);
31287             if(el){
31288                 this.innerList.scrollChildIntoView(el, false);
31289             }
31290         }
31291     },
31292
31293       
31294
31295     // private
31296     validateBlur : function(){
31297         
31298         return;
31299         
31300     },
31301
31302     // private
31303     initQuery : function(){
31304         this.doQuery(this.getRawValue());
31305     },
31306
31307     // private
31308     doForce : function(){
31309         if(this.el.dom.value.length > 0){
31310             this.el.dom.value =
31311                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
31312              
31313         }
31314     },
31315
31316     /**
31317      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
31318      * query allowing the query action to be canceled if needed.
31319      * @param {String} query The SQL query to execute
31320      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
31321      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
31322      * saved in the current store (defaults to false)
31323      */
31324     doQuery : function(q, forceAll){
31325         
31326         Roo.log('doQuery?');
31327         if(q === undefined || q === null){
31328             q = '';
31329         }
31330         var qe = {
31331             query: q,
31332             forceAll: forceAll,
31333             combo: this,
31334             cancel:false
31335         };
31336         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
31337             return false;
31338         }
31339         q = qe.query;
31340         forceAll = qe.forceAll;
31341         if(forceAll === true || (q.length >= this.minChars)){
31342             if(this.lastQuery != q || this.alwaysQuery){
31343                 this.lastQuery = q;
31344                 if(this.mode == 'local'){
31345                     this.selectedIndex = -1;
31346                     if(forceAll){
31347                         this.store.clearFilter();
31348                     }else{
31349                         this.store.filter(this.displayField, q);
31350                     }
31351                     this.onLoad();
31352                 }else{
31353                     this.store.baseParams[this.queryParam] = q;
31354                     this.store.load({
31355                         params: this.getParams(q)
31356                     });
31357                     this.expand();
31358                 }
31359             }else{
31360                 this.selectedIndex = -1;
31361                 this.onLoad();   
31362             }
31363         }
31364     },
31365
31366     // private
31367     getParams : function(q){
31368         var p = {};
31369         //p[this.queryParam] = q;
31370         if(this.pageSize){
31371             p.start = 0;
31372             p.limit = this.pageSize;
31373         }
31374         return p;
31375     },
31376
31377     /**
31378      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
31379      */
31380     collapse : function(){
31381         
31382     },
31383
31384     // private
31385     collapseIf : function(e){
31386         
31387     },
31388
31389     /**
31390      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
31391      */
31392     expand : function(){
31393         
31394     } ,
31395
31396     // private
31397      
31398
31399     /** 
31400     * @cfg {Boolean} grow 
31401     * @hide 
31402     */
31403     /** 
31404     * @cfg {Number} growMin 
31405     * @hide 
31406     */
31407     /** 
31408     * @cfg {Number} growMax 
31409     * @hide 
31410     */
31411     /**
31412      * @hide
31413      * @method autoSize
31414      */
31415     
31416     setWidth : function()
31417     {
31418         
31419     },
31420     getResizeEl : function(){
31421         return this.el;
31422     }
31423 });//<script type="text/javasscript">
31424  
31425
31426 /**
31427  * @class Roo.DDView
31428  * A DnD enabled version of Roo.View.
31429  * @param {Element/String} container The Element in which to create the View.
31430  * @param {String} tpl The template string used to create the markup for each element of the View
31431  * @param {Object} config The configuration properties. These include all the config options of
31432  * {@link Roo.View} plus some specific to this class.<br>
31433  * <p>
31434  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
31435  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
31436  * <p>
31437  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
31438 .x-view-drag-insert-above {
31439         border-top:1px dotted #3366cc;
31440 }
31441 .x-view-drag-insert-below {
31442         border-bottom:1px dotted #3366cc;
31443 }
31444 </code></pre>
31445  * 
31446  */
31447  
31448 Roo.DDView = function(container, tpl, config) {
31449     Roo.DDView.superclass.constructor.apply(this, arguments);
31450     this.getEl().setStyle("outline", "0px none");
31451     this.getEl().unselectable();
31452     if (this.dragGroup) {
31453                 this.setDraggable(this.dragGroup.split(","));
31454     }
31455     if (this.dropGroup) {
31456                 this.setDroppable(this.dropGroup.split(","));
31457     }
31458     if (this.deletable) {
31459         this.setDeletable();
31460     }
31461     this.isDirtyFlag = false;
31462         this.addEvents({
31463                 "drop" : true
31464         });
31465 };
31466
31467 Roo.extend(Roo.DDView, Roo.View, {
31468 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
31469 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
31470 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
31471 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
31472
31473         isFormField: true,
31474
31475         reset: Roo.emptyFn,
31476         
31477         clearInvalid: Roo.form.Field.prototype.clearInvalid,
31478
31479         validate: function() {
31480                 return true;
31481         },
31482         
31483         destroy: function() {
31484                 this.purgeListeners();
31485                 this.getEl.removeAllListeners();
31486                 this.getEl().remove();
31487                 if (this.dragZone) {
31488                         if (this.dragZone.destroy) {
31489                                 this.dragZone.destroy();
31490                         }
31491                 }
31492                 if (this.dropZone) {
31493                         if (this.dropZone.destroy) {
31494                                 this.dropZone.destroy();
31495                         }
31496                 }
31497         },
31498
31499 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
31500         getName: function() {
31501                 return this.name;
31502         },
31503
31504 /**     Loads the View from a JSON string representing the Records to put into the Store. */
31505         setValue: function(v) {
31506                 if (!this.store) {
31507                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
31508                 }
31509                 var data = {};
31510                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
31511                 this.store.proxy = new Roo.data.MemoryProxy(data);
31512                 this.store.load();
31513         },
31514
31515 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
31516         getValue: function() {
31517                 var result = '(';
31518                 this.store.each(function(rec) {
31519                         result += rec.id + ',';
31520                 });
31521                 return result.substr(0, result.length - 1) + ')';
31522         },
31523         
31524         getIds: function() {
31525                 var i = 0, result = new Array(this.store.getCount());
31526                 this.store.each(function(rec) {
31527                         result[i++] = rec.id;
31528                 });
31529                 return result;
31530         },
31531         
31532         isDirty: function() {
31533                 return this.isDirtyFlag;
31534         },
31535
31536 /**
31537  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
31538  *      whole Element becomes the target, and this causes the drop gesture to append.
31539  */
31540     getTargetFromEvent : function(e) {
31541                 var target = e.getTarget();
31542                 while ((target !== null) && (target.parentNode != this.el.dom)) {
31543                 target = target.parentNode;
31544                 }
31545                 if (!target) {
31546                         target = this.el.dom.lastChild || this.el.dom;
31547                 }
31548                 return target;
31549     },
31550
31551 /**
31552  *      Create the drag data which consists of an object which has the property "ddel" as
31553  *      the drag proxy element. 
31554  */
31555     getDragData : function(e) {
31556         var target = this.findItemFromChild(e.getTarget());
31557                 if(target) {
31558                         this.handleSelection(e);
31559                         var selNodes = this.getSelectedNodes();
31560             var dragData = {
31561                 source: this,
31562                 copy: this.copy || (this.allowCopy && e.ctrlKey),
31563                 nodes: selNodes,
31564                 records: []
31565                         };
31566                         var selectedIndices = this.getSelectedIndexes();
31567                         for (var i = 0; i < selectedIndices.length; i++) {
31568                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
31569                         }
31570                         if (selNodes.length == 1) {
31571                                 dragData.ddel = target.cloneNode(true); // the div element
31572                         } else {
31573                                 var div = document.createElement('div'); // create the multi element drag "ghost"
31574                                 div.className = 'multi-proxy';
31575                                 for (var i = 0, len = selNodes.length; i < len; i++) {
31576                                         div.appendChild(selNodes[i].cloneNode(true));
31577                                 }
31578                                 dragData.ddel = div;
31579                         }
31580             //console.log(dragData)
31581             //console.log(dragData.ddel.innerHTML)
31582                         return dragData;
31583                 }
31584         //console.log('nodragData')
31585                 return false;
31586     },
31587     
31588 /**     Specify to which ddGroup items in this DDView may be dragged. */
31589     setDraggable: function(ddGroup) {
31590         if (ddGroup instanceof Array) {
31591                 Roo.each(ddGroup, this.setDraggable, this);
31592                 return;
31593         }
31594         if (this.dragZone) {
31595                 this.dragZone.addToGroup(ddGroup);
31596         } else {
31597                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
31598                                 containerScroll: true,
31599                                 ddGroup: ddGroup 
31600
31601                         });
31602 //                      Draggability implies selection. DragZone's mousedown selects the element.
31603                         if (!this.multiSelect) { this.singleSelect = true; }
31604
31605 //                      Wire the DragZone's handlers up to methods in *this*
31606                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
31607                 }
31608     },
31609
31610 /**     Specify from which ddGroup this DDView accepts drops. */
31611     setDroppable: function(ddGroup) {
31612         if (ddGroup instanceof Array) {
31613                 Roo.each(ddGroup, this.setDroppable, this);
31614                 return;
31615         }
31616         if (this.dropZone) {
31617                 this.dropZone.addToGroup(ddGroup);
31618         } else {
31619                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
31620                                 containerScroll: true,
31621                                 ddGroup: ddGroup
31622                         });
31623
31624 //                      Wire the DropZone's handlers up to methods in *this*
31625                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
31626                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
31627                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
31628                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
31629                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
31630                 }
31631     },
31632
31633 /**     Decide whether to drop above or below a View node. */
31634     getDropPoint : function(e, n, dd){
31635         if (n == this.el.dom) { return "above"; }
31636                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
31637                 var c = t + (b - t) / 2;
31638                 var y = Roo.lib.Event.getPageY(e);
31639                 if(y <= c) {
31640                         return "above";
31641                 }else{
31642                         return "below";
31643                 }
31644     },
31645
31646     onNodeEnter : function(n, dd, e, data){
31647                 return false;
31648     },
31649     
31650     onNodeOver : function(n, dd, e, data){
31651                 var pt = this.getDropPoint(e, n, dd);
31652                 // set the insert point style on the target node
31653                 var dragElClass = this.dropNotAllowed;
31654                 if (pt) {
31655                         var targetElClass;
31656                         if (pt == "above"){
31657                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
31658                                 targetElClass = "x-view-drag-insert-above";
31659                         } else {
31660                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
31661                                 targetElClass = "x-view-drag-insert-below";
31662                         }
31663                         if (this.lastInsertClass != targetElClass){
31664                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
31665                                 this.lastInsertClass = targetElClass;
31666                         }
31667                 }
31668                 return dragElClass;
31669         },
31670
31671     onNodeOut : function(n, dd, e, data){
31672                 this.removeDropIndicators(n);
31673     },
31674
31675     onNodeDrop : function(n, dd, e, data){
31676         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
31677                 return false;
31678         }
31679         var pt = this.getDropPoint(e, n, dd);
31680                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
31681                 if (pt == "below") { insertAt++; }
31682                 for (var i = 0; i < data.records.length; i++) {
31683                         var r = data.records[i];
31684                         var dup = this.store.getById(r.id);
31685                         if (dup && (dd != this.dragZone)) {
31686                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
31687                         } else {
31688                                 if (data.copy) {
31689                                         this.store.insert(insertAt++, r.copy());
31690                                 } else {
31691                                         data.source.isDirtyFlag = true;
31692                                         r.store.remove(r);
31693                                         this.store.insert(insertAt++, r);
31694                                 }
31695                                 this.isDirtyFlag = true;
31696                         }
31697                 }
31698                 this.dragZone.cachedTarget = null;
31699                 return true;
31700     },
31701
31702     removeDropIndicators : function(n){
31703                 if(n){
31704                         Roo.fly(n).removeClass([
31705                                 "x-view-drag-insert-above",
31706                                 "x-view-drag-insert-below"]);
31707                         this.lastInsertClass = "_noclass";
31708                 }
31709     },
31710
31711 /**
31712  *      Utility method. Add a delete option to the DDView's context menu.
31713  *      @param {String} imageUrl The URL of the "delete" icon image.
31714  */
31715         setDeletable: function(imageUrl) {
31716                 if (!this.singleSelect && !this.multiSelect) {
31717                         this.singleSelect = true;
31718                 }
31719                 var c = this.getContextMenu();
31720                 this.contextMenu.on("itemclick", function(item) {
31721                         switch (item.id) {
31722                                 case "delete":
31723                                         this.remove(this.getSelectedIndexes());
31724                                         break;
31725                         }
31726                 }, this);
31727                 this.contextMenu.add({
31728                         icon: imageUrl,
31729                         id: "delete",
31730                         text: 'Delete'
31731                 });
31732         },
31733         
31734 /**     Return the context menu for this DDView. */
31735         getContextMenu: function() {
31736                 if (!this.contextMenu) {
31737 //                      Create the View's context menu
31738                         this.contextMenu = new Roo.menu.Menu({
31739                                 id: this.id + "-contextmenu"
31740                         });
31741                         this.el.on("contextmenu", this.showContextMenu, this);
31742                 }
31743                 return this.contextMenu;
31744         },
31745         
31746         disableContextMenu: function() {
31747                 if (this.contextMenu) {
31748                         this.el.un("contextmenu", this.showContextMenu, this);
31749                 }
31750         },
31751
31752         showContextMenu: function(e, item) {
31753         item = this.findItemFromChild(e.getTarget());
31754                 if (item) {
31755                         e.stopEvent();
31756                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
31757                         this.contextMenu.showAt(e.getXY());
31758             }
31759     },
31760
31761 /**
31762  *      Remove {@link Roo.data.Record}s at the specified indices.
31763  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
31764  */
31765     remove: function(selectedIndices) {
31766                 selectedIndices = [].concat(selectedIndices);
31767                 for (var i = 0; i < selectedIndices.length; i++) {
31768                         var rec = this.store.getAt(selectedIndices[i]);
31769                         this.store.remove(rec);
31770                 }
31771     },
31772
31773 /**
31774  *      Double click fires the event, but also, if this is draggable, and there is only one other
31775  *      related DropZone, it transfers the selected node.
31776  */
31777     onDblClick : function(e){
31778         var item = this.findItemFromChild(e.getTarget());
31779         if(item){
31780             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
31781                 return false;
31782             }
31783             if (this.dragGroup) {
31784                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
31785                     while (targets.indexOf(this.dropZone) > -1) {
31786                             targets.remove(this.dropZone);
31787                                 }
31788                     if (targets.length == 1) {
31789                                         this.dragZone.cachedTarget = null;
31790                         var el = Roo.get(targets[0].getEl());
31791                         var box = el.getBox(true);
31792                         targets[0].onNodeDrop(el.dom, {
31793                                 target: el.dom,
31794                                 xy: [box.x, box.y + box.height - 1]
31795                         }, null, this.getDragData(e));
31796                     }
31797                 }
31798         }
31799     },
31800     
31801     handleSelection: function(e) {
31802                 this.dragZone.cachedTarget = null;
31803         var item = this.findItemFromChild(e.getTarget());
31804         if (!item) {
31805                 this.clearSelections(true);
31806                 return;
31807         }
31808                 if (item && (this.multiSelect || this.singleSelect)){
31809                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
31810                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
31811                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
31812                                 this.unselect(item);
31813                         } else {
31814                                 this.select(item, this.multiSelect && e.ctrlKey);
31815                                 this.lastSelection = item;
31816                         }
31817                 }
31818     },
31819
31820     onItemClick : function(item, index, e){
31821                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
31822                         return false;
31823                 }
31824                 return true;
31825     },
31826
31827     unselect : function(nodeInfo, suppressEvent){
31828                 var node = this.getNode(nodeInfo);
31829                 if(node && this.isSelected(node)){
31830                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
31831                                 Roo.fly(node).removeClass(this.selectedClass);
31832                                 this.selections.remove(node);
31833                                 if(!suppressEvent){
31834                                         this.fireEvent("selectionchange", this, this.selections);
31835                                 }
31836                         }
31837                 }
31838     }
31839 });
31840 /*
31841  * Based on:
31842  * Ext JS Library 1.1.1
31843  * Copyright(c) 2006-2007, Ext JS, LLC.
31844  *
31845  * Originally Released Under LGPL - original licence link has changed is not relivant.
31846  *
31847  * Fork - LGPL
31848  * <script type="text/javascript">
31849  */
31850  
31851 /**
31852  * @class Roo.LayoutManager
31853  * @extends Roo.util.Observable
31854  * Base class for layout managers.
31855  */
31856 Roo.LayoutManager = function(container, config){
31857     Roo.LayoutManager.superclass.constructor.call(this);
31858     this.el = Roo.get(container);
31859     // ie scrollbar fix
31860     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
31861         document.body.scroll = "no";
31862     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
31863         this.el.position('relative');
31864     }
31865     this.id = this.el.id;
31866     this.el.addClass("x-layout-container");
31867     /** false to disable window resize monitoring @type Boolean */
31868     this.monitorWindowResize = true;
31869     this.regions = {};
31870     this.addEvents({
31871         /**
31872          * @event layout
31873          * Fires when a layout is performed. 
31874          * @param {Roo.LayoutManager} this
31875          */
31876         "layout" : true,
31877         /**
31878          * @event regionresized
31879          * Fires when the user resizes a region. 
31880          * @param {Roo.LayoutRegion} region The resized region
31881          * @param {Number} newSize The new size (width for east/west, height for north/south)
31882          */
31883         "regionresized" : true,
31884         /**
31885          * @event regioncollapsed
31886          * Fires when a region is collapsed. 
31887          * @param {Roo.LayoutRegion} region The collapsed region
31888          */
31889         "regioncollapsed" : true,
31890         /**
31891          * @event regionexpanded
31892          * Fires when a region is expanded.  
31893          * @param {Roo.LayoutRegion} region The expanded region
31894          */
31895         "regionexpanded" : true
31896     });
31897     this.updating = false;
31898     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
31899 };
31900
31901 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
31902     /**
31903      * Returns true if this layout is currently being updated
31904      * @return {Boolean}
31905      */
31906     isUpdating : function(){
31907         return this.updating; 
31908     },
31909     
31910     /**
31911      * Suspend the LayoutManager from doing auto-layouts while
31912      * making multiple add or remove calls
31913      */
31914     beginUpdate : function(){
31915         this.updating = true;    
31916     },
31917     
31918     /**
31919      * Restore auto-layouts and optionally disable the manager from performing a layout
31920      * @param {Boolean} noLayout true to disable a layout update 
31921      */
31922     endUpdate : function(noLayout){
31923         this.updating = false;
31924         if(!noLayout){
31925             this.layout();
31926         }    
31927     },
31928     
31929     layout: function(){
31930         
31931     },
31932     
31933     onRegionResized : function(region, newSize){
31934         this.fireEvent("regionresized", region, newSize);
31935         this.layout();
31936     },
31937     
31938     onRegionCollapsed : function(region){
31939         this.fireEvent("regioncollapsed", region);
31940     },
31941     
31942     onRegionExpanded : function(region){
31943         this.fireEvent("regionexpanded", region);
31944     },
31945         
31946     /**
31947      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
31948      * performs box-model adjustments.
31949      * @return {Object} The size as an object {width: (the width), height: (the height)}
31950      */
31951     getViewSize : function(){
31952         var size;
31953         if(this.el.dom != document.body){
31954             size = this.el.getSize();
31955         }else{
31956             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
31957         }
31958         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
31959         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
31960         return size;
31961     },
31962     
31963     /**
31964      * Returns the Element this layout is bound to.
31965      * @return {Roo.Element}
31966      */
31967     getEl : function(){
31968         return this.el;
31969     },
31970     
31971     /**
31972      * Returns the specified region.
31973      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
31974      * @return {Roo.LayoutRegion}
31975      */
31976     getRegion : function(target){
31977         return this.regions[target.toLowerCase()];
31978     },
31979     
31980     onWindowResize : function(){
31981         if(this.monitorWindowResize){
31982             this.layout();
31983         }
31984     }
31985 });/*
31986  * Based on:
31987  * Ext JS Library 1.1.1
31988  * Copyright(c) 2006-2007, Ext JS, LLC.
31989  *
31990  * Originally Released Under LGPL - original licence link has changed is not relivant.
31991  *
31992  * Fork - LGPL
31993  * <script type="text/javascript">
31994  */
31995 /**
31996  * @class Roo.BorderLayout
31997  * @extends Roo.LayoutManager
31998  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
31999  * please see: <br><br>
32000  * <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>
32001  * <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>
32002  * Example:
32003  <pre><code>
32004  var layout = new Roo.BorderLayout(document.body, {
32005     north: {
32006         initialSize: 25,
32007         titlebar: false
32008     },
32009     west: {
32010         split:true,
32011         initialSize: 200,
32012         minSize: 175,
32013         maxSize: 400,
32014         titlebar: true,
32015         collapsible: true
32016     },
32017     east: {
32018         split:true,
32019         initialSize: 202,
32020         minSize: 175,
32021         maxSize: 400,
32022         titlebar: true,
32023         collapsible: true
32024     },
32025     south: {
32026         split:true,
32027         initialSize: 100,
32028         minSize: 100,
32029         maxSize: 200,
32030         titlebar: true,
32031         collapsible: true
32032     },
32033     center: {
32034         titlebar: true,
32035         autoScroll:true,
32036         resizeTabs: true,
32037         minTabWidth: 50,
32038         preferredTabWidth: 150
32039     }
32040 });
32041
32042 // shorthand
32043 var CP = Roo.ContentPanel;
32044
32045 layout.beginUpdate();
32046 layout.add("north", new CP("north", "North"));
32047 layout.add("south", new CP("south", {title: "South", closable: true}));
32048 layout.add("west", new CP("west", {title: "West"}));
32049 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
32050 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
32051 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
32052 layout.getRegion("center").showPanel("center1");
32053 layout.endUpdate();
32054 </code></pre>
32055
32056 <b>The container the layout is rendered into can be either the body element or any other element.
32057 If it is not the body element, the container needs to either be an absolute positioned element,
32058 or you will need to add "position:relative" to the css of the container.  You will also need to specify
32059 the container size if it is not the body element.</b>
32060
32061 * @constructor
32062 * Create a new BorderLayout
32063 * @param {String/HTMLElement/Element} container The container this layout is bound to
32064 * @param {Object} config Configuration options
32065  */
32066 Roo.BorderLayout = function(container, config){
32067     config = config || {};
32068     Roo.BorderLayout.superclass.constructor.call(this, container, config);
32069     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
32070     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
32071         var target = this.factory.validRegions[i];
32072         if(config[target]){
32073             this.addRegion(target, config[target]);
32074         }
32075     }
32076 };
32077
32078 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
32079     /**
32080      * Creates and adds a new region if it doesn't already exist.
32081      * @param {String} target The target region key (north, south, east, west or center).
32082      * @param {Object} config The regions config object
32083      * @return {BorderLayoutRegion} The new region
32084      */
32085     addRegion : function(target, config){
32086         if(!this.regions[target]){
32087             var r = this.factory.create(target, this, config);
32088             this.bindRegion(target, r);
32089         }
32090         return this.regions[target];
32091     },
32092
32093     // private (kinda)
32094     bindRegion : function(name, r){
32095         this.regions[name] = r;
32096         r.on("visibilitychange", this.layout, this);
32097         r.on("paneladded", this.layout, this);
32098         r.on("panelremoved", this.layout, this);
32099         r.on("invalidated", this.layout, this);
32100         r.on("resized", this.onRegionResized, this);
32101         r.on("collapsed", this.onRegionCollapsed, this);
32102         r.on("expanded", this.onRegionExpanded, this);
32103     },
32104
32105     /**
32106      * Performs a layout update.
32107      */
32108     layout : function(){
32109         if(this.updating) return;
32110         var size = this.getViewSize();
32111         var w = size.width;
32112         var h = size.height;
32113         var centerW = w;
32114         var centerH = h;
32115         var centerY = 0;
32116         var centerX = 0;
32117         //var x = 0, y = 0;
32118
32119         var rs = this.regions;
32120         var north = rs["north"];
32121         var south = rs["south"]; 
32122         var west = rs["west"];
32123         var east = rs["east"];
32124         var center = rs["center"];
32125         //if(this.hideOnLayout){ // not supported anymore
32126             //c.el.setStyle("display", "none");
32127         //}
32128         if(north && north.isVisible()){
32129             var b = north.getBox();
32130             var m = north.getMargins();
32131             b.width = w - (m.left+m.right);
32132             b.x = m.left;
32133             b.y = m.top;
32134             centerY = b.height + b.y + m.bottom;
32135             centerH -= centerY;
32136             north.updateBox(this.safeBox(b));
32137         }
32138         if(south && south.isVisible()){
32139             var b = south.getBox();
32140             var m = south.getMargins();
32141             b.width = w - (m.left+m.right);
32142             b.x = m.left;
32143             var totalHeight = (b.height + m.top + m.bottom);
32144             b.y = h - totalHeight + m.top;
32145             centerH -= totalHeight;
32146             south.updateBox(this.safeBox(b));
32147         }
32148         if(west && west.isVisible()){
32149             var b = west.getBox();
32150             var m = west.getMargins();
32151             b.height = centerH - (m.top+m.bottom);
32152             b.x = m.left;
32153             b.y = centerY + m.top;
32154             var totalWidth = (b.width + m.left + m.right);
32155             centerX += totalWidth;
32156             centerW -= totalWidth;
32157             west.updateBox(this.safeBox(b));
32158         }
32159         if(east && east.isVisible()){
32160             var b = east.getBox();
32161             var m = east.getMargins();
32162             b.height = centerH - (m.top+m.bottom);
32163             var totalWidth = (b.width + m.left + m.right);
32164             b.x = w - totalWidth + m.left;
32165             b.y = centerY + m.top;
32166             centerW -= totalWidth;
32167             east.updateBox(this.safeBox(b));
32168         }
32169         if(center){
32170             var m = center.getMargins();
32171             var centerBox = {
32172                 x: centerX + m.left,
32173                 y: centerY + m.top,
32174                 width: centerW - (m.left+m.right),
32175                 height: centerH - (m.top+m.bottom)
32176             };
32177             //if(this.hideOnLayout){
32178                 //center.el.setStyle("display", "block");
32179             //}
32180             center.updateBox(this.safeBox(centerBox));
32181         }
32182         this.el.repaint();
32183         this.fireEvent("layout", this);
32184     },
32185
32186     // private
32187     safeBox : function(box){
32188         box.width = Math.max(0, box.width);
32189         box.height = Math.max(0, box.height);
32190         return box;
32191     },
32192
32193     /**
32194      * Adds a ContentPanel (or subclass) to this layout.
32195      * @param {String} target The target region key (north, south, east, west or center).
32196      * @param {Roo.ContentPanel} panel The panel to add
32197      * @return {Roo.ContentPanel} The added panel
32198      */
32199     add : function(target, panel){
32200          
32201         target = target.toLowerCase();
32202         return this.regions[target].add(panel);
32203     },
32204
32205     /**
32206      * Remove a ContentPanel (or subclass) to this layout.
32207      * @param {String} target The target region key (north, south, east, west or center).
32208      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
32209      * @return {Roo.ContentPanel} The removed panel
32210      */
32211     remove : function(target, panel){
32212         target = target.toLowerCase();
32213         return this.regions[target].remove(panel);
32214     },
32215
32216     /**
32217      * Searches all regions for a panel with the specified id
32218      * @param {String} panelId
32219      * @return {Roo.ContentPanel} The panel or null if it wasn't found
32220      */
32221     findPanel : function(panelId){
32222         var rs = this.regions;
32223         for(var target in rs){
32224             if(typeof rs[target] != "function"){
32225                 var p = rs[target].getPanel(panelId);
32226                 if(p){
32227                     return p;
32228                 }
32229             }
32230         }
32231         return null;
32232     },
32233
32234     /**
32235      * Searches all regions for a panel with the specified id and activates (shows) it.
32236      * @param {String/ContentPanel} panelId The panels id or the panel itself
32237      * @return {Roo.ContentPanel} The shown panel or null
32238      */
32239     showPanel : function(panelId) {
32240       var rs = this.regions;
32241       for(var target in rs){
32242          var r = rs[target];
32243          if(typeof r != "function"){
32244             if(r.hasPanel(panelId)){
32245                return r.showPanel(panelId);
32246             }
32247          }
32248       }
32249       return null;
32250    },
32251
32252    /**
32253      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
32254      * @param {Roo.state.Provider} provider (optional) An alternate state provider
32255      */
32256     restoreState : function(provider){
32257         if(!provider){
32258             provider = Roo.state.Manager;
32259         }
32260         var sm = new Roo.LayoutStateManager();
32261         sm.init(this, provider);
32262     },
32263
32264     /**
32265      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
32266      * object should contain properties for each region to add ContentPanels to, and each property's value should be
32267      * a valid ContentPanel config object.  Example:
32268      * <pre><code>
32269 // Create the main layout
32270 var layout = new Roo.BorderLayout('main-ct', {
32271     west: {
32272         split:true,
32273         minSize: 175,
32274         titlebar: true
32275     },
32276     center: {
32277         title:'Components'
32278     }
32279 }, 'main-ct');
32280
32281 // Create and add multiple ContentPanels at once via configs
32282 layout.batchAdd({
32283    west: {
32284        id: 'source-files',
32285        autoCreate:true,
32286        title:'Ext Source Files',
32287        autoScroll:true,
32288        fitToFrame:true
32289    },
32290    center : {
32291        el: cview,
32292        autoScroll:true,
32293        fitToFrame:true,
32294        toolbar: tb,
32295        resizeEl:'cbody'
32296    }
32297 });
32298 </code></pre>
32299      * @param {Object} regions An object containing ContentPanel configs by region name
32300      */
32301     batchAdd : function(regions){
32302         this.beginUpdate();
32303         for(var rname in regions){
32304             var lr = this.regions[rname];
32305             if(lr){
32306                 this.addTypedPanels(lr, regions[rname]);
32307             }
32308         }
32309         this.endUpdate();
32310     },
32311
32312     // private
32313     addTypedPanels : function(lr, ps){
32314         if(typeof ps == 'string'){
32315             lr.add(new Roo.ContentPanel(ps));
32316         }
32317         else if(ps instanceof Array){
32318             for(var i =0, len = ps.length; i < len; i++){
32319                 this.addTypedPanels(lr, ps[i]);
32320             }
32321         }
32322         else if(!ps.events){ // raw config?
32323             var el = ps.el;
32324             delete ps.el; // prevent conflict
32325             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
32326         }
32327         else {  // panel object assumed!
32328             lr.add(ps);
32329         }
32330     },
32331     /**
32332      * Adds a xtype elements to the layout.
32333      * <pre><code>
32334
32335 layout.addxtype({
32336        xtype : 'ContentPanel',
32337        region: 'west',
32338        items: [ .... ]
32339    }
32340 );
32341
32342 layout.addxtype({
32343         xtype : 'NestedLayoutPanel',
32344         region: 'west',
32345         layout: {
32346            center: { },
32347            west: { }   
32348         },
32349         items : [ ... list of content panels or nested layout panels.. ]
32350    }
32351 );
32352 </code></pre>
32353      * @param {Object} cfg Xtype definition of item to add.
32354      */
32355     addxtype : function(cfg)
32356     {
32357         // basically accepts a pannel...
32358         // can accept a layout region..!?!?
32359         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
32360         
32361         if (!cfg.xtype.match(/Panel$/)) {
32362             return false;
32363         }
32364         var ret = false;
32365         
32366         if (typeof(cfg.region) == 'undefined') {
32367             Roo.log("Failed to add Panel, region was not set");
32368             Roo.log(cfg);
32369             return false;
32370         }
32371         var region = cfg.region;
32372         delete cfg.region;
32373         
32374           
32375         var xitems = [];
32376         if (cfg.items) {
32377             xitems = cfg.items;
32378             delete cfg.items;
32379         }
32380         var nb = false;
32381         
32382         switch(cfg.xtype) 
32383         {
32384             case 'ContentPanel':  // ContentPanel (el, cfg)
32385             case 'ScrollPanel':  // ContentPanel (el, cfg)
32386             case 'ViewPanel': 
32387                 if(cfg.autoCreate) {
32388                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32389                 } else {
32390                     var el = this.el.createChild();
32391                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
32392                 }
32393                 
32394                 this.add(region, ret);
32395                 break;
32396             
32397             
32398             case 'TreePanel': // our new panel!
32399                 cfg.el = this.el.createChild();
32400                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32401                 this.add(region, ret);
32402                 break;
32403             
32404             case 'NestedLayoutPanel': 
32405                 // create a new Layout (which is  a Border Layout...
32406                 var el = this.el.createChild();
32407                 var clayout = cfg.layout;
32408                 delete cfg.layout;
32409                 clayout.items   = clayout.items  || [];
32410                 // replace this exitems with the clayout ones..
32411                 xitems = clayout.items;
32412                  
32413                 
32414                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
32415                     cfg.background = false;
32416                 }
32417                 var layout = new Roo.BorderLayout(el, clayout);
32418                 
32419                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
32420                 //console.log('adding nested layout panel '  + cfg.toSource());
32421                 this.add(region, ret);
32422                 nb = {}; /// find first...
32423                 break;
32424                 
32425             case 'GridPanel': 
32426             
32427                 // needs grid and region
32428                 
32429                 //var el = this.getRegion(region).el.createChild();
32430                 var el = this.el.createChild();
32431                 // create the grid first...
32432                 
32433                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
32434                 delete cfg.grid;
32435                 if (region == 'center' && this.active ) {
32436                     cfg.background = false;
32437                 }
32438                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
32439                 
32440                 this.add(region, ret);
32441                 if (cfg.background) {
32442                     ret.on('activate', function(gp) {
32443                         if (!gp.grid.rendered) {
32444                             gp.grid.render();
32445                         }
32446                     });
32447                 } else {
32448                     grid.render();
32449                 }
32450                 break;
32451            
32452            
32453            
32454                 
32455                 
32456                 
32457             default:
32458                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
32459                     
32460                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32461                     this.add(region, ret);
32462                 } else {
32463                 
32464                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
32465                     return null;
32466                 }
32467                 
32468              // GridPanel (grid, cfg)
32469             
32470         }
32471         this.beginUpdate();
32472         // add children..
32473         var region = '';
32474         var abn = {};
32475         Roo.each(xitems, function(i)  {
32476             region = nb && i.region ? i.region : false;
32477             
32478             var add = ret.addxtype(i);
32479            
32480             if (region) {
32481                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
32482                 if (!i.background) {
32483                     abn[region] = nb[region] ;
32484                 }
32485             }
32486             
32487         });
32488         this.endUpdate();
32489
32490         // make the last non-background panel active..
32491         //if (nb) { Roo.log(abn); }
32492         if (nb) {
32493             
32494             for(var r in abn) {
32495                 region = this.getRegion(r);
32496                 if (region) {
32497                     // tried using nb[r], but it does not work..
32498                      
32499                     region.showPanel(abn[r]);
32500                    
32501                 }
32502             }
32503         }
32504         return ret;
32505         
32506     }
32507 });
32508
32509 /**
32510  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
32511  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
32512  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
32513  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
32514  * <pre><code>
32515 // shorthand
32516 var CP = Roo.ContentPanel;
32517
32518 var layout = Roo.BorderLayout.create({
32519     north: {
32520         initialSize: 25,
32521         titlebar: false,
32522         panels: [new CP("north", "North")]
32523     },
32524     west: {
32525         split:true,
32526         initialSize: 200,
32527         minSize: 175,
32528         maxSize: 400,
32529         titlebar: true,
32530         collapsible: true,
32531         panels: [new CP("west", {title: "West"})]
32532     },
32533     east: {
32534         split:true,
32535         initialSize: 202,
32536         minSize: 175,
32537         maxSize: 400,
32538         titlebar: true,
32539         collapsible: true,
32540         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
32541     },
32542     south: {
32543         split:true,
32544         initialSize: 100,
32545         minSize: 100,
32546         maxSize: 200,
32547         titlebar: true,
32548         collapsible: true,
32549         panels: [new CP("south", {title: "South", closable: true})]
32550     },
32551     center: {
32552         titlebar: true,
32553         autoScroll:true,
32554         resizeTabs: true,
32555         minTabWidth: 50,
32556         preferredTabWidth: 150,
32557         panels: [
32558             new CP("center1", {title: "Close Me", closable: true}),
32559             new CP("center2", {title: "Center Panel", closable: false})
32560         ]
32561     }
32562 }, document.body);
32563
32564 layout.getRegion("center").showPanel("center1");
32565 </code></pre>
32566  * @param config
32567  * @param targetEl
32568  */
32569 Roo.BorderLayout.create = function(config, targetEl){
32570     var layout = new Roo.BorderLayout(targetEl || document.body, config);
32571     layout.beginUpdate();
32572     var regions = Roo.BorderLayout.RegionFactory.validRegions;
32573     for(var j = 0, jlen = regions.length; j < jlen; j++){
32574         var lr = regions[j];
32575         if(layout.regions[lr] && config[lr].panels){
32576             var r = layout.regions[lr];
32577             var ps = config[lr].panels;
32578             layout.addTypedPanels(r, ps);
32579         }
32580     }
32581     layout.endUpdate();
32582     return layout;
32583 };
32584
32585 // private
32586 Roo.BorderLayout.RegionFactory = {
32587     // private
32588     validRegions : ["north","south","east","west","center"],
32589
32590     // private
32591     create : function(target, mgr, config){
32592         target = target.toLowerCase();
32593         if(config.lightweight || config.basic){
32594             return new Roo.BasicLayoutRegion(mgr, config, target);
32595         }
32596         switch(target){
32597             case "north":
32598                 return new Roo.NorthLayoutRegion(mgr, config);
32599             case "south":
32600                 return new Roo.SouthLayoutRegion(mgr, config);
32601             case "east":
32602                 return new Roo.EastLayoutRegion(mgr, config);
32603             case "west":
32604                 return new Roo.WestLayoutRegion(mgr, config);
32605             case "center":
32606                 return new Roo.CenterLayoutRegion(mgr, config);
32607         }
32608         throw 'Layout region "'+target+'" not supported.';
32609     }
32610 };/*
32611  * Based on:
32612  * Ext JS Library 1.1.1
32613  * Copyright(c) 2006-2007, Ext JS, LLC.
32614  *
32615  * Originally Released Under LGPL - original licence link has changed is not relivant.
32616  *
32617  * Fork - LGPL
32618  * <script type="text/javascript">
32619  */
32620  
32621 /**
32622  * @class Roo.BasicLayoutRegion
32623  * @extends Roo.util.Observable
32624  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
32625  * and does not have a titlebar, tabs or any other features. All it does is size and position 
32626  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
32627  */
32628 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
32629     this.mgr = mgr;
32630     this.position  = pos;
32631     this.events = {
32632         /**
32633          * @scope Roo.BasicLayoutRegion
32634          */
32635         
32636         /**
32637          * @event beforeremove
32638          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
32639          * @param {Roo.LayoutRegion} this
32640          * @param {Roo.ContentPanel} panel The panel
32641          * @param {Object} e The cancel event object
32642          */
32643         "beforeremove" : true,
32644         /**
32645          * @event invalidated
32646          * Fires when the layout for this region is changed.
32647          * @param {Roo.LayoutRegion} this
32648          */
32649         "invalidated" : true,
32650         /**
32651          * @event visibilitychange
32652          * Fires when this region is shown or hidden 
32653          * @param {Roo.LayoutRegion} this
32654          * @param {Boolean} visibility true or false
32655          */
32656         "visibilitychange" : true,
32657         /**
32658          * @event paneladded
32659          * Fires when a panel is added. 
32660          * @param {Roo.LayoutRegion} this
32661          * @param {Roo.ContentPanel} panel The panel
32662          */
32663         "paneladded" : true,
32664         /**
32665          * @event panelremoved
32666          * Fires when a panel is removed. 
32667          * @param {Roo.LayoutRegion} this
32668          * @param {Roo.ContentPanel} panel The panel
32669          */
32670         "panelremoved" : true,
32671         /**
32672          * @event collapsed
32673          * Fires when this region is collapsed.
32674          * @param {Roo.LayoutRegion} this
32675          */
32676         "collapsed" : true,
32677         /**
32678          * @event expanded
32679          * Fires when this region is expanded.
32680          * @param {Roo.LayoutRegion} this
32681          */
32682         "expanded" : true,
32683         /**
32684          * @event slideshow
32685          * Fires when this region is slid into view.
32686          * @param {Roo.LayoutRegion} this
32687          */
32688         "slideshow" : true,
32689         /**
32690          * @event slidehide
32691          * Fires when this region slides out of view. 
32692          * @param {Roo.LayoutRegion} this
32693          */
32694         "slidehide" : true,
32695         /**
32696          * @event panelactivated
32697          * Fires when a panel is activated. 
32698          * @param {Roo.LayoutRegion} this
32699          * @param {Roo.ContentPanel} panel The activated panel
32700          */
32701         "panelactivated" : true,
32702         /**
32703          * @event resized
32704          * Fires when the user resizes this region. 
32705          * @param {Roo.LayoutRegion} this
32706          * @param {Number} newSize The new size (width for east/west, height for north/south)
32707          */
32708         "resized" : true
32709     };
32710     /** A collection of panels in this region. @type Roo.util.MixedCollection */
32711     this.panels = new Roo.util.MixedCollection();
32712     this.panels.getKey = this.getPanelId.createDelegate(this);
32713     this.box = null;
32714     this.activePanel = null;
32715     // ensure listeners are added...
32716     
32717     if (config.listeners || config.events) {
32718         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
32719             listeners : config.listeners || {},
32720             events : config.events || {}
32721         });
32722     }
32723     
32724     if(skipConfig !== true){
32725         this.applyConfig(config);
32726     }
32727 };
32728
32729 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
32730     getPanelId : function(p){
32731         return p.getId();
32732     },
32733     
32734     applyConfig : function(config){
32735         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
32736         this.config = config;
32737         
32738     },
32739     
32740     /**
32741      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
32742      * the width, for horizontal (north, south) the height.
32743      * @param {Number} newSize The new width or height
32744      */
32745     resizeTo : function(newSize){
32746         var el = this.el ? this.el :
32747                  (this.activePanel ? this.activePanel.getEl() : null);
32748         if(el){
32749             switch(this.position){
32750                 case "east":
32751                 case "west":
32752                     el.setWidth(newSize);
32753                     this.fireEvent("resized", this, newSize);
32754                 break;
32755                 case "north":
32756                 case "south":
32757                     el.setHeight(newSize);
32758                     this.fireEvent("resized", this, newSize);
32759                 break;                
32760             }
32761         }
32762     },
32763     
32764     getBox : function(){
32765         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
32766     },
32767     
32768     getMargins : function(){
32769         return this.margins;
32770     },
32771     
32772     updateBox : function(box){
32773         this.box = box;
32774         var el = this.activePanel.getEl();
32775         el.dom.style.left = box.x + "px";
32776         el.dom.style.top = box.y + "px";
32777         this.activePanel.setSize(box.width, box.height);
32778     },
32779     
32780     /**
32781      * Returns the container element for this region.
32782      * @return {Roo.Element}
32783      */
32784     getEl : function(){
32785         return this.activePanel;
32786     },
32787     
32788     /**
32789      * Returns true if this region is currently visible.
32790      * @return {Boolean}
32791      */
32792     isVisible : function(){
32793         return this.activePanel ? true : false;
32794     },
32795     
32796     setActivePanel : function(panel){
32797         panel = this.getPanel(panel);
32798         if(this.activePanel && this.activePanel != panel){
32799             this.activePanel.setActiveState(false);
32800             this.activePanel.getEl().setLeftTop(-10000,-10000);
32801         }
32802         this.activePanel = panel;
32803         panel.setActiveState(true);
32804         if(this.box){
32805             panel.setSize(this.box.width, this.box.height);
32806         }
32807         this.fireEvent("panelactivated", this, panel);
32808         this.fireEvent("invalidated");
32809     },
32810     
32811     /**
32812      * Show the specified panel.
32813      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
32814      * @return {Roo.ContentPanel} The shown panel or null
32815      */
32816     showPanel : function(panel){
32817         if(panel = this.getPanel(panel)){
32818             this.setActivePanel(panel);
32819         }
32820         return panel;
32821     },
32822     
32823     /**
32824      * Get the active panel for this region.
32825      * @return {Roo.ContentPanel} The active panel or null
32826      */
32827     getActivePanel : function(){
32828         return this.activePanel;
32829     },
32830     
32831     /**
32832      * Add the passed ContentPanel(s)
32833      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
32834      * @return {Roo.ContentPanel} The panel added (if only one was added)
32835      */
32836     add : function(panel){
32837         if(arguments.length > 1){
32838             for(var i = 0, len = arguments.length; i < len; i++) {
32839                 this.add(arguments[i]);
32840             }
32841             return null;
32842         }
32843         if(this.hasPanel(panel)){
32844             this.showPanel(panel);
32845             return panel;
32846         }
32847         var el = panel.getEl();
32848         if(el.dom.parentNode != this.mgr.el.dom){
32849             this.mgr.el.dom.appendChild(el.dom);
32850         }
32851         if(panel.setRegion){
32852             panel.setRegion(this);
32853         }
32854         this.panels.add(panel);
32855         el.setStyle("position", "absolute");
32856         if(!panel.background){
32857             this.setActivePanel(panel);
32858             if(this.config.initialSize && this.panels.getCount()==1){
32859                 this.resizeTo(this.config.initialSize);
32860             }
32861         }
32862         this.fireEvent("paneladded", this, panel);
32863         return panel;
32864     },
32865     
32866     /**
32867      * Returns true if the panel is in this region.
32868      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32869      * @return {Boolean}
32870      */
32871     hasPanel : function(panel){
32872         if(typeof panel == "object"){ // must be panel obj
32873             panel = panel.getId();
32874         }
32875         return this.getPanel(panel) ? true : false;
32876     },
32877     
32878     /**
32879      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
32880      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32881      * @param {Boolean} preservePanel Overrides the config preservePanel option
32882      * @return {Roo.ContentPanel} The panel that was removed
32883      */
32884     remove : function(panel, preservePanel){
32885         panel = this.getPanel(panel);
32886         if(!panel){
32887             return null;
32888         }
32889         var e = {};
32890         this.fireEvent("beforeremove", this, panel, e);
32891         if(e.cancel === true){
32892             return null;
32893         }
32894         var panelId = panel.getId();
32895         this.panels.removeKey(panelId);
32896         return panel;
32897     },
32898     
32899     /**
32900      * Returns the panel specified or null if it's not in this region.
32901      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32902      * @return {Roo.ContentPanel}
32903      */
32904     getPanel : function(id){
32905         if(typeof id == "object"){ // must be panel obj
32906             return id;
32907         }
32908         return this.panels.get(id);
32909     },
32910     
32911     /**
32912      * Returns this regions position (north/south/east/west/center).
32913      * @return {String} 
32914      */
32915     getPosition: function(){
32916         return this.position;    
32917     }
32918 });/*
32919  * Based on:
32920  * Ext JS Library 1.1.1
32921  * Copyright(c) 2006-2007, Ext JS, LLC.
32922  *
32923  * Originally Released Under LGPL - original licence link has changed is not relivant.
32924  *
32925  * Fork - LGPL
32926  * <script type="text/javascript">
32927  */
32928  
32929 /**
32930  * @class Roo.LayoutRegion
32931  * @extends Roo.BasicLayoutRegion
32932  * This class represents a region in a layout manager.
32933  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
32934  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
32935  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
32936  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
32937  * @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})
32938  * @cfg {String}    tabPosition     "top" or "bottom" (defaults to "bottom")
32939  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
32940  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
32941  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
32942  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
32943  * @cfg {String}    title           The title for the region (overrides panel titles)
32944  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
32945  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
32946  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
32947  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
32948  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
32949  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
32950  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
32951  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
32952  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
32953  * @cfg {Boolean}   showPin         True to show a pin button
32954  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
32955  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
32956  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
32957  * @cfg {Number}    width           For East/West panels
32958  * @cfg {Number}    height          For North/South panels
32959  * @cfg {Boolean}   split           To show the splitter
32960  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
32961  */
32962 Roo.LayoutRegion = function(mgr, config, pos){
32963     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
32964     var dh = Roo.DomHelper;
32965     /** This region's container element 
32966     * @type Roo.Element */
32967     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
32968     /** This region's title element 
32969     * @type Roo.Element */
32970
32971     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
32972         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
32973         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
32974     ]}, true);
32975     this.titleEl.enableDisplayMode();
32976     /** This region's title text element 
32977     * @type HTMLElement */
32978     this.titleTextEl = this.titleEl.dom.firstChild;
32979     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
32980     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
32981     this.closeBtn.enableDisplayMode();
32982     this.closeBtn.on("click", this.closeClicked, this);
32983     this.closeBtn.hide();
32984
32985     this.createBody(config);
32986     this.visible = true;
32987     this.collapsed = false;
32988
32989     if(config.hideWhenEmpty){
32990         this.hide();
32991         this.on("paneladded", this.validateVisibility, this);
32992         this.on("panelremoved", this.validateVisibility, this);
32993     }
32994     this.applyConfig(config);
32995 };
32996
32997 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
32998
32999     createBody : function(){
33000         /** This region's body element 
33001         * @type Roo.Element */
33002         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
33003     },
33004
33005     applyConfig : function(c){
33006         if(c.collapsible && this.position != "center" && !this.collapsedEl){
33007             var dh = Roo.DomHelper;
33008             if(c.titlebar !== false){
33009                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
33010                 this.collapseBtn.on("click", this.collapse, this);
33011                 this.collapseBtn.enableDisplayMode();
33012
33013                 if(c.showPin === true || this.showPin){
33014                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
33015                     this.stickBtn.enableDisplayMode();
33016                     this.stickBtn.on("click", this.expand, this);
33017                     this.stickBtn.hide();
33018                 }
33019             }
33020             /** This region's collapsed element
33021             * @type Roo.Element */
33022             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
33023                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
33024             ]}, true);
33025             if(c.floatable !== false){
33026                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
33027                this.collapsedEl.on("click", this.collapseClick, this);
33028             }
33029
33030             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
33031                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
33032                    id: "message", unselectable: "on", style:{"float":"left"}});
33033                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
33034              }
33035             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
33036             this.expandBtn.on("click", this.expand, this);
33037         }
33038         if(this.collapseBtn){
33039             this.collapseBtn.setVisible(c.collapsible == true);
33040         }
33041         this.cmargins = c.cmargins || this.cmargins ||
33042                          (this.position == "west" || this.position == "east" ?
33043                              {top: 0, left: 2, right:2, bottom: 0} :
33044                              {top: 2, left: 0, right:0, bottom: 2});
33045         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
33046         this.bottomTabs = c.tabPosition != "top";
33047         this.autoScroll = c.autoScroll || false;
33048         if(this.autoScroll){
33049             this.bodyEl.setStyle("overflow", "auto");
33050         }else{
33051             this.bodyEl.setStyle("overflow", "hidden");
33052         }
33053         //if(c.titlebar !== false){
33054             if((!c.titlebar && !c.title) || c.titlebar === false){
33055                 this.titleEl.hide();
33056             }else{
33057                 this.titleEl.show();
33058                 if(c.title){
33059                     this.titleTextEl.innerHTML = c.title;
33060                 }
33061             }
33062         //}
33063         this.duration = c.duration || .30;
33064         this.slideDuration = c.slideDuration || .45;
33065         this.config = c;
33066         if(c.collapsed){
33067             this.collapse(true);
33068         }
33069         if(c.hidden){
33070             this.hide();
33071         }
33072     },
33073     /**
33074      * Returns true if this region is currently visible.
33075      * @return {Boolean}
33076      */
33077     isVisible : function(){
33078         return this.visible;
33079     },
33080
33081     /**
33082      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
33083      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
33084      */
33085     setCollapsedTitle : function(title){
33086         title = title || "&#160;";
33087         if(this.collapsedTitleTextEl){
33088             this.collapsedTitleTextEl.innerHTML = title;
33089         }
33090     },
33091
33092     getBox : function(){
33093         var b;
33094         if(!this.collapsed){
33095             b = this.el.getBox(false, true);
33096         }else{
33097             b = this.collapsedEl.getBox(false, true);
33098         }
33099         return b;
33100     },
33101
33102     getMargins : function(){
33103         return this.collapsed ? this.cmargins : this.margins;
33104     },
33105
33106     highlight : function(){
33107         this.el.addClass("x-layout-panel-dragover");
33108     },
33109
33110     unhighlight : function(){
33111         this.el.removeClass("x-layout-panel-dragover");
33112     },
33113
33114     updateBox : function(box){
33115         this.box = box;
33116         if(!this.collapsed){
33117             this.el.dom.style.left = box.x + "px";
33118             this.el.dom.style.top = box.y + "px";
33119             this.updateBody(box.width, box.height);
33120         }else{
33121             this.collapsedEl.dom.style.left = box.x + "px";
33122             this.collapsedEl.dom.style.top = box.y + "px";
33123             this.collapsedEl.setSize(box.width, box.height);
33124         }
33125         if(this.tabs){
33126             this.tabs.autoSizeTabs();
33127         }
33128     },
33129
33130     updateBody : function(w, h){
33131         if(w !== null){
33132             this.el.setWidth(w);
33133             w -= this.el.getBorderWidth("rl");
33134             if(this.config.adjustments){
33135                 w += this.config.adjustments[0];
33136             }
33137         }
33138         if(h !== null){
33139             this.el.setHeight(h);
33140             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
33141             h -= this.el.getBorderWidth("tb");
33142             if(this.config.adjustments){
33143                 h += this.config.adjustments[1];
33144             }
33145             this.bodyEl.setHeight(h);
33146             if(this.tabs){
33147                 h = this.tabs.syncHeight(h);
33148             }
33149         }
33150         if(this.panelSize){
33151             w = w !== null ? w : this.panelSize.width;
33152             h = h !== null ? h : this.panelSize.height;
33153         }
33154         if(this.activePanel){
33155             var el = this.activePanel.getEl();
33156             w = w !== null ? w : el.getWidth();
33157             h = h !== null ? h : el.getHeight();
33158             this.panelSize = {width: w, height: h};
33159             this.activePanel.setSize(w, h);
33160         }
33161         if(Roo.isIE && this.tabs){
33162             this.tabs.el.repaint();
33163         }
33164     },
33165
33166     /**
33167      * Returns the container element for this region.
33168      * @return {Roo.Element}
33169      */
33170     getEl : function(){
33171         return this.el;
33172     },
33173
33174     /**
33175      * Hides this region.
33176      */
33177     hide : function(){
33178         if(!this.collapsed){
33179             this.el.dom.style.left = "-2000px";
33180             this.el.hide();
33181         }else{
33182             this.collapsedEl.dom.style.left = "-2000px";
33183             this.collapsedEl.hide();
33184         }
33185         this.visible = false;
33186         this.fireEvent("visibilitychange", this, false);
33187     },
33188
33189     /**
33190      * Shows this region if it was previously hidden.
33191      */
33192     show : function(){
33193         if(!this.collapsed){
33194             this.el.show();
33195         }else{
33196             this.collapsedEl.show();
33197         }
33198         this.visible = true;
33199         this.fireEvent("visibilitychange", this, true);
33200     },
33201
33202     closeClicked : function(){
33203         if(this.activePanel){
33204             this.remove(this.activePanel);
33205         }
33206     },
33207
33208     collapseClick : function(e){
33209         if(this.isSlid){
33210            e.stopPropagation();
33211            this.slideIn();
33212         }else{
33213            e.stopPropagation();
33214            this.slideOut();
33215         }
33216     },
33217
33218     /**
33219      * Collapses this region.
33220      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
33221      */
33222     collapse : function(skipAnim){
33223         if(this.collapsed) return;
33224         this.collapsed = true;
33225         if(this.split){
33226             this.split.el.hide();
33227         }
33228         if(this.config.animate && skipAnim !== true){
33229             this.fireEvent("invalidated", this);
33230             this.animateCollapse();
33231         }else{
33232             this.el.setLocation(-20000,-20000);
33233             this.el.hide();
33234             this.collapsedEl.show();
33235             this.fireEvent("collapsed", this);
33236             this.fireEvent("invalidated", this);
33237         }
33238     },
33239
33240     animateCollapse : function(){
33241         // overridden
33242     },
33243
33244     /**
33245      * Expands this region if it was previously collapsed.
33246      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
33247      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
33248      */
33249     expand : function(e, skipAnim){
33250         if(e) e.stopPropagation();
33251         if(!this.collapsed || this.el.hasActiveFx()) return;
33252         if(this.isSlid){
33253             this.afterSlideIn();
33254             skipAnim = true;
33255         }
33256         this.collapsed = false;
33257         if(this.config.animate && skipAnim !== true){
33258             this.animateExpand();
33259         }else{
33260             this.el.show();
33261             if(this.split){
33262                 this.split.el.show();
33263             }
33264             this.collapsedEl.setLocation(-2000,-2000);
33265             this.collapsedEl.hide();
33266             this.fireEvent("invalidated", this);
33267             this.fireEvent("expanded", this);
33268         }
33269     },
33270
33271     animateExpand : function(){
33272         // overridden
33273     },
33274
33275     initTabs : function()
33276     {
33277         this.bodyEl.setStyle("overflow", "hidden");
33278         var ts = new Roo.TabPanel(
33279                 this.bodyEl.dom,
33280                 {
33281                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
33282                     disableTooltips: this.config.disableTabTips,
33283                     toolbar : this.config.toolbar
33284                 }
33285         );
33286         if(this.config.hideTabs){
33287             ts.stripWrap.setDisplayed(false);
33288         }
33289         this.tabs = ts;
33290         ts.resizeTabs = this.config.resizeTabs === true;
33291         ts.minTabWidth = this.config.minTabWidth || 40;
33292         ts.maxTabWidth = this.config.maxTabWidth || 250;
33293         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
33294         ts.monitorResize = false;
33295         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33296         ts.bodyEl.addClass('x-layout-tabs-body');
33297         this.panels.each(this.initPanelAsTab, this);
33298     },
33299
33300     initPanelAsTab : function(panel){
33301         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
33302                     this.config.closeOnTab && panel.isClosable());
33303         if(panel.tabTip !== undefined){
33304             ti.setTooltip(panel.tabTip);
33305         }
33306         ti.on("activate", function(){
33307               this.setActivePanel(panel);
33308         }, this);
33309         if(this.config.closeOnTab){
33310             ti.on("beforeclose", function(t, e){
33311                 e.cancel = true;
33312                 this.remove(panel);
33313             }, this);
33314         }
33315         return ti;
33316     },
33317
33318     updatePanelTitle : function(panel, title){
33319         if(this.activePanel == panel){
33320             this.updateTitle(title);
33321         }
33322         if(this.tabs){
33323             var ti = this.tabs.getTab(panel.getEl().id);
33324             ti.setText(title);
33325             if(panel.tabTip !== undefined){
33326                 ti.setTooltip(panel.tabTip);
33327             }
33328         }
33329     },
33330
33331     updateTitle : function(title){
33332         if(this.titleTextEl && !this.config.title){
33333             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
33334         }
33335     },
33336
33337     setActivePanel : function(panel){
33338         panel = this.getPanel(panel);
33339         if(this.activePanel && this.activePanel != panel){
33340             this.activePanel.setActiveState(false);
33341         }
33342         this.activePanel = panel;
33343         panel.setActiveState(true);
33344         if(this.panelSize){
33345             panel.setSize(this.panelSize.width, this.panelSize.height);
33346         }
33347         if(this.closeBtn){
33348             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
33349         }
33350         this.updateTitle(panel.getTitle());
33351         if(this.tabs){
33352             this.fireEvent("invalidated", this);
33353         }
33354         this.fireEvent("panelactivated", this, panel);
33355     },
33356
33357     /**
33358      * Shows the specified panel.
33359      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
33360      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
33361      */
33362     showPanel : function(panel){
33363         if(panel = this.getPanel(panel)){
33364             if(this.tabs){
33365                 var tab = this.tabs.getTab(panel.getEl().id);
33366                 if(tab.isHidden()){
33367                     this.tabs.unhideTab(tab.id);
33368                 }
33369                 tab.activate();
33370             }else{
33371                 this.setActivePanel(panel);
33372             }
33373         }
33374         return panel;
33375     },
33376
33377     /**
33378      * Get the active panel for this region.
33379      * @return {Roo.ContentPanel} The active panel or null
33380      */
33381     getActivePanel : function(){
33382         return this.activePanel;
33383     },
33384
33385     validateVisibility : function(){
33386         if(this.panels.getCount() < 1){
33387             this.updateTitle("&#160;");
33388             this.closeBtn.hide();
33389             this.hide();
33390         }else{
33391             if(!this.isVisible()){
33392                 this.show();
33393             }
33394         }
33395     },
33396
33397     /**
33398      * Adds the passed ContentPanel(s) to this region.
33399      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
33400      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
33401      */
33402     add : function(panel){
33403         if(arguments.length > 1){
33404             for(var i = 0, len = arguments.length; i < len; i++) {
33405                 this.add(arguments[i]);
33406             }
33407             return null;
33408         }
33409         if(this.hasPanel(panel)){
33410             this.showPanel(panel);
33411             return panel;
33412         }
33413         panel.setRegion(this);
33414         this.panels.add(panel);
33415         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
33416             this.bodyEl.dom.appendChild(panel.getEl().dom);
33417             if(panel.background !== true){
33418                 this.setActivePanel(panel);
33419             }
33420             this.fireEvent("paneladded", this, panel);
33421             return panel;
33422         }
33423         if(!this.tabs){
33424             this.initTabs();
33425         }else{
33426             this.initPanelAsTab(panel);
33427         }
33428         if(panel.background !== true){
33429             this.tabs.activate(panel.getEl().id);
33430         }
33431         this.fireEvent("paneladded", this, panel);
33432         return panel;
33433     },
33434
33435     /**
33436      * Hides the tab for the specified panel.
33437      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33438      */
33439     hidePanel : function(panel){
33440         if(this.tabs && (panel = this.getPanel(panel))){
33441             this.tabs.hideTab(panel.getEl().id);
33442         }
33443     },
33444
33445     /**
33446      * Unhides the tab for a previously hidden panel.
33447      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33448      */
33449     unhidePanel : function(panel){
33450         if(this.tabs && (panel = this.getPanel(panel))){
33451             this.tabs.unhideTab(panel.getEl().id);
33452         }
33453     },
33454
33455     clearPanels : function(){
33456         while(this.panels.getCount() > 0){
33457              this.remove(this.panels.first());
33458         }
33459     },
33460
33461     /**
33462      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
33463      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33464      * @param {Boolean} preservePanel Overrides the config preservePanel option
33465      * @return {Roo.ContentPanel} The panel that was removed
33466      */
33467     remove : function(panel, preservePanel){
33468         panel = this.getPanel(panel);
33469         if(!panel){
33470             return null;
33471         }
33472         var e = {};
33473         this.fireEvent("beforeremove", this, panel, e);
33474         if(e.cancel === true){
33475             return null;
33476         }
33477         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
33478         var panelId = panel.getId();
33479         this.panels.removeKey(panelId);
33480         if(preservePanel){
33481             document.body.appendChild(panel.getEl().dom);
33482         }
33483         if(this.tabs){
33484             this.tabs.removeTab(panel.getEl().id);
33485         }else if (!preservePanel){
33486             this.bodyEl.dom.removeChild(panel.getEl().dom);
33487         }
33488         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
33489             var p = this.panels.first();
33490             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
33491             tempEl.appendChild(p.getEl().dom);
33492             this.bodyEl.update("");
33493             this.bodyEl.dom.appendChild(p.getEl().dom);
33494             tempEl = null;
33495             this.updateTitle(p.getTitle());
33496             this.tabs = null;
33497             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33498             this.setActivePanel(p);
33499         }
33500         panel.setRegion(null);
33501         if(this.activePanel == panel){
33502             this.activePanel = null;
33503         }
33504         if(this.config.autoDestroy !== false && preservePanel !== true){
33505             try{panel.destroy();}catch(e){}
33506         }
33507         this.fireEvent("panelremoved", this, panel);
33508         return panel;
33509     },
33510
33511     /**
33512      * Returns the TabPanel component used by this region
33513      * @return {Roo.TabPanel}
33514      */
33515     getTabs : function(){
33516         return this.tabs;
33517     },
33518
33519     createTool : function(parentEl, className){
33520         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
33521             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
33522         btn.addClassOnOver("x-layout-tools-button-over");
33523         return btn;
33524     }
33525 });/*
33526  * Based on:
33527  * Ext JS Library 1.1.1
33528  * Copyright(c) 2006-2007, Ext JS, LLC.
33529  *
33530  * Originally Released Under LGPL - original licence link has changed is not relivant.
33531  *
33532  * Fork - LGPL
33533  * <script type="text/javascript">
33534  */
33535  
33536
33537
33538 /**
33539  * @class Roo.SplitLayoutRegion
33540  * @extends Roo.LayoutRegion
33541  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
33542  */
33543 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
33544     this.cursor = cursor;
33545     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
33546 };
33547
33548 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
33549     splitTip : "Drag to resize.",
33550     collapsibleSplitTip : "Drag to resize. Double click to hide.",
33551     useSplitTips : false,
33552
33553     applyConfig : function(config){
33554         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
33555         if(config.split){
33556             if(!this.split){
33557                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
33558                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
33559                 /** The SplitBar for this region 
33560                 * @type Roo.SplitBar */
33561                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
33562                 this.split.on("moved", this.onSplitMove, this);
33563                 this.split.useShim = config.useShim === true;
33564                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
33565                 if(this.useSplitTips){
33566                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
33567                 }
33568                 if(config.collapsible){
33569                     this.split.el.on("dblclick", this.collapse,  this);
33570                 }
33571             }
33572             if(typeof config.minSize != "undefined"){
33573                 this.split.minSize = config.minSize;
33574             }
33575             if(typeof config.maxSize != "undefined"){
33576                 this.split.maxSize = config.maxSize;
33577             }
33578             if(config.hideWhenEmpty || config.hidden || config.collapsed){
33579                 this.hideSplitter();
33580             }
33581         }
33582     },
33583
33584     getHMaxSize : function(){
33585          var cmax = this.config.maxSize || 10000;
33586          var center = this.mgr.getRegion("center");
33587          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
33588     },
33589
33590     getVMaxSize : function(){
33591          var cmax = this.config.maxSize || 10000;
33592          var center = this.mgr.getRegion("center");
33593          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
33594     },
33595
33596     onSplitMove : function(split, newSize){
33597         this.fireEvent("resized", this, newSize);
33598     },
33599     
33600     /** 
33601      * Returns the {@link Roo.SplitBar} for this region.
33602      * @return {Roo.SplitBar}
33603      */
33604     getSplitBar : function(){
33605         return this.split;
33606     },
33607     
33608     hide : function(){
33609         this.hideSplitter();
33610         Roo.SplitLayoutRegion.superclass.hide.call(this);
33611     },
33612
33613     hideSplitter : function(){
33614         if(this.split){
33615             this.split.el.setLocation(-2000,-2000);
33616             this.split.el.hide();
33617         }
33618     },
33619
33620     show : function(){
33621         if(this.split){
33622             this.split.el.show();
33623         }
33624         Roo.SplitLayoutRegion.superclass.show.call(this);
33625     },
33626     
33627     beforeSlide: function(){
33628         if(Roo.isGecko){// firefox overflow auto bug workaround
33629             this.bodyEl.clip();
33630             if(this.tabs) this.tabs.bodyEl.clip();
33631             if(this.activePanel){
33632                 this.activePanel.getEl().clip();
33633                 
33634                 if(this.activePanel.beforeSlide){
33635                     this.activePanel.beforeSlide();
33636                 }
33637             }
33638         }
33639     },
33640     
33641     afterSlide : function(){
33642         if(Roo.isGecko){// firefox overflow auto bug workaround
33643             this.bodyEl.unclip();
33644             if(this.tabs) this.tabs.bodyEl.unclip();
33645             if(this.activePanel){
33646                 this.activePanel.getEl().unclip();
33647                 if(this.activePanel.afterSlide){
33648                     this.activePanel.afterSlide();
33649                 }
33650             }
33651         }
33652     },
33653
33654     initAutoHide : function(){
33655         if(this.autoHide !== false){
33656             if(!this.autoHideHd){
33657                 var st = new Roo.util.DelayedTask(this.slideIn, this);
33658                 this.autoHideHd = {
33659                     "mouseout": function(e){
33660                         if(!e.within(this.el, true)){
33661                             st.delay(500);
33662                         }
33663                     },
33664                     "mouseover" : function(e){
33665                         st.cancel();
33666                     },
33667                     scope : this
33668                 };
33669             }
33670             this.el.on(this.autoHideHd);
33671         }
33672     },
33673
33674     clearAutoHide : function(){
33675         if(this.autoHide !== false){
33676             this.el.un("mouseout", this.autoHideHd.mouseout);
33677             this.el.un("mouseover", this.autoHideHd.mouseover);
33678         }
33679     },
33680
33681     clearMonitor : function(){
33682         Roo.get(document).un("click", this.slideInIf, this);
33683     },
33684
33685     // these names are backwards but not changed for compat
33686     slideOut : function(){
33687         if(this.isSlid || this.el.hasActiveFx()){
33688             return;
33689         }
33690         this.isSlid = true;
33691         if(this.collapseBtn){
33692             this.collapseBtn.hide();
33693         }
33694         this.closeBtnState = this.closeBtn.getStyle('display');
33695         this.closeBtn.hide();
33696         if(this.stickBtn){
33697             this.stickBtn.show();
33698         }
33699         this.el.show();
33700         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
33701         this.beforeSlide();
33702         this.el.setStyle("z-index", 10001);
33703         this.el.slideIn(this.getSlideAnchor(), {
33704             callback: function(){
33705                 this.afterSlide();
33706                 this.initAutoHide();
33707                 Roo.get(document).on("click", this.slideInIf, this);
33708                 this.fireEvent("slideshow", this);
33709             },
33710             scope: this,
33711             block: true
33712         });
33713     },
33714
33715     afterSlideIn : function(){
33716         this.clearAutoHide();
33717         this.isSlid = false;
33718         this.clearMonitor();
33719         this.el.setStyle("z-index", "");
33720         if(this.collapseBtn){
33721             this.collapseBtn.show();
33722         }
33723         this.closeBtn.setStyle('display', this.closeBtnState);
33724         if(this.stickBtn){
33725             this.stickBtn.hide();
33726         }
33727         this.fireEvent("slidehide", this);
33728     },
33729
33730     slideIn : function(cb){
33731         if(!this.isSlid || this.el.hasActiveFx()){
33732             Roo.callback(cb);
33733             return;
33734         }
33735         this.isSlid = false;
33736         this.beforeSlide();
33737         this.el.slideOut(this.getSlideAnchor(), {
33738             callback: function(){
33739                 this.el.setLeftTop(-10000, -10000);
33740                 this.afterSlide();
33741                 this.afterSlideIn();
33742                 Roo.callback(cb);
33743             },
33744             scope: this,
33745             block: true
33746         });
33747     },
33748     
33749     slideInIf : function(e){
33750         if(!e.within(this.el)){
33751             this.slideIn();
33752         }
33753     },
33754
33755     animateCollapse : function(){
33756         this.beforeSlide();
33757         this.el.setStyle("z-index", 20000);
33758         var anchor = this.getSlideAnchor();
33759         this.el.slideOut(anchor, {
33760             callback : function(){
33761                 this.el.setStyle("z-index", "");
33762                 this.collapsedEl.slideIn(anchor, {duration:.3});
33763                 this.afterSlide();
33764                 this.el.setLocation(-10000,-10000);
33765                 this.el.hide();
33766                 this.fireEvent("collapsed", this);
33767             },
33768             scope: this,
33769             block: true
33770         });
33771     },
33772
33773     animateExpand : function(){
33774         this.beforeSlide();
33775         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
33776         this.el.setStyle("z-index", 20000);
33777         this.collapsedEl.hide({
33778             duration:.1
33779         });
33780         this.el.slideIn(this.getSlideAnchor(), {
33781             callback : function(){
33782                 this.el.setStyle("z-index", "");
33783                 this.afterSlide();
33784                 if(this.split){
33785                     this.split.el.show();
33786                 }
33787                 this.fireEvent("invalidated", this);
33788                 this.fireEvent("expanded", this);
33789             },
33790             scope: this,
33791             block: true
33792         });
33793     },
33794
33795     anchors : {
33796         "west" : "left",
33797         "east" : "right",
33798         "north" : "top",
33799         "south" : "bottom"
33800     },
33801
33802     sanchors : {
33803         "west" : "l",
33804         "east" : "r",
33805         "north" : "t",
33806         "south" : "b"
33807     },
33808
33809     canchors : {
33810         "west" : "tl-tr",
33811         "east" : "tr-tl",
33812         "north" : "tl-bl",
33813         "south" : "bl-tl"
33814     },
33815
33816     getAnchor : function(){
33817         return this.anchors[this.position];
33818     },
33819
33820     getCollapseAnchor : function(){
33821         return this.canchors[this.position];
33822     },
33823
33824     getSlideAnchor : function(){
33825         return this.sanchors[this.position];
33826     },
33827
33828     getAlignAdj : function(){
33829         var cm = this.cmargins;
33830         switch(this.position){
33831             case "west":
33832                 return [0, 0];
33833             break;
33834             case "east":
33835                 return [0, 0];
33836             break;
33837             case "north":
33838                 return [0, 0];
33839             break;
33840             case "south":
33841                 return [0, 0];
33842             break;
33843         }
33844     },
33845
33846     getExpandAdj : function(){
33847         var c = this.collapsedEl, cm = this.cmargins;
33848         switch(this.position){
33849             case "west":
33850                 return [-(cm.right+c.getWidth()+cm.left), 0];
33851             break;
33852             case "east":
33853                 return [cm.right+c.getWidth()+cm.left, 0];
33854             break;
33855             case "north":
33856                 return [0, -(cm.top+cm.bottom+c.getHeight())];
33857             break;
33858             case "south":
33859                 return [0, cm.top+cm.bottom+c.getHeight()];
33860             break;
33861         }
33862     }
33863 });/*
33864  * Based on:
33865  * Ext JS Library 1.1.1
33866  * Copyright(c) 2006-2007, Ext JS, LLC.
33867  *
33868  * Originally Released Under LGPL - original licence link has changed is not relivant.
33869  *
33870  * Fork - LGPL
33871  * <script type="text/javascript">
33872  */
33873 /*
33874  * These classes are private internal classes
33875  */
33876 Roo.CenterLayoutRegion = function(mgr, config){
33877     Roo.LayoutRegion.call(this, mgr, config, "center");
33878     this.visible = true;
33879     this.minWidth = config.minWidth || 20;
33880     this.minHeight = config.minHeight || 20;
33881 };
33882
33883 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
33884     hide : function(){
33885         // center panel can't be hidden
33886     },
33887     
33888     show : function(){
33889         // center panel can't be hidden
33890     },
33891     
33892     getMinWidth: function(){
33893         return this.minWidth;
33894     },
33895     
33896     getMinHeight: function(){
33897         return this.minHeight;
33898     }
33899 });
33900
33901
33902 Roo.NorthLayoutRegion = function(mgr, config){
33903     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
33904     if(this.split){
33905         this.split.placement = Roo.SplitBar.TOP;
33906         this.split.orientation = Roo.SplitBar.VERTICAL;
33907         this.split.el.addClass("x-layout-split-v");
33908     }
33909     var size = config.initialSize || config.height;
33910     if(typeof size != "undefined"){
33911         this.el.setHeight(size);
33912     }
33913 };
33914 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
33915     orientation: Roo.SplitBar.VERTICAL,
33916     getBox : function(){
33917         if(this.collapsed){
33918             return this.collapsedEl.getBox();
33919         }
33920         var box = this.el.getBox();
33921         if(this.split){
33922             box.height += this.split.el.getHeight();
33923         }
33924         return box;
33925     },
33926     
33927     updateBox : function(box){
33928         if(this.split && !this.collapsed){
33929             box.height -= this.split.el.getHeight();
33930             this.split.el.setLeft(box.x);
33931             this.split.el.setTop(box.y+box.height);
33932             this.split.el.setWidth(box.width);
33933         }
33934         if(this.collapsed){
33935             this.updateBody(box.width, null);
33936         }
33937         Roo.LayoutRegion.prototype.updateBox.call(this, box);
33938     }
33939 });
33940
33941 Roo.SouthLayoutRegion = function(mgr, config){
33942     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
33943     if(this.split){
33944         this.split.placement = Roo.SplitBar.BOTTOM;
33945         this.split.orientation = Roo.SplitBar.VERTICAL;
33946         this.split.el.addClass("x-layout-split-v");
33947     }
33948     var size = config.initialSize || config.height;
33949     if(typeof size != "undefined"){
33950         this.el.setHeight(size);
33951     }
33952 };
33953 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
33954     orientation: Roo.SplitBar.VERTICAL,
33955     getBox : function(){
33956         if(this.collapsed){
33957             return this.collapsedEl.getBox();
33958         }
33959         var box = this.el.getBox();
33960         if(this.split){
33961             var sh = this.split.el.getHeight();
33962             box.height += sh;
33963             box.y -= sh;
33964         }
33965         return box;
33966     },
33967     
33968     updateBox : function(box){
33969         if(this.split && !this.collapsed){
33970             var sh = this.split.el.getHeight();
33971             box.height -= sh;
33972             box.y += sh;
33973             this.split.el.setLeft(box.x);
33974             this.split.el.setTop(box.y-sh);
33975             this.split.el.setWidth(box.width);
33976         }
33977         if(this.collapsed){
33978             this.updateBody(box.width, null);
33979         }
33980         Roo.LayoutRegion.prototype.updateBox.call(this, box);
33981     }
33982 });
33983
33984 Roo.EastLayoutRegion = function(mgr, config){
33985     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
33986     if(this.split){
33987         this.split.placement = Roo.SplitBar.RIGHT;
33988         this.split.orientation = Roo.SplitBar.HORIZONTAL;
33989         this.split.el.addClass("x-layout-split-h");
33990     }
33991     var size = config.initialSize || config.width;
33992     if(typeof size != "undefined"){
33993         this.el.setWidth(size);
33994     }
33995 };
33996 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
33997     orientation: Roo.SplitBar.HORIZONTAL,
33998     getBox : function(){
33999         if(this.collapsed){
34000             return this.collapsedEl.getBox();
34001         }
34002         var box = this.el.getBox();
34003         if(this.split){
34004             var sw = this.split.el.getWidth();
34005             box.width += sw;
34006             box.x -= sw;
34007         }
34008         return box;
34009     },
34010
34011     updateBox : function(box){
34012         if(this.split && !this.collapsed){
34013             var sw = this.split.el.getWidth();
34014             box.width -= sw;
34015             this.split.el.setLeft(box.x);
34016             this.split.el.setTop(box.y);
34017             this.split.el.setHeight(box.height);
34018             box.x += sw;
34019         }
34020         if(this.collapsed){
34021             this.updateBody(null, box.height);
34022         }
34023         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34024     }
34025 });
34026
34027 Roo.WestLayoutRegion = function(mgr, config){
34028     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
34029     if(this.split){
34030         this.split.placement = Roo.SplitBar.LEFT;
34031         this.split.orientation = Roo.SplitBar.HORIZONTAL;
34032         this.split.el.addClass("x-layout-split-h");
34033     }
34034     var size = config.initialSize || config.width;
34035     if(typeof size != "undefined"){
34036         this.el.setWidth(size);
34037     }
34038 };
34039 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
34040     orientation: Roo.SplitBar.HORIZONTAL,
34041     getBox : function(){
34042         if(this.collapsed){
34043             return this.collapsedEl.getBox();
34044         }
34045         var box = this.el.getBox();
34046         if(this.split){
34047             box.width += this.split.el.getWidth();
34048         }
34049         return box;
34050     },
34051     
34052     updateBox : function(box){
34053         if(this.split && !this.collapsed){
34054             var sw = this.split.el.getWidth();
34055             box.width -= sw;
34056             this.split.el.setLeft(box.x+box.width);
34057             this.split.el.setTop(box.y);
34058             this.split.el.setHeight(box.height);
34059         }
34060         if(this.collapsed){
34061             this.updateBody(null, box.height);
34062         }
34063         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34064     }
34065 });
34066 /*
34067  * Based on:
34068  * Ext JS Library 1.1.1
34069  * Copyright(c) 2006-2007, Ext JS, LLC.
34070  *
34071  * Originally Released Under LGPL - original licence link has changed is not relivant.
34072  *
34073  * Fork - LGPL
34074  * <script type="text/javascript">
34075  */
34076  
34077  
34078 /*
34079  * Private internal class for reading and applying state
34080  */
34081 Roo.LayoutStateManager = function(layout){
34082      // default empty state
34083      this.state = {
34084         north: {},
34085         south: {},
34086         east: {},
34087         west: {}       
34088     };
34089 };
34090
34091 Roo.LayoutStateManager.prototype = {
34092     init : function(layout, provider){
34093         this.provider = provider;
34094         var state = provider.get(layout.id+"-layout-state");
34095         if(state){
34096             var wasUpdating = layout.isUpdating();
34097             if(!wasUpdating){
34098                 layout.beginUpdate();
34099             }
34100             for(var key in state){
34101                 if(typeof state[key] != "function"){
34102                     var rstate = state[key];
34103                     var r = layout.getRegion(key);
34104                     if(r && rstate){
34105                         if(rstate.size){
34106                             r.resizeTo(rstate.size);
34107                         }
34108                         if(rstate.collapsed == true){
34109                             r.collapse(true);
34110                         }else{
34111                             r.expand(null, true);
34112                         }
34113                     }
34114                 }
34115             }
34116             if(!wasUpdating){
34117                 layout.endUpdate();
34118             }
34119             this.state = state; 
34120         }
34121         this.layout = layout;
34122         layout.on("regionresized", this.onRegionResized, this);
34123         layout.on("regioncollapsed", this.onRegionCollapsed, this);
34124         layout.on("regionexpanded", this.onRegionExpanded, this);
34125     },
34126     
34127     storeState : function(){
34128         this.provider.set(this.layout.id+"-layout-state", this.state);
34129     },
34130     
34131     onRegionResized : function(region, newSize){
34132         this.state[region.getPosition()].size = newSize;
34133         this.storeState();
34134     },
34135     
34136     onRegionCollapsed : function(region){
34137         this.state[region.getPosition()].collapsed = true;
34138         this.storeState();
34139     },
34140     
34141     onRegionExpanded : function(region){
34142         this.state[region.getPosition()].collapsed = false;
34143         this.storeState();
34144     }
34145 };/*
34146  * Based on:
34147  * Ext JS Library 1.1.1
34148  * Copyright(c) 2006-2007, Ext JS, LLC.
34149  *
34150  * Originally Released Under LGPL - original licence link has changed is not relivant.
34151  *
34152  * Fork - LGPL
34153  * <script type="text/javascript">
34154  */
34155 /**
34156  * @class Roo.ContentPanel
34157  * @extends Roo.util.Observable
34158  * A basic ContentPanel element.
34159  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
34160  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
34161  * @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
34162  * @cfg {Boolean}   closable      True if the panel can be closed/removed
34163  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
34164  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
34165  * @cfg {Toolbar}   toolbar       A toolbar for this panel
34166  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
34167  * @cfg {String} title          The title for this panel
34168  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
34169  * @cfg {String} url            Calls {@link #setUrl} with this value
34170  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
34171  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
34172  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
34173  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
34174
34175  * @constructor
34176  * Create a new ContentPanel.
34177  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
34178  * @param {String/Object} config A string to set only the title or a config object
34179  * @param {String} content (optional) Set the HTML content for this panel
34180  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
34181  */
34182 Roo.ContentPanel = function(el, config, content){
34183     
34184      
34185     /*
34186     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
34187         config = el;
34188         el = Roo.id();
34189     }
34190     if (config && config.parentLayout) { 
34191         el = config.parentLayout.el.createChild(); 
34192     }
34193     */
34194     if(el.autoCreate){ // xtype is available if this is called from factory
34195         config = el;
34196         el = Roo.id();
34197     }
34198     this.el = Roo.get(el);
34199     if(!this.el && config && config.autoCreate){
34200         if(typeof config.autoCreate == "object"){
34201             if(!config.autoCreate.id){
34202                 config.autoCreate.id = config.id||el;
34203             }
34204             this.el = Roo.DomHelper.append(document.body,
34205                         config.autoCreate, true);
34206         }else{
34207             this.el = Roo.DomHelper.append(document.body,
34208                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
34209         }
34210     }
34211     this.closable = false;
34212     this.loaded = false;
34213     this.active = false;
34214     if(typeof config == "string"){
34215         this.title = config;
34216     }else{
34217         Roo.apply(this, config);
34218     }
34219     
34220     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
34221         this.wrapEl = this.el.wrap();
34222         this.toolbar.container = this.el.insertSibling(false, 'before');
34223         this.toolbar = new Roo.Toolbar(this.toolbar);
34224     }
34225     
34226     // xtype created footer. - not sure if will work as we normally have to render first..
34227     if (this.footer && !this.footer.el && this.footer.xtype) {
34228         if (!this.wrapEl) {
34229             this.wrapEl = this.el.wrap();
34230         }
34231     
34232         this.footer.container = this.wrapEl.createChild();
34233          
34234         this.footer = Roo.factory(this.footer, Roo);
34235         
34236     }
34237     
34238     if(this.resizeEl){
34239         this.resizeEl = Roo.get(this.resizeEl, true);
34240     }else{
34241         this.resizeEl = this.el;
34242     }
34243     // handle view.xtype
34244     
34245  
34246     
34247     
34248     this.addEvents({
34249         /**
34250          * @event activate
34251          * Fires when this panel is activated. 
34252          * @param {Roo.ContentPanel} this
34253          */
34254         "activate" : true,
34255         /**
34256          * @event deactivate
34257          * Fires when this panel is activated. 
34258          * @param {Roo.ContentPanel} this
34259          */
34260         "deactivate" : true,
34261
34262         /**
34263          * @event resize
34264          * Fires when this panel is resized if fitToFrame is true.
34265          * @param {Roo.ContentPanel} this
34266          * @param {Number} width The width after any component adjustments
34267          * @param {Number} height The height after any component adjustments
34268          */
34269         "resize" : true,
34270         
34271          /**
34272          * @event render
34273          * Fires when this tab is created
34274          * @param {Roo.ContentPanel} this
34275          */
34276         "render" : true
34277         
34278         
34279         
34280     });
34281     
34282
34283     
34284     
34285     if(this.autoScroll){
34286         this.resizeEl.setStyle("overflow", "auto");
34287     } else {
34288         // fix randome scrolling
34289         this.el.on('scroll', function() {
34290             Roo.log('fix random scolling');
34291             this.scrollTo('top',0); 
34292         });
34293     }
34294     content = content || this.content;
34295     if(content){
34296         this.setContent(content);
34297     }
34298     if(config && config.url){
34299         this.setUrl(this.url, this.params, this.loadOnce);
34300     }
34301     
34302     
34303     
34304     Roo.ContentPanel.superclass.constructor.call(this);
34305     
34306     if (this.view && typeof(this.view.xtype) != 'undefined') {
34307         this.view.el = this.el.appendChild(document.createElement("div"));
34308         this.view = Roo.factory(this.view); 
34309         this.view.render  &&  this.view.render(false, '');  
34310     }
34311     
34312     
34313     this.fireEvent('render', this);
34314 };
34315
34316 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
34317     tabTip:'',
34318     setRegion : function(region){
34319         this.region = region;
34320         if(region){
34321            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
34322         }else{
34323            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
34324         } 
34325     },
34326     
34327     /**
34328      * Returns the toolbar for this Panel if one was configured. 
34329      * @return {Roo.Toolbar} 
34330      */
34331     getToolbar : function(){
34332         return this.toolbar;
34333     },
34334     
34335     setActiveState : function(active){
34336         this.active = active;
34337         if(!active){
34338             this.fireEvent("deactivate", this);
34339         }else{
34340             this.fireEvent("activate", this);
34341         }
34342     },
34343     /**
34344      * Updates this panel's element
34345      * @param {String} content The new content
34346      * @param {Boolean} loadScripts (optional) true to look for and process scripts
34347     */
34348     setContent : function(content, loadScripts){
34349         this.el.update(content, loadScripts);
34350     },
34351
34352     ignoreResize : function(w, h){
34353         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
34354             return true;
34355         }else{
34356             this.lastSize = {width: w, height: h};
34357             return false;
34358         }
34359     },
34360     /**
34361      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
34362      * @return {Roo.UpdateManager} The UpdateManager
34363      */
34364     getUpdateManager : function(){
34365         return this.el.getUpdateManager();
34366     },
34367      /**
34368      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
34369      * @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:
34370 <pre><code>
34371 panel.load({
34372     url: "your-url.php",
34373     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
34374     callback: yourFunction,
34375     scope: yourObject, //(optional scope)
34376     discardUrl: false,
34377     nocache: false,
34378     text: "Loading...",
34379     timeout: 30,
34380     scripts: false
34381 });
34382 </code></pre>
34383      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
34384      * 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.
34385      * @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}
34386      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
34387      * @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.
34388      * @return {Roo.ContentPanel} this
34389      */
34390     load : function(){
34391         var um = this.el.getUpdateManager();
34392         um.update.apply(um, arguments);
34393         return this;
34394     },
34395
34396
34397     /**
34398      * 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.
34399      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
34400      * @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)
34401      * @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)
34402      * @return {Roo.UpdateManager} The UpdateManager
34403      */
34404     setUrl : function(url, params, loadOnce){
34405         if(this.refreshDelegate){
34406             this.removeListener("activate", this.refreshDelegate);
34407         }
34408         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
34409         this.on("activate", this.refreshDelegate);
34410         return this.el.getUpdateManager();
34411     },
34412     
34413     _handleRefresh : function(url, params, loadOnce){
34414         if(!loadOnce || !this.loaded){
34415             var updater = this.el.getUpdateManager();
34416             updater.update(url, params, this._setLoaded.createDelegate(this));
34417         }
34418     },
34419     
34420     _setLoaded : function(){
34421         this.loaded = true;
34422     }, 
34423     
34424     /**
34425      * Returns this panel's id
34426      * @return {String} 
34427      */
34428     getId : function(){
34429         return this.el.id;
34430     },
34431     
34432     /** 
34433      * Returns this panel's element - used by regiosn to add.
34434      * @return {Roo.Element} 
34435      */
34436     getEl : function(){
34437         return this.wrapEl || this.el;
34438     },
34439     
34440     adjustForComponents : function(width, height)
34441     {
34442         //Roo.log('adjustForComponents ');
34443         if(this.resizeEl != this.el){
34444             width -= this.el.getFrameWidth('lr');
34445             height -= this.el.getFrameWidth('tb');
34446         }
34447         if(this.toolbar){
34448             var te = this.toolbar.getEl();
34449             height -= te.getHeight();
34450             te.setWidth(width);
34451         }
34452         if(this.footer){
34453             var te = this.footer.getEl();
34454             Roo.log("footer:" + te.getHeight());
34455             
34456             height -= te.getHeight();
34457             te.setWidth(width);
34458         }
34459         
34460         
34461         if(this.adjustments){
34462             width += this.adjustments[0];
34463             height += this.adjustments[1];
34464         }
34465         return {"width": width, "height": height};
34466     },
34467     
34468     setSize : function(width, height){
34469         if(this.fitToFrame && !this.ignoreResize(width, height)){
34470             if(this.fitContainer && this.resizeEl != this.el){
34471                 this.el.setSize(width, height);
34472             }
34473             var size = this.adjustForComponents(width, height);
34474             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
34475             this.fireEvent('resize', this, size.width, size.height);
34476         }
34477     },
34478     
34479     /**
34480      * Returns this panel's title
34481      * @return {String} 
34482      */
34483     getTitle : function(){
34484         return this.title;
34485     },
34486     
34487     /**
34488      * Set this panel's title
34489      * @param {String} title
34490      */
34491     setTitle : function(title){
34492         this.title = title;
34493         if(this.region){
34494             this.region.updatePanelTitle(this, title);
34495         }
34496     },
34497     
34498     /**
34499      * Returns true is this panel was configured to be closable
34500      * @return {Boolean} 
34501      */
34502     isClosable : function(){
34503         return this.closable;
34504     },
34505     
34506     beforeSlide : function(){
34507         this.el.clip();
34508         this.resizeEl.clip();
34509     },
34510     
34511     afterSlide : function(){
34512         this.el.unclip();
34513         this.resizeEl.unclip();
34514     },
34515     
34516     /**
34517      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
34518      *   Will fail silently if the {@link #setUrl} method has not been called.
34519      *   This does not activate the panel, just updates its content.
34520      */
34521     refresh : function(){
34522         if(this.refreshDelegate){
34523            this.loaded = false;
34524            this.refreshDelegate();
34525         }
34526     },
34527     
34528     /**
34529      * Destroys this panel
34530      */
34531     destroy : function(){
34532         this.el.removeAllListeners();
34533         var tempEl = document.createElement("span");
34534         tempEl.appendChild(this.el.dom);
34535         tempEl.innerHTML = "";
34536         this.el.remove();
34537         this.el = null;
34538     },
34539     
34540     /**
34541      * form - if the content panel contains a form - this is a reference to it.
34542      * @type {Roo.form.Form}
34543      */
34544     form : false,
34545     /**
34546      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
34547      *    This contains a reference to it.
34548      * @type {Roo.View}
34549      */
34550     view : false,
34551     
34552       /**
34553      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
34554      * <pre><code>
34555
34556 layout.addxtype({
34557        xtype : 'Form',
34558        items: [ .... ]
34559    }
34560 );
34561
34562 </code></pre>
34563      * @param {Object} cfg Xtype definition of item to add.
34564      */
34565     
34566     addxtype : function(cfg) {
34567         // add form..
34568         if (cfg.xtype.match(/^Form$/)) {
34569             
34570             var el;
34571             //if (this.footer) {
34572             //    el = this.footer.container.insertSibling(false, 'before');
34573             //} else {
34574                 el = this.el.createChild();
34575             //}
34576
34577             this.form = new  Roo.form.Form(cfg);
34578             
34579             
34580             if ( this.form.allItems.length) this.form.render(el.dom);
34581             return this.form;
34582         }
34583         // should only have one of theses..
34584         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
34585             // views.. should not be just added - used named prop 'view''
34586             
34587             cfg.el = this.el.appendChild(document.createElement("div"));
34588             // factory?
34589             
34590             var ret = new Roo.factory(cfg);
34591              
34592              ret.render && ret.render(false, ''); // render blank..
34593             this.view = ret;
34594             return ret;
34595         }
34596         return false;
34597     }
34598 });
34599
34600 /**
34601  * @class Roo.GridPanel
34602  * @extends Roo.ContentPanel
34603  * @constructor
34604  * Create a new GridPanel.
34605  * @param {Roo.grid.Grid} grid The grid for this panel
34606  * @param {String/Object} config A string to set only the panel's title, or a config object
34607  */
34608 Roo.GridPanel = function(grid, config){
34609     
34610   
34611     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
34612         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
34613         
34614     this.wrapper.dom.appendChild(grid.getGridEl().dom);
34615     
34616     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
34617     
34618     if(this.toolbar){
34619         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
34620     }
34621     // xtype created footer. - not sure if will work as we normally have to render first..
34622     if (this.footer && !this.footer.el && this.footer.xtype) {
34623         
34624         this.footer.container = this.grid.getView().getFooterPanel(true);
34625         this.footer.dataSource = this.grid.dataSource;
34626         this.footer = Roo.factory(this.footer, Roo);
34627         
34628     }
34629     
34630     grid.monitorWindowResize = false; // turn off autosizing
34631     grid.autoHeight = false;
34632     grid.autoWidth = false;
34633     this.grid = grid;
34634     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
34635 };
34636
34637 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
34638     getId : function(){
34639         return this.grid.id;
34640     },
34641     
34642     /**
34643      * Returns the grid for this panel
34644      * @return {Roo.grid.Grid} 
34645      */
34646     getGrid : function(){
34647         return this.grid;    
34648     },
34649     
34650     setSize : function(width, height){
34651         if(!this.ignoreResize(width, height)){
34652             var grid = this.grid;
34653             var size = this.adjustForComponents(width, height);
34654             grid.getGridEl().setSize(size.width, size.height);
34655             grid.autoSize();
34656         }
34657     },
34658     
34659     beforeSlide : function(){
34660         this.grid.getView().scroller.clip();
34661     },
34662     
34663     afterSlide : function(){
34664         this.grid.getView().scroller.unclip();
34665     },
34666     
34667     destroy : function(){
34668         this.grid.destroy();
34669         delete this.grid;
34670         Roo.GridPanel.superclass.destroy.call(this); 
34671     }
34672 });
34673
34674
34675 /**
34676  * @class Roo.NestedLayoutPanel
34677  * @extends Roo.ContentPanel
34678  * @constructor
34679  * Create a new NestedLayoutPanel.
34680  * 
34681  * 
34682  * @param {Roo.BorderLayout} layout The layout for this panel
34683  * @param {String/Object} config A string to set only the title or a config object
34684  */
34685 Roo.NestedLayoutPanel = function(layout, config)
34686 {
34687     // construct with only one argument..
34688     /* FIXME - implement nicer consturctors
34689     if (layout.layout) {
34690         config = layout;
34691         layout = config.layout;
34692         delete config.layout;
34693     }
34694     if (layout.xtype && !layout.getEl) {
34695         // then layout needs constructing..
34696         layout = Roo.factory(layout, Roo);
34697     }
34698     */
34699     
34700     
34701     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
34702     
34703     layout.monitorWindowResize = false; // turn off autosizing
34704     this.layout = layout;
34705     this.layout.getEl().addClass("x-layout-nested-layout");
34706     
34707     
34708     
34709     
34710 };
34711
34712 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
34713
34714     setSize : function(width, height){
34715         if(!this.ignoreResize(width, height)){
34716             var size = this.adjustForComponents(width, height);
34717             var el = this.layout.getEl();
34718             el.setSize(size.width, size.height);
34719             var touch = el.dom.offsetWidth;
34720             this.layout.layout();
34721             // ie requires a double layout on the first pass
34722             if(Roo.isIE && !this.initialized){
34723                 this.initialized = true;
34724                 this.layout.layout();
34725             }
34726         }
34727     },
34728     
34729     // activate all subpanels if not currently active..
34730     
34731     setActiveState : function(active){
34732         this.active = active;
34733         if(!active){
34734             this.fireEvent("deactivate", this);
34735             return;
34736         }
34737         
34738         this.fireEvent("activate", this);
34739         // not sure if this should happen before or after..
34740         if (!this.layout) {
34741             return; // should not happen..
34742         }
34743         var reg = false;
34744         for (var r in this.layout.regions) {
34745             reg = this.layout.getRegion(r);
34746             if (reg.getActivePanel()) {
34747                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
34748                 reg.setActivePanel(reg.getActivePanel());
34749                 continue;
34750             }
34751             if (!reg.panels.length) {
34752                 continue;
34753             }
34754             reg.showPanel(reg.getPanel(0));
34755         }
34756         
34757         
34758         
34759         
34760     },
34761     
34762     /**
34763      * Returns the nested BorderLayout for this panel
34764      * @return {Roo.BorderLayout} 
34765      */
34766     getLayout : function(){
34767         return this.layout;
34768     },
34769     
34770      /**
34771      * Adds a xtype elements to the layout of the nested panel
34772      * <pre><code>
34773
34774 panel.addxtype({
34775        xtype : 'ContentPanel',
34776        region: 'west',
34777        items: [ .... ]
34778    }
34779 );
34780
34781 panel.addxtype({
34782         xtype : 'NestedLayoutPanel',
34783         region: 'west',
34784         layout: {
34785            center: { },
34786            west: { }   
34787         },
34788         items : [ ... list of content panels or nested layout panels.. ]
34789    }
34790 );
34791 </code></pre>
34792      * @param {Object} cfg Xtype definition of item to add.
34793      */
34794     addxtype : function(cfg) {
34795         return this.layout.addxtype(cfg);
34796     
34797     }
34798 });
34799
34800 Roo.ScrollPanel = function(el, config, content){
34801     config = config || {};
34802     config.fitToFrame = true;
34803     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
34804     
34805     this.el.dom.style.overflow = "hidden";
34806     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
34807     this.el.removeClass("x-layout-inactive-content");
34808     this.el.on("mousewheel", this.onWheel, this);
34809
34810     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
34811     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
34812     up.unselectable(); down.unselectable();
34813     up.on("click", this.scrollUp, this);
34814     down.on("click", this.scrollDown, this);
34815     up.addClassOnOver("x-scroller-btn-over");
34816     down.addClassOnOver("x-scroller-btn-over");
34817     up.addClassOnClick("x-scroller-btn-click");
34818     down.addClassOnClick("x-scroller-btn-click");
34819     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
34820
34821     this.resizeEl = this.el;
34822     this.el = wrap; this.up = up; this.down = down;
34823 };
34824
34825 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
34826     increment : 100,
34827     wheelIncrement : 5,
34828     scrollUp : function(){
34829         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
34830     },
34831
34832     scrollDown : function(){
34833         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
34834     },
34835
34836     afterScroll : function(){
34837         var el = this.resizeEl;
34838         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
34839         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
34840         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
34841     },
34842
34843     setSize : function(){
34844         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
34845         this.afterScroll();
34846     },
34847
34848     onWheel : function(e){
34849         var d = e.getWheelDelta();
34850         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
34851         this.afterScroll();
34852         e.stopEvent();
34853     },
34854
34855     setContent : function(content, loadScripts){
34856         this.resizeEl.update(content, loadScripts);
34857     }
34858
34859 });
34860
34861
34862
34863
34864
34865
34866
34867
34868
34869 /**
34870  * @class Roo.TreePanel
34871  * @extends Roo.ContentPanel
34872  * @constructor
34873  * Create a new TreePanel. - defaults to fit/scoll contents.
34874  * @param {String/Object} config A string to set only the panel's title, or a config object
34875  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
34876  */
34877 Roo.TreePanel = function(config){
34878     var el = config.el;
34879     var tree = config.tree;
34880     delete config.tree; 
34881     delete config.el; // hopefull!
34882     
34883     // wrapper for IE7 strict & safari scroll issue
34884     
34885     var treeEl = el.createChild();
34886     config.resizeEl = treeEl;
34887     
34888     
34889     
34890     Roo.TreePanel.superclass.constructor.call(this, el, config);
34891  
34892  
34893     this.tree = new Roo.tree.TreePanel(treeEl , tree);
34894     //console.log(tree);
34895     this.on('activate', function()
34896     {
34897         if (this.tree.rendered) {
34898             return;
34899         }
34900         //console.log('render tree');
34901         this.tree.render();
34902     });
34903     // this should not be needed.. - it's actually the 'el' that resizes?
34904     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
34905     
34906     //this.on('resize',  function (cp, w, h) {
34907     //        this.tree.innerCt.setWidth(w);
34908     //        this.tree.innerCt.setHeight(h);
34909     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
34910     //});
34911
34912         
34913     
34914 };
34915
34916 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
34917     fitToFrame : true,
34918     autoScroll : true
34919 });
34920
34921
34922
34923
34924
34925
34926
34927
34928
34929
34930
34931 /*
34932  * Based on:
34933  * Ext JS Library 1.1.1
34934  * Copyright(c) 2006-2007, Ext JS, LLC.
34935  *
34936  * Originally Released Under LGPL - original licence link has changed is not relivant.
34937  *
34938  * Fork - LGPL
34939  * <script type="text/javascript">
34940  */
34941  
34942
34943 /**
34944  * @class Roo.ReaderLayout
34945  * @extends Roo.BorderLayout
34946  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
34947  * center region containing two nested regions (a top one for a list view and one for item preview below),
34948  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
34949  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
34950  * expedites the setup of the overall layout and regions for this common application style.
34951  * Example:
34952  <pre><code>
34953 var reader = new Roo.ReaderLayout();
34954 var CP = Roo.ContentPanel;  // shortcut for adding
34955
34956 reader.beginUpdate();
34957 reader.add("north", new CP("north", "North"));
34958 reader.add("west", new CP("west", {title: "West"}));
34959 reader.add("east", new CP("east", {title: "East"}));
34960
34961 reader.regions.listView.add(new CP("listView", "List"));
34962 reader.regions.preview.add(new CP("preview", "Preview"));
34963 reader.endUpdate();
34964 </code></pre>
34965 * @constructor
34966 * Create a new ReaderLayout
34967 * @param {Object} config Configuration options
34968 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
34969 * document.body if omitted)
34970 */
34971 Roo.ReaderLayout = function(config, renderTo){
34972     var c = config || {size:{}};
34973     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
34974         north: c.north !== false ? Roo.apply({
34975             split:false,
34976             initialSize: 32,
34977             titlebar: false
34978         }, c.north) : false,
34979         west: c.west !== false ? Roo.apply({
34980             split:true,
34981             initialSize: 200,
34982             minSize: 175,
34983             maxSize: 400,
34984             titlebar: true,
34985             collapsible: true,
34986             animate: true,
34987             margins:{left:5,right:0,bottom:5,top:5},
34988             cmargins:{left:5,right:5,bottom:5,top:5}
34989         }, c.west) : false,
34990         east: c.east !== false ? Roo.apply({
34991             split:true,
34992             initialSize: 200,
34993             minSize: 175,
34994             maxSize: 400,
34995             titlebar: true,
34996             collapsible: true,
34997             animate: true,
34998             margins:{left:0,right:5,bottom:5,top:5},
34999             cmargins:{left:5,right:5,bottom:5,top:5}
35000         }, c.east) : false,
35001         center: Roo.apply({
35002             tabPosition: 'top',
35003             autoScroll:false,
35004             closeOnTab: true,
35005             titlebar:false,
35006             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
35007         }, c.center)
35008     });
35009
35010     this.el.addClass('x-reader');
35011
35012     this.beginUpdate();
35013
35014     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
35015         south: c.preview !== false ? Roo.apply({
35016             split:true,
35017             initialSize: 200,
35018             minSize: 100,
35019             autoScroll:true,
35020             collapsible:true,
35021             titlebar: true,
35022             cmargins:{top:5,left:0, right:0, bottom:0}
35023         }, c.preview) : false,
35024         center: Roo.apply({
35025             autoScroll:false,
35026             titlebar:false,
35027             minHeight:200
35028         }, c.listView)
35029     });
35030     this.add('center', new Roo.NestedLayoutPanel(inner,
35031             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
35032
35033     this.endUpdate();
35034
35035     this.regions.preview = inner.getRegion('south');
35036     this.regions.listView = inner.getRegion('center');
35037 };
35038
35039 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
35040  * Based on:
35041  * Ext JS Library 1.1.1
35042  * Copyright(c) 2006-2007, Ext JS, LLC.
35043  *
35044  * Originally Released Under LGPL - original licence link has changed is not relivant.
35045  *
35046  * Fork - LGPL
35047  * <script type="text/javascript">
35048  */
35049  
35050 /**
35051  * @class Roo.grid.Grid
35052  * @extends Roo.util.Observable
35053  * This class represents the primary interface of a component based grid control.
35054  * <br><br>Usage:<pre><code>
35055  var grid = new Roo.grid.Grid("my-container-id", {
35056      ds: myDataStore,
35057      cm: myColModel,
35058      selModel: mySelectionModel,
35059      autoSizeColumns: true,
35060      monitorWindowResize: false,
35061      trackMouseOver: true
35062  });
35063  // set any options
35064  grid.render();
35065  * </code></pre>
35066  * <b>Common Problems:</b><br/>
35067  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
35068  * element will correct this<br/>
35069  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
35070  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
35071  * are unpredictable.<br/>
35072  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
35073  * grid to calculate dimensions/offsets.<br/>
35074   * @constructor
35075  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
35076  * The container MUST have some type of size defined for the grid to fill. The container will be
35077  * automatically set to position relative if it isn't already.
35078  * @param {Object} config A config object that sets properties on this grid.
35079  */
35080 Roo.grid.Grid = function(container, config){
35081         // initialize the container
35082         this.container = Roo.get(container);
35083         this.container.update("");
35084         this.container.setStyle("overflow", "hidden");
35085     this.container.addClass('x-grid-container');
35086
35087     this.id = this.container.id;
35088
35089     Roo.apply(this, config);
35090     // check and correct shorthanded configs
35091     if(this.ds){
35092         this.dataSource = this.ds;
35093         delete this.ds;
35094     }
35095     if(this.cm){
35096         this.colModel = this.cm;
35097         delete this.cm;
35098     }
35099     if(this.sm){
35100         this.selModel = this.sm;
35101         delete this.sm;
35102     }
35103
35104     if (this.selModel) {
35105         this.selModel = Roo.factory(this.selModel, Roo.grid);
35106         this.sm = this.selModel;
35107         this.sm.xmodule = this.xmodule || false;
35108     }
35109     if (typeof(this.colModel.config) == 'undefined') {
35110         this.colModel = new Roo.grid.ColumnModel(this.colModel);
35111         this.cm = this.colModel;
35112         this.cm.xmodule = this.xmodule || false;
35113     }
35114     if (this.dataSource) {
35115         this.dataSource= Roo.factory(this.dataSource, Roo.data);
35116         this.ds = this.dataSource;
35117         this.ds.xmodule = this.xmodule || false;
35118          
35119     }
35120     
35121     
35122     
35123     if(this.width){
35124         this.container.setWidth(this.width);
35125     }
35126
35127     if(this.height){
35128         this.container.setHeight(this.height);
35129     }
35130     /** @private */
35131         this.addEvents({
35132         // raw events
35133         /**
35134          * @event click
35135          * The raw click event for the entire grid.
35136          * @param {Roo.EventObject} e
35137          */
35138         "click" : true,
35139         /**
35140          * @event dblclick
35141          * The raw dblclick event for the entire grid.
35142          * @param {Roo.EventObject} e
35143          */
35144         "dblclick" : true,
35145         /**
35146          * @event contextmenu
35147          * The raw contextmenu event for the entire grid.
35148          * @param {Roo.EventObject} e
35149          */
35150         "contextmenu" : true,
35151         /**
35152          * @event mousedown
35153          * The raw mousedown event for the entire grid.
35154          * @param {Roo.EventObject} e
35155          */
35156         "mousedown" : true,
35157         /**
35158          * @event mouseup
35159          * The raw mouseup event for the entire grid.
35160          * @param {Roo.EventObject} e
35161          */
35162         "mouseup" : true,
35163         /**
35164          * @event mouseover
35165          * The raw mouseover event for the entire grid.
35166          * @param {Roo.EventObject} e
35167          */
35168         "mouseover" : true,
35169         /**
35170          * @event mouseout
35171          * The raw mouseout event for the entire grid.
35172          * @param {Roo.EventObject} e
35173          */
35174         "mouseout" : true,
35175         /**
35176          * @event keypress
35177          * The raw keypress event for the entire grid.
35178          * @param {Roo.EventObject} e
35179          */
35180         "keypress" : true,
35181         /**
35182          * @event keydown
35183          * The raw keydown event for the entire grid.
35184          * @param {Roo.EventObject} e
35185          */
35186         "keydown" : true,
35187
35188         // custom events
35189
35190         /**
35191          * @event cellclick
35192          * Fires when a cell is clicked
35193          * @param {Grid} this
35194          * @param {Number} rowIndex
35195          * @param {Number} columnIndex
35196          * @param {Roo.EventObject} e
35197          */
35198         "cellclick" : true,
35199         /**
35200          * @event celldblclick
35201          * Fires when a cell is double clicked
35202          * @param {Grid} this
35203          * @param {Number} rowIndex
35204          * @param {Number} columnIndex
35205          * @param {Roo.EventObject} e
35206          */
35207         "celldblclick" : true,
35208         /**
35209          * @event rowclick
35210          * Fires when a row is clicked
35211          * @param {Grid} this
35212          * @param {Number} rowIndex
35213          * @param {Roo.EventObject} e
35214          */
35215         "rowclick" : true,
35216         /**
35217          * @event rowdblclick
35218          * Fires when a row is double clicked
35219          * @param {Grid} this
35220          * @param {Number} rowIndex
35221          * @param {Roo.EventObject} e
35222          */
35223         "rowdblclick" : true,
35224         /**
35225          * @event headerclick
35226          * Fires when a header is clicked
35227          * @param {Grid} this
35228          * @param {Number} columnIndex
35229          * @param {Roo.EventObject} e
35230          */
35231         "headerclick" : true,
35232         /**
35233          * @event headerdblclick
35234          * Fires when a header cell is double clicked
35235          * @param {Grid} this
35236          * @param {Number} columnIndex
35237          * @param {Roo.EventObject} e
35238          */
35239         "headerdblclick" : true,
35240         /**
35241          * @event rowcontextmenu
35242          * Fires when a row is right clicked
35243          * @param {Grid} this
35244          * @param {Number} rowIndex
35245          * @param {Roo.EventObject} e
35246          */
35247         "rowcontextmenu" : true,
35248         /**
35249          * @event cellcontextmenu
35250          * Fires when a cell is right clicked
35251          * @param {Grid} this
35252          * @param {Number} rowIndex
35253          * @param {Number} cellIndex
35254          * @param {Roo.EventObject} e
35255          */
35256          "cellcontextmenu" : true,
35257         /**
35258          * @event headercontextmenu
35259          * Fires when a header is right clicked
35260          * @param {Grid} this
35261          * @param {Number} columnIndex
35262          * @param {Roo.EventObject} e
35263          */
35264         "headercontextmenu" : true,
35265         /**
35266          * @event bodyscroll
35267          * Fires when the body element is scrolled
35268          * @param {Number} scrollLeft
35269          * @param {Number} scrollTop
35270          */
35271         "bodyscroll" : true,
35272         /**
35273          * @event columnresize
35274          * Fires when the user resizes a column
35275          * @param {Number} columnIndex
35276          * @param {Number} newSize
35277          */
35278         "columnresize" : true,
35279         /**
35280          * @event columnmove
35281          * Fires when the user moves a column
35282          * @param {Number} oldIndex
35283          * @param {Number} newIndex
35284          */
35285         "columnmove" : true,
35286         /**
35287          * @event startdrag
35288          * Fires when row(s) start being dragged
35289          * @param {Grid} this
35290          * @param {Roo.GridDD} dd The drag drop object
35291          * @param {event} e The raw browser event
35292          */
35293         "startdrag" : true,
35294         /**
35295          * @event enddrag
35296          * Fires when a drag operation is complete
35297          * @param {Grid} this
35298          * @param {Roo.GridDD} dd The drag drop object
35299          * @param {event} e The raw browser event
35300          */
35301         "enddrag" : true,
35302         /**
35303          * @event dragdrop
35304          * Fires when dragged row(s) are dropped on a valid DD target
35305          * @param {Grid} this
35306          * @param {Roo.GridDD} dd The drag drop object
35307          * @param {String} targetId The target drag drop object
35308          * @param {event} e The raw browser event
35309          */
35310         "dragdrop" : true,
35311         /**
35312          * @event dragover
35313          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
35314          * @param {Grid} this
35315          * @param {Roo.GridDD} dd The drag drop object
35316          * @param {String} targetId The target drag drop object
35317          * @param {event} e The raw browser event
35318          */
35319         "dragover" : true,
35320         /**
35321          * @event dragenter
35322          *  Fires when the dragged row(s) first cross another DD target while being dragged
35323          * @param {Grid} this
35324          * @param {Roo.GridDD} dd The drag drop object
35325          * @param {String} targetId The target drag drop object
35326          * @param {event} e The raw browser event
35327          */
35328         "dragenter" : true,
35329         /**
35330          * @event dragout
35331          * Fires when the dragged row(s) leave another DD target while being dragged
35332          * @param {Grid} this
35333          * @param {Roo.GridDD} dd The drag drop object
35334          * @param {String} targetId The target drag drop object
35335          * @param {event} e The raw browser event
35336          */
35337         "dragout" : true,
35338         /**
35339          * @event rowclass
35340          * Fires when a row is rendered, so you can change add a style to it.
35341          * @param {GridView} gridview   The grid view
35342          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
35343          */
35344         'rowclass' : true,
35345
35346         /**
35347          * @event render
35348          * Fires when the grid is rendered
35349          * @param {Grid} grid
35350          */
35351         'render' : true
35352     });
35353
35354     Roo.grid.Grid.superclass.constructor.call(this);
35355 };
35356 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
35357     
35358     /**
35359      * @cfg {String} ddGroup - drag drop group.
35360      */
35361
35362     /**
35363      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
35364      */
35365     minColumnWidth : 25,
35366
35367     /**
35368      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
35369      * <b>on initial render.</b> It is more efficient to explicitly size the columns
35370      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
35371      */
35372     autoSizeColumns : false,
35373
35374     /**
35375      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
35376      */
35377     autoSizeHeaders : true,
35378
35379     /**
35380      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
35381      */
35382     monitorWindowResize : true,
35383
35384     /**
35385      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
35386      * rows measured to get a columns size. Default is 0 (all rows).
35387      */
35388     maxRowsToMeasure : 0,
35389
35390     /**
35391      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
35392      */
35393     trackMouseOver : true,
35394
35395     /**
35396     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
35397     */
35398     
35399     /**
35400     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
35401     */
35402     enableDragDrop : false,
35403     
35404     /**
35405     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
35406     */
35407     enableColumnMove : true,
35408     
35409     /**
35410     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
35411     */
35412     enableColumnHide : true,
35413     
35414     /**
35415     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
35416     */
35417     enableRowHeightSync : false,
35418     
35419     /**
35420     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
35421     */
35422     stripeRows : true,
35423     
35424     /**
35425     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
35426     */
35427     autoHeight : false,
35428
35429     /**
35430      * @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.
35431      */
35432     autoExpandColumn : false,
35433
35434     /**
35435     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
35436     * Default is 50.
35437     */
35438     autoExpandMin : 50,
35439
35440     /**
35441     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
35442     */
35443     autoExpandMax : 1000,
35444
35445     /**
35446     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
35447     */
35448     view : null,
35449
35450     /**
35451     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
35452     */
35453     loadMask : false,
35454     /**
35455     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
35456     */
35457     dropTarget: false,
35458     
35459    
35460     
35461     // private
35462     rendered : false,
35463
35464     /**
35465     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
35466     * of a fixed width. Default is false.
35467     */
35468     /**
35469     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
35470     */
35471     /**
35472      * Called once after all setup has been completed and the grid is ready to be rendered.
35473      * @return {Roo.grid.Grid} this
35474      */
35475     render : function()
35476     {
35477         var c = this.container;
35478         // try to detect autoHeight/width mode
35479         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
35480             this.autoHeight = true;
35481         }
35482         var view = this.getView();
35483         view.init(this);
35484
35485         c.on("click", this.onClick, this);
35486         c.on("dblclick", this.onDblClick, this);
35487         c.on("contextmenu", this.onContextMenu, this);
35488         c.on("keydown", this.onKeyDown, this);
35489         if (Roo.isTouch) {
35490             c.on("touchstart", this.onTouchStart, this);
35491         }
35492
35493         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
35494
35495         this.getSelectionModel().init(this);
35496
35497         view.render();
35498
35499         if(this.loadMask){
35500             this.loadMask = new Roo.LoadMask(this.container,
35501                     Roo.apply({store:this.dataSource}, this.loadMask));
35502         }
35503         
35504         
35505         if (this.toolbar && this.toolbar.xtype) {
35506             this.toolbar.container = this.getView().getHeaderPanel(true);
35507             this.toolbar = new Roo.Toolbar(this.toolbar);
35508         }
35509         if (this.footer && this.footer.xtype) {
35510             this.footer.dataSource = this.getDataSource();
35511             this.footer.container = this.getView().getFooterPanel(true);
35512             this.footer = Roo.factory(this.footer, Roo);
35513         }
35514         if (this.dropTarget && this.dropTarget.xtype) {
35515             delete this.dropTarget.xtype;
35516             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
35517         }
35518         
35519         
35520         this.rendered = true;
35521         this.fireEvent('render', this);
35522         return this;
35523     },
35524
35525         /**
35526          * Reconfigures the grid to use a different Store and Column Model.
35527          * The View will be bound to the new objects and refreshed.
35528          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
35529          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
35530          */
35531     reconfigure : function(dataSource, colModel){
35532         if(this.loadMask){
35533             this.loadMask.destroy();
35534             this.loadMask = new Roo.LoadMask(this.container,
35535                     Roo.apply({store:dataSource}, this.loadMask));
35536         }
35537         this.view.bind(dataSource, colModel);
35538         this.dataSource = dataSource;
35539         this.colModel = colModel;
35540         this.view.refresh(true);
35541     },
35542
35543     // private
35544     onKeyDown : function(e){
35545         this.fireEvent("keydown", e);
35546     },
35547
35548     /**
35549      * Destroy this grid.
35550      * @param {Boolean} removeEl True to remove the element
35551      */
35552     destroy : function(removeEl, keepListeners){
35553         if(this.loadMask){
35554             this.loadMask.destroy();
35555         }
35556         var c = this.container;
35557         c.removeAllListeners();
35558         this.view.destroy();
35559         this.colModel.purgeListeners();
35560         if(!keepListeners){
35561             this.purgeListeners();
35562         }
35563         c.update("");
35564         if(removeEl === true){
35565             c.remove();
35566         }
35567     },
35568
35569     // private
35570     processEvent : function(name, e){
35571         // does this fire select???
35572         Roo.log('grid:processEvent '  + name);
35573         
35574         if (name != 'touchstart' ) {
35575             this.fireEvent(name, e);    
35576         }
35577         
35578         var t = e.getTarget();
35579         var v = this.view;
35580         var header = v.findHeaderIndex(t);
35581         if(header !== false){
35582             var ename = name == 'touchstart' ? 'click' : name;
35583              
35584             this.fireEvent("header" + ename, this, header, e);
35585         }else{
35586             var row = v.findRowIndex(t);
35587             var cell = v.findCellIndex(t);
35588             if (name == 'touchstart') {
35589                 // first touch is always a click.
35590                 // hopefull this happens after selection is updated.?
35591                 name = false;
35592                 
35593                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
35594                     var cs = this.selModel.getSelectedCell();
35595                     if (row == cs[0] && cell == cs[1]){
35596                         name = 'dblclick';
35597                     }
35598                 }
35599                 if (typeof(this.selModel.getSelections) != 'undefined') {
35600                     var cs = this.selModel.getSelections();
35601                     var ds = this.dataSource;
35602                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
35603                         name = 'dblclick';
35604                     }
35605                 }
35606                 if (!name) {
35607                     return;
35608                 }
35609             }
35610             
35611             
35612             if(row !== false){
35613                 this.fireEvent("row" + name, this, row, e);
35614                 if(cell !== false){
35615                     this.fireEvent("cell" + name, this, row, cell, e);
35616                 }
35617             }
35618         }
35619     },
35620
35621     // private
35622     onClick : function(e){
35623         this.processEvent("click", e);
35624     },
35625    // private
35626     onTouchStart : function(e){
35627         this.processEvent("touchstart", e);
35628     },
35629
35630     // private
35631     onContextMenu : function(e, t){
35632         this.processEvent("contextmenu", e);
35633     },
35634
35635     // private
35636     onDblClick : function(e){
35637         this.processEvent("dblclick", e);
35638     },
35639
35640     // private
35641     walkCells : function(row, col, step, fn, scope){
35642         var cm = this.colModel, clen = cm.getColumnCount();
35643         var ds = this.dataSource, rlen = ds.getCount(), first = true;
35644         if(step < 0){
35645             if(col < 0){
35646                 row--;
35647                 first = false;
35648             }
35649             while(row >= 0){
35650                 if(!first){
35651                     col = clen-1;
35652                 }
35653                 first = false;
35654                 while(col >= 0){
35655                     if(fn.call(scope || this, row, col, cm) === true){
35656                         return [row, col];
35657                     }
35658                     col--;
35659                 }
35660                 row--;
35661             }
35662         } else {
35663             if(col >= clen){
35664                 row++;
35665                 first = false;
35666             }
35667             while(row < rlen){
35668                 if(!first){
35669                     col = 0;
35670                 }
35671                 first = false;
35672                 while(col < clen){
35673                     if(fn.call(scope || this, row, col, cm) === true){
35674                         return [row, col];
35675                     }
35676                     col++;
35677                 }
35678                 row++;
35679             }
35680         }
35681         return null;
35682     },
35683
35684     // private
35685     getSelections : function(){
35686         return this.selModel.getSelections();
35687     },
35688
35689     /**
35690      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
35691      * but if manual update is required this method will initiate it.
35692      */
35693     autoSize : function(){
35694         if(this.rendered){
35695             this.view.layout();
35696             if(this.view.adjustForScroll){
35697                 this.view.adjustForScroll();
35698             }
35699         }
35700     },
35701
35702     /**
35703      * Returns the grid's underlying element.
35704      * @return {Element} The element
35705      */
35706     getGridEl : function(){
35707         return this.container;
35708     },
35709
35710     // private for compatibility, overridden by editor grid
35711     stopEditing : function(){},
35712
35713     /**
35714      * Returns the grid's SelectionModel.
35715      * @return {SelectionModel}
35716      */
35717     getSelectionModel : function(){
35718         if(!this.selModel){
35719             this.selModel = new Roo.grid.RowSelectionModel();
35720         }
35721         return this.selModel;
35722     },
35723
35724     /**
35725      * Returns the grid's DataSource.
35726      * @return {DataSource}
35727      */
35728     getDataSource : function(){
35729         return this.dataSource;
35730     },
35731
35732     /**
35733      * Returns the grid's ColumnModel.
35734      * @return {ColumnModel}
35735      */
35736     getColumnModel : function(){
35737         return this.colModel;
35738     },
35739
35740     /**
35741      * Returns the grid's GridView object.
35742      * @return {GridView}
35743      */
35744     getView : function(){
35745         if(!this.view){
35746             this.view = new Roo.grid.GridView(this.viewConfig);
35747         }
35748         return this.view;
35749     },
35750     /**
35751      * Called to get grid's drag proxy text, by default returns this.ddText.
35752      * @return {String}
35753      */
35754     getDragDropText : function(){
35755         var count = this.selModel.getCount();
35756         return String.format(this.ddText, count, count == 1 ? '' : 's');
35757     }
35758 });
35759 /**
35760  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
35761  * %0 is replaced with the number of selected rows.
35762  * @type String
35763  */
35764 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
35765  * Based on:
35766  * Ext JS Library 1.1.1
35767  * Copyright(c) 2006-2007, Ext JS, LLC.
35768  *
35769  * Originally Released Under LGPL - original licence link has changed is not relivant.
35770  *
35771  * Fork - LGPL
35772  * <script type="text/javascript">
35773  */
35774  
35775 Roo.grid.AbstractGridView = function(){
35776         this.grid = null;
35777         
35778         this.events = {
35779             "beforerowremoved" : true,
35780             "beforerowsinserted" : true,
35781             "beforerefresh" : true,
35782             "rowremoved" : true,
35783             "rowsinserted" : true,
35784             "rowupdated" : true,
35785             "refresh" : true
35786         };
35787     Roo.grid.AbstractGridView.superclass.constructor.call(this);
35788 };
35789
35790 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
35791     rowClass : "x-grid-row",
35792     cellClass : "x-grid-cell",
35793     tdClass : "x-grid-td",
35794     hdClass : "x-grid-hd",
35795     splitClass : "x-grid-hd-split",
35796     
35797         init: function(grid){
35798         this.grid = grid;
35799                 var cid = this.grid.getGridEl().id;
35800         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
35801         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
35802         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
35803         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
35804         },
35805         
35806         getColumnRenderers : function(){
35807         var renderers = [];
35808         var cm = this.grid.colModel;
35809         var colCount = cm.getColumnCount();
35810         for(var i = 0; i < colCount; i++){
35811             renderers[i] = cm.getRenderer(i);
35812         }
35813         return renderers;
35814     },
35815     
35816     getColumnIds : function(){
35817         var ids = [];
35818         var cm = this.grid.colModel;
35819         var colCount = cm.getColumnCount();
35820         for(var i = 0; i < colCount; i++){
35821             ids[i] = cm.getColumnId(i);
35822         }
35823         return ids;
35824     },
35825     
35826     getDataIndexes : function(){
35827         if(!this.indexMap){
35828             this.indexMap = this.buildIndexMap();
35829         }
35830         return this.indexMap.colToData;
35831     },
35832     
35833     getColumnIndexByDataIndex : function(dataIndex){
35834         if(!this.indexMap){
35835             this.indexMap = this.buildIndexMap();
35836         }
35837         return this.indexMap.dataToCol[dataIndex];
35838     },
35839     
35840     /**
35841      * Set a css style for a column dynamically. 
35842      * @param {Number} colIndex The index of the column
35843      * @param {String} name The css property name
35844      * @param {String} value The css value
35845      */
35846     setCSSStyle : function(colIndex, name, value){
35847         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
35848         Roo.util.CSS.updateRule(selector, name, value);
35849     },
35850     
35851     generateRules : function(cm){
35852         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
35853         Roo.util.CSS.removeStyleSheet(rulesId);
35854         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
35855             var cid = cm.getColumnId(i);
35856             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
35857                          this.tdSelector, cid, " {\n}\n",
35858                          this.hdSelector, cid, " {\n}\n",
35859                          this.splitSelector, cid, " {\n}\n");
35860         }
35861         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
35862     }
35863 });/*
35864  * Based on:
35865  * Ext JS Library 1.1.1
35866  * Copyright(c) 2006-2007, Ext JS, LLC.
35867  *
35868  * Originally Released Under LGPL - original licence link has changed is not relivant.
35869  *
35870  * Fork - LGPL
35871  * <script type="text/javascript">
35872  */
35873
35874 // private
35875 // This is a support class used internally by the Grid components
35876 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
35877     this.grid = grid;
35878     this.view = grid.getView();
35879     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
35880     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
35881     if(hd2){
35882         this.setHandleElId(Roo.id(hd));
35883         this.setOuterHandleElId(Roo.id(hd2));
35884     }
35885     this.scroll = false;
35886 };
35887 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
35888     maxDragWidth: 120,
35889     getDragData : function(e){
35890         var t = Roo.lib.Event.getTarget(e);
35891         var h = this.view.findHeaderCell(t);
35892         if(h){
35893             return {ddel: h.firstChild, header:h};
35894         }
35895         return false;
35896     },
35897
35898     onInitDrag : function(e){
35899         this.view.headersDisabled = true;
35900         var clone = this.dragData.ddel.cloneNode(true);
35901         clone.id = Roo.id();
35902         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
35903         this.proxy.update(clone);
35904         return true;
35905     },
35906
35907     afterValidDrop : function(){
35908         var v = this.view;
35909         setTimeout(function(){
35910             v.headersDisabled = false;
35911         }, 50);
35912     },
35913
35914     afterInvalidDrop : function(){
35915         var v = this.view;
35916         setTimeout(function(){
35917             v.headersDisabled = false;
35918         }, 50);
35919     }
35920 });
35921 /*
35922  * Based on:
35923  * Ext JS Library 1.1.1
35924  * Copyright(c) 2006-2007, Ext JS, LLC.
35925  *
35926  * Originally Released Under LGPL - original licence link has changed is not relivant.
35927  *
35928  * Fork - LGPL
35929  * <script type="text/javascript">
35930  */
35931 // private
35932 // This is a support class used internally by the Grid components
35933 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
35934     this.grid = grid;
35935     this.view = grid.getView();
35936     // split the proxies so they don't interfere with mouse events
35937     this.proxyTop = Roo.DomHelper.append(document.body, {
35938         cls:"col-move-top", html:"&#160;"
35939     }, true);
35940     this.proxyBottom = Roo.DomHelper.append(document.body, {
35941         cls:"col-move-bottom", html:"&#160;"
35942     }, true);
35943     this.proxyTop.hide = this.proxyBottom.hide = function(){
35944         this.setLeftTop(-100,-100);
35945         this.setStyle("visibility", "hidden");
35946     };
35947     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
35948     // temporarily disabled
35949     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
35950     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
35951 };
35952 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
35953     proxyOffsets : [-4, -9],
35954     fly: Roo.Element.fly,
35955
35956     getTargetFromEvent : function(e){
35957         var t = Roo.lib.Event.getTarget(e);
35958         var cindex = this.view.findCellIndex(t);
35959         if(cindex !== false){
35960             return this.view.getHeaderCell(cindex);
35961         }
35962         return null;
35963     },
35964
35965     nextVisible : function(h){
35966         var v = this.view, cm = this.grid.colModel;
35967         h = h.nextSibling;
35968         while(h){
35969             if(!cm.isHidden(v.getCellIndex(h))){
35970                 return h;
35971             }
35972             h = h.nextSibling;
35973         }
35974         return null;
35975     },
35976
35977     prevVisible : function(h){
35978         var v = this.view, cm = this.grid.colModel;
35979         h = h.prevSibling;
35980         while(h){
35981             if(!cm.isHidden(v.getCellIndex(h))){
35982                 return h;
35983             }
35984             h = h.prevSibling;
35985         }
35986         return null;
35987     },
35988
35989     positionIndicator : function(h, n, e){
35990         var x = Roo.lib.Event.getPageX(e);
35991         var r = Roo.lib.Dom.getRegion(n.firstChild);
35992         var px, pt, py = r.top + this.proxyOffsets[1];
35993         if((r.right - x) <= (r.right-r.left)/2){
35994             px = r.right+this.view.borderWidth;
35995             pt = "after";
35996         }else{
35997             px = r.left;
35998             pt = "before";
35999         }
36000         var oldIndex = this.view.getCellIndex(h);
36001         var newIndex = this.view.getCellIndex(n);
36002
36003         if(this.grid.colModel.isFixed(newIndex)){
36004             return false;
36005         }
36006
36007         var locked = this.grid.colModel.isLocked(newIndex);
36008
36009         if(pt == "after"){
36010             newIndex++;
36011         }
36012         if(oldIndex < newIndex){
36013             newIndex--;
36014         }
36015         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
36016             return false;
36017         }
36018         px +=  this.proxyOffsets[0];
36019         this.proxyTop.setLeftTop(px, py);
36020         this.proxyTop.show();
36021         if(!this.bottomOffset){
36022             this.bottomOffset = this.view.mainHd.getHeight();
36023         }
36024         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
36025         this.proxyBottom.show();
36026         return pt;
36027     },
36028
36029     onNodeEnter : function(n, dd, e, data){
36030         if(data.header != n){
36031             this.positionIndicator(data.header, n, e);
36032         }
36033     },
36034
36035     onNodeOver : function(n, dd, e, data){
36036         var result = false;
36037         if(data.header != n){
36038             result = this.positionIndicator(data.header, n, e);
36039         }
36040         if(!result){
36041             this.proxyTop.hide();
36042             this.proxyBottom.hide();
36043         }
36044         return result ? this.dropAllowed : this.dropNotAllowed;
36045     },
36046
36047     onNodeOut : function(n, dd, e, data){
36048         this.proxyTop.hide();
36049         this.proxyBottom.hide();
36050     },
36051
36052     onNodeDrop : function(n, dd, e, data){
36053         var h = data.header;
36054         if(h != n){
36055             var cm = this.grid.colModel;
36056             var x = Roo.lib.Event.getPageX(e);
36057             var r = Roo.lib.Dom.getRegion(n.firstChild);
36058             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
36059             var oldIndex = this.view.getCellIndex(h);
36060             var newIndex = this.view.getCellIndex(n);
36061             var locked = cm.isLocked(newIndex);
36062             if(pt == "after"){
36063                 newIndex++;
36064             }
36065             if(oldIndex < newIndex){
36066                 newIndex--;
36067             }
36068             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
36069                 return false;
36070             }
36071             cm.setLocked(oldIndex, locked, true);
36072             cm.moveColumn(oldIndex, newIndex);
36073             this.grid.fireEvent("columnmove", oldIndex, newIndex);
36074             return true;
36075         }
36076         return false;
36077     }
36078 });
36079 /*
36080  * Based on:
36081  * Ext JS Library 1.1.1
36082  * Copyright(c) 2006-2007, Ext JS, LLC.
36083  *
36084  * Originally Released Under LGPL - original licence link has changed is not relivant.
36085  *
36086  * Fork - LGPL
36087  * <script type="text/javascript">
36088  */
36089   
36090 /**
36091  * @class Roo.grid.GridView
36092  * @extends Roo.util.Observable
36093  *
36094  * @constructor
36095  * @param {Object} config
36096  */
36097 Roo.grid.GridView = function(config){
36098     Roo.grid.GridView.superclass.constructor.call(this);
36099     this.el = null;
36100
36101     Roo.apply(this, config);
36102 };
36103
36104 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
36105
36106     unselectable :  'unselectable="on"',
36107     unselectableCls :  'x-unselectable',
36108     
36109     
36110     rowClass : "x-grid-row",
36111
36112     cellClass : "x-grid-col",
36113
36114     tdClass : "x-grid-td",
36115
36116     hdClass : "x-grid-hd",
36117
36118     splitClass : "x-grid-split",
36119
36120     sortClasses : ["sort-asc", "sort-desc"],
36121
36122     enableMoveAnim : false,
36123
36124     hlColor: "C3DAF9",
36125
36126     dh : Roo.DomHelper,
36127
36128     fly : Roo.Element.fly,
36129
36130     css : Roo.util.CSS,
36131
36132     borderWidth: 1,
36133
36134     splitOffset: 3,
36135
36136     scrollIncrement : 22,
36137
36138     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
36139
36140     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
36141
36142     bind : function(ds, cm){
36143         if(this.ds){
36144             this.ds.un("load", this.onLoad, this);
36145             this.ds.un("datachanged", this.onDataChange, this);
36146             this.ds.un("add", this.onAdd, this);
36147             this.ds.un("remove", this.onRemove, this);
36148             this.ds.un("update", this.onUpdate, this);
36149             this.ds.un("clear", this.onClear, this);
36150         }
36151         if(ds){
36152             ds.on("load", this.onLoad, this);
36153             ds.on("datachanged", this.onDataChange, this);
36154             ds.on("add", this.onAdd, this);
36155             ds.on("remove", this.onRemove, this);
36156             ds.on("update", this.onUpdate, this);
36157             ds.on("clear", this.onClear, this);
36158         }
36159         this.ds = ds;
36160
36161         if(this.cm){
36162             this.cm.un("widthchange", this.onColWidthChange, this);
36163             this.cm.un("headerchange", this.onHeaderChange, this);
36164             this.cm.un("hiddenchange", this.onHiddenChange, this);
36165             this.cm.un("columnmoved", this.onColumnMove, this);
36166             this.cm.un("columnlockchange", this.onColumnLock, this);
36167         }
36168         if(cm){
36169             this.generateRules(cm);
36170             cm.on("widthchange", this.onColWidthChange, this);
36171             cm.on("headerchange", this.onHeaderChange, this);
36172             cm.on("hiddenchange", this.onHiddenChange, this);
36173             cm.on("columnmoved", this.onColumnMove, this);
36174             cm.on("columnlockchange", this.onColumnLock, this);
36175         }
36176         this.cm = cm;
36177     },
36178
36179     init: function(grid){
36180         Roo.grid.GridView.superclass.init.call(this, grid);
36181
36182         this.bind(grid.dataSource, grid.colModel);
36183
36184         grid.on("headerclick", this.handleHeaderClick, this);
36185
36186         if(grid.trackMouseOver){
36187             grid.on("mouseover", this.onRowOver, this);
36188             grid.on("mouseout", this.onRowOut, this);
36189         }
36190         grid.cancelTextSelection = function(){};
36191         this.gridId = grid.id;
36192
36193         var tpls = this.templates || {};
36194
36195         if(!tpls.master){
36196             tpls.master = new Roo.Template(
36197                '<div class="x-grid" hidefocus="true">',
36198                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
36199                   '<div class="x-grid-topbar"></div>',
36200                   '<div class="x-grid-scroller"><div></div></div>',
36201                   '<div class="x-grid-locked">',
36202                       '<div class="x-grid-header">{lockedHeader}</div>',
36203                       '<div class="x-grid-body">{lockedBody}</div>',
36204                   "</div>",
36205                   '<div class="x-grid-viewport">',
36206                       '<div class="x-grid-header">{header}</div>',
36207                       '<div class="x-grid-body">{body}</div>',
36208                   "</div>",
36209                   '<div class="x-grid-bottombar"></div>',
36210                  
36211                   '<div class="x-grid-resize-proxy">&#160;</div>',
36212                "</div>"
36213             );
36214             tpls.master.disableformats = true;
36215         }
36216
36217         if(!tpls.header){
36218             tpls.header = new Roo.Template(
36219                '<table border="0" cellspacing="0" cellpadding="0">',
36220                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
36221                "</table>{splits}"
36222             );
36223             tpls.header.disableformats = true;
36224         }
36225         tpls.header.compile();
36226
36227         if(!tpls.hcell){
36228             tpls.hcell = new Roo.Template(
36229                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
36230                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
36231                 "</div></td>"
36232              );
36233              tpls.hcell.disableFormats = true;
36234         }
36235         tpls.hcell.compile();
36236
36237         if(!tpls.hsplit){
36238             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
36239                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
36240             tpls.hsplit.disableFormats = true;
36241         }
36242         tpls.hsplit.compile();
36243
36244         if(!tpls.body){
36245             tpls.body = new Roo.Template(
36246                '<table border="0" cellspacing="0" cellpadding="0">',
36247                "<tbody>{rows}</tbody>",
36248                "</table>"
36249             );
36250             tpls.body.disableFormats = true;
36251         }
36252         tpls.body.compile();
36253
36254         if(!tpls.row){
36255             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
36256             tpls.row.disableFormats = true;
36257         }
36258         tpls.row.compile();
36259
36260         if(!tpls.cell){
36261             tpls.cell = new Roo.Template(
36262                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
36263                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
36264                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
36265                 "</td>"
36266             );
36267             tpls.cell.disableFormats = true;
36268         }
36269         tpls.cell.compile();
36270
36271         this.templates = tpls;
36272     },
36273
36274     // remap these for backwards compat
36275     onColWidthChange : function(){
36276         this.updateColumns.apply(this, arguments);
36277     },
36278     onHeaderChange : function(){
36279         this.updateHeaders.apply(this, arguments);
36280     }, 
36281     onHiddenChange : function(){
36282         this.handleHiddenChange.apply(this, arguments);
36283     },
36284     onColumnMove : function(){
36285         this.handleColumnMove.apply(this, arguments);
36286     },
36287     onColumnLock : function(){
36288         this.handleLockChange.apply(this, arguments);
36289     },
36290
36291     onDataChange : function(){
36292         this.refresh();
36293         this.updateHeaderSortState();
36294     },
36295
36296     onClear : function(){
36297         this.refresh();
36298     },
36299
36300     onUpdate : function(ds, record){
36301         this.refreshRow(record);
36302     },
36303
36304     refreshRow : function(record){
36305         var ds = this.ds, index;
36306         if(typeof record == 'number'){
36307             index = record;
36308             record = ds.getAt(index);
36309         }else{
36310             index = ds.indexOf(record);
36311         }
36312         this.insertRows(ds, index, index, true);
36313         this.onRemove(ds, record, index+1, true);
36314         this.syncRowHeights(index, index);
36315         this.layout();
36316         this.fireEvent("rowupdated", this, index, record);
36317     },
36318
36319     onAdd : function(ds, records, index){
36320         this.insertRows(ds, index, index + (records.length-1));
36321     },
36322
36323     onRemove : function(ds, record, index, isUpdate){
36324         if(isUpdate !== true){
36325             this.fireEvent("beforerowremoved", this, index, record);
36326         }
36327         var bt = this.getBodyTable(), lt = this.getLockedTable();
36328         if(bt.rows[index]){
36329             bt.firstChild.removeChild(bt.rows[index]);
36330         }
36331         if(lt.rows[index]){
36332             lt.firstChild.removeChild(lt.rows[index]);
36333         }
36334         if(isUpdate !== true){
36335             this.stripeRows(index);
36336             this.syncRowHeights(index, index);
36337             this.layout();
36338             this.fireEvent("rowremoved", this, index, record);
36339         }
36340     },
36341
36342     onLoad : function(){
36343         this.scrollToTop();
36344     },
36345
36346     /**
36347      * Scrolls the grid to the top
36348      */
36349     scrollToTop : function(){
36350         if(this.scroller){
36351             this.scroller.dom.scrollTop = 0;
36352             this.syncScroll();
36353         }
36354     },
36355
36356     /**
36357      * Gets a panel in the header of the grid that can be used for toolbars etc.
36358      * After modifying the contents of this panel a call to grid.autoSize() may be
36359      * required to register any changes in size.
36360      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
36361      * @return Roo.Element
36362      */
36363     getHeaderPanel : function(doShow){
36364         if(doShow){
36365             this.headerPanel.show();
36366         }
36367         return this.headerPanel;
36368     },
36369
36370     /**
36371      * Gets a panel in the footer of the grid that can be used for toolbars etc.
36372      * After modifying the contents of this panel a call to grid.autoSize() may be
36373      * required to register any changes in size.
36374      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
36375      * @return Roo.Element
36376      */
36377     getFooterPanel : function(doShow){
36378         if(doShow){
36379             this.footerPanel.show();
36380         }
36381         return this.footerPanel;
36382     },
36383
36384     initElements : function(){
36385         var E = Roo.Element;
36386         var el = this.grid.getGridEl().dom.firstChild;
36387         var cs = el.childNodes;
36388
36389         this.el = new E(el);
36390         
36391          this.focusEl = new E(el.firstChild);
36392         this.focusEl.swallowEvent("click", true);
36393         
36394         this.headerPanel = new E(cs[1]);
36395         this.headerPanel.enableDisplayMode("block");
36396
36397         this.scroller = new E(cs[2]);
36398         this.scrollSizer = new E(this.scroller.dom.firstChild);
36399
36400         this.lockedWrap = new E(cs[3]);
36401         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
36402         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
36403
36404         this.mainWrap = new E(cs[4]);
36405         this.mainHd = new E(this.mainWrap.dom.firstChild);
36406         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
36407
36408         this.footerPanel = new E(cs[5]);
36409         this.footerPanel.enableDisplayMode("block");
36410
36411         this.resizeProxy = new E(cs[6]);
36412
36413         this.headerSelector = String.format(
36414            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
36415            this.lockedHd.id, this.mainHd.id
36416         );
36417
36418         this.splitterSelector = String.format(
36419            '#{0} div.x-grid-split, #{1} div.x-grid-split',
36420            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
36421         );
36422     },
36423     idToCssName : function(s)
36424     {
36425         return s.replace(/[^a-z0-9]+/ig, '-');
36426     },
36427
36428     getHeaderCell : function(index){
36429         return Roo.DomQuery.select(this.headerSelector)[index];
36430     },
36431
36432     getHeaderCellMeasure : function(index){
36433         return this.getHeaderCell(index).firstChild;
36434     },
36435
36436     getHeaderCellText : function(index){
36437         return this.getHeaderCell(index).firstChild.firstChild;
36438     },
36439
36440     getLockedTable : function(){
36441         return this.lockedBody.dom.firstChild;
36442     },
36443
36444     getBodyTable : function(){
36445         return this.mainBody.dom.firstChild;
36446     },
36447
36448     getLockedRow : function(index){
36449         return this.getLockedTable().rows[index];
36450     },
36451
36452     getRow : function(index){
36453         return this.getBodyTable().rows[index];
36454     },
36455
36456     getRowComposite : function(index){
36457         if(!this.rowEl){
36458             this.rowEl = new Roo.CompositeElementLite();
36459         }
36460         var els = [], lrow, mrow;
36461         if(lrow = this.getLockedRow(index)){
36462             els.push(lrow);
36463         }
36464         if(mrow = this.getRow(index)){
36465             els.push(mrow);
36466         }
36467         this.rowEl.elements = els;
36468         return this.rowEl;
36469     },
36470     /**
36471      * Gets the 'td' of the cell
36472      * 
36473      * @param {Integer} rowIndex row to select
36474      * @param {Integer} colIndex column to select
36475      * 
36476      * @return {Object} 
36477      */
36478     getCell : function(rowIndex, colIndex){
36479         var locked = this.cm.getLockedCount();
36480         var source;
36481         if(colIndex < locked){
36482             source = this.lockedBody.dom.firstChild;
36483         }else{
36484             source = this.mainBody.dom.firstChild;
36485             colIndex -= locked;
36486         }
36487         return source.rows[rowIndex].childNodes[colIndex];
36488     },
36489
36490     getCellText : function(rowIndex, colIndex){
36491         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
36492     },
36493
36494     getCellBox : function(cell){
36495         var b = this.fly(cell).getBox();
36496         if(Roo.isOpera){ // opera fails to report the Y
36497             b.y = cell.offsetTop + this.mainBody.getY();
36498         }
36499         return b;
36500     },
36501
36502     getCellIndex : function(cell){
36503         var id = String(cell.className).match(this.cellRE);
36504         if(id){
36505             return parseInt(id[1], 10);
36506         }
36507         return 0;
36508     },
36509
36510     findHeaderIndex : function(n){
36511         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36512         return r ? this.getCellIndex(r) : false;
36513     },
36514
36515     findHeaderCell : function(n){
36516         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36517         return r ? r : false;
36518     },
36519
36520     findRowIndex : function(n){
36521         if(!n){
36522             return false;
36523         }
36524         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
36525         return r ? r.rowIndex : false;
36526     },
36527
36528     findCellIndex : function(node){
36529         var stop = this.el.dom;
36530         while(node && node != stop){
36531             if(this.findRE.test(node.className)){
36532                 return this.getCellIndex(node);
36533             }
36534             node = node.parentNode;
36535         }
36536         return false;
36537     },
36538
36539     getColumnId : function(index){
36540         return this.cm.getColumnId(index);
36541     },
36542
36543     getSplitters : function()
36544     {
36545         if(this.splitterSelector){
36546            return Roo.DomQuery.select(this.splitterSelector);
36547         }else{
36548             return null;
36549       }
36550     },
36551
36552     getSplitter : function(index){
36553         return this.getSplitters()[index];
36554     },
36555
36556     onRowOver : function(e, t){
36557         var row;
36558         if((row = this.findRowIndex(t)) !== false){
36559             this.getRowComposite(row).addClass("x-grid-row-over");
36560         }
36561     },
36562
36563     onRowOut : function(e, t){
36564         var row;
36565         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
36566             this.getRowComposite(row).removeClass("x-grid-row-over");
36567         }
36568     },
36569
36570     renderHeaders : function(){
36571         var cm = this.cm;
36572         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
36573         var cb = [], lb = [], sb = [], lsb = [], p = {};
36574         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36575             p.cellId = "x-grid-hd-0-" + i;
36576             p.splitId = "x-grid-csplit-0-" + i;
36577             p.id = cm.getColumnId(i);
36578             p.title = cm.getColumnTooltip(i) || "";
36579             p.value = cm.getColumnHeader(i) || "";
36580             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
36581             if(!cm.isLocked(i)){
36582                 cb[cb.length] = ct.apply(p);
36583                 sb[sb.length] = st.apply(p);
36584             }else{
36585                 lb[lb.length] = ct.apply(p);
36586                 lsb[lsb.length] = st.apply(p);
36587             }
36588         }
36589         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
36590                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
36591     },
36592
36593     updateHeaders : function(){
36594         var html = this.renderHeaders();
36595         this.lockedHd.update(html[0]);
36596         this.mainHd.update(html[1]);
36597     },
36598
36599     /**
36600      * Focuses the specified row.
36601      * @param {Number} row The row index
36602      */
36603     focusRow : function(row)
36604     {
36605         //Roo.log('GridView.focusRow');
36606         var x = this.scroller.dom.scrollLeft;
36607         this.focusCell(row, 0, false);
36608         this.scroller.dom.scrollLeft = x;
36609     },
36610
36611     /**
36612      * Focuses the specified cell.
36613      * @param {Number} row The row index
36614      * @param {Number} col The column index
36615      * @param {Boolean} hscroll false to disable horizontal scrolling
36616      */
36617     focusCell : function(row, col, hscroll)
36618     {
36619         //Roo.log('GridView.focusCell');
36620         var el = this.ensureVisible(row, col, hscroll);
36621         this.focusEl.alignTo(el, "tl-tl");
36622         if(Roo.isGecko){
36623             this.focusEl.focus();
36624         }else{
36625             this.focusEl.focus.defer(1, this.focusEl);
36626         }
36627     },
36628
36629     /**
36630      * Scrolls the specified cell into view
36631      * @param {Number} row The row index
36632      * @param {Number} col The column index
36633      * @param {Boolean} hscroll false to disable horizontal scrolling
36634      */
36635     ensureVisible : function(row, col, hscroll)
36636     {
36637         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
36638         //return null; //disable for testing.
36639         if(typeof row != "number"){
36640             row = row.rowIndex;
36641         }
36642         if(row < 0 && row >= this.ds.getCount()){
36643             return  null;
36644         }
36645         col = (col !== undefined ? col : 0);
36646         var cm = this.grid.colModel;
36647         while(cm.isHidden(col)){
36648             col++;
36649         }
36650
36651         var el = this.getCell(row, col);
36652         if(!el){
36653             return null;
36654         }
36655         var c = this.scroller.dom;
36656
36657         var ctop = parseInt(el.offsetTop, 10);
36658         var cleft = parseInt(el.offsetLeft, 10);
36659         var cbot = ctop + el.offsetHeight;
36660         var cright = cleft + el.offsetWidth;
36661         
36662         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
36663         var stop = parseInt(c.scrollTop, 10);
36664         var sleft = parseInt(c.scrollLeft, 10);
36665         var sbot = stop + ch;
36666         var sright = sleft + c.clientWidth;
36667         /*
36668         Roo.log('GridView.ensureVisible:' +
36669                 ' ctop:' + ctop +
36670                 ' c.clientHeight:' + c.clientHeight +
36671                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
36672                 ' stop:' + stop +
36673                 ' cbot:' + cbot +
36674                 ' sbot:' + sbot +
36675                 ' ch:' + ch  
36676                 );
36677         */
36678         if(ctop < stop){
36679              c.scrollTop = ctop;
36680             //Roo.log("set scrolltop to ctop DISABLE?");
36681         }else if(cbot > sbot){
36682             //Roo.log("set scrolltop to cbot-ch");
36683             c.scrollTop = cbot-ch;
36684         }
36685         
36686         if(hscroll !== false){
36687             if(cleft < sleft){
36688                 c.scrollLeft = cleft;
36689             }else if(cright > sright){
36690                 c.scrollLeft = cright-c.clientWidth;
36691             }
36692         }
36693          
36694         return el;
36695     },
36696
36697     updateColumns : function(){
36698         this.grid.stopEditing();
36699         var cm = this.grid.colModel, colIds = this.getColumnIds();
36700         //var totalWidth = cm.getTotalWidth();
36701         var pos = 0;
36702         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36703             //if(cm.isHidden(i)) continue;
36704             var w = cm.getColumnWidth(i);
36705             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36706             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36707         }
36708         this.updateSplitters();
36709     },
36710
36711     generateRules : function(cm){
36712         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
36713         Roo.util.CSS.removeStyleSheet(rulesId);
36714         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36715             var cid = cm.getColumnId(i);
36716             var align = '';
36717             if(cm.config[i].align){
36718                 align = 'text-align:'+cm.config[i].align+';';
36719             }
36720             var hidden = '';
36721             if(cm.isHidden(i)){
36722                 hidden = 'display:none;';
36723             }
36724             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
36725             ruleBuf.push(
36726                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
36727                     this.hdSelector, cid, " {\n", align, width, "}\n",
36728                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
36729                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
36730         }
36731         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
36732     },
36733
36734     updateSplitters : function(){
36735         var cm = this.cm, s = this.getSplitters();
36736         if(s){ // splitters not created yet
36737             var pos = 0, locked = true;
36738             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36739                 if(cm.isHidden(i)) continue;
36740                 var w = cm.getColumnWidth(i); // make sure it's a number
36741                 if(!cm.isLocked(i) && locked){
36742                     pos = 0;
36743                     locked = false;
36744                 }
36745                 pos += w;
36746                 s[i].style.left = (pos-this.splitOffset) + "px";
36747             }
36748         }
36749     },
36750
36751     handleHiddenChange : function(colModel, colIndex, hidden){
36752         if(hidden){
36753             this.hideColumn(colIndex);
36754         }else{
36755             this.unhideColumn(colIndex);
36756         }
36757     },
36758
36759     hideColumn : function(colIndex){
36760         var cid = this.getColumnId(colIndex);
36761         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
36762         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
36763         if(Roo.isSafari){
36764             this.updateHeaders();
36765         }
36766         this.updateSplitters();
36767         this.layout();
36768     },
36769
36770     unhideColumn : function(colIndex){
36771         var cid = this.getColumnId(colIndex);
36772         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
36773         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
36774
36775         if(Roo.isSafari){
36776             this.updateHeaders();
36777         }
36778         this.updateSplitters();
36779         this.layout();
36780     },
36781
36782     insertRows : function(dm, firstRow, lastRow, isUpdate){
36783         if(firstRow == 0 && lastRow == dm.getCount()-1){
36784             this.refresh();
36785         }else{
36786             if(!isUpdate){
36787                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
36788             }
36789             var s = this.getScrollState();
36790             var markup = this.renderRows(firstRow, lastRow);
36791             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
36792             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
36793             this.restoreScroll(s);
36794             if(!isUpdate){
36795                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
36796                 this.syncRowHeights(firstRow, lastRow);
36797                 this.stripeRows(firstRow);
36798                 this.layout();
36799             }
36800         }
36801     },
36802
36803     bufferRows : function(markup, target, index){
36804         var before = null, trows = target.rows, tbody = target.tBodies[0];
36805         if(index < trows.length){
36806             before = trows[index];
36807         }
36808         var b = document.createElement("div");
36809         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
36810         var rows = b.firstChild.rows;
36811         for(var i = 0, len = rows.length; i < len; i++){
36812             if(before){
36813                 tbody.insertBefore(rows[0], before);
36814             }else{
36815                 tbody.appendChild(rows[0]);
36816             }
36817         }
36818         b.innerHTML = "";
36819         b = null;
36820     },
36821
36822     deleteRows : function(dm, firstRow, lastRow){
36823         if(dm.getRowCount()<1){
36824             this.fireEvent("beforerefresh", this);
36825             this.mainBody.update("");
36826             this.lockedBody.update("");
36827             this.fireEvent("refresh", this);
36828         }else{
36829             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
36830             var bt = this.getBodyTable();
36831             var tbody = bt.firstChild;
36832             var rows = bt.rows;
36833             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
36834                 tbody.removeChild(rows[firstRow]);
36835             }
36836             this.stripeRows(firstRow);
36837             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
36838         }
36839     },
36840
36841     updateRows : function(dataSource, firstRow, lastRow){
36842         var s = this.getScrollState();
36843         this.refresh();
36844         this.restoreScroll(s);
36845     },
36846
36847     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
36848         if(!noRefresh){
36849            this.refresh();
36850         }
36851         this.updateHeaderSortState();
36852     },
36853
36854     getScrollState : function(){
36855         
36856         var sb = this.scroller.dom;
36857         return {left: sb.scrollLeft, top: sb.scrollTop};
36858     },
36859
36860     stripeRows : function(startRow){
36861         if(!this.grid.stripeRows || this.ds.getCount() < 1){
36862             return;
36863         }
36864         startRow = startRow || 0;
36865         var rows = this.getBodyTable().rows;
36866         var lrows = this.getLockedTable().rows;
36867         var cls = ' x-grid-row-alt ';
36868         for(var i = startRow, len = rows.length; i < len; i++){
36869             var row = rows[i], lrow = lrows[i];
36870             var isAlt = ((i+1) % 2 == 0);
36871             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
36872             if(isAlt == hasAlt){
36873                 continue;
36874             }
36875             if(isAlt){
36876                 row.className += " x-grid-row-alt";
36877             }else{
36878                 row.className = row.className.replace("x-grid-row-alt", "");
36879             }
36880             if(lrow){
36881                 lrow.className = row.className;
36882             }
36883         }
36884     },
36885
36886     restoreScroll : function(state){
36887         //Roo.log('GridView.restoreScroll');
36888         var sb = this.scroller.dom;
36889         sb.scrollLeft = state.left;
36890         sb.scrollTop = state.top;
36891         this.syncScroll();
36892     },
36893
36894     syncScroll : function(){
36895         //Roo.log('GridView.syncScroll');
36896         var sb = this.scroller.dom;
36897         var sh = this.mainHd.dom;
36898         var bs = this.mainBody.dom;
36899         var lv = this.lockedBody.dom;
36900         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
36901         lv.scrollTop = bs.scrollTop = sb.scrollTop;
36902     },
36903
36904     handleScroll : function(e){
36905         this.syncScroll();
36906         var sb = this.scroller.dom;
36907         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
36908         e.stopEvent();
36909     },
36910
36911     handleWheel : function(e){
36912         var d = e.getWheelDelta();
36913         this.scroller.dom.scrollTop -= d*22;
36914         // set this here to prevent jumpy scrolling on large tables
36915         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
36916         e.stopEvent();
36917     },
36918
36919     renderRows : function(startRow, endRow){
36920         // pull in all the crap needed to render rows
36921         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
36922         var colCount = cm.getColumnCount();
36923
36924         if(ds.getCount() < 1){
36925             return ["", ""];
36926         }
36927
36928         // build a map for all the columns
36929         var cs = [];
36930         for(var i = 0; i < colCount; i++){
36931             var name = cm.getDataIndex(i);
36932             cs[i] = {
36933                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
36934                 renderer : cm.getRenderer(i),
36935                 id : cm.getColumnId(i),
36936                 locked : cm.isLocked(i)
36937             };
36938         }
36939
36940         startRow = startRow || 0;
36941         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
36942
36943         // records to render
36944         var rs = ds.getRange(startRow, endRow);
36945
36946         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
36947     },
36948
36949     // As much as I hate to duplicate code, this was branched because FireFox really hates
36950     // [].join("") on strings. The performance difference was substantial enough to
36951     // branch this function
36952     doRender : Roo.isGecko ?
36953             function(cs, rs, ds, startRow, colCount, stripe){
36954                 var ts = this.templates, ct = ts.cell, rt = ts.row;
36955                 // buffers
36956                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
36957                 
36958                 var hasListener = this.grid.hasListener('rowclass');
36959                 var rowcfg = {};
36960                 for(var j = 0, len = rs.length; j < len; j++){
36961                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
36962                     for(var i = 0; i < colCount; i++){
36963                         c = cs[i];
36964                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
36965                         p.id = c.id;
36966                         p.css = p.attr = "";
36967                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
36968                         if(p.value == undefined || p.value === "") p.value = "&#160;";
36969                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
36970                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
36971                         }
36972                         var markup = ct.apply(p);
36973                         if(!c.locked){
36974                             cb+= markup;
36975                         }else{
36976                             lcb+= markup;
36977                         }
36978                     }
36979                     var alt = [];
36980                     if(stripe && ((rowIndex+1) % 2 == 0)){
36981                         alt.push("x-grid-row-alt")
36982                     }
36983                     if(r.dirty){
36984                         alt.push(  " x-grid-dirty-row");
36985                     }
36986                     rp.cells = lcb;
36987                     if(this.getRowClass){
36988                         alt.push(this.getRowClass(r, rowIndex));
36989                     }
36990                     if (hasListener) {
36991                         rowcfg = {
36992                              
36993                             record: r,
36994                             rowIndex : rowIndex,
36995                             rowClass : ''
36996                         }
36997                         this.grid.fireEvent('rowclass', this, rowcfg);
36998                         alt.push(rowcfg.rowClass);
36999                     }
37000                     rp.alt = alt.join(" ");
37001                     lbuf+= rt.apply(rp);
37002                     rp.cells = cb;
37003                     buf+=  rt.apply(rp);
37004                 }
37005                 return [lbuf, buf];
37006             } :
37007             function(cs, rs, ds, startRow, colCount, stripe){
37008                 var ts = this.templates, ct = ts.cell, rt = ts.row;
37009                 // buffers
37010                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
37011                 var hasListener = this.grid.hasListener('rowclass');
37012  
37013                 var rowcfg = {};
37014                 for(var j = 0, len = rs.length; j < len; j++){
37015                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
37016                     for(var i = 0; i < colCount; i++){
37017                         c = cs[i];
37018                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
37019                         p.id = c.id;
37020                         p.css = p.attr = "";
37021                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
37022                         if(p.value == undefined || p.value === "") p.value = "&#160;";
37023                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
37024                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
37025                         }
37026                         
37027                         var markup = ct.apply(p);
37028                         if(!c.locked){
37029                             cb[cb.length] = markup;
37030                         }else{
37031                             lcb[lcb.length] = markup;
37032                         }
37033                     }
37034                     var alt = [];
37035                     if(stripe && ((rowIndex+1) % 2 == 0)){
37036                         alt.push( "x-grid-row-alt");
37037                     }
37038                     if(r.dirty){
37039                         alt.push(" x-grid-dirty-row");
37040                     }
37041                     rp.cells = lcb;
37042                     if(this.getRowClass){
37043                         alt.push( this.getRowClass(r, rowIndex));
37044                     }
37045                     if (hasListener) {
37046                         rowcfg = {
37047                              
37048                             record: r,
37049                             rowIndex : rowIndex,
37050                             rowClass : ''
37051                         }
37052                         this.grid.fireEvent('rowclass', this, rowcfg);
37053                         alt.push(rowcfg.rowClass);
37054                     }
37055                     rp.alt = alt.join(" ");
37056                     rp.cells = lcb.join("");
37057                     lbuf[lbuf.length] = rt.apply(rp);
37058                     rp.cells = cb.join("");
37059                     buf[buf.length] =  rt.apply(rp);
37060                 }
37061                 return [lbuf.join(""), buf.join("")];
37062             },
37063
37064     renderBody : function(){
37065         var markup = this.renderRows();
37066         var bt = this.templates.body;
37067         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
37068     },
37069
37070     /**
37071      * Refreshes the grid
37072      * @param {Boolean} headersToo
37073      */
37074     refresh : function(headersToo){
37075         this.fireEvent("beforerefresh", this);
37076         this.grid.stopEditing();
37077         var result = this.renderBody();
37078         this.lockedBody.update(result[0]);
37079         this.mainBody.update(result[1]);
37080         if(headersToo === true){
37081             this.updateHeaders();
37082             this.updateColumns();
37083             this.updateSplitters();
37084             this.updateHeaderSortState();
37085         }
37086         this.syncRowHeights();
37087         this.layout();
37088         this.fireEvent("refresh", this);
37089     },
37090
37091     handleColumnMove : function(cm, oldIndex, newIndex){
37092         this.indexMap = null;
37093         var s = this.getScrollState();
37094         this.refresh(true);
37095         this.restoreScroll(s);
37096         this.afterMove(newIndex);
37097     },
37098
37099     afterMove : function(colIndex){
37100         if(this.enableMoveAnim && Roo.enableFx){
37101             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
37102         }
37103         // if multisort - fix sortOrder, and reload..
37104         if (this.grid.dataSource.multiSort) {
37105             // the we can call sort again..
37106             var dm = this.grid.dataSource;
37107             var cm = this.grid.colModel;
37108             var so = [];
37109             for(var i = 0; i < cm.config.length; i++ ) {
37110                 
37111                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
37112                     continue; // dont' bother, it's not in sort list or being set.
37113                 }
37114                 
37115                 so.push(cm.config[i].dataIndex);
37116             };
37117             dm.sortOrder = so;
37118             dm.load(dm.lastOptions);
37119             
37120             
37121         }
37122         
37123     },
37124
37125     updateCell : function(dm, rowIndex, dataIndex){
37126         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
37127         if(typeof colIndex == "undefined"){ // not present in grid
37128             return;
37129         }
37130         var cm = this.grid.colModel;
37131         var cell = this.getCell(rowIndex, colIndex);
37132         var cellText = this.getCellText(rowIndex, colIndex);
37133
37134         var p = {
37135             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
37136             id : cm.getColumnId(colIndex),
37137             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
37138         };
37139         var renderer = cm.getRenderer(colIndex);
37140         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
37141         if(typeof val == "undefined" || val === "") val = "&#160;";
37142         cellText.innerHTML = val;
37143         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
37144         this.syncRowHeights(rowIndex, rowIndex);
37145     },
37146
37147     calcColumnWidth : function(colIndex, maxRowsToMeasure){
37148         var maxWidth = 0;
37149         if(this.grid.autoSizeHeaders){
37150             var h = this.getHeaderCellMeasure(colIndex);
37151             maxWidth = Math.max(maxWidth, h.scrollWidth);
37152         }
37153         var tb, index;
37154         if(this.cm.isLocked(colIndex)){
37155             tb = this.getLockedTable();
37156             index = colIndex;
37157         }else{
37158             tb = this.getBodyTable();
37159             index = colIndex - this.cm.getLockedCount();
37160         }
37161         if(tb && tb.rows){
37162             var rows = tb.rows;
37163             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
37164             for(var i = 0; i < stopIndex; i++){
37165                 var cell = rows[i].childNodes[index].firstChild;
37166                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
37167             }
37168         }
37169         return maxWidth + /*margin for error in IE*/ 5;
37170     },
37171     /**
37172      * Autofit a column to its content.
37173      * @param {Number} colIndex
37174      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
37175      */
37176      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
37177          if(this.cm.isHidden(colIndex)){
37178              return; // can't calc a hidden column
37179          }
37180         if(forceMinSize){
37181             var cid = this.cm.getColumnId(colIndex);
37182             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
37183            if(this.grid.autoSizeHeaders){
37184                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
37185            }
37186         }
37187         var newWidth = this.calcColumnWidth(colIndex);
37188         this.cm.setColumnWidth(colIndex,
37189             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
37190         if(!suppressEvent){
37191             this.grid.fireEvent("columnresize", colIndex, newWidth);
37192         }
37193     },
37194
37195     /**
37196      * Autofits all columns to their content and then expands to fit any extra space in the grid
37197      */
37198      autoSizeColumns : function(){
37199         var cm = this.grid.colModel;
37200         var colCount = cm.getColumnCount();
37201         for(var i = 0; i < colCount; i++){
37202             this.autoSizeColumn(i, true, true);
37203         }
37204         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
37205             this.fitColumns();
37206         }else{
37207             this.updateColumns();
37208             this.layout();
37209         }
37210     },
37211
37212     /**
37213      * Autofits all columns to the grid's width proportionate with their current size
37214      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
37215      */
37216     fitColumns : function(reserveScrollSpace){
37217         var cm = this.grid.colModel;
37218         var colCount = cm.getColumnCount();
37219         var cols = [];
37220         var width = 0;
37221         var i, w;
37222         for (i = 0; i < colCount; i++){
37223             if(!cm.isHidden(i) && !cm.isFixed(i)){
37224                 w = cm.getColumnWidth(i);
37225                 cols.push(i);
37226                 cols.push(w);
37227                 width += w;
37228             }
37229         }
37230         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
37231         if(reserveScrollSpace){
37232             avail -= 17;
37233         }
37234         var frac = (avail - cm.getTotalWidth())/width;
37235         while (cols.length){
37236             w = cols.pop();
37237             i = cols.pop();
37238             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
37239         }
37240         this.updateColumns();
37241         this.layout();
37242     },
37243
37244     onRowSelect : function(rowIndex){
37245         var row = this.getRowComposite(rowIndex);
37246         row.addClass("x-grid-row-selected");
37247     },
37248
37249     onRowDeselect : function(rowIndex){
37250         var row = this.getRowComposite(rowIndex);
37251         row.removeClass("x-grid-row-selected");
37252     },
37253
37254     onCellSelect : function(row, col){
37255         var cell = this.getCell(row, col);
37256         if(cell){
37257             Roo.fly(cell).addClass("x-grid-cell-selected");
37258         }
37259     },
37260
37261     onCellDeselect : function(row, col){
37262         var cell = this.getCell(row, col);
37263         if(cell){
37264             Roo.fly(cell).removeClass("x-grid-cell-selected");
37265         }
37266     },
37267
37268     updateHeaderSortState : function(){
37269         
37270         // sort state can be single { field: xxx, direction : yyy}
37271         // or   { xxx=>ASC , yyy : DESC ..... }
37272         
37273         var mstate = {};
37274         if (!this.ds.multiSort) { 
37275             var state = this.ds.getSortState();
37276             if(!state){
37277                 return;
37278             }
37279             mstate[state.field] = state.direction;
37280             // FIXME... - this is not used here.. but might be elsewhere..
37281             this.sortState = state;
37282             
37283         } else {
37284             mstate = this.ds.sortToggle;
37285         }
37286         //remove existing sort classes..
37287         
37288         var sc = this.sortClasses;
37289         var hds = this.el.select(this.headerSelector).removeClass(sc);
37290         
37291         for(var f in mstate) {
37292         
37293             var sortColumn = this.cm.findColumnIndex(f);
37294             
37295             if(sortColumn != -1){
37296                 var sortDir = mstate[f];        
37297                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
37298             }
37299         }
37300         
37301          
37302         
37303     },
37304
37305
37306     handleHeaderClick : function(g, index,e){
37307         
37308         Roo.log("header click");
37309         
37310         if (Roo.isTouch) {
37311             // touch events on header are handled by context
37312             this.handleHdCtx(g,index,e);
37313             return;
37314         }
37315         
37316         
37317         if(this.headersDisabled){
37318             return;
37319         }
37320         var dm = g.dataSource, cm = g.colModel;
37321         if(!cm.isSortable(index)){
37322             return;
37323         }
37324         g.stopEditing();
37325         
37326         if (dm.multiSort) {
37327             // update the sortOrder
37328             var so = [];
37329             for(var i = 0; i < cm.config.length; i++ ) {
37330                 
37331                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
37332                     continue; // dont' bother, it's not in sort list or being set.
37333                 }
37334                 
37335                 so.push(cm.config[i].dataIndex);
37336             };
37337             dm.sortOrder = so;
37338         }
37339         
37340         
37341         dm.sort(cm.getDataIndex(index));
37342     },
37343
37344
37345     destroy : function(){
37346         if(this.colMenu){
37347             this.colMenu.removeAll();
37348             Roo.menu.MenuMgr.unregister(this.colMenu);
37349             this.colMenu.getEl().remove();
37350             delete this.colMenu;
37351         }
37352         if(this.hmenu){
37353             this.hmenu.removeAll();
37354             Roo.menu.MenuMgr.unregister(this.hmenu);
37355             this.hmenu.getEl().remove();
37356             delete this.hmenu;
37357         }
37358         if(this.grid.enableColumnMove){
37359             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37360             if(dds){
37361                 for(var dd in dds){
37362                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
37363                         var elid = dds[dd].dragElId;
37364                         dds[dd].unreg();
37365                         Roo.get(elid).remove();
37366                     } else if(dds[dd].config.isTarget){
37367                         dds[dd].proxyTop.remove();
37368                         dds[dd].proxyBottom.remove();
37369                         dds[dd].unreg();
37370                     }
37371                     if(Roo.dd.DDM.locationCache[dd]){
37372                         delete Roo.dd.DDM.locationCache[dd];
37373                     }
37374                 }
37375                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37376             }
37377         }
37378         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
37379         this.bind(null, null);
37380         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
37381     },
37382
37383     handleLockChange : function(){
37384         this.refresh(true);
37385     },
37386
37387     onDenyColumnLock : function(){
37388
37389     },
37390
37391     onDenyColumnHide : function(){
37392
37393     },
37394
37395     handleHdMenuClick : function(item){
37396         var index = this.hdCtxIndex;
37397         var cm = this.cm, ds = this.ds;
37398         switch(item.id){
37399             case "asc":
37400                 ds.sort(cm.getDataIndex(index), "ASC");
37401                 break;
37402             case "desc":
37403                 ds.sort(cm.getDataIndex(index), "DESC");
37404                 break;
37405             case "lock":
37406                 var lc = cm.getLockedCount();
37407                 if(cm.getColumnCount(true) <= lc+1){
37408                     this.onDenyColumnLock();
37409                     return;
37410                 }
37411                 if(lc != index){
37412                     cm.setLocked(index, true, true);
37413                     cm.moveColumn(index, lc);
37414                     this.grid.fireEvent("columnmove", index, lc);
37415                 }else{
37416                     cm.setLocked(index, true);
37417                 }
37418             break;
37419             case "unlock":
37420                 var lc = cm.getLockedCount();
37421                 if((lc-1) != index){
37422                     cm.setLocked(index, false, true);
37423                     cm.moveColumn(index, lc-1);
37424                     this.grid.fireEvent("columnmove", index, lc-1);
37425                 }else{
37426                     cm.setLocked(index, false);
37427                 }
37428             break;
37429             case 'wider': // used to expand cols on touch..
37430             case 'narrow':
37431                 var cw = cm.getColumnWidth(index);
37432                 cw += (item.id == 'wider' ? 1 : -1) * 50;
37433                 cw = Math.max(0, cw);
37434                 cw = Math.min(cw,4000);
37435                 cm.setColumnWidth(index, cw);
37436                 break;
37437                 
37438             default:
37439                 index = cm.getIndexById(item.id.substr(4));
37440                 if(index != -1){
37441                     if(item.checked && cm.getColumnCount(true) <= 1){
37442                         this.onDenyColumnHide();
37443                         return false;
37444                     }
37445                     cm.setHidden(index, item.checked);
37446                 }
37447         }
37448         return true;
37449     },
37450
37451     beforeColMenuShow : function(){
37452         var cm = this.cm,  colCount = cm.getColumnCount();
37453         this.colMenu.removeAll();
37454         for(var i = 0; i < colCount; i++){
37455             this.colMenu.add(new Roo.menu.CheckItem({
37456                 id: "col-"+cm.getColumnId(i),
37457                 text: cm.getColumnHeader(i),
37458                 checked: !cm.isHidden(i),
37459                 hideOnClick:false
37460             }));
37461         }
37462     },
37463
37464     handleHdCtx : function(g, index, e){
37465         e.stopEvent();
37466         var hd = this.getHeaderCell(index);
37467         this.hdCtxIndex = index;
37468         var ms = this.hmenu.items, cm = this.cm;
37469         ms.get("asc").setDisabled(!cm.isSortable(index));
37470         ms.get("desc").setDisabled(!cm.isSortable(index));
37471         if(this.grid.enableColLock !== false){
37472             ms.get("lock").setDisabled(cm.isLocked(index));
37473             ms.get("unlock").setDisabled(!cm.isLocked(index));
37474         }
37475         this.hmenu.show(hd, "tl-bl");
37476     },
37477
37478     handleHdOver : function(e){
37479         var hd = this.findHeaderCell(e.getTarget());
37480         if(hd && !this.headersDisabled){
37481             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
37482                this.fly(hd).addClass("x-grid-hd-over");
37483             }
37484         }
37485     },
37486
37487     handleHdOut : function(e){
37488         var hd = this.findHeaderCell(e.getTarget());
37489         if(hd){
37490             this.fly(hd).removeClass("x-grid-hd-over");
37491         }
37492     },
37493
37494     handleSplitDblClick : function(e, t){
37495         var i = this.getCellIndex(t);
37496         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
37497             this.autoSizeColumn(i, true);
37498             this.layout();
37499         }
37500     },
37501
37502     render : function(){
37503
37504         var cm = this.cm;
37505         var colCount = cm.getColumnCount();
37506
37507         if(this.grid.monitorWindowResize === true){
37508             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
37509         }
37510         var header = this.renderHeaders();
37511         var body = this.templates.body.apply({rows:""});
37512         var html = this.templates.master.apply({
37513             lockedBody: body,
37514             body: body,
37515             lockedHeader: header[0],
37516             header: header[1]
37517         });
37518
37519         //this.updateColumns();
37520
37521         this.grid.getGridEl().dom.innerHTML = html;
37522
37523         this.initElements();
37524         
37525         // a kludge to fix the random scolling effect in webkit
37526         this.el.on("scroll", function() {
37527             this.el.dom.scrollTop=0; // hopefully not recursive..
37528         },this);
37529
37530         this.scroller.on("scroll", this.handleScroll, this);
37531         this.lockedBody.on("mousewheel", this.handleWheel, this);
37532         this.mainBody.on("mousewheel", this.handleWheel, this);
37533
37534         this.mainHd.on("mouseover", this.handleHdOver, this);
37535         this.mainHd.on("mouseout", this.handleHdOut, this);
37536         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
37537                 {delegate: "."+this.splitClass});
37538
37539         this.lockedHd.on("mouseover", this.handleHdOver, this);
37540         this.lockedHd.on("mouseout", this.handleHdOut, this);
37541         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
37542                 {delegate: "."+this.splitClass});
37543
37544         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
37545             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37546         }
37547
37548         this.updateSplitters();
37549
37550         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
37551             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37552             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37553         }
37554
37555         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
37556             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
37557             this.hmenu.add(
37558                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
37559                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
37560             );
37561             if(this.grid.enableColLock !== false){
37562                 this.hmenu.add('-',
37563                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
37564                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
37565                 );
37566             }
37567             if (Roo.isTouch) {
37568                  this.hmenu.add('-',
37569                     {id:"wider", text: this.columnsWiderText},
37570                     {id:"narrow", text: this.columnsNarrowText }
37571                 );
37572                 
37573                  
37574             }
37575             
37576             if(this.grid.enableColumnHide !== false){
37577
37578                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
37579                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
37580                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
37581
37582                 this.hmenu.add('-',
37583                     {id:"columns", text: this.columnsText, menu: this.colMenu}
37584                 );
37585             }
37586             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
37587
37588             this.grid.on("headercontextmenu", this.handleHdCtx, this);
37589         }
37590
37591         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
37592             this.dd = new Roo.grid.GridDragZone(this.grid, {
37593                 ddGroup : this.grid.ddGroup || 'GridDD'
37594             });
37595             
37596         }
37597
37598         /*
37599         for(var i = 0; i < colCount; i++){
37600             if(cm.isHidden(i)){
37601                 this.hideColumn(i);
37602             }
37603             if(cm.config[i].align){
37604                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
37605                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
37606             }
37607         }*/
37608         
37609         this.updateHeaderSortState();
37610
37611         this.beforeInitialResize();
37612         this.layout(true);
37613
37614         // two part rendering gives faster view to the user
37615         this.renderPhase2.defer(1, this);
37616     },
37617
37618     renderPhase2 : function(){
37619         // render the rows now
37620         this.refresh();
37621         if(this.grid.autoSizeColumns){
37622             this.autoSizeColumns();
37623         }
37624     },
37625
37626     beforeInitialResize : function(){
37627
37628     },
37629
37630     onColumnSplitterMoved : function(i, w){
37631         this.userResized = true;
37632         var cm = this.grid.colModel;
37633         cm.setColumnWidth(i, w, true);
37634         var cid = cm.getColumnId(i);
37635         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37636         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37637         this.updateSplitters();
37638         this.layout();
37639         this.grid.fireEvent("columnresize", i, w);
37640     },
37641
37642     syncRowHeights : function(startIndex, endIndex){
37643         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
37644             startIndex = startIndex || 0;
37645             var mrows = this.getBodyTable().rows;
37646             var lrows = this.getLockedTable().rows;
37647             var len = mrows.length-1;
37648             endIndex = Math.min(endIndex || len, len);
37649             for(var i = startIndex; i <= endIndex; i++){
37650                 var m = mrows[i], l = lrows[i];
37651                 var h = Math.max(m.offsetHeight, l.offsetHeight);
37652                 m.style.height = l.style.height = h + "px";
37653             }
37654         }
37655     },
37656
37657     layout : function(initialRender, is2ndPass){
37658         var g = this.grid;
37659         var auto = g.autoHeight;
37660         var scrollOffset = 16;
37661         var c = g.getGridEl(), cm = this.cm,
37662                 expandCol = g.autoExpandColumn,
37663                 gv = this;
37664         //c.beginMeasure();
37665
37666         if(!c.dom.offsetWidth){ // display:none?
37667             if(initialRender){
37668                 this.lockedWrap.show();
37669                 this.mainWrap.show();
37670             }
37671             return;
37672         }
37673
37674         var hasLock = this.cm.isLocked(0);
37675
37676         var tbh = this.headerPanel.getHeight();
37677         var bbh = this.footerPanel.getHeight();
37678
37679         if(auto){
37680             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
37681             var newHeight = ch + c.getBorderWidth("tb");
37682             if(g.maxHeight){
37683                 newHeight = Math.min(g.maxHeight, newHeight);
37684             }
37685             c.setHeight(newHeight);
37686         }
37687
37688         if(g.autoWidth){
37689             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
37690         }
37691
37692         var s = this.scroller;
37693
37694         var csize = c.getSize(true);
37695
37696         this.el.setSize(csize.width, csize.height);
37697
37698         this.headerPanel.setWidth(csize.width);
37699         this.footerPanel.setWidth(csize.width);
37700
37701         var hdHeight = this.mainHd.getHeight();
37702         var vw = csize.width;
37703         var vh = csize.height - (tbh + bbh);
37704
37705         s.setSize(vw, vh);
37706
37707         var bt = this.getBodyTable();
37708         var ltWidth = hasLock ?
37709                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
37710
37711         var scrollHeight = bt.offsetHeight;
37712         var scrollWidth = ltWidth + bt.offsetWidth;
37713         var vscroll = false, hscroll = false;
37714
37715         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
37716
37717         var lw = this.lockedWrap, mw = this.mainWrap;
37718         var lb = this.lockedBody, mb = this.mainBody;
37719
37720         setTimeout(function(){
37721             var t = s.dom.offsetTop;
37722             var w = s.dom.clientWidth,
37723                 h = s.dom.clientHeight;
37724
37725             lw.setTop(t);
37726             lw.setSize(ltWidth, h);
37727
37728             mw.setLeftTop(ltWidth, t);
37729             mw.setSize(w-ltWidth, h);
37730
37731             lb.setHeight(h-hdHeight);
37732             mb.setHeight(h-hdHeight);
37733
37734             if(is2ndPass !== true && !gv.userResized && expandCol){
37735                 // high speed resize without full column calculation
37736                 
37737                 var ci = cm.getIndexById(expandCol);
37738                 if (ci < 0) {
37739                     ci = cm.findColumnIndex(expandCol);
37740                 }
37741                 ci = Math.max(0, ci); // make sure it's got at least the first col.
37742                 var expandId = cm.getColumnId(ci);
37743                 var  tw = cm.getTotalWidth(false);
37744                 var currentWidth = cm.getColumnWidth(ci);
37745                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
37746                 if(currentWidth != cw){
37747                     cm.setColumnWidth(ci, cw, true);
37748                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
37749                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
37750                     gv.updateSplitters();
37751                     gv.layout(false, true);
37752                 }
37753             }
37754
37755             if(initialRender){
37756                 lw.show();
37757                 mw.show();
37758             }
37759             //c.endMeasure();
37760         }, 10);
37761     },
37762
37763     onWindowResize : function(){
37764         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
37765             return;
37766         }
37767         this.layout();
37768     },
37769
37770     appendFooter : function(parentEl){
37771         return null;
37772     },
37773
37774     sortAscText : "Sort Ascending",
37775     sortDescText : "Sort Descending",
37776     lockText : "Lock Column",
37777     unlockText : "Unlock Column",
37778     columnsText : "Columns",
37779  
37780     columnsWiderText : "Wider",
37781     columnsNarrowText : "Thinner"
37782 });
37783
37784
37785 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
37786     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
37787     this.proxy.el.addClass('x-grid3-col-dd');
37788 };
37789
37790 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
37791     handleMouseDown : function(e){
37792
37793     },
37794
37795     callHandleMouseDown : function(e){
37796         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
37797     }
37798 });
37799 /*
37800  * Based on:
37801  * Ext JS Library 1.1.1
37802  * Copyright(c) 2006-2007, Ext JS, LLC.
37803  *
37804  * Originally Released Under LGPL - original licence link has changed is not relivant.
37805  *
37806  * Fork - LGPL
37807  * <script type="text/javascript">
37808  */
37809  
37810 // private
37811 // This is a support class used internally by the Grid components
37812 Roo.grid.SplitDragZone = function(grid, hd, hd2){
37813     this.grid = grid;
37814     this.view = grid.getView();
37815     this.proxy = this.view.resizeProxy;
37816     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
37817         "gridSplitters" + this.grid.getGridEl().id, {
37818         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
37819     });
37820     this.setHandleElId(Roo.id(hd));
37821     this.setOuterHandleElId(Roo.id(hd2));
37822     this.scroll = false;
37823 };
37824 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
37825     fly: Roo.Element.fly,
37826
37827     b4StartDrag : function(x, y){
37828         this.view.headersDisabled = true;
37829         this.proxy.setHeight(this.view.mainWrap.getHeight());
37830         var w = this.cm.getColumnWidth(this.cellIndex);
37831         var minw = Math.max(w-this.grid.minColumnWidth, 0);
37832         this.resetConstraints();
37833         this.setXConstraint(minw, 1000);
37834         this.setYConstraint(0, 0);
37835         this.minX = x - minw;
37836         this.maxX = x + 1000;
37837         this.startPos = x;
37838         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
37839     },
37840
37841
37842     handleMouseDown : function(e){
37843         ev = Roo.EventObject.setEvent(e);
37844         var t = this.fly(ev.getTarget());
37845         if(t.hasClass("x-grid-split")){
37846             this.cellIndex = this.view.getCellIndex(t.dom);
37847             this.split = t.dom;
37848             this.cm = this.grid.colModel;
37849             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
37850                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
37851             }
37852         }
37853     },
37854
37855     endDrag : function(e){
37856         this.view.headersDisabled = false;
37857         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
37858         var diff = endX - this.startPos;
37859         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
37860     },
37861
37862     autoOffset : function(){
37863         this.setDelta(0,0);
37864     }
37865 });/*
37866  * Based on:
37867  * Ext JS Library 1.1.1
37868  * Copyright(c) 2006-2007, Ext JS, LLC.
37869  *
37870  * Originally Released Under LGPL - original licence link has changed is not relivant.
37871  *
37872  * Fork - LGPL
37873  * <script type="text/javascript">
37874  */
37875  
37876 // private
37877 // This is a support class used internally by the Grid components
37878 Roo.grid.GridDragZone = function(grid, config){
37879     this.view = grid.getView();
37880     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
37881     if(this.view.lockedBody){
37882         this.setHandleElId(Roo.id(this.view.mainBody.dom));
37883         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
37884     }
37885     this.scroll = false;
37886     this.grid = grid;
37887     this.ddel = document.createElement('div');
37888     this.ddel.className = 'x-grid-dd-wrap';
37889 };
37890
37891 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
37892     ddGroup : "GridDD",
37893
37894     getDragData : function(e){
37895         var t = Roo.lib.Event.getTarget(e);
37896         var rowIndex = this.view.findRowIndex(t);
37897         var sm = this.grid.selModel;
37898             
37899         //Roo.log(rowIndex);
37900         
37901         if (sm.getSelectedCell) {
37902             // cell selection..
37903             if (!sm.getSelectedCell()) {
37904                 return false;
37905             }
37906             if (rowIndex != sm.getSelectedCell()[0]) {
37907                 return false;
37908             }
37909         
37910         }
37911         
37912         if(rowIndex !== false){
37913             
37914             // if editorgrid.. 
37915             
37916             
37917             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
37918                
37919             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
37920               //  
37921             //}
37922             if (e.hasModifier()){
37923                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
37924             }
37925             
37926             Roo.log("getDragData");
37927             
37928             return {
37929                 grid: this.grid,
37930                 ddel: this.ddel,
37931                 rowIndex: rowIndex,
37932                 selections:sm.getSelections ? sm.getSelections() : (
37933                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
37934                 )
37935             };
37936         }
37937         return false;
37938     },
37939
37940     onInitDrag : function(e){
37941         var data = this.dragData;
37942         this.ddel.innerHTML = this.grid.getDragDropText();
37943         this.proxy.update(this.ddel);
37944         // fire start drag?
37945     },
37946
37947     afterRepair : function(){
37948         this.dragging = false;
37949     },
37950
37951     getRepairXY : function(e, data){
37952         return false;
37953     },
37954
37955     onEndDrag : function(data, e){
37956         // fire end drag?
37957     },
37958
37959     onValidDrop : function(dd, e, id){
37960         // fire drag drop?
37961         this.hideProxy();
37962     },
37963
37964     beforeInvalidDrop : function(e, id){
37965
37966     }
37967 });/*
37968  * Based on:
37969  * Ext JS Library 1.1.1
37970  * Copyright(c) 2006-2007, Ext JS, LLC.
37971  *
37972  * Originally Released Under LGPL - original licence link has changed is not relivant.
37973  *
37974  * Fork - LGPL
37975  * <script type="text/javascript">
37976  */
37977  
37978
37979 /**
37980  * @class Roo.grid.ColumnModel
37981  * @extends Roo.util.Observable
37982  * This is the default implementation of a ColumnModel used by the Grid. It defines
37983  * the columns in the grid.
37984  * <br>Usage:<br>
37985  <pre><code>
37986  var colModel = new Roo.grid.ColumnModel([
37987         {header: "Ticker", width: 60, sortable: true, locked: true},
37988         {header: "Company Name", width: 150, sortable: true},
37989         {header: "Market Cap.", width: 100, sortable: true},
37990         {header: "$ Sales", width: 100, sortable: true, renderer: money},
37991         {header: "Employees", width: 100, sortable: true, resizable: false}
37992  ]);
37993  </code></pre>
37994  * <p>
37995  
37996  * The config options listed for this class are options which may appear in each
37997  * individual column definition.
37998  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
37999  * @constructor
38000  * @param {Object} config An Array of column config objects. See this class's
38001  * config objects for details.
38002 */
38003 Roo.grid.ColumnModel = function(config){
38004         /**
38005      * The config passed into the constructor
38006      */
38007     this.config = config;
38008     this.lookup = {};
38009
38010     // if no id, create one
38011     // if the column does not have a dataIndex mapping,
38012     // map it to the order it is in the config
38013     for(var i = 0, len = config.length; i < len; i++){
38014         var c = config[i];
38015         if(typeof c.dataIndex == "undefined"){
38016             c.dataIndex = i;
38017         }
38018         if(typeof c.renderer == "string"){
38019             c.renderer = Roo.util.Format[c.renderer];
38020         }
38021         if(typeof c.id == "undefined"){
38022             c.id = Roo.id();
38023         }
38024         if(c.editor && c.editor.xtype){
38025             c.editor  = Roo.factory(c.editor, Roo.grid);
38026         }
38027         if(c.editor && c.editor.isFormField){
38028             c.editor = new Roo.grid.GridEditor(c.editor);
38029         }
38030         this.lookup[c.id] = c;
38031     }
38032
38033     /**
38034      * The width of columns which have no width specified (defaults to 100)
38035      * @type Number
38036      */
38037     this.defaultWidth = 100;
38038
38039     /**
38040      * Default sortable of columns which have no sortable specified (defaults to false)
38041      * @type Boolean
38042      */
38043     this.defaultSortable = false;
38044
38045     this.addEvents({
38046         /**
38047              * @event widthchange
38048              * Fires when the width of a column changes.
38049              * @param {ColumnModel} this
38050              * @param {Number} columnIndex The column index
38051              * @param {Number} newWidth The new width
38052              */
38053             "widthchange": true,
38054         /**
38055              * @event headerchange
38056              * Fires when the text of a header changes.
38057              * @param {ColumnModel} this
38058              * @param {Number} columnIndex The column index
38059              * @param {Number} newText The new header text
38060              */
38061             "headerchange": true,
38062         /**
38063              * @event hiddenchange
38064              * Fires when a column is hidden or "unhidden".
38065              * @param {ColumnModel} this
38066              * @param {Number} columnIndex The column index
38067              * @param {Boolean} hidden true if hidden, false otherwise
38068              */
38069             "hiddenchange": true,
38070             /**
38071          * @event columnmoved
38072          * Fires when a column is moved.
38073          * @param {ColumnModel} this
38074          * @param {Number} oldIndex
38075          * @param {Number} newIndex
38076          */
38077         "columnmoved" : true,
38078         /**
38079          * @event columlockchange
38080          * Fires when a column's locked state is changed
38081          * @param {ColumnModel} this
38082          * @param {Number} colIndex
38083          * @param {Boolean} locked true if locked
38084          */
38085         "columnlockchange" : true
38086     });
38087     Roo.grid.ColumnModel.superclass.constructor.call(this);
38088 };
38089 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
38090     /**
38091      * @cfg {String} header The header text to display in the Grid view.
38092      */
38093     /**
38094      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
38095      * {@link Roo.data.Record} definition from which to draw the column's value. If not
38096      * specified, the column's index is used as an index into the Record's data Array.
38097      */
38098     /**
38099      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
38100      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
38101      */
38102     /**
38103      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
38104      * Defaults to the value of the {@link #defaultSortable} property.
38105      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
38106      */
38107     /**
38108      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
38109      */
38110     /**
38111      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
38112      */
38113     /**
38114      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
38115      */
38116     /**
38117      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
38118      */
38119     /**
38120      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
38121      * given the cell's data value. See {@link #setRenderer}. If not specified, the
38122      * default renderer uses the raw data value.
38123      */
38124        /**
38125      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
38126      */
38127     /**
38128      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
38129      */
38130
38131     /**
38132      * Returns the id of the column at the specified index.
38133      * @param {Number} index The column index
38134      * @return {String} the id
38135      */
38136     getColumnId : function(index){
38137         return this.config[index].id;
38138     },
38139
38140     /**
38141      * Returns the column for a specified id.
38142      * @param {String} id The column id
38143      * @return {Object} the column
38144      */
38145     getColumnById : function(id){
38146         return this.lookup[id];
38147     },
38148
38149     
38150     /**
38151      * Returns the column for a specified dataIndex.
38152      * @param {String} dataIndex The column dataIndex
38153      * @return {Object|Boolean} the column or false if not found
38154      */
38155     getColumnByDataIndex: function(dataIndex){
38156         var index = this.findColumnIndex(dataIndex);
38157         return index > -1 ? this.config[index] : false;
38158     },
38159     
38160     /**
38161      * Returns the index for a specified column id.
38162      * @param {String} id The column id
38163      * @return {Number} the index, or -1 if not found
38164      */
38165     getIndexById : function(id){
38166         for(var i = 0, len = this.config.length; i < len; i++){
38167             if(this.config[i].id == id){
38168                 return i;
38169             }
38170         }
38171         return -1;
38172     },
38173     
38174     /**
38175      * Returns the index for a specified column dataIndex.
38176      * @param {String} dataIndex The column dataIndex
38177      * @return {Number} the index, or -1 if not found
38178      */
38179     
38180     findColumnIndex : function(dataIndex){
38181         for(var i = 0, len = this.config.length; i < len; i++){
38182             if(this.config[i].dataIndex == dataIndex){
38183                 return i;
38184             }
38185         }
38186         return -1;
38187     },
38188     
38189     
38190     moveColumn : function(oldIndex, newIndex){
38191         var c = this.config[oldIndex];
38192         this.config.splice(oldIndex, 1);
38193         this.config.splice(newIndex, 0, c);
38194         this.dataMap = null;
38195         this.fireEvent("columnmoved", this, oldIndex, newIndex);
38196     },
38197
38198     isLocked : function(colIndex){
38199         return this.config[colIndex].locked === true;
38200     },
38201
38202     setLocked : function(colIndex, value, suppressEvent){
38203         if(this.isLocked(colIndex) == value){
38204             return;
38205         }
38206         this.config[colIndex].locked = value;
38207         if(!suppressEvent){
38208             this.fireEvent("columnlockchange", this, colIndex, value);
38209         }
38210     },
38211
38212     getTotalLockedWidth : function(){
38213         var totalWidth = 0;
38214         for(var i = 0; i < this.config.length; i++){
38215             if(this.isLocked(i) && !this.isHidden(i)){
38216                 this.totalWidth += this.getColumnWidth(i);
38217             }
38218         }
38219         return totalWidth;
38220     },
38221
38222     getLockedCount : function(){
38223         for(var i = 0, len = this.config.length; i < len; i++){
38224             if(!this.isLocked(i)){
38225                 return i;
38226             }
38227         }
38228     },
38229
38230     /**
38231      * Returns the number of columns.
38232      * @return {Number}
38233      */
38234     getColumnCount : function(visibleOnly){
38235         if(visibleOnly === true){
38236             var c = 0;
38237             for(var i = 0, len = this.config.length; i < len; i++){
38238                 if(!this.isHidden(i)){
38239                     c++;
38240                 }
38241             }
38242             return c;
38243         }
38244         return this.config.length;
38245     },
38246
38247     /**
38248      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
38249      * @param {Function} fn
38250      * @param {Object} scope (optional)
38251      * @return {Array} result
38252      */
38253     getColumnsBy : function(fn, scope){
38254         var r = [];
38255         for(var i = 0, len = this.config.length; i < len; i++){
38256             var c = this.config[i];
38257             if(fn.call(scope||this, c, i) === true){
38258                 r[r.length] = c;
38259             }
38260         }
38261         return r;
38262     },
38263
38264     /**
38265      * Returns true if the specified column is sortable.
38266      * @param {Number} col The column index
38267      * @return {Boolean}
38268      */
38269     isSortable : function(col){
38270         if(typeof this.config[col].sortable == "undefined"){
38271             return this.defaultSortable;
38272         }
38273         return this.config[col].sortable;
38274     },
38275
38276     /**
38277      * Returns the rendering (formatting) function defined for the column.
38278      * @param {Number} col The column index.
38279      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
38280      */
38281     getRenderer : function(col){
38282         if(!this.config[col].renderer){
38283             return Roo.grid.ColumnModel.defaultRenderer;
38284         }
38285         return this.config[col].renderer;
38286     },
38287
38288     /**
38289      * Sets the rendering (formatting) function for a column.
38290      * @param {Number} col The column index
38291      * @param {Function} fn The function to use to process the cell's raw data
38292      * to return HTML markup for the grid view. The render function is called with
38293      * the following parameters:<ul>
38294      * <li>Data value.</li>
38295      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
38296      * <li>css A CSS style string to apply to the table cell.</li>
38297      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
38298      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
38299      * <li>Row index</li>
38300      * <li>Column index</li>
38301      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
38302      */
38303     setRenderer : function(col, fn){
38304         this.config[col].renderer = fn;
38305     },
38306
38307     /**
38308      * Returns the width for the specified column.
38309      * @param {Number} col The column index
38310      * @return {Number}
38311      */
38312     getColumnWidth : function(col){
38313         return this.config[col].width * 1 || this.defaultWidth;
38314     },
38315
38316     /**
38317      * Sets the width for a column.
38318      * @param {Number} col The column index
38319      * @param {Number} width The new width
38320      */
38321     setColumnWidth : function(col, width, suppressEvent){
38322         this.config[col].width = width;
38323         this.totalWidth = null;
38324         if(!suppressEvent){
38325              this.fireEvent("widthchange", this, col, width);
38326         }
38327     },
38328
38329     /**
38330      * Returns the total width of all columns.
38331      * @param {Boolean} includeHidden True to include hidden column widths
38332      * @return {Number}
38333      */
38334     getTotalWidth : function(includeHidden){
38335         if(!this.totalWidth){
38336             this.totalWidth = 0;
38337             for(var i = 0, len = this.config.length; i < len; i++){
38338                 if(includeHidden || !this.isHidden(i)){
38339                     this.totalWidth += this.getColumnWidth(i);
38340                 }
38341             }
38342         }
38343         return this.totalWidth;
38344     },
38345
38346     /**
38347      * Returns the header for the specified column.
38348      * @param {Number} col The column index
38349      * @return {String}
38350      */
38351     getColumnHeader : function(col){
38352         return this.config[col].header;
38353     },
38354
38355     /**
38356      * Sets the header for a column.
38357      * @param {Number} col The column index
38358      * @param {String} header The new header
38359      */
38360     setColumnHeader : function(col, header){
38361         this.config[col].header = header;
38362         this.fireEvent("headerchange", this, col, header);
38363     },
38364
38365     /**
38366      * Returns the tooltip for the specified column.
38367      * @param {Number} col The column index
38368      * @return {String}
38369      */
38370     getColumnTooltip : function(col){
38371             return this.config[col].tooltip;
38372     },
38373     /**
38374      * Sets the tooltip for a column.
38375      * @param {Number} col The column index
38376      * @param {String} tooltip The new tooltip
38377      */
38378     setColumnTooltip : function(col, tooltip){
38379             this.config[col].tooltip = tooltip;
38380     },
38381
38382     /**
38383      * Returns the dataIndex for the specified column.
38384      * @param {Number} col The column index
38385      * @return {Number}
38386      */
38387     getDataIndex : function(col){
38388         return this.config[col].dataIndex;
38389     },
38390
38391     /**
38392      * Sets the dataIndex for a column.
38393      * @param {Number} col The column index
38394      * @param {Number} dataIndex The new dataIndex
38395      */
38396     setDataIndex : function(col, dataIndex){
38397         this.config[col].dataIndex = dataIndex;
38398     },
38399
38400     
38401     
38402     /**
38403      * Returns true if the cell is editable.
38404      * @param {Number} colIndex The column index
38405      * @param {Number} rowIndex The row index
38406      * @return {Boolean}
38407      */
38408     isCellEditable : function(colIndex, rowIndex){
38409         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
38410     },
38411
38412     /**
38413      * Returns the editor defined for the cell/column.
38414      * return false or null to disable editing.
38415      * @param {Number} colIndex The column index
38416      * @param {Number} rowIndex The row index
38417      * @return {Object}
38418      */
38419     getCellEditor : function(colIndex, rowIndex){
38420         return this.config[colIndex].editor;
38421     },
38422
38423     /**
38424      * Sets if a column is editable.
38425      * @param {Number} col The column index
38426      * @param {Boolean} editable True if the column is editable
38427      */
38428     setEditable : function(col, editable){
38429         this.config[col].editable = editable;
38430     },
38431
38432
38433     /**
38434      * Returns true if the column is hidden.
38435      * @param {Number} colIndex The column index
38436      * @return {Boolean}
38437      */
38438     isHidden : function(colIndex){
38439         return this.config[colIndex].hidden;
38440     },
38441
38442
38443     /**
38444      * Returns true if the column width cannot be changed
38445      */
38446     isFixed : function(colIndex){
38447         return this.config[colIndex].fixed;
38448     },
38449
38450     /**
38451      * Returns true if the column can be resized
38452      * @return {Boolean}
38453      */
38454     isResizable : function(colIndex){
38455         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
38456     },
38457     /**
38458      * Sets if a column is hidden.
38459      * @param {Number} colIndex The column index
38460      * @param {Boolean} hidden True if the column is hidden
38461      */
38462     setHidden : function(colIndex, hidden){
38463         this.config[colIndex].hidden = hidden;
38464         this.totalWidth = null;
38465         this.fireEvent("hiddenchange", this, colIndex, hidden);
38466     },
38467
38468     /**
38469      * Sets the editor for a column.
38470      * @param {Number} col The column index
38471      * @param {Object} editor The editor object
38472      */
38473     setEditor : function(col, editor){
38474         this.config[col].editor = editor;
38475     }
38476 });
38477
38478 Roo.grid.ColumnModel.defaultRenderer = function(value){
38479         if(typeof value == "string" && value.length < 1){
38480             return "&#160;";
38481         }
38482         return value;
38483 };
38484
38485 // Alias for backwards compatibility
38486 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
38487 /*
38488  * Based on:
38489  * Ext JS Library 1.1.1
38490  * Copyright(c) 2006-2007, Ext JS, LLC.
38491  *
38492  * Originally Released Under LGPL - original licence link has changed is not relivant.
38493  *
38494  * Fork - LGPL
38495  * <script type="text/javascript">
38496  */
38497
38498 /**
38499  * @class Roo.grid.AbstractSelectionModel
38500  * @extends Roo.util.Observable
38501  * Abstract base class for grid SelectionModels.  It provides the interface that should be
38502  * implemented by descendant classes.  This class should not be directly instantiated.
38503  * @constructor
38504  */
38505 Roo.grid.AbstractSelectionModel = function(){
38506     this.locked = false;
38507     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
38508 };
38509
38510 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
38511     /** @ignore Called by the grid automatically. Do not call directly. */
38512     init : function(grid){
38513         this.grid = grid;
38514         this.initEvents();
38515     },
38516
38517     /**
38518      * Locks the selections.
38519      */
38520     lock : function(){
38521         this.locked = true;
38522     },
38523
38524     /**
38525      * Unlocks the selections.
38526      */
38527     unlock : function(){
38528         this.locked = false;
38529     },
38530
38531     /**
38532      * Returns true if the selections are locked.
38533      * @return {Boolean}
38534      */
38535     isLocked : function(){
38536         return this.locked;
38537     }
38538 });/*
38539  * Based on:
38540  * Ext JS Library 1.1.1
38541  * Copyright(c) 2006-2007, Ext JS, LLC.
38542  *
38543  * Originally Released Under LGPL - original licence link has changed is not relivant.
38544  *
38545  * Fork - LGPL
38546  * <script type="text/javascript">
38547  */
38548 /**
38549  * @extends Roo.grid.AbstractSelectionModel
38550  * @class Roo.grid.RowSelectionModel
38551  * The default SelectionModel used by {@link Roo.grid.Grid}.
38552  * It supports multiple selections and keyboard selection/navigation. 
38553  * @constructor
38554  * @param {Object} config
38555  */
38556 Roo.grid.RowSelectionModel = function(config){
38557     Roo.apply(this, config);
38558     this.selections = new Roo.util.MixedCollection(false, function(o){
38559         return o.id;
38560     });
38561
38562     this.last = false;
38563     this.lastActive = false;
38564
38565     this.addEvents({
38566         /**
38567              * @event selectionchange
38568              * Fires when the selection changes
38569              * @param {SelectionModel} this
38570              */
38571             "selectionchange" : true,
38572         /**
38573              * @event afterselectionchange
38574              * Fires after the selection changes (eg. by key press or clicking)
38575              * @param {SelectionModel} this
38576              */
38577             "afterselectionchange" : true,
38578         /**
38579              * @event beforerowselect
38580              * Fires when a row is selected being selected, return false to cancel.
38581              * @param {SelectionModel} this
38582              * @param {Number} rowIndex The selected index
38583              * @param {Boolean} keepExisting False if other selections will be cleared
38584              */
38585             "beforerowselect" : true,
38586         /**
38587              * @event rowselect
38588              * Fires when a row is selected.
38589              * @param {SelectionModel} this
38590              * @param {Number} rowIndex The selected index
38591              * @param {Roo.data.Record} r The record
38592              */
38593             "rowselect" : true,
38594         /**
38595              * @event rowdeselect
38596              * Fires when a row is deselected.
38597              * @param {SelectionModel} this
38598              * @param {Number} rowIndex The selected index
38599              */
38600         "rowdeselect" : true
38601     });
38602     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
38603     this.locked = false;
38604 };
38605
38606 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
38607     /**
38608      * @cfg {Boolean} singleSelect
38609      * True to allow selection of only one row at a time (defaults to false)
38610      */
38611     singleSelect : false,
38612
38613     // private
38614     initEvents : function(){
38615
38616         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
38617             this.grid.on("mousedown", this.handleMouseDown, this);
38618         }else{ // allow click to work like normal
38619             this.grid.on("rowclick", this.handleDragableRowClick, this);
38620         }
38621
38622         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
38623             "up" : function(e){
38624                 if(!e.shiftKey){
38625                     this.selectPrevious(e.shiftKey);
38626                 }else if(this.last !== false && this.lastActive !== false){
38627                     var last = this.last;
38628                     this.selectRange(this.last,  this.lastActive-1);
38629                     this.grid.getView().focusRow(this.lastActive);
38630                     if(last !== false){
38631                         this.last = last;
38632                     }
38633                 }else{
38634                     this.selectFirstRow();
38635                 }
38636                 this.fireEvent("afterselectionchange", this);
38637             },
38638             "down" : function(e){
38639                 if(!e.shiftKey){
38640                     this.selectNext(e.shiftKey);
38641                 }else if(this.last !== false && this.lastActive !== false){
38642                     var last = this.last;
38643                     this.selectRange(this.last,  this.lastActive+1);
38644                     this.grid.getView().focusRow(this.lastActive);
38645                     if(last !== false){
38646                         this.last = last;
38647                     }
38648                 }else{
38649                     this.selectFirstRow();
38650                 }
38651                 this.fireEvent("afterselectionchange", this);
38652             },
38653             scope: this
38654         });
38655
38656         var view = this.grid.view;
38657         view.on("refresh", this.onRefresh, this);
38658         view.on("rowupdated", this.onRowUpdated, this);
38659         view.on("rowremoved", this.onRemove, this);
38660     },
38661
38662     // private
38663     onRefresh : function(){
38664         var ds = this.grid.dataSource, i, v = this.grid.view;
38665         var s = this.selections;
38666         s.each(function(r){
38667             if((i = ds.indexOfId(r.id)) != -1){
38668                 v.onRowSelect(i);
38669             }else{
38670                 s.remove(r);
38671             }
38672         });
38673     },
38674
38675     // private
38676     onRemove : function(v, index, r){
38677         this.selections.remove(r);
38678     },
38679
38680     // private
38681     onRowUpdated : function(v, index, r){
38682         if(this.isSelected(r)){
38683             v.onRowSelect(index);
38684         }
38685     },
38686
38687     /**
38688      * Select records.
38689      * @param {Array} records The records to select
38690      * @param {Boolean} keepExisting (optional) True to keep existing selections
38691      */
38692     selectRecords : function(records, keepExisting){
38693         if(!keepExisting){
38694             this.clearSelections();
38695         }
38696         var ds = this.grid.dataSource;
38697         for(var i = 0, len = records.length; i < len; i++){
38698             this.selectRow(ds.indexOf(records[i]), true);
38699         }
38700     },
38701
38702     /**
38703      * Gets the number of selected rows.
38704      * @return {Number}
38705      */
38706     getCount : function(){
38707         return this.selections.length;
38708     },
38709
38710     /**
38711      * Selects the first row in the grid.
38712      */
38713     selectFirstRow : function(){
38714         this.selectRow(0);
38715     },
38716
38717     /**
38718      * Select the last row.
38719      * @param {Boolean} keepExisting (optional) True to keep existing selections
38720      */
38721     selectLastRow : function(keepExisting){
38722         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
38723     },
38724
38725     /**
38726      * Selects the row immediately following the last selected row.
38727      * @param {Boolean} keepExisting (optional) True to keep existing selections
38728      */
38729     selectNext : function(keepExisting){
38730         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
38731             this.selectRow(this.last+1, keepExisting);
38732             this.grid.getView().focusRow(this.last);
38733         }
38734     },
38735
38736     /**
38737      * Selects the row that precedes the last selected row.
38738      * @param {Boolean} keepExisting (optional) True to keep existing selections
38739      */
38740     selectPrevious : function(keepExisting){
38741         if(this.last){
38742             this.selectRow(this.last-1, keepExisting);
38743             this.grid.getView().focusRow(this.last);
38744         }
38745     },
38746
38747     /**
38748      * Returns the selected records
38749      * @return {Array} Array of selected records
38750      */
38751     getSelections : function(){
38752         return [].concat(this.selections.items);
38753     },
38754
38755     /**
38756      * Returns the first selected record.
38757      * @return {Record}
38758      */
38759     getSelected : function(){
38760         return this.selections.itemAt(0);
38761     },
38762
38763
38764     /**
38765      * Clears all selections.
38766      */
38767     clearSelections : function(fast){
38768         if(this.locked) return;
38769         if(fast !== true){
38770             var ds = this.grid.dataSource;
38771             var s = this.selections;
38772             s.each(function(r){
38773                 this.deselectRow(ds.indexOfId(r.id));
38774             }, this);
38775             s.clear();
38776         }else{
38777             this.selections.clear();
38778         }
38779         this.last = false;
38780     },
38781
38782
38783     /**
38784      * Selects all rows.
38785      */
38786     selectAll : function(){
38787         if(this.locked) return;
38788         this.selections.clear();
38789         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
38790             this.selectRow(i, true);
38791         }
38792     },
38793
38794     /**
38795      * Returns True if there is a selection.
38796      * @return {Boolean}
38797      */
38798     hasSelection : function(){
38799         return this.selections.length > 0;
38800     },
38801
38802     /**
38803      * Returns True if the specified row is selected.
38804      * @param {Number/Record} record The record or index of the record to check
38805      * @return {Boolean}
38806      */
38807     isSelected : function(index){
38808         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
38809         return (r && this.selections.key(r.id) ? true : false);
38810     },
38811
38812     /**
38813      * Returns True if the specified record id is selected.
38814      * @param {String} id The id of record to check
38815      * @return {Boolean}
38816      */
38817     isIdSelected : function(id){
38818         return (this.selections.key(id) ? true : false);
38819     },
38820
38821     // private
38822     handleMouseDown : function(e, t){
38823         var view = this.grid.getView(), rowIndex;
38824         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
38825             return;
38826         };
38827         if(e.shiftKey && this.last !== false){
38828             var last = this.last;
38829             this.selectRange(last, rowIndex, e.ctrlKey);
38830             this.last = last; // reset the last
38831             view.focusRow(rowIndex);
38832         }else{
38833             var isSelected = this.isSelected(rowIndex);
38834             if(e.button !== 0 && isSelected){
38835                 view.focusRow(rowIndex);
38836             }else if(e.ctrlKey && isSelected){
38837                 this.deselectRow(rowIndex);
38838             }else if(!isSelected){
38839                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
38840                 view.focusRow(rowIndex);
38841             }
38842         }
38843         this.fireEvent("afterselectionchange", this);
38844     },
38845     // private
38846     handleDragableRowClick :  function(grid, rowIndex, e) 
38847     {
38848         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
38849             this.selectRow(rowIndex, false);
38850             grid.view.focusRow(rowIndex);
38851              this.fireEvent("afterselectionchange", this);
38852         }
38853     },
38854     
38855     /**
38856      * Selects multiple rows.
38857      * @param {Array} rows Array of the indexes of the row to select
38858      * @param {Boolean} keepExisting (optional) True to keep existing selections
38859      */
38860     selectRows : function(rows, keepExisting){
38861         if(!keepExisting){
38862             this.clearSelections();
38863         }
38864         for(var i = 0, len = rows.length; i < len; i++){
38865             this.selectRow(rows[i], true);
38866         }
38867     },
38868
38869     /**
38870      * Selects a range of rows. All rows in between startRow and endRow are also selected.
38871      * @param {Number} startRow The index of the first row in the range
38872      * @param {Number} endRow The index of the last row in the range
38873      * @param {Boolean} keepExisting (optional) True to retain existing selections
38874      */
38875     selectRange : function(startRow, endRow, keepExisting){
38876         if(this.locked) return;
38877         if(!keepExisting){
38878             this.clearSelections();
38879         }
38880         if(startRow <= endRow){
38881             for(var i = startRow; i <= endRow; i++){
38882                 this.selectRow(i, true);
38883             }
38884         }else{
38885             for(var i = startRow; i >= endRow; i--){
38886                 this.selectRow(i, true);
38887             }
38888         }
38889     },
38890
38891     /**
38892      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
38893      * @param {Number} startRow The index of the first row in the range
38894      * @param {Number} endRow The index of the last row in the range
38895      */
38896     deselectRange : function(startRow, endRow, preventViewNotify){
38897         if(this.locked) return;
38898         for(var i = startRow; i <= endRow; i++){
38899             this.deselectRow(i, preventViewNotify);
38900         }
38901     },
38902
38903     /**
38904      * Selects a row.
38905      * @param {Number} row The index of the row to select
38906      * @param {Boolean} keepExisting (optional) True to keep existing selections
38907      */
38908     selectRow : function(index, keepExisting, preventViewNotify){
38909         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) return;
38910         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
38911             if(!keepExisting || this.singleSelect){
38912                 this.clearSelections();
38913             }
38914             var r = this.grid.dataSource.getAt(index);
38915             this.selections.add(r);
38916             this.last = this.lastActive = index;
38917             if(!preventViewNotify){
38918                 this.grid.getView().onRowSelect(index);
38919             }
38920             this.fireEvent("rowselect", this, index, r);
38921             this.fireEvent("selectionchange", this);
38922         }
38923     },
38924
38925     /**
38926      * Deselects a row.
38927      * @param {Number} row The index of the row to deselect
38928      */
38929     deselectRow : function(index, preventViewNotify){
38930         if(this.locked) return;
38931         if(this.last == index){
38932             this.last = false;
38933         }
38934         if(this.lastActive == index){
38935             this.lastActive = false;
38936         }
38937         var r = this.grid.dataSource.getAt(index);
38938         this.selections.remove(r);
38939         if(!preventViewNotify){
38940             this.grid.getView().onRowDeselect(index);
38941         }
38942         this.fireEvent("rowdeselect", this, index);
38943         this.fireEvent("selectionchange", this);
38944     },
38945
38946     // private
38947     restoreLast : function(){
38948         if(this._last){
38949             this.last = this._last;
38950         }
38951     },
38952
38953     // private
38954     acceptsNav : function(row, col, cm){
38955         return !cm.isHidden(col) && cm.isCellEditable(col, row);
38956     },
38957
38958     // private
38959     onEditorKey : function(field, e){
38960         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
38961         if(k == e.TAB){
38962             e.stopEvent();
38963             ed.completeEdit();
38964             if(e.shiftKey){
38965                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
38966             }else{
38967                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
38968             }
38969         }else if(k == e.ENTER && !e.ctrlKey){
38970             e.stopEvent();
38971             ed.completeEdit();
38972             if(e.shiftKey){
38973                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
38974             }else{
38975                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
38976             }
38977         }else if(k == e.ESC){
38978             ed.cancelEdit();
38979         }
38980         if(newCell){
38981             g.startEditing(newCell[0], newCell[1]);
38982         }
38983     }
38984 });/*
38985  * Based on:
38986  * Ext JS Library 1.1.1
38987  * Copyright(c) 2006-2007, Ext JS, LLC.
38988  *
38989  * Originally Released Under LGPL - original licence link has changed is not relivant.
38990  *
38991  * Fork - LGPL
38992  * <script type="text/javascript">
38993  */
38994 /**
38995  * @class Roo.grid.CellSelectionModel
38996  * @extends Roo.grid.AbstractSelectionModel
38997  * This class provides the basic implementation for cell selection in a grid.
38998  * @constructor
38999  * @param {Object} config The object containing the configuration of this model.
39000  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
39001  */
39002 Roo.grid.CellSelectionModel = function(config){
39003     Roo.apply(this, config);
39004
39005     this.selection = null;
39006
39007     this.addEvents({
39008         /**
39009              * @event beforerowselect
39010              * Fires before a cell is selected.
39011              * @param {SelectionModel} this
39012              * @param {Number} rowIndex The selected row index
39013              * @param {Number} colIndex The selected cell index
39014              */
39015             "beforecellselect" : true,
39016         /**
39017              * @event cellselect
39018              * Fires when a cell is selected.
39019              * @param {SelectionModel} this
39020              * @param {Number} rowIndex The selected row index
39021              * @param {Number} colIndex The selected cell index
39022              */
39023             "cellselect" : true,
39024         /**
39025              * @event selectionchange
39026              * Fires when the active selection changes.
39027              * @param {SelectionModel} this
39028              * @param {Object} selection null for no selection or an object (o) with two properties
39029                 <ul>
39030                 <li>o.record: the record object for the row the selection is in</li>
39031                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
39032                 </ul>
39033              */
39034             "selectionchange" : true,
39035         /**
39036              * @event tabend
39037              * Fires when the tab (or enter) was pressed on the last editable cell
39038              * You can use this to trigger add new row.
39039              * @param {SelectionModel} this
39040              */
39041             "tabend" : true,
39042          /**
39043              * @event beforeeditnext
39044              * Fires before the next editable sell is made active
39045              * You can use this to skip to another cell or fire the tabend
39046              *    if you set cell to false
39047              * @param {Object} eventdata object : { cell : [ row, col ] } 
39048              */
39049             "beforeeditnext" : true
39050     });
39051     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
39052 };
39053
39054 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
39055     
39056     enter_is_tab: false,
39057
39058     /** @ignore */
39059     initEvents : function(){
39060         this.grid.on("mousedown", this.handleMouseDown, this);
39061         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
39062         var view = this.grid.view;
39063         view.on("refresh", this.onViewChange, this);
39064         view.on("rowupdated", this.onRowUpdated, this);
39065         view.on("beforerowremoved", this.clearSelections, this);
39066         view.on("beforerowsinserted", this.clearSelections, this);
39067         if(this.grid.isEditor){
39068             this.grid.on("beforeedit", this.beforeEdit,  this);
39069         }
39070     },
39071
39072         //private
39073     beforeEdit : function(e){
39074         this.select(e.row, e.column, false, true, e.record);
39075     },
39076
39077         //private
39078     onRowUpdated : function(v, index, r){
39079         if(this.selection && this.selection.record == r){
39080             v.onCellSelect(index, this.selection.cell[1]);
39081         }
39082     },
39083
39084         //private
39085     onViewChange : function(){
39086         this.clearSelections(true);
39087     },
39088
39089         /**
39090          * Returns the currently selected cell,.
39091          * @return {Array} The selected cell (row, column) or null if none selected.
39092          */
39093     getSelectedCell : function(){
39094         return this.selection ? this.selection.cell : null;
39095     },
39096
39097     /**
39098      * Clears all selections.
39099      * @param {Boolean} true to prevent the gridview from being notified about the change.
39100      */
39101     clearSelections : function(preventNotify){
39102         var s = this.selection;
39103         if(s){
39104             if(preventNotify !== true){
39105                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
39106             }
39107             this.selection = null;
39108             this.fireEvent("selectionchange", this, null);
39109         }
39110     },
39111
39112     /**
39113      * Returns true if there is a selection.
39114      * @return {Boolean}
39115      */
39116     hasSelection : function(){
39117         return this.selection ? true : false;
39118     },
39119
39120     /** @ignore */
39121     handleMouseDown : function(e, t){
39122         var v = this.grid.getView();
39123         if(this.isLocked()){
39124             return;
39125         };
39126         var row = v.findRowIndex(t);
39127         var cell = v.findCellIndex(t);
39128         if(row !== false && cell !== false){
39129             this.select(row, cell);
39130         }
39131     },
39132
39133     /**
39134      * Selects a cell.
39135      * @param {Number} rowIndex
39136      * @param {Number} collIndex
39137      */
39138     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
39139         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
39140             this.clearSelections();
39141             r = r || this.grid.dataSource.getAt(rowIndex);
39142             this.selection = {
39143                 record : r,
39144                 cell : [rowIndex, colIndex]
39145             };
39146             if(!preventViewNotify){
39147                 var v = this.grid.getView();
39148                 v.onCellSelect(rowIndex, colIndex);
39149                 if(preventFocus !== true){
39150                     v.focusCell(rowIndex, colIndex);
39151                 }
39152             }
39153             this.fireEvent("cellselect", this, rowIndex, colIndex);
39154             this.fireEvent("selectionchange", this, this.selection);
39155         }
39156     },
39157
39158         //private
39159     isSelectable : function(rowIndex, colIndex, cm){
39160         return !cm.isHidden(colIndex);
39161     },
39162
39163     /** @ignore */
39164     handleKeyDown : function(e){
39165         //Roo.log('Cell Sel Model handleKeyDown');
39166         if(!e.isNavKeyPress()){
39167             return;
39168         }
39169         var g = this.grid, s = this.selection;
39170         if(!s){
39171             e.stopEvent();
39172             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
39173             if(cell){
39174                 this.select(cell[0], cell[1]);
39175             }
39176             return;
39177         }
39178         var sm = this;
39179         var walk = function(row, col, step){
39180             return g.walkCells(row, col, step, sm.isSelectable,  sm);
39181         };
39182         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
39183         var newCell;
39184
39185       
39186
39187         switch(k){
39188             case e.TAB:
39189                 // handled by onEditorKey
39190                 if (g.isEditor && g.editing) {
39191                     return;
39192                 }
39193                 if(e.shiftKey) {
39194                     newCell = walk(r, c-1, -1);
39195                 } else {
39196                     newCell = walk(r, c+1, 1);
39197                 }
39198                 break;
39199             
39200             case e.DOWN:
39201                newCell = walk(r+1, c, 1);
39202                 break;
39203             
39204             case e.UP:
39205                 newCell = walk(r-1, c, -1);
39206                 break;
39207             
39208             case e.RIGHT:
39209                 newCell = walk(r, c+1, 1);
39210                 break;
39211             
39212             case e.LEFT:
39213                 newCell = walk(r, c-1, -1);
39214                 break;
39215             
39216             case e.ENTER:
39217                 
39218                 if(g.isEditor && !g.editing){
39219                    g.startEditing(r, c);
39220                    e.stopEvent();
39221                    return;
39222                 }
39223                 
39224                 
39225              break;
39226         };
39227         if(newCell){
39228             this.select(newCell[0], newCell[1]);
39229             e.stopEvent();
39230             
39231         }
39232     },
39233
39234     acceptsNav : function(row, col, cm){
39235         return !cm.isHidden(col) && cm.isCellEditable(col, row);
39236     },
39237     /**
39238      * Selects a cell.
39239      * @param {Number} field (not used) - as it's normally used as a listener
39240      * @param {Number} e - event - fake it by using
39241      *
39242      * var e = Roo.EventObjectImpl.prototype;
39243      * e.keyCode = e.TAB
39244      *
39245      * 
39246      */
39247     onEditorKey : function(field, e){
39248         
39249         var k = e.getKey(),
39250             newCell,
39251             g = this.grid,
39252             ed = g.activeEditor,
39253             forward = false;
39254         ///Roo.log('onEditorKey' + k);
39255         
39256         
39257         if (this.enter_is_tab && k == e.ENTER) {
39258             k = e.TAB;
39259         }
39260         
39261         if(k == e.TAB){
39262             if(e.shiftKey){
39263                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
39264             }else{
39265                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39266                 forward = true;
39267             }
39268             
39269             e.stopEvent();
39270             
39271         } else if(k == e.ENTER &&  !e.ctrlKey){
39272             ed.completeEdit();
39273             e.stopEvent();
39274             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39275         
39276                 } else if(k == e.ESC){
39277             ed.cancelEdit();
39278         }
39279                 
39280         if (newCell) {
39281             var ecall = { cell : newCell, forward : forward };
39282             this.fireEvent('beforeeditnext', ecall );
39283             newCell = ecall.cell;
39284                         forward = ecall.forward;
39285         }
39286                 
39287         if(newCell){
39288             //Roo.log('next cell after edit');
39289             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
39290         } else if (forward) {
39291             // tabbed past last
39292             this.fireEvent.defer(100, this, ['tabend',this]);
39293         }
39294     }
39295 });/*
39296  * Based on:
39297  * Ext JS Library 1.1.1
39298  * Copyright(c) 2006-2007, Ext JS, LLC.
39299  *
39300  * Originally Released Under LGPL - original licence link has changed is not relivant.
39301  *
39302  * Fork - LGPL
39303  * <script type="text/javascript">
39304  */
39305  
39306 /**
39307  * @class Roo.grid.EditorGrid
39308  * @extends Roo.grid.Grid
39309  * Class for creating and editable grid.
39310  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
39311  * The container MUST have some type of size defined for the grid to fill. The container will be 
39312  * automatically set to position relative if it isn't already.
39313  * @param {Object} dataSource The data model to bind to
39314  * @param {Object} colModel The column model with info about this grid's columns
39315  */
39316 Roo.grid.EditorGrid = function(container, config){
39317     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
39318     this.getGridEl().addClass("xedit-grid");
39319
39320     if(!this.selModel){
39321         this.selModel = new Roo.grid.CellSelectionModel();
39322     }
39323
39324     this.activeEditor = null;
39325
39326         this.addEvents({
39327             /**
39328              * @event beforeedit
39329              * Fires before cell editing is triggered. The edit event object has the following properties <br />
39330              * <ul style="padding:5px;padding-left:16px;">
39331              * <li>grid - This grid</li>
39332              * <li>record - The record being edited</li>
39333              * <li>field - The field name being edited</li>
39334              * <li>value - The value for the field being edited.</li>
39335              * <li>row - The grid row index</li>
39336              * <li>column - The grid column index</li>
39337              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39338              * </ul>
39339              * @param {Object} e An edit event (see above for description)
39340              */
39341             "beforeedit" : true,
39342             /**
39343              * @event afteredit
39344              * Fires after a cell is edited. <br />
39345              * <ul style="padding:5px;padding-left:16px;">
39346              * <li>grid - This grid</li>
39347              * <li>record - The record being edited</li>
39348              * <li>field - The field name being edited</li>
39349              * <li>value - The value being set</li>
39350              * <li>originalValue - The original value for the field, before the edit.</li>
39351              * <li>row - The grid row index</li>
39352              * <li>column - The grid column index</li>
39353              * </ul>
39354              * @param {Object} e An edit event (see above for description)
39355              */
39356             "afteredit" : true,
39357             /**
39358              * @event validateedit
39359              * Fires after a cell is edited, but before the value is set in the record. 
39360          * You can use this to modify the value being set in the field, Return false
39361              * to cancel the change. The edit event object has the following properties <br />
39362              * <ul style="padding:5px;padding-left:16px;">
39363          * <li>editor - This editor</li>
39364              * <li>grid - This grid</li>
39365              * <li>record - The record being edited</li>
39366              * <li>field - The field name being edited</li>
39367              * <li>value - The value being set</li>
39368              * <li>originalValue - The original value for the field, before the edit.</li>
39369              * <li>row - The grid row index</li>
39370              * <li>column - The grid column index</li>
39371              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39372              * </ul>
39373              * @param {Object} e An edit event (see above for description)
39374              */
39375             "validateedit" : true
39376         });
39377     this.on("bodyscroll", this.stopEditing,  this);
39378     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
39379 };
39380
39381 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
39382     /**
39383      * @cfg {Number} clicksToEdit
39384      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
39385      */
39386     clicksToEdit: 2,
39387
39388     // private
39389     isEditor : true,
39390     // private
39391     trackMouseOver: false, // causes very odd FF errors
39392
39393     onCellDblClick : function(g, row, col){
39394         this.startEditing(row, col);
39395     },
39396
39397     onEditComplete : function(ed, value, startValue){
39398         this.editing = false;
39399         this.activeEditor = null;
39400         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
39401         var r = ed.record;
39402         var field = this.colModel.getDataIndex(ed.col);
39403         var e = {
39404             grid: this,
39405             record: r,
39406             field: field,
39407             originalValue: startValue,
39408             value: value,
39409             row: ed.row,
39410             column: ed.col,
39411             cancel:false,
39412             editor: ed
39413         };
39414         var cell = Roo.get(this.view.getCell(ed.row,ed.col))
39415         cell.show();
39416           
39417         if(String(value) !== String(startValue)){
39418             
39419             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
39420                 r.set(field, e.value);
39421                 // if we are dealing with a combo box..
39422                 // then we also set the 'name' colum to be the displayField
39423                 if (ed.field.displayField && ed.field.name) {
39424                     r.set(ed.field.name, ed.field.el.dom.value);
39425                 }
39426                 
39427                 delete e.cancel; //?? why!!!
39428                 this.fireEvent("afteredit", e);
39429             }
39430         } else {
39431             this.fireEvent("afteredit", e); // always fire it!
39432         }
39433         this.view.focusCell(ed.row, ed.col);
39434     },
39435
39436     /**
39437      * Starts editing the specified for the specified row/column
39438      * @param {Number} rowIndex
39439      * @param {Number} colIndex
39440      */
39441     startEditing : function(row, col){
39442         this.stopEditing();
39443         if(this.colModel.isCellEditable(col, row)){
39444             this.view.ensureVisible(row, col, true);
39445           
39446             var r = this.dataSource.getAt(row);
39447             var field = this.colModel.getDataIndex(col);
39448             var cell = Roo.get(this.view.getCell(row,col));
39449             var e = {
39450                 grid: this,
39451                 record: r,
39452                 field: field,
39453                 value: r.data[field],
39454                 row: row,
39455                 column: col,
39456                 cancel:false 
39457             };
39458             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
39459                 this.editing = true;
39460                 var ed = this.colModel.getCellEditor(col, row);
39461                 
39462                 if (!ed) {
39463                     return;
39464                 }
39465                 if(!ed.rendered){
39466                     ed.render(ed.parentEl || document.body);
39467                 }
39468                 ed.field.reset();
39469                
39470                 cell.hide();
39471                 
39472                 (function(){ // complex but required for focus issues in safari, ie and opera
39473                     ed.row = row;
39474                     ed.col = col;
39475                     ed.record = r;
39476                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
39477                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
39478                     this.activeEditor = ed;
39479                     var v = r.data[field];
39480                     ed.startEdit(this.view.getCell(row, col), v);
39481                     // combo's with 'displayField and name set
39482                     if (ed.field.displayField && ed.field.name) {
39483                         ed.field.el.dom.value = r.data[ed.field.name];
39484                     }
39485                     
39486                     
39487                 }).defer(50, this);
39488             }
39489         }
39490     },
39491         
39492     /**
39493      * Stops any active editing
39494      */
39495     stopEditing : function(){
39496         if(this.activeEditor){
39497             this.activeEditor.completeEdit();
39498         }
39499         this.activeEditor = null;
39500     },
39501         
39502          /**
39503      * Called to get grid's drag proxy text, by default returns this.ddText.
39504      * @return {String}
39505      */
39506     getDragDropText : function(){
39507         var count = this.selModel.getSelectedCell() ? 1 : 0;
39508         return String.format(this.ddText, count, count == 1 ? '' : 's');
39509     }
39510         
39511 });/*
39512  * Based on:
39513  * Ext JS Library 1.1.1
39514  * Copyright(c) 2006-2007, Ext JS, LLC.
39515  *
39516  * Originally Released Under LGPL - original licence link has changed is not relivant.
39517  *
39518  * Fork - LGPL
39519  * <script type="text/javascript">
39520  */
39521
39522 // private - not really -- you end up using it !
39523 // This is a support class used internally by the Grid components
39524
39525 /**
39526  * @class Roo.grid.GridEditor
39527  * @extends Roo.Editor
39528  * Class for creating and editable grid elements.
39529  * @param {Object} config any settings (must include field)
39530  */
39531 Roo.grid.GridEditor = function(field, config){
39532     if (!config && field.field) {
39533         config = field;
39534         field = Roo.factory(config.field, Roo.form);
39535     }
39536     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
39537     field.monitorTab = false;
39538 };
39539
39540 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
39541     
39542     /**
39543      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
39544      */
39545     
39546     alignment: "tl-tl",
39547     autoSize: "width",
39548     hideEl : false,
39549     cls: "x-small-editor x-grid-editor",
39550     shim:false,
39551     shadow:"frame"
39552 });/*
39553  * Based on:
39554  * Ext JS Library 1.1.1
39555  * Copyright(c) 2006-2007, Ext JS, LLC.
39556  *
39557  * Originally Released Under LGPL - original licence link has changed is not relivant.
39558  *
39559  * Fork - LGPL
39560  * <script type="text/javascript">
39561  */
39562   
39563
39564   
39565 Roo.grid.PropertyRecord = Roo.data.Record.create([
39566     {name:'name',type:'string'},  'value'
39567 ]);
39568
39569
39570 Roo.grid.PropertyStore = function(grid, source){
39571     this.grid = grid;
39572     this.store = new Roo.data.Store({
39573         recordType : Roo.grid.PropertyRecord
39574     });
39575     this.store.on('update', this.onUpdate,  this);
39576     if(source){
39577         this.setSource(source);
39578     }
39579     Roo.grid.PropertyStore.superclass.constructor.call(this);
39580 };
39581
39582
39583
39584 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
39585     setSource : function(o){
39586         this.source = o;
39587         this.store.removeAll();
39588         var data = [];
39589         for(var k in o){
39590             if(this.isEditableValue(o[k])){
39591                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
39592             }
39593         }
39594         this.store.loadRecords({records: data}, {}, true);
39595     },
39596
39597     onUpdate : function(ds, record, type){
39598         if(type == Roo.data.Record.EDIT){
39599             var v = record.data['value'];
39600             var oldValue = record.modified['value'];
39601             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
39602                 this.source[record.id] = v;
39603                 record.commit();
39604                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
39605             }else{
39606                 record.reject();
39607             }
39608         }
39609     },
39610
39611     getProperty : function(row){
39612        return this.store.getAt(row);
39613     },
39614
39615     isEditableValue: function(val){
39616         if(val && val instanceof Date){
39617             return true;
39618         }else if(typeof val == 'object' || typeof val == 'function'){
39619             return false;
39620         }
39621         return true;
39622     },
39623
39624     setValue : function(prop, value){
39625         this.source[prop] = value;
39626         this.store.getById(prop).set('value', value);
39627     },
39628
39629     getSource : function(){
39630         return this.source;
39631     }
39632 });
39633
39634 Roo.grid.PropertyColumnModel = function(grid, store){
39635     this.grid = grid;
39636     var g = Roo.grid;
39637     g.PropertyColumnModel.superclass.constructor.call(this, [
39638         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
39639         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
39640     ]);
39641     this.store = store;
39642     this.bselect = Roo.DomHelper.append(document.body, {
39643         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
39644             {tag: 'option', value: 'true', html: 'true'},
39645             {tag: 'option', value: 'false', html: 'false'}
39646         ]
39647     });
39648     Roo.id(this.bselect);
39649     var f = Roo.form;
39650     this.editors = {
39651         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
39652         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
39653         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
39654         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
39655         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
39656     };
39657     this.renderCellDelegate = this.renderCell.createDelegate(this);
39658     this.renderPropDelegate = this.renderProp.createDelegate(this);
39659 };
39660
39661 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
39662     
39663     
39664     nameText : 'Name',
39665     valueText : 'Value',
39666     
39667     dateFormat : 'm/j/Y',
39668     
39669     
39670     renderDate : function(dateVal){
39671         return dateVal.dateFormat(this.dateFormat);
39672     },
39673
39674     renderBool : function(bVal){
39675         return bVal ? 'true' : 'false';
39676     },
39677
39678     isCellEditable : function(colIndex, rowIndex){
39679         return colIndex == 1;
39680     },
39681
39682     getRenderer : function(col){
39683         return col == 1 ?
39684             this.renderCellDelegate : this.renderPropDelegate;
39685     },
39686
39687     renderProp : function(v){
39688         return this.getPropertyName(v);
39689     },
39690
39691     renderCell : function(val){
39692         var rv = val;
39693         if(val instanceof Date){
39694             rv = this.renderDate(val);
39695         }else if(typeof val == 'boolean'){
39696             rv = this.renderBool(val);
39697         }
39698         return Roo.util.Format.htmlEncode(rv);
39699     },
39700
39701     getPropertyName : function(name){
39702         var pn = this.grid.propertyNames;
39703         return pn && pn[name] ? pn[name] : name;
39704     },
39705
39706     getCellEditor : function(colIndex, rowIndex){
39707         var p = this.store.getProperty(rowIndex);
39708         var n = p.data['name'], val = p.data['value'];
39709         
39710         if(typeof(this.grid.customEditors[n]) == 'string'){
39711             return this.editors[this.grid.customEditors[n]];
39712         }
39713         if(typeof(this.grid.customEditors[n]) != 'undefined'){
39714             return this.grid.customEditors[n];
39715         }
39716         if(val instanceof Date){
39717             return this.editors['date'];
39718         }else if(typeof val == 'number'){
39719             return this.editors['number'];
39720         }else if(typeof val == 'boolean'){
39721             return this.editors['boolean'];
39722         }else{
39723             return this.editors['string'];
39724         }
39725     }
39726 });
39727
39728 /**
39729  * @class Roo.grid.PropertyGrid
39730  * @extends Roo.grid.EditorGrid
39731  * This class represents the  interface of a component based property grid control.
39732  * <br><br>Usage:<pre><code>
39733  var grid = new Roo.grid.PropertyGrid("my-container-id", {
39734       
39735  });
39736  // set any options
39737  grid.render();
39738  * </code></pre>
39739   
39740  * @constructor
39741  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
39742  * The container MUST have some type of size defined for the grid to fill. The container will be
39743  * automatically set to position relative if it isn't already.
39744  * @param {Object} config A config object that sets properties on this grid.
39745  */
39746 Roo.grid.PropertyGrid = function(container, config){
39747     config = config || {};
39748     var store = new Roo.grid.PropertyStore(this);
39749     this.store = store;
39750     var cm = new Roo.grid.PropertyColumnModel(this, store);
39751     store.store.sort('name', 'ASC');
39752     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
39753         ds: store.store,
39754         cm: cm,
39755         enableColLock:false,
39756         enableColumnMove:false,
39757         stripeRows:false,
39758         trackMouseOver: false,
39759         clicksToEdit:1
39760     }, config));
39761     this.getGridEl().addClass('x-props-grid');
39762     this.lastEditRow = null;
39763     this.on('columnresize', this.onColumnResize, this);
39764     this.addEvents({
39765          /**
39766              * @event beforepropertychange
39767              * Fires before a property changes (return false to stop?)
39768              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
39769              * @param {String} id Record Id
39770              * @param {String} newval New Value
39771          * @param {String} oldval Old Value
39772              */
39773         "beforepropertychange": true,
39774         /**
39775              * @event propertychange
39776              * Fires after a property changes
39777              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
39778              * @param {String} id Record Id
39779              * @param {String} newval New Value
39780          * @param {String} oldval Old Value
39781              */
39782         "propertychange": true
39783     });
39784     this.customEditors = this.customEditors || {};
39785 };
39786 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
39787     
39788      /**
39789      * @cfg {Object} customEditors map of colnames=> custom editors.
39790      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
39791      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
39792      * false disables editing of the field.
39793          */
39794     
39795       /**
39796      * @cfg {Object} propertyNames map of property Names to their displayed value
39797          */
39798     
39799     render : function(){
39800         Roo.grid.PropertyGrid.superclass.render.call(this);
39801         this.autoSize.defer(100, this);
39802     },
39803
39804     autoSize : function(){
39805         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
39806         if(this.view){
39807             this.view.fitColumns();
39808         }
39809     },
39810
39811     onColumnResize : function(){
39812         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
39813         this.autoSize();
39814     },
39815     /**
39816      * Sets the data for the Grid
39817      * accepts a Key => Value object of all the elements avaiable.
39818      * @param {Object} data  to appear in grid.
39819      */
39820     setSource : function(source){
39821         this.store.setSource(source);
39822         //this.autoSize();
39823     },
39824     /**
39825      * Gets all the data from the grid.
39826      * @return {Object} data  data stored in grid
39827      */
39828     getSource : function(){
39829         return this.store.getSource();
39830     }
39831 });/*
39832   
39833  * Licence LGPL
39834  
39835  */
39836  
39837 /**
39838  * @class Roo.grid.Calendar
39839  * @extends Roo.util.Grid
39840  * This class extends the Grid to provide a calendar widget
39841  * <br><br>Usage:<pre><code>
39842  var grid = new Roo.grid.Calendar("my-container-id", {
39843      ds: myDataStore,
39844      cm: myColModel,
39845      selModel: mySelectionModel,
39846      autoSizeColumns: true,
39847      monitorWindowResize: false,
39848      trackMouseOver: true
39849      eventstore : real data store..
39850  });
39851  // set any options
39852  grid.render();
39853   
39854   * @constructor
39855  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
39856  * The container MUST have some type of size defined for the grid to fill. The container will be
39857  * automatically set to position relative if it isn't already.
39858  * @param {Object} config A config object that sets properties on this grid.
39859  */
39860 Roo.grid.Calendar = function(container, config){
39861         // initialize the container
39862         this.container = Roo.get(container);
39863         this.container.update("");
39864         this.container.setStyle("overflow", "hidden");
39865     this.container.addClass('x-grid-container');
39866
39867     this.id = this.container.id;
39868
39869     Roo.apply(this, config);
39870     // check and correct shorthanded configs
39871     
39872     var rows = [];
39873     var d =1;
39874     for (var r = 0;r < 6;r++) {
39875         
39876         rows[r]=[];
39877         for (var c =0;c < 7;c++) {
39878             rows[r][c]= '';
39879         }
39880     }
39881     if (this.eventStore) {
39882         this.eventStore= Roo.factory(this.eventStore, Roo.data);
39883         this.eventStore.on('load',this.onLoad, this);
39884         this.eventStore.on('beforeload',this.clearEvents, this);
39885          
39886     }
39887     
39888     this.dataSource = new Roo.data.Store({
39889             proxy: new Roo.data.MemoryProxy(rows),
39890             reader: new Roo.data.ArrayReader({}, [
39891                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
39892     });
39893
39894     this.dataSource.load();
39895     this.ds = this.dataSource;
39896     this.ds.xmodule = this.xmodule || false;
39897     
39898     
39899     var cellRender = function(v,x,r)
39900     {
39901         return String.format(
39902             '<div class="fc-day  fc-widget-content"><div>' +
39903                 '<div class="fc-event-container"></div>' +
39904                 '<div class="fc-day-number">{0}</div>'+
39905                 
39906                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
39907             '</div></div>', v);
39908     
39909     }
39910     
39911     
39912     this.colModel = new Roo.grid.ColumnModel( [
39913         {
39914             xtype: 'ColumnModel',
39915             xns: Roo.grid,
39916             dataIndex : 'weekday0',
39917             header : 'Sunday',
39918             renderer : cellRender
39919         },
39920         {
39921             xtype: 'ColumnModel',
39922             xns: Roo.grid,
39923             dataIndex : 'weekday1',
39924             header : 'Monday',
39925             renderer : cellRender
39926         },
39927         {
39928             xtype: 'ColumnModel',
39929             xns: Roo.grid,
39930             dataIndex : 'weekday2',
39931             header : 'Tuesday',
39932             renderer : cellRender
39933         },
39934         {
39935             xtype: 'ColumnModel',
39936             xns: Roo.grid,
39937             dataIndex : 'weekday3',
39938             header : 'Wednesday',
39939             renderer : cellRender
39940         },
39941         {
39942             xtype: 'ColumnModel',
39943             xns: Roo.grid,
39944             dataIndex : 'weekday4',
39945             header : 'Thursday',
39946             renderer : cellRender
39947         },
39948         {
39949             xtype: 'ColumnModel',
39950             xns: Roo.grid,
39951             dataIndex : 'weekday5',
39952             header : 'Friday',
39953             renderer : cellRender
39954         },
39955         {
39956             xtype: 'ColumnModel',
39957             xns: Roo.grid,
39958             dataIndex : 'weekday6',
39959             header : 'Saturday',
39960             renderer : cellRender
39961         }
39962     ]);
39963     this.cm = this.colModel;
39964     this.cm.xmodule = this.xmodule || false;
39965  
39966         
39967           
39968     //this.selModel = new Roo.grid.CellSelectionModel();
39969     //this.sm = this.selModel;
39970     //this.selModel.init(this);
39971     
39972     
39973     if(this.width){
39974         this.container.setWidth(this.width);
39975     }
39976
39977     if(this.height){
39978         this.container.setHeight(this.height);
39979     }
39980     /** @private */
39981         this.addEvents({
39982         // raw events
39983         /**
39984          * @event click
39985          * The raw click event for the entire grid.
39986          * @param {Roo.EventObject} e
39987          */
39988         "click" : true,
39989         /**
39990          * @event dblclick
39991          * The raw dblclick event for the entire grid.
39992          * @param {Roo.EventObject} e
39993          */
39994         "dblclick" : true,
39995         /**
39996          * @event contextmenu
39997          * The raw contextmenu event for the entire grid.
39998          * @param {Roo.EventObject} e
39999          */
40000         "contextmenu" : true,
40001         /**
40002          * @event mousedown
40003          * The raw mousedown event for the entire grid.
40004          * @param {Roo.EventObject} e
40005          */
40006         "mousedown" : true,
40007         /**
40008          * @event mouseup
40009          * The raw mouseup event for the entire grid.
40010          * @param {Roo.EventObject} e
40011          */
40012         "mouseup" : true,
40013         /**
40014          * @event mouseover
40015          * The raw mouseover event for the entire grid.
40016          * @param {Roo.EventObject} e
40017          */
40018         "mouseover" : true,
40019         /**
40020          * @event mouseout
40021          * The raw mouseout event for the entire grid.
40022          * @param {Roo.EventObject} e
40023          */
40024         "mouseout" : true,
40025         /**
40026          * @event keypress
40027          * The raw keypress event for the entire grid.
40028          * @param {Roo.EventObject} e
40029          */
40030         "keypress" : true,
40031         /**
40032          * @event keydown
40033          * The raw keydown event for the entire grid.
40034          * @param {Roo.EventObject} e
40035          */
40036         "keydown" : true,
40037
40038         // custom events
40039
40040         /**
40041          * @event cellclick
40042          * Fires when a cell is clicked
40043          * @param {Grid} this
40044          * @param {Number} rowIndex
40045          * @param {Number} columnIndex
40046          * @param {Roo.EventObject} e
40047          */
40048         "cellclick" : true,
40049         /**
40050          * @event celldblclick
40051          * Fires when a cell is double clicked
40052          * @param {Grid} this
40053          * @param {Number} rowIndex
40054          * @param {Number} columnIndex
40055          * @param {Roo.EventObject} e
40056          */
40057         "celldblclick" : true,
40058         /**
40059          * @event rowclick
40060          * Fires when a row is clicked
40061          * @param {Grid} this
40062          * @param {Number} rowIndex
40063          * @param {Roo.EventObject} e
40064          */
40065         "rowclick" : true,
40066         /**
40067          * @event rowdblclick
40068          * Fires when a row is double clicked
40069          * @param {Grid} this
40070          * @param {Number} rowIndex
40071          * @param {Roo.EventObject} e
40072          */
40073         "rowdblclick" : true,
40074         /**
40075          * @event headerclick
40076          * Fires when a header is clicked
40077          * @param {Grid} this
40078          * @param {Number} columnIndex
40079          * @param {Roo.EventObject} e
40080          */
40081         "headerclick" : true,
40082         /**
40083          * @event headerdblclick
40084          * Fires when a header cell is double clicked
40085          * @param {Grid} this
40086          * @param {Number} columnIndex
40087          * @param {Roo.EventObject} e
40088          */
40089         "headerdblclick" : true,
40090         /**
40091          * @event rowcontextmenu
40092          * Fires when a row is right clicked
40093          * @param {Grid} this
40094          * @param {Number} rowIndex
40095          * @param {Roo.EventObject} e
40096          */
40097         "rowcontextmenu" : true,
40098         /**
40099          * @event cellcontextmenu
40100          * Fires when a cell is right clicked
40101          * @param {Grid} this
40102          * @param {Number} rowIndex
40103          * @param {Number} cellIndex
40104          * @param {Roo.EventObject} e
40105          */
40106          "cellcontextmenu" : true,
40107         /**
40108          * @event headercontextmenu
40109          * Fires when a header is right clicked
40110          * @param {Grid} this
40111          * @param {Number} columnIndex
40112          * @param {Roo.EventObject} e
40113          */
40114         "headercontextmenu" : true,
40115         /**
40116          * @event bodyscroll
40117          * Fires when the body element is scrolled
40118          * @param {Number} scrollLeft
40119          * @param {Number} scrollTop
40120          */
40121         "bodyscroll" : true,
40122         /**
40123          * @event columnresize
40124          * Fires when the user resizes a column
40125          * @param {Number} columnIndex
40126          * @param {Number} newSize
40127          */
40128         "columnresize" : true,
40129         /**
40130          * @event columnmove
40131          * Fires when the user moves a column
40132          * @param {Number} oldIndex
40133          * @param {Number} newIndex
40134          */
40135         "columnmove" : true,
40136         /**
40137          * @event startdrag
40138          * Fires when row(s) start being dragged
40139          * @param {Grid} this
40140          * @param {Roo.GridDD} dd The drag drop object
40141          * @param {event} e The raw browser event
40142          */
40143         "startdrag" : true,
40144         /**
40145          * @event enddrag
40146          * Fires when a drag operation is complete
40147          * @param {Grid} this
40148          * @param {Roo.GridDD} dd The drag drop object
40149          * @param {event} e The raw browser event
40150          */
40151         "enddrag" : true,
40152         /**
40153          * @event dragdrop
40154          * Fires when dragged row(s) are dropped on a valid DD target
40155          * @param {Grid} this
40156          * @param {Roo.GridDD} dd The drag drop object
40157          * @param {String} targetId The target drag drop object
40158          * @param {event} e The raw browser event
40159          */
40160         "dragdrop" : true,
40161         /**
40162          * @event dragover
40163          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
40164          * @param {Grid} this
40165          * @param {Roo.GridDD} dd The drag drop object
40166          * @param {String} targetId The target drag drop object
40167          * @param {event} e The raw browser event
40168          */
40169         "dragover" : true,
40170         /**
40171          * @event dragenter
40172          *  Fires when the dragged row(s) first cross another DD target while being dragged
40173          * @param {Grid} this
40174          * @param {Roo.GridDD} dd The drag drop object
40175          * @param {String} targetId The target drag drop object
40176          * @param {event} e The raw browser event
40177          */
40178         "dragenter" : true,
40179         /**
40180          * @event dragout
40181          * Fires when the dragged row(s) leave another DD target while being dragged
40182          * @param {Grid} this
40183          * @param {Roo.GridDD} dd The drag drop object
40184          * @param {String} targetId The target drag drop object
40185          * @param {event} e The raw browser event
40186          */
40187         "dragout" : true,
40188         /**
40189          * @event rowclass
40190          * Fires when a row is rendered, so you can change add a style to it.
40191          * @param {GridView} gridview   The grid view
40192          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
40193          */
40194         'rowclass' : true,
40195
40196         /**
40197          * @event render
40198          * Fires when the grid is rendered
40199          * @param {Grid} grid
40200          */
40201         'render' : true,
40202             /**
40203              * @event select
40204              * Fires when a date is selected
40205              * @param {DatePicker} this
40206              * @param {Date} date The selected date
40207              */
40208         'select': true,
40209         /**
40210              * @event monthchange
40211              * Fires when the displayed month changes 
40212              * @param {DatePicker} this
40213              * @param {Date} date The selected month
40214              */
40215         'monthchange': true,
40216         /**
40217              * @event evententer
40218              * Fires when mouse over an event
40219              * @param {Calendar} this
40220              * @param {event} Event
40221              */
40222         'evententer': true,
40223         /**
40224              * @event eventleave
40225              * Fires when the mouse leaves an
40226              * @param {Calendar} this
40227              * @param {event}
40228              */
40229         'eventleave': true,
40230         /**
40231              * @event eventclick
40232              * Fires when the mouse click an
40233              * @param {Calendar} this
40234              * @param {event}
40235              */
40236         'eventclick': true,
40237         /**
40238              * @event eventrender
40239              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
40240              * @param {Calendar} this
40241              * @param {data} data to be modified
40242              */
40243         'eventrender': true
40244         
40245     });
40246
40247     Roo.grid.Grid.superclass.constructor.call(this);
40248     this.on('render', function() {
40249         this.view.el.addClass('x-grid-cal'); 
40250         
40251         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
40252
40253     },this);
40254     
40255     if (!Roo.grid.Calendar.style) {
40256         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
40257             
40258             
40259             '.x-grid-cal .x-grid-col' :  {
40260                 height: 'auto !important',
40261                 'vertical-align': 'top'
40262             },
40263             '.x-grid-cal  .fc-event-hori' : {
40264                 height: '14px'
40265             }
40266              
40267             
40268         }, Roo.id());
40269     }
40270
40271     
40272     
40273 };
40274 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
40275     /**
40276      * @cfg {Store} eventStore The store that loads events.
40277      */
40278     eventStore : 25,
40279
40280      
40281     activeDate : false,
40282     startDay : 0,
40283     autoWidth : true,
40284     monitorWindowResize : false,
40285
40286     
40287     resizeColumns : function() {
40288         var col = (this.view.el.getWidth() / 7) - 3;
40289         // loop through cols, and setWidth
40290         for(var i =0 ; i < 7 ; i++){
40291             this.cm.setColumnWidth(i, col);
40292         }
40293     },
40294      setDate :function(date) {
40295         
40296         Roo.log('setDate?');
40297         
40298         this.resizeColumns();
40299         var vd = this.activeDate;
40300         this.activeDate = date;
40301 //        if(vd && this.el){
40302 //            var t = date.getTime();
40303 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
40304 //                Roo.log('using add remove');
40305 //                
40306 //                this.fireEvent('monthchange', this, date);
40307 //                
40308 //                this.cells.removeClass("fc-state-highlight");
40309 //                this.cells.each(function(c){
40310 //                   if(c.dateValue == t){
40311 //                       c.addClass("fc-state-highlight");
40312 //                       setTimeout(function(){
40313 //                            try{c.dom.firstChild.focus();}catch(e){}
40314 //                       }, 50);
40315 //                       return false;
40316 //                   }
40317 //                   return true;
40318 //                });
40319 //                return;
40320 //            }
40321 //        }
40322         
40323         var days = date.getDaysInMonth();
40324         
40325         var firstOfMonth = date.getFirstDateOfMonth();
40326         var startingPos = firstOfMonth.getDay()-this.startDay;
40327         
40328         if(startingPos < this.startDay){
40329             startingPos += 7;
40330         }
40331         
40332         var pm = date.add(Date.MONTH, -1);
40333         var prevStart = pm.getDaysInMonth()-startingPos;
40334 //        
40335         
40336         
40337         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40338         
40339         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
40340         //this.cells.addClassOnOver('fc-state-hover');
40341         
40342         var cells = this.cells.elements;
40343         var textEls = this.textNodes;
40344         
40345         //Roo.each(cells, function(cell){
40346         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
40347         //});
40348         
40349         days += startingPos;
40350
40351         // convert everything to numbers so it's fast
40352         var day = 86400000;
40353         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
40354         //Roo.log(d);
40355         //Roo.log(pm);
40356         //Roo.log(prevStart);
40357         
40358         var today = new Date().clearTime().getTime();
40359         var sel = date.clearTime().getTime();
40360         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
40361         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
40362         var ddMatch = this.disabledDatesRE;
40363         var ddText = this.disabledDatesText;
40364         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
40365         var ddaysText = this.disabledDaysText;
40366         var format = this.format;
40367         
40368         var setCellClass = function(cal, cell){
40369             
40370             //Roo.log('set Cell Class');
40371             cell.title = "";
40372             var t = d.getTime();
40373             
40374             //Roo.log(d);
40375             
40376             
40377             cell.dateValue = t;
40378             if(t == today){
40379                 cell.className += " fc-today";
40380                 cell.className += " fc-state-highlight";
40381                 cell.title = cal.todayText;
40382             }
40383             if(t == sel){
40384                 // disable highlight in other month..
40385                 cell.className += " fc-state-highlight";
40386                 
40387             }
40388             // disabling
40389             if(t < min) {
40390                 //cell.className = " fc-state-disabled";
40391                 cell.title = cal.minText;
40392                 return;
40393             }
40394             if(t > max) {
40395                 //cell.className = " fc-state-disabled";
40396                 cell.title = cal.maxText;
40397                 return;
40398             }
40399             if(ddays){
40400                 if(ddays.indexOf(d.getDay()) != -1){
40401                     // cell.title = ddaysText;
40402                    // cell.className = " fc-state-disabled";
40403                 }
40404             }
40405             if(ddMatch && format){
40406                 var fvalue = d.dateFormat(format);
40407                 if(ddMatch.test(fvalue)){
40408                     cell.title = ddText.replace("%0", fvalue);
40409                    cell.className = " fc-state-disabled";
40410                 }
40411             }
40412             
40413             if (!cell.initialClassName) {
40414                 cell.initialClassName = cell.dom.className;
40415             }
40416             
40417             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
40418         };
40419
40420         var i = 0;
40421         
40422         for(; i < startingPos; i++) {
40423             cells[i].dayName =  (++prevStart);
40424             Roo.log(textEls[i]);
40425             d.setDate(d.getDate()+1);
40426             
40427             //cells[i].className = "fc-past fc-other-month";
40428             setCellClass(this, cells[i]);
40429         }
40430         
40431         var intDay = 0;
40432         
40433         for(; i < days; i++){
40434             intDay = i - startingPos + 1;
40435             cells[i].dayName =  (intDay);
40436             d.setDate(d.getDate()+1);
40437             
40438             cells[i].className = ''; // "x-date-active";
40439             setCellClass(this, cells[i]);
40440         }
40441         var extraDays = 0;
40442         
40443         for(; i < 42; i++) {
40444             //textEls[i].innerHTML = (++extraDays);
40445             
40446             d.setDate(d.getDate()+1);
40447             cells[i].dayName = (++extraDays);
40448             cells[i].className = "fc-future fc-other-month";
40449             setCellClass(this, cells[i]);
40450         }
40451         
40452         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
40453         
40454         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
40455         
40456         // this will cause all the cells to mis
40457         var rows= [];
40458         var i =0;
40459         for (var r = 0;r < 6;r++) {
40460             for (var c =0;c < 7;c++) {
40461                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
40462             }    
40463         }
40464         
40465         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40466         for(i=0;i<cells.length;i++) {
40467             
40468             this.cells.elements[i].dayName = cells[i].dayName ;
40469             this.cells.elements[i].className = cells[i].className;
40470             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
40471             this.cells.elements[i].title = cells[i].title ;
40472             this.cells.elements[i].dateValue = cells[i].dateValue ;
40473         }
40474         
40475         
40476         
40477         
40478         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
40479         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
40480         
40481         ////if(totalRows != 6){
40482             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
40483            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
40484        // }
40485         
40486         this.fireEvent('monthchange', this, date);
40487         
40488         
40489     },
40490  /**
40491      * Returns the grid's SelectionModel.
40492      * @return {SelectionModel}
40493      */
40494     getSelectionModel : function(){
40495         if(!this.selModel){
40496             this.selModel = new Roo.grid.CellSelectionModel();
40497         }
40498         return this.selModel;
40499     },
40500
40501     load: function() {
40502         this.eventStore.load()
40503         
40504         
40505         
40506     },
40507     
40508     findCell : function(dt) {
40509         dt = dt.clearTime().getTime();
40510         var ret = false;
40511         this.cells.each(function(c){
40512             //Roo.log("check " +c.dateValue + '?=' + dt);
40513             if(c.dateValue == dt){
40514                 ret = c;
40515                 return false;
40516             }
40517             return true;
40518         });
40519         
40520         return ret;
40521     },
40522     
40523     findCells : function(rec) {
40524         var s = rec.data.start_dt.clone().clearTime().getTime();
40525        // Roo.log(s);
40526         var e= rec.data.end_dt.clone().clearTime().getTime();
40527        // Roo.log(e);
40528         var ret = [];
40529         this.cells.each(function(c){
40530              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
40531             
40532             if(c.dateValue > e){
40533                 return ;
40534             }
40535             if(c.dateValue < s){
40536                 return ;
40537             }
40538             ret.push(c);
40539         });
40540         
40541         return ret;    
40542     },
40543     
40544     findBestRow: function(cells)
40545     {
40546         var ret = 0;
40547         
40548         for (var i =0 ; i < cells.length;i++) {
40549             ret  = Math.max(cells[i].rows || 0,ret);
40550         }
40551         return ret;
40552         
40553     },
40554     
40555     
40556     addItem : function(rec)
40557     {
40558         // look for vertical location slot in
40559         var cells = this.findCells(rec);
40560         
40561         rec.row = this.findBestRow(cells);
40562         
40563         // work out the location.
40564         
40565         var crow = false;
40566         var rows = [];
40567         for(var i =0; i < cells.length; i++) {
40568             if (!crow) {
40569                 crow = {
40570                     start : cells[i],
40571                     end :  cells[i]
40572                 };
40573                 continue;
40574             }
40575             if (crow.start.getY() == cells[i].getY()) {
40576                 // on same row.
40577                 crow.end = cells[i];
40578                 continue;
40579             }
40580             // different row.
40581             rows.push(crow);
40582             crow = {
40583                 start: cells[i],
40584                 end : cells[i]
40585             };
40586             
40587         }
40588         
40589         rows.push(crow);
40590         rec.els = [];
40591         rec.rows = rows;
40592         rec.cells = cells;
40593         for (var i = 0; i < cells.length;i++) {
40594             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
40595             
40596         }
40597         
40598         
40599     },
40600     
40601     clearEvents: function() {
40602         
40603         if (!this.eventStore.getCount()) {
40604             return;
40605         }
40606         // reset number of rows in cells.
40607         Roo.each(this.cells.elements, function(c){
40608             c.rows = 0;
40609         });
40610         
40611         this.eventStore.each(function(e) {
40612             this.clearEvent(e);
40613         },this);
40614         
40615     },
40616     
40617     clearEvent : function(ev)
40618     {
40619         if (ev.els) {
40620             Roo.each(ev.els, function(el) {
40621                 el.un('mouseenter' ,this.onEventEnter, this);
40622                 el.un('mouseleave' ,this.onEventLeave, this);
40623                 el.remove();
40624             },this);
40625             ev.els = [];
40626         }
40627     },
40628     
40629     
40630     renderEvent : function(ev,ctr) {
40631         if (!ctr) {
40632              ctr = this.view.el.select('.fc-event-container',true).first();
40633         }
40634         
40635          
40636         this.clearEvent(ev);
40637             //code
40638        
40639         
40640         
40641         ev.els = [];
40642         var cells = ev.cells;
40643         var rows = ev.rows;
40644         this.fireEvent('eventrender', this, ev);
40645         
40646         for(var i =0; i < rows.length; i++) {
40647             
40648             cls = '';
40649             if (i == 0) {
40650                 cls += ' fc-event-start';
40651             }
40652             if ((i+1) == rows.length) {
40653                 cls += ' fc-event-end';
40654             }
40655             
40656             //Roo.log(ev.data);
40657             // how many rows should it span..
40658             var cg = this.eventTmpl.append(ctr,Roo.apply({
40659                 fccls : cls
40660                 
40661             }, ev.data) , true);
40662             
40663             
40664             cg.on('mouseenter' ,this.onEventEnter, this, ev);
40665             cg.on('mouseleave' ,this.onEventLeave, this, ev);
40666             cg.on('click', this.onEventClick, this, ev);
40667             
40668             ev.els.push(cg);
40669             
40670             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
40671             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
40672             //Roo.log(cg);
40673              
40674             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
40675             cg.setWidth(ebox.right - sbox.x -2);
40676         }
40677     },
40678     
40679     renderEvents: function()
40680     {   
40681         // first make sure there is enough space..
40682         
40683         if (!this.eventTmpl) {
40684             this.eventTmpl = new Roo.Template(
40685                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
40686                     '<div class="fc-event-inner">' +
40687                         '<span class="fc-event-time">{time}</span>' +
40688                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
40689                     '</div>' +
40690                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
40691                 '</div>'
40692             );
40693                 
40694         }
40695                
40696         
40697         
40698         this.cells.each(function(c) {
40699             //Roo.log(c.select('.fc-day-content div',true).first());
40700             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
40701         });
40702         
40703         var ctr = this.view.el.select('.fc-event-container',true).first();
40704         
40705         var cls;
40706         this.eventStore.each(function(ev){
40707             
40708             this.renderEvent(ev);
40709              
40710              
40711         }, this);
40712         this.view.layout();
40713         
40714     },
40715     
40716     onEventEnter: function (e, el,event,d) {
40717         this.fireEvent('evententer', this, el, event);
40718     },
40719     
40720     onEventLeave: function (e, el,event,d) {
40721         this.fireEvent('eventleave', this, el, event);
40722     },
40723     
40724     onEventClick: function (e, el,event,d) {
40725         this.fireEvent('eventclick', this, el, event);
40726     },
40727     
40728     onMonthChange: function () {
40729         this.store.load();
40730     },
40731     
40732     onLoad: function () {
40733         
40734         //Roo.log('calendar onload');
40735 //         
40736         if(this.eventStore.getCount() > 0){
40737             
40738            
40739             
40740             this.eventStore.each(function(d){
40741                 
40742                 
40743                 // FIXME..
40744                 var add =   d.data;
40745                 if (typeof(add.end_dt) == 'undefined')  {
40746                     Roo.log("Missing End time in calendar data: ");
40747                     Roo.log(d);
40748                     return;
40749                 }
40750                 if (typeof(add.start_dt) == 'undefined')  {
40751                     Roo.log("Missing Start time in calendar data: ");
40752                     Roo.log(d);
40753                     return;
40754                 }
40755                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
40756                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
40757                 add.id = add.id || d.id;
40758                 add.title = add.title || '??';
40759                 
40760                 this.addItem(d);
40761                 
40762              
40763             },this);
40764         }
40765         
40766         this.renderEvents();
40767     }
40768     
40769
40770 });
40771 /*
40772  grid : {
40773                 xtype: 'Grid',
40774                 xns: Roo.grid,
40775                 listeners : {
40776                     render : function ()
40777                     {
40778                         _this.grid = this;
40779                         
40780                         if (!this.view.el.hasClass('course-timesheet')) {
40781                             this.view.el.addClass('course-timesheet');
40782                         }
40783                         if (this.tsStyle) {
40784                             this.ds.load({});
40785                             return; 
40786                         }
40787                         Roo.log('width');
40788                         Roo.log(_this.grid.view.el.getWidth());
40789                         
40790                         
40791                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
40792                             '.course-timesheet .x-grid-row' : {
40793                                 height: '80px'
40794                             },
40795                             '.x-grid-row td' : {
40796                                 'vertical-align' : 0
40797                             },
40798                             '.course-edit-link' : {
40799                                 'color' : 'blue',
40800                                 'text-overflow' : 'ellipsis',
40801                                 'overflow' : 'hidden',
40802                                 'white-space' : 'nowrap',
40803                                 'cursor' : 'pointer'
40804                             },
40805                             '.sub-link' : {
40806                                 'color' : 'green'
40807                             },
40808                             '.de-act-sup-link' : {
40809                                 'color' : 'purple',
40810                                 'text-decoration' : 'line-through'
40811                             },
40812                             '.de-act-link' : {
40813                                 'color' : 'red',
40814                                 'text-decoration' : 'line-through'
40815                             },
40816                             '.course-timesheet .course-highlight' : {
40817                                 'border-top-style': 'dashed !important',
40818                                 'border-bottom-bottom': 'dashed !important'
40819                             },
40820                             '.course-timesheet .course-item' : {
40821                                 'font-family'   : 'tahoma, arial, helvetica',
40822                                 'font-size'     : '11px',
40823                                 'overflow'      : 'hidden',
40824                                 'padding-left'  : '10px',
40825                                 'padding-right' : '10px',
40826                                 'padding-top' : '10px' 
40827                             }
40828                             
40829                         }, Roo.id());
40830                                 this.ds.load({});
40831                     }
40832                 },
40833                 autoWidth : true,
40834                 monitorWindowResize : false,
40835                 cellrenderer : function(v,x,r)
40836                 {
40837                     return v;
40838                 },
40839                 sm : {
40840                     xtype: 'CellSelectionModel',
40841                     xns: Roo.grid
40842                 },
40843                 dataSource : {
40844                     xtype: 'Store',
40845                     xns: Roo.data,
40846                     listeners : {
40847                         beforeload : function (_self, options)
40848                         {
40849                             options.params = options.params || {};
40850                             options.params._month = _this.monthField.getValue();
40851                             options.params.limit = 9999;
40852                             options.params['sort'] = 'when_dt';    
40853                             options.params['dir'] = 'ASC';    
40854                             this.proxy.loadResponse = this.loadResponse;
40855                             Roo.log("load?");
40856                             //this.addColumns();
40857                         },
40858                         load : function (_self, records, options)
40859                         {
40860                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
40861                                 // if you click on the translation.. you can edit it...
40862                                 var el = Roo.get(this);
40863                                 var id = el.dom.getAttribute('data-id');
40864                                 var d = el.dom.getAttribute('data-date');
40865                                 var t = el.dom.getAttribute('data-time');
40866                                 //var id = this.child('span').dom.textContent;
40867                                 
40868                                 //Roo.log(this);
40869                                 Pman.Dialog.CourseCalendar.show({
40870                                     id : id,
40871                                     when_d : d,
40872                                     when_t : t,
40873                                     productitem_active : id ? 1 : 0
40874                                 }, function() {
40875                                     _this.grid.ds.load({});
40876                                 });
40877                            
40878                            });
40879                            
40880                            _this.panel.fireEvent('resize', [ '', '' ]);
40881                         }
40882                     },
40883                     loadResponse : function(o, success, response){
40884                             // this is overridden on before load..
40885                             
40886                             Roo.log("our code?");       
40887                             //Roo.log(success);
40888                             //Roo.log(response)
40889                             delete this.activeRequest;
40890                             if(!success){
40891                                 this.fireEvent("loadexception", this, o, response);
40892                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
40893                                 return;
40894                             }
40895                             var result;
40896                             try {
40897                                 result = o.reader.read(response);
40898                             }catch(e){
40899                                 Roo.log("load exception?");
40900                                 this.fireEvent("loadexception", this, o, response, e);
40901                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
40902                                 return;
40903                             }
40904                             Roo.log("ready...");        
40905                             // loop through result.records;
40906                             // and set this.tdate[date] = [] << array of records..
40907                             _this.tdata  = {};
40908                             Roo.each(result.records, function(r){
40909                                 //Roo.log(r.data);
40910                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
40911                                     _this.tdata[r.data.when_dt.format('j')] = [];
40912                                 }
40913                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
40914                             });
40915                             
40916                             //Roo.log(_this.tdata);
40917                             
40918                             result.records = [];
40919                             result.totalRecords = 6;
40920                     
40921                             // let's generate some duumy records for the rows.
40922                             //var st = _this.dateField.getValue();
40923                             
40924                             // work out monday..
40925                             //st = st.add(Date.DAY, -1 * st.format('w'));
40926                             
40927                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
40928                             
40929                             var firstOfMonth = date.getFirstDayOfMonth();
40930                             var days = date.getDaysInMonth();
40931                             var d = 1;
40932                             var firstAdded = false;
40933                             for (var i = 0; i < result.totalRecords ; i++) {
40934                                 //var d= st.add(Date.DAY, i);
40935                                 var row = {};
40936                                 var added = 0;
40937                                 for(var w = 0 ; w < 7 ; w++){
40938                                     if(!firstAdded && firstOfMonth != w){
40939                                         continue;
40940                                     }
40941                                     if(d > days){
40942                                         continue;
40943                                     }
40944                                     firstAdded = true;
40945                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
40946                                     row['weekday'+w] = String.format(
40947                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
40948                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
40949                                                     d,
40950                                                     date.format('Y-m-')+dd
40951                                                 );
40952                                     added++;
40953                                     if(typeof(_this.tdata[d]) != 'undefined'){
40954                                         Roo.each(_this.tdata[d], function(r){
40955                                             var is_sub = '';
40956                                             var deactive = '';
40957                                             var id = r.id;
40958                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
40959                                             if(r.parent_id*1>0){
40960                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
40961                                                 id = r.parent_id;
40962                                             }
40963                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
40964                                                 deactive = 'de-act-link';
40965                                             }
40966                                             
40967                                             row['weekday'+w] += String.format(
40968                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
40969                                                     id, //0
40970                                                     r.product_id_name, //1
40971                                                     r.when_dt.format('h:ia'), //2
40972                                                     is_sub, //3
40973                                                     deactive, //4
40974                                                     desc // 5
40975                                             );
40976                                         });
40977                                     }
40978                                     d++;
40979                                 }
40980                                 
40981                                 // only do this if something added..
40982                                 if(added > 0){ 
40983                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
40984                                 }
40985                                 
40986                                 
40987                                 // push it twice. (second one with an hour..
40988                                 
40989                             }
40990                             //Roo.log(result);
40991                             this.fireEvent("load", this, o, o.request.arg);
40992                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
40993                         },
40994                     sortInfo : {field: 'when_dt', direction : 'ASC' },
40995                     proxy : {
40996                         xtype: 'HttpProxy',
40997                         xns: Roo.data,
40998                         method : 'GET',
40999                         url : baseURL + '/Roo/Shop_course.php'
41000                     },
41001                     reader : {
41002                         xtype: 'JsonReader',
41003                         xns: Roo.data,
41004                         id : 'id',
41005                         fields : [
41006                             {
41007                                 'name': 'id',
41008                                 'type': 'int'
41009                             },
41010                             {
41011                                 'name': 'when_dt',
41012                                 'type': 'string'
41013                             },
41014                             {
41015                                 'name': 'end_dt',
41016                                 'type': 'string'
41017                             },
41018                             {
41019                                 'name': 'parent_id',
41020                                 'type': 'int'
41021                             },
41022                             {
41023                                 'name': 'product_id',
41024                                 'type': 'int'
41025                             },
41026                             {
41027                                 'name': 'productitem_id',
41028                                 'type': 'int'
41029                             },
41030                             {
41031                                 'name': 'guid',
41032                                 'type': 'int'
41033                             }
41034                         ]
41035                     }
41036                 },
41037                 toolbar : {
41038                     xtype: 'Toolbar',
41039                     xns: Roo,
41040                     items : [
41041                         {
41042                             xtype: 'Button',
41043                             xns: Roo.Toolbar,
41044                             listeners : {
41045                                 click : function (_self, e)
41046                                 {
41047                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41048                                     sd.setMonth(sd.getMonth()-1);
41049                                     _this.monthField.setValue(sd.format('Y-m-d'));
41050                                     _this.grid.ds.load({});
41051                                 }
41052                             },
41053                             text : "Back"
41054                         },
41055                         {
41056                             xtype: 'Separator',
41057                             xns: Roo.Toolbar
41058                         },
41059                         {
41060                             xtype: 'MonthField',
41061                             xns: Roo.form,
41062                             listeners : {
41063                                 render : function (_self)
41064                                 {
41065                                     _this.monthField = _self;
41066                                    // _this.monthField.set  today
41067                                 },
41068                                 select : function (combo, date)
41069                                 {
41070                                     _this.grid.ds.load({});
41071                                 }
41072                             },
41073                             value : (function() { return new Date(); })()
41074                         },
41075                         {
41076                             xtype: 'Separator',
41077                             xns: Roo.Toolbar
41078                         },
41079                         {
41080                             xtype: 'TextItem',
41081                             xns: Roo.Toolbar,
41082                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
41083                         },
41084                         {
41085                             xtype: 'Fill',
41086                             xns: Roo.Toolbar
41087                         },
41088                         {
41089                             xtype: 'Button',
41090                             xns: Roo.Toolbar,
41091                             listeners : {
41092                                 click : function (_self, e)
41093                                 {
41094                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41095                                     sd.setMonth(sd.getMonth()+1);
41096                                     _this.monthField.setValue(sd.format('Y-m-d'));
41097                                     _this.grid.ds.load({});
41098                                 }
41099                             },
41100                             text : "Next"
41101                         }
41102                     ]
41103                 },
41104                  
41105             }
41106         };
41107         
41108         *//*
41109  * Based on:
41110  * Ext JS Library 1.1.1
41111  * Copyright(c) 2006-2007, Ext JS, LLC.
41112  *
41113  * Originally Released Under LGPL - original licence link has changed is not relivant.
41114  *
41115  * Fork - LGPL
41116  * <script type="text/javascript">
41117  */
41118  
41119 /**
41120  * @class Roo.LoadMask
41121  * A simple utility class for generically masking elements while loading data.  If the element being masked has
41122  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
41123  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
41124  * element's UpdateManager load indicator and will be destroyed after the initial load.
41125  * @constructor
41126  * Create a new LoadMask
41127  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
41128  * @param {Object} config The config object
41129  */
41130 Roo.LoadMask = function(el, config){
41131     this.el = Roo.get(el);
41132     Roo.apply(this, config);
41133     if(this.store){
41134         this.store.on('beforeload', this.onBeforeLoad, this);
41135         this.store.on('load', this.onLoad, this);
41136         this.store.on('loadexception', this.onLoadException, this);
41137         this.removeMask = false;
41138     }else{
41139         var um = this.el.getUpdateManager();
41140         um.showLoadIndicator = false; // disable the default indicator
41141         um.on('beforeupdate', this.onBeforeLoad, this);
41142         um.on('update', this.onLoad, this);
41143         um.on('failure', this.onLoad, this);
41144         this.removeMask = true;
41145     }
41146 };
41147
41148 Roo.LoadMask.prototype = {
41149     /**
41150      * @cfg {Boolean} removeMask
41151      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
41152      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
41153      */
41154     /**
41155      * @cfg {String} msg
41156      * The text to display in a centered loading message box (defaults to 'Loading...')
41157      */
41158     msg : 'Loading...',
41159     /**
41160      * @cfg {String} msgCls
41161      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
41162      */
41163     msgCls : 'x-mask-loading',
41164
41165     /**
41166      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
41167      * @type Boolean
41168      */
41169     disabled: false,
41170
41171     /**
41172      * Disables the mask to prevent it from being displayed
41173      */
41174     disable : function(){
41175        this.disabled = true;
41176     },
41177
41178     /**
41179      * Enables the mask so that it can be displayed
41180      */
41181     enable : function(){
41182         this.disabled = false;
41183     },
41184     
41185     onLoadException : function()
41186     {
41187         Roo.log(arguments);
41188         
41189         if (typeof(arguments[3]) != 'undefined') {
41190             Roo.MessageBox.alert("Error loading",arguments[3]);
41191         } 
41192         /*
41193         try {
41194             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41195                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41196             }   
41197         } catch(e) {
41198             
41199         }
41200         */
41201     
41202         
41203         
41204         this.el.unmask(this.removeMask);
41205     },
41206     // private
41207     onLoad : function()
41208     {
41209         this.el.unmask(this.removeMask);
41210     },
41211
41212     // private
41213     onBeforeLoad : function(){
41214         if(!this.disabled){
41215             this.el.mask(this.msg, this.msgCls);
41216         }
41217     },
41218
41219     // private
41220     destroy : function(){
41221         if(this.store){
41222             this.store.un('beforeload', this.onBeforeLoad, this);
41223             this.store.un('load', this.onLoad, this);
41224             this.store.un('loadexception', this.onLoadException, this);
41225         }else{
41226             var um = this.el.getUpdateManager();
41227             um.un('beforeupdate', this.onBeforeLoad, this);
41228             um.un('update', this.onLoad, this);
41229             um.un('failure', this.onLoad, this);
41230         }
41231     }
41232 };/*
41233  * Based on:
41234  * Ext JS Library 1.1.1
41235  * Copyright(c) 2006-2007, Ext JS, LLC.
41236  *
41237  * Originally Released Under LGPL - original licence link has changed is not relivant.
41238  *
41239  * Fork - LGPL
41240  * <script type="text/javascript">
41241  */
41242
41243
41244 /**
41245  * @class Roo.XTemplate
41246  * @extends Roo.Template
41247  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
41248 <pre><code>
41249 var t = new Roo.XTemplate(
41250         '&lt;select name="{name}"&gt;',
41251                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
41252         '&lt;/select&gt;'
41253 );
41254  
41255 // then append, applying the master template values
41256  </code></pre>
41257  *
41258  * Supported features:
41259  *
41260  *  Tags:
41261
41262 <pre><code>
41263       {a_variable} - output encoded.
41264       {a_variable.format:("Y-m-d")} - call a method on the variable
41265       {a_variable:raw} - unencoded output
41266       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
41267       {a_variable:this.method_on_template(...)} - call a method on the template object.
41268  
41269 </code></pre>
41270  *  The tpl tag:
41271 <pre><code>
41272         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
41273         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
41274         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
41275         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
41276   
41277         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
41278         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
41279 </code></pre>
41280  *      
41281  */
41282 Roo.XTemplate = function()
41283 {
41284     Roo.XTemplate.superclass.constructor.apply(this, arguments);
41285     if (this.html) {
41286         this.compile();
41287     }
41288 };
41289
41290
41291 Roo.extend(Roo.XTemplate, Roo.Template, {
41292
41293     /**
41294      * The various sub templates
41295      */
41296     tpls : false,
41297     /**
41298      *
41299      * basic tag replacing syntax
41300      * WORD:WORD()
41301      *
41302      * // you can fake an object call by doing this
41303      *  x.t:(test,tesT) 
41304      * 
41305      */
41306     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
41307
41308     /**
41309      * compile the template
41310      *
41311      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
41312      *
41313      */
41314     compile: function()
41315     {
41316         var s = this.html;
41317      
41318         s = ['<tpl>', s, '</tpl>'].join('');
41319     
41320         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
41321             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
41322             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
41323             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
41324             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
41325             m,
41326             id     = 0,
41327             tpls   = [];
41328     
41329         while(true == !!(m = s.match(re))){
41330             var forMatch   = m[0].match(nameRe),
41331                 ifMatch   = m[0].match(ifRe),
41332                 execMatch   = m[0].match(execRe),
41333                 namedMatch   = m[0].match(namedRe),
41334                 
41335                 exp  = null, 
41336                 fn   = null,
41337                 exec = null,
41338                 name = forMatch && forMatch[1] ? forMatch[1] : '';
41339                 
41340             if (ifMatch) {
41341                 // if - puts fn into test..
41342                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
41343                 if(exp){
41344                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
41345                 }
41346             }
41347             
41348             if (execMatch) {
41349                 // exec - calls a function... returns empty if true is  returned.
41350                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
41351                 if(exp){
41352                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
41353                 }
41354             }
41355             
41356             
41357             if (name) {
41358                 // for = 
41359                 switch(name){
41360                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
41361                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
41362                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
41363                 }
41364             }
41365             var uid = namedMatch ? namedMatch[1] : id;
41366             
41367             
41368             tpls.push({
41369                 id:     namedMatch ? namedMatch[1] : id,
41370                 target: name,
41371                 exec:   exec,
41372                 test:   fn,
41373                 body:   m[1] || ''
41374             });
41375             if (namedMatch) {
41376                 s = s.replace(m[0], '');
41377             } else { 
41378                 s = s.replace(m[0], '{xtpl'+ id + '}');
41379             }
41380             ++id;
41381         }
41382         this.tpls = [];
41383         for(var i = tpls.length-1; i >= 0; --i){
41384             this.compileTpl(tpls[i]);
41385             this.tpls[tpls[i].id] = tpls[i];
41386         }
41387         this.master = tpls[tpls.length-1];
41388         return this;
41389     },
41390     /**
41391      * same as applyTemplate, except it's done to one of the subTemplates
41392      * when using named templates, you can do:
41393      *
41394      * var str = pl.applySubTemplate('your-name', values);
41395      *
41396      * 
41397      * @param {Number} id of the template
41398      * @param {Object} values to apply to template
41399      * @param {Object} parent (normaly the instance of this object)
41400      */
41401     applySubTemplate : function(id, values, parent)
41402     {
41403         
41404         
41405         var t = this.tpls[id];
41406         
41407         
41408         try { 
41409             if(t.test && !t.test.call(this, values, parent)){
41410                 return '';
41411             }
41412         } catch(e) {
41413             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
41414             Roo.log(e.toString());
41415             Roo.log(t.test);
41416             return ''
41417         }
41418         try { 
41419             
41420             if(t.exec && t.exec.call(this, values, parent)){
41421                 return '';
41422             }
41423         } catch(e) {
41424             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
41425             Roo.log(e.toString());
41426             Roo.log(t.exec);
41427             return ''
41428         }
41429         try {
41430             var vs = t.target ? t.target.call(this, values, parent) : values;
41431             parent = t.target ? values : parent;
41432             if(t.target && vs instanceof Array){
41433                 var buf = [];
41434                 for(var i = 0, len = vs.length; i < len; i++){
41435                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
41436                 }
41437                 return buf.join('');
41438             }
41439             return t.compiled.call(this, vs, parent);
41440         } catch (e) {
41441             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
41442             Roo.log(e.toString());
41443             Roo.log(t.compiled);
41444             return '';
41445         }
41446     },
41447
41448     compileTpl : function(tpl)
41449     {
41450         var fm = Roo.util.Format;
41451         var useF = this.disableFormats !== true;
41452         var sep = Roo.isGecko ? "+" : ",";
41453         var undef = function(str) {
41454             Roo.log("Property not found :"  + str);
41455             return '';
41456         };
41457         
41458         var fn = function(m, name, format, args)
41459         {
41460             //Roo.log(arguments);
41461             args = args ? args.replace(/\\'/g,"'") : args;
41462             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
41463             if (typeof(format) == 'undefined') {
41464                 format= 'htmlEncode';
41465             }
41466             if (format == 'raw' ) {
41467                 format = false;
41468             }
41469             
41470             if(name.substr(0, 4) == 'xtpl'){
41471                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
41472             }
41473             
41474             // build an array of options to determine if value is undefined..
41475             
41476             // basically get 'xxxx.yyyy' then do
41477             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
41478             //    (function () { Roo.log("Property not found"); return ''; })() :
41479             //    ......
41480             
41481             var udef_ar = [];
41482             var lookfor = '';
41483             Roo.each(name.split('.'), function(st) {
41484                 lookfor += (lookfor.length ? '.': '') + st;
41485                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
41486             });
41487             
41488             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
41489             
41490             
41491             if(format && useF){
41492                 
41493                 args = args ? ',' + args : "";
41494                  
41495                 if(format.substr(0, 5) != "this."){
41496                     format = "fm." + format + '(';
41497                 }else{
41498                     format = 'this.call("'+ format.substr(5) + '", ';
41499                     args = ", values";
41500                 }
41501                 
41502                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
41503             }
41504              
41505             if (args.length) {
41506                 // called with xxyx.yuu:(test,test)
41507                 // change to ()
41508                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
41509             }
41510             // raw.. - :raw modifier..
41511             return "'"+ sep + udef_st  + name + ")"+sep+"'";
41512             
41513         };
41514         var body;
41515         // branched to use + in gecko and [].join() in others
41516         if(Roo.isGecko){
41517             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
41518                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
41519                     "';};};";
41520         }else{
41521             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
41522             body.push(tpl.body.replace(/(\r\n|\n)/g,
41523                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
41524             body.push("'].join('');};};");
41525             body = body.join('');
41526         }
41527         
41528         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
41529        
41530         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
41531         eval(body);
41532         
41533         return this;
41534     },
41535
41536     applyTemplate : function(values){
41537         return this.master.compiled.call(this, values, {});
41538         //var s = this.subs;
41539     },
41540
41541     apply : function(){
41542         return this.applyTemplate.apply(this, arguments);
41543     }
41544
41545  });
41546
41547 Roo.XTemplate.from = function(el){
41548     el = Roo.getDom(el);
41549     return new Roo.XTemplate(el.value || el.innerHTML);
41550 };