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         Roo.log('refresh');
8611         var t = this.tpl;
8612         
8613         // if we are using something like 'domtemplate', then
8614         // the what gets used is:
8615         // t.applySubtemplate(NAME, data, wrapping data..)
8616         // the outer template then get' applied with
8617         //     the store 'extra data'
8618         // and the body get's added to the
8619         //      roo-name="data" node?
8620         //      <span class='roo-tpl-{name}'></span> ?????
8621         
8622         
8623         
8624         this.clearSelections();
8625         this.el.update("");
8626         var html = [];
8627         var records = this.store.getRange();
8628         if(records.length < 1) {
8629             
8630             // is this valid??  = should it render a template??
8631             
8632             this.el.update(this.emptyText);
8633             return;
8634         }
8635         var el = this.el;
8636         if (this.dataName) {
8637             this.el.update(t.apply(this.store.meta)); //????
8638             el = this.el.child('.roo-tpl-' + this.dataName);
8639         }
8640         
8641         for(var i = 0, len = records.length; i < len; i++){
8642             var data = this.prepareData(records[i].data, i, records[i]);
8643             this.fireEvent("preparedata", this, data, i, records[i]);
8644             html[html.length] = Roo.util.Format.trim(
8645                 this.dataName ?
8646                     t.applySubtemplate(this.dataName, data, this.store.meta) :
8647                     t.apply(data)
8648             );
8649         }
8650         
8651         
8652         
8653         el.update(html.join(""));
8654         this.nodes = el.dom.childNodes;
8655         this.updateIndexes(0);
8656     },
8657     
8658
8659     /**
8660      * Function to override to reformat the data that is sent to
8661      * the template for each node.
8662      * DEPRICATED - use the preparedata event handler.
8663      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
8664      * a JSON object for an UpdateManager bound view).
8665      */
8666     prepareData : function(data, index, record)
8667     {
8668         this.fireEvent("preparedata", this, data, index, record);
8669         return data;
8670     },
8671
8672     onUpdate : function(ds, record){
8673          Roo.log('on update');   
8674         this.clearSelections();
8675         var index = this.store.indexOf(record);
8676         var n = this.nodes[index];
8677         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
8678         n.parentNode.removeChild(n);
8679         this.updateIndexes(index, index);
8680     },
8681
8682     
8683     
8684 // --------- FIXME     
8685     onAdd : function(ds, records, index)
8686     {
8687         Roo.log(['on Add', ds, records, index] );        
8688         this.clearSelections();
8689         if(this.nodes.length == 0){
8690             this.refresh();
8691             return;
8692         }
8693         var n = this.nodes[index];
8694         for(var i = 0, len = records.length; i < len; i++){
8695             var d = this.prepareData(records[i].data, i, records[i]);
8696             if(n){
8697                 this.tpl.insertBefore(n, d);
8698             }else{
8699                 
8700                 this.tpl.append(this.el, d);
8701             }
8702         }
8703         this.updateIndexes(index);
8704     },
8705
8706     onRemove : function(ds, record, index){
8707         Roo.log('onRemove');
8708         this.clearSelections();
8709         var el = this.dataName  ?
8710             this.el.child('.roo-tpl-' + this.dataName) :
8711             this.el; 
8712         el.dom.removeChild(this.nodes[index]);
8713         this.updateIndexes(index);
8714     },
8715
8716     /**
8717      * Refresh an individual node.
8718      * @param {Number} index
8719      */
8720     refreshNode : function(index){
8721         this.onUpdate(this.store, this.store.getAt(index));
8722     },
8723
8724     updateIndexes : function(startIndex, endIndex){
8725         var ns = this.nodes;
8726         startIndex = startIndex || 0;
8727         endIndex = endIndex || ns.length - 1;
8728         for(var i = startIndex; i <= endIndex; i++){
8729             ns[i].nodeIndex = i;
8730         }
8731     },
8732
8733     /**
8734      * Changes the data store this view uses and refresh the view.
8735      * @param {Store} store
8736      */
8737     setStore : function(store, initial){
8738         if(!initial && this.store){
8739             this.store.un("datachanged", this.refresh);
8740             this.store.un("add", this.onAdd);
8741             this.store.un("remove", this.onRemove);
8742             this.store.un("update", this.onUpdate);
8743             this.store.un("clear", this.refresh);
8744             this.store.un("beforeload", this.onBeforeLoad);
8745             this.store.un("load", this.onLoad);
8746             this.store.un("loadexception", this.onLoad);
8747         }
8748         if(store){
8749           
8750             store.on("datachanged", this.refresh, this);
8751             store.on("add", this.onAdd, this);
8752             store.on("remove", this.onRemove, this);
8753             store.on("update", this.onUpdate, this);
8754             store.on("clear", this.refresh, this);
8755             store.on("beforeload", this.onBeforeLoad, this);
8756             store.on("load", this.onLoad, this);
8757             store.on("loadexception", this.onLoad, this);
8758         }
8759         
8760         if(store){
8761             this.refresh();
8762         }
8763     },
8764     /**
8765      * onbeforeLoad - masks the loading area.
8766      *
8767      */
8768     onBeforeLoad : function(store,opts)
8769     {
8770          Roo.log('onBeforeLoad');   
8771         if (!opts.add) {
8772             this.el.update("");
8773         }
8774         this.el.mask(this.mask ? this.mask : "Loading" ); 
8775     },
8776     onLoad : function ()
8777     {
8778         this.el.unmask();
8779     },
8780     
8781
8782     /**
8783      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
8784      * @param {HTMLElement} node
8785      * @return {HTMLElement} The template node
8786      */
8787     findItemFromChild : function(node){
8788         var el = this.dataName  ?
8789             this.el.child('.roo-tpl-' + this.dataName,true) :
8790             this.el.dom; 
8791         
8792         if(!node || node.parentNode == el){
8793                     return node;
8794             }
8795             var p = node.parentNode;
8796             while(p && p != el){
8797             if(p.parentNode == el){
8798                 return p;
8799             }
8800             p = p.parentNode;
8801         }
8802             return null;
8803     },
8804
8805     /** @ignore */
8806     onClick : function(e){
8807         var item = this.findItemFromChild(e.getTarget());
8808         if(item){
8809             var index = this.indexOf(item);
8810             if(this.onItemClick(item, index, e) !== false){
8811                 this.fireEvent("click", this, index, item, e);
8812             }
8813         }else{
8814             this.clearSelections();
8815         }
8816     },
8817
8818     /** @ignore */
8819     onContextMenu : function(e){
8820         var item = this.findItemFromChild(e.getTarget());
8821         if(item){
8822             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
8823         }
8824     },
8825
8826     /** @ignore */
8827     onDblClick : function(e){
8828         var item = this.findItemFromChild(e.getTarget());
8829         if(item){
8830             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
8831         }
8832     },
8833
8834     onItemClick : function(item, index, e)
8835     {
8836         if(this.fireEvent("beforeclick", this, index, item, e) === false){
8837             return false;
8838         }
8839         if (this.toggleSelect) {
8840             var m = this.isSelected(item) ? 'unselect' : 'select';
8841             Roo.log(m);
8842             var _t = this;
8843             _t[m](item, true, false);
8844             return true;
8845         }
8846         if(this.multiSelect || this.singleSelect){
8847             if(this.multiSelect && e.shiftKey && this.lastSelection){
8848                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
8849             }else{
8850                 this.select(item, this.multiSelect && e.ctrlKey);
8851                 this.lastSelection = item;
8852             }
8853             e.preventDefault();
8854         }
8855         return true;
8856     },
8857
8858     /**
8859      * Get the number of selected nodes.
8860      * @return {Number}
8861      */
8862     getSelectionCount : function(){
8863         return this.selections.length;
8864     },
8865
8866     /**
8867      * Get the currently selected nodes.
8868      * @return {Array} An array of HTMLElements
8869      */
8870     getSelectedNodes : function(){
8871         return this.selections;
8872     },
8873
8874     /**
8875      * Get the indexes of the selected nodes.
8876      * @return {Array}
8877      */
8878     getSelectedIndexes : function(){
8879         var indexes = [], s = this.selections;
8880         for(var i = 0, len = s.length; i < len; i++){
8881             indexes.push(s[i].nodeIndex);
8882         }
8883         return indexes;
8884     },
8885
8886     /**
8887      * Clear all selections
8888      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
8889      */
8890     clearSelections : function(suppressEvent){
8891         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
8892             this.cmp.elements = this.selections;
8893             this.cmp.removeClass(this.selectedClass);
8894             this.selections = [];
8895             if(!suppressEvent){
8896                 this.fireEvent("selectionchange", this, this.selections);
8897             }
8898         }
8899     },
8900
8901     /**
8902      * Returns true if the passed node is selected
8903      * @param {HTMLElement/Number} node The node or node index
8904      * @return {Boolean}
8905      */
8906     isSelected : function(node){
8907         var s = this.selections;
8908         if(s.length < 1){
8909             return false;
8910         }
8911         node = this.getNode(node);
8912         return s.indexOf(node) !== -1;
8913     },
8914
8915     /**
8916      * Selects nodes.
8917      * @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
8918      * @param {Boolean} keepExisting (optional) true to keep existing selections
8919      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8920      */
8921     select : function(nodeInfo, keepExisting, suppressEvent){
8922         if(nodeInfo instanceof Array){
8923             if(!keepExisting){
8924                 this.clearSelections(true);
8925             }
8926             for(var i = 0, len = nodeInfo.length; i < len; i++){
8927                 this.select(nodeInfo[i], true, true);
8928             }
8929             return;
8930         } 
8931         var node = this.getNode(nodeInfo);
8932         if(!node || this.isSelected(node)){
8933             return; // already selected.
8934         }
8935         if(!keepExisting){
8936             this.clearSelections(true);
8937         }
8938         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
8939             Roo.fly(node).addClass(this.selectedClass);
8940             this.selections.push(node);
8941             if(!suppressEvent){
8942                 this.fireEvent("selectionchange", this, this.selections);
8943             }
8944         }
8945         
8946         
8947     },
8948       /**
8949      * Unselects nodes.
8950      * @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
8951      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
8952      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
8953      */
8954     unselect : function(nodeInfo, keepExisting, suppressEvent)
8955     {
8956         if(nodeInfo instanceof Array){
8957             Roo.each(this.selections, function(s) {
8958                 this.unselect(s, nodeInfo);
8959             }, this);
8960             return;
8961         }
8962         var node = this.getNode(nodeInfo);
8963         if(!node || !this.isSelected(node)){
8964             Roo.log("not selected");
8965             return; // not selected.
8966         }
8967         // fireevent???
8968         var ns = [];
8969         Roo.each(this.selections, function(s) {
8970             if (s == node ) {
8971                 Roo.fly(node).removeClass(this.selectedClass);
8972
8973                 return;
8974             }
8975             ns.push(s);
8976         },this);
8977         
8978         this.selections= ns;
8979         this.fireEvent("selectionchange", this, this.selections);
8980     },
8981
8982     /**
8983      * Gets a template node.
8984      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
8985      * @return {HTMLElement} The node or null if it wasn't found
8986      */
8987     getNode : function(nodeInfo){
8988         if(typeof nodeInfo == "string"){
8989             return document.getElementById(nodeInfo);
8990         }else if(typeof nodeInfo == "number"){
8991             return this.nodes[nodeInfo];
8992         }
8993         return nodeInfo;
8994     },
8995
8996     /**
8997      * Gets a range template nodes.
8998      * @param {Number} startIndex
8999      * @param {Number} endIndex
9000      * @return {Array} An array of nodes
9001      */
9002     getNodes : function(start, end){
9003         var ns = this.nodes;
9004         start = start || 0;
9005         end = typeof end == "undefined" ? ns.length - 1 : end;
9006         var nodes = [];
9007         if(start <= end){
9008             for(var i = start; i <= end; i++){
9009                 nodes.push(ns[i]);
9010             }
9011         } else{
9012             for(var i = start; i >= end; i--){
9013                 nodes.push(ns[i]);
9014             }
9015         }
9016         return nodes;
9017     },
9018
9019     /**
9020      * Finds the index of the passed node
9021      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
9022      * @return {Number} The index of the node or -1
9023      */
9024     indexOf : function(node){
9025         node = this.getNode(node);
9026         if(typeof node.nodeIndex == "number"){
9027             return node.nodeIndex;
9028         }
9029         var ns = this.nodes;
9030         for(var i = 0, len = ns.length; i < len; i++){
9031             if(ns[i] == node){
9032                 return i;
9033             }
9034         }
9035         return -1;
9036     }
9037 });
9038 /*
9039  * Based on:
9040  * Ext JS Library 1.1.1
9041  * Copyright(c) 2006-2007, Ext JS, LLC.
9042  *
9043  * Originally Released Under LGPL - original licence link has changed is not relivant.
9044  *
9045  * Fork - LGPL
9046  * <script type="text/javascript">
9047  */
9048
9049 /**
9050  * @class Roo.JsonView
9051  * @extends Roo.View
9052  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
9053 <pre><code>
9054 var view = new Roo.JsonView({
9055     container: "my-element",
9056     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
9057     multiSelect: true, 
9058     jsonRoot: "data" 
9059 });
9060
9061 // listen for node click?
9062 view.on("click", function(vw, index, node, e){
9063     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
9064 });
9065
9066 // direct load of JSON data
9067 view.load("foobar.php");
9068
9069 // Example from my blog list
9070 var tpl = new Roo.Template(
9071     '&lt;div class="entry"&gt;' +
9072     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
9073     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
9074     "&lt;/div&gt;&lt;hr /&gt;"
9075 );
9076
9077 var moreView = new Roo.JsonView({
9078     container :  "entry-list", 
9079     template : tpl,
9080     jsonRoot: "posts"
9081 });
9082 moreView.on("beforerender", this.sortEntries, this);
9083 moreView.load({
9084     url: "/blog/get-posts.php",
9085     params: "allposts=true",
9086     text: "Loading Blog Entries..."
9087 });
9088 </code></pre>
9089
9090 * Note: old code is supported with arguments : (container, template, config)
9091
9092
9093  * @constructor
9094  * Create a new JsonView
9095  * 
9096  * @param {Object} config The config object
9097  * 
9098  */
9099 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
9100     
9101     
9102     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
9103
9104     var um = this.el.getUpdateManager();
9105     um.setRenderer(this);
9106     um.on("update", this.onLoad, this);
9107     um.on("failure", this.onLoadException, this);
9108
9109     /**
9110      * @event beforerender
9111      * Fires before rendering of the downloaded JSON data.
9112      * @param {Roo.JsonView} this
9113      * @param {Object} data The JSON data loaded
9114      */
9115     /**
9116      * @event load
9117      * Fires when data is loaded.
9118      * @param {Roo.JsonView} this
9119      * @param {Object} data The JSON data loaded
9120      * @param {Object} response The raw Connect response object
9121      */
9122     /**
9123      * @event loadexception
9124      * Fires when loading fails.
9125      * @param {Roo.JsonView} this
9126      * @param {Object} response The raw Connect response object
9127      */
9128     this.addEvents({
9129         'beforerender' : true,
9130         'load' : true,
9131         'loadexception' : true
9132     });
9133 };
9134 Roo.extend(Roo.JsonView, Roo.View, {
9135     /**
9136      * @type {String} The root property in the loaded JSON object that contains the data
9137      */
9138     jsonRoot : "",
9139
9140     /**
9141      * Refreshes the view.
9142      */
9143     refresh : function(){
9144         this.clearSelections();
9145         this.el.update("");
9146         var html = [];
9147         var o = this.jsonData;
9148         if(o && o.length > 0){
9149             for(var i = 0, len = o.length; i < len; i++){
9150                 var data = this.prepareData(o[i], i, o);
9151                 html[html.length] = this.tpl.apply(data);
9152             }
9153         }else{
9154             html.push(this.emptyText);
9155         }
9156         this.el.update(html.join(""));
9157         this.nodes = this.el.dom.childNodes;
9158         this.updateIndexes(0);
9159     },
9160
9161     /**
9162      * 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.
9163      * @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:
9164      <pre><code>
9165      view.load({
9166          url: "your-url.php",
9167          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
9168          callback: yourFunction,
9169          scope: yourObject, //(optional scope)
9170          discardUrl: false,
9171          nocache: false,
9172          text: "Loading...",
9173          timeout: 30,
9174          scripts: false
9175      });
9176      </code></pre>
9177      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
9178      * 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.
9179      * @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}
9180      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
9181      * @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.
9182      */
9183     load : function(){
9184         var um = this.el.getUpdateManager();
9185         um.update.apply(um, arguments);
9186     },
9187
9188     render : function(el, response){
9189         this.clearSelections();
9190         this.el.update("");
9191         var o;
9192         try{
9193             o = Roo.util.JSON.decode(response.responseText);
9194             if(this.jsonRoot){
9195                 
9196                 o = o[this.jsonRoot];
9197             }
9198         } catch(e){
9199         }
9200         /**
9201          * The current JSON data or null
9202          */
9203         this.jsonData = o;
9204         this.beforeRender();
9205         this.refresh();
9206     },
9207
9208 /**
9209  * Get the number of records in the current JSON dataset
9210  * @return {Number}
9211  */
9212     getCount : function(){
9213         return this.jsonData ? this.jsonData.length : 0;
9214     },
9215
9216 /**
9217  * Returns the JSON object for the specified node(s)
9218  * @param {HTMLElement/Array} node The node or an array of nodes
9219  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
9220  * you get the JSON object for the node
9221  */
9222     getNodeData : function(node){
9223         if(node instanceof Array){
9224             var data = [];
9225             for(var i = 0, len = node.length; i < len; i++){
9226                 data.push(this.getNodeData(node[i]));
9227             }
9228             return data;
9229         }
9230         return this.jsonData[this.indexOf(node)] || null;
9231     },
9232
9233     beforeRender : function(){
9234         this.snapshot = this.jsonData;
9235         if(this.sortInfo){
9236             this.sort.apply(this, this.sortInfo);
9237         }
9238         this.fireEvent("beforerender", this, this.jsonData);
9239     },
9240
9241     onLoad : function(el, o){
9242         this.fireEvent("load", this, this.jsonData, o);
9243     },
9244
9245     onLoadException : function(el, o){
9246         this.fireEvent("loadexception", this, o);
9247     },
9248
9249 /**
9250  * Filter the data by a specific property.
9251  * @param {String} property A property on your JSON objects
9252  * @param {String/RegExp} value Either string that the property values
9253  * should start with, or a RegExp to test against the property
9254  */
9255     filter : function(property, value){
9256         if(this.jsonData){
9257             var data = [];
9258             var ss = this.snapshot;
9259             if(typeof value == "string"){
9260                 var vlen = value.length;
9261                 if(vlen == 0){
9262                     this.clearFilter();
9263                     return;
9264                 }
9265                 value = value.toLowerCase();
9266                 for(var i = 0, len = ss.length; i < len; i++){
9267                     var o = ss[i];
9268                     if(o[property].substr(0, vlen).toLowerCase() == value){
9269                         data.push(o);
9270                     }
9271                 }
9272             } else if(value.exec){ // regex?
9273                 for(var i = 0, len = ss.length; i < len; i++){
9274                     var o = ss[i];
9275                     if(value.test(o[property])){
9276                         data.push(o);
9277                     }
9278                 }
9279             } else{
9280                 return;
9281             }
9282             this.jsonData = data;
9283             this.refresh();
9284         }
9285     },
9286
9287 /**
9288  * Filter by a function. The passed function will be called with each
9289  * object in the current dataset. If the function returns true the value is kept,
9290  * otherwise it is filtered.
9291  * @param {Function} fn
9292  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
9293  */
9294     filterBy : function(fn, scope){
9295         if(this.jsonData){
9296             var data = [];
9297             var ss = this.snapshot;
9298             for(var i = 0, len = ss.length; i < len; i++){
9299                 var o = ss[i];
9300                 if(fn.call(scope || this, o)){
9301                     data.push(o);
9302                 }
9303             }
9304             this.jsonData = data;
9305             this.refresh();
9306         }
9307     },
9308
9309 /**
9310  * Clears the current filter.
9311  */
9312     clearFilter : function(){
9313         if(this.snapshot && this.jsonData != this.snapshot){
9314             this.jsonData = this.snapshot;
9315             this.refresh();
9316         }
9317     },
9318
9319
9320 /**
9321  * Sorts the data for this view and refreshes it.
9322  * @param {String} property A property on your JSON objects to sort on
9323  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
9324  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
9325  */
9326     sort : function(property, dir, sortType){
9327         this.sortInfo = Array.prototype.slice.call(arguments, 0);
9328         if(this.jsonData){
9329             var p = property;
9330             var dsc = dir && dir.toLowerCase() == "desc";
9331             var f = function(o1, o2){
9332                 var v1 = sortType ? sortType(o1[p]) : o1[p];
9333                 var v2 = sortType ? sortType(o2[p]) : o2[p];
9334                 ;
9335                 if(v1 < v2){
9336                     return dsc ? +1 : -1;
9337                 } else if(v1 > v2){
9338                     return dsc ? -1 : +1;
9339                 } else{
9340                     return 0;
9341                 }
9342             };
9343             this.jsonData.sort(f);
9344             this.refresh();
9345             if(this.jsonData != this.snapshot){
9346                 this.snapshot.sort(f);
9347             }
9348         }
9349     }
9350 });/*
9351  * Based on:
9352  * Ext JS Library 1.1.1
9353  * Copyright(c) 2006-2007, Ext JS, LLC.
9354  *
9355  * Originally Released Under LGPL - original licence link has changed is not relivant.
9356  *
9357  * Fork - LGPL
9358  * <script type="text/javascript">
9359  */
9360  
9361
9362 /**
9363  * @class Roo.ColorPalette
9364  * @extends Roo.Component
9365  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
9366  * Here's an example of typical usage:
9367  * <pre><code>
9368 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
9369 cp.render('my-div');
9370
9371 cp.on('select', function(palette, selColor){
9372     // do something with selColor
9373 });
9374 </code></pre>
9375  * @constructor
9376  * Create a new ColorPalette
9377  * @param {Object} config The config object
9378  */
9379 Roo.ColorPalette = function(config){
9380     Roo.ColorPalette.superclass.constructor.call(this, config);
9381     this.addEvents({
9382         /**
9383              * @event select
9384              * Fires when a color is selected
9385              * @param {ColorPalette} this
9386              * @param {String} color The 6-digit color hex code (without the # symbol)
9387              */
9388         select: true
9389     });
9390
9391     if(this.handler){
9392         this.on("select", this.handler, this.scope, true);
9393     }
9394 };
9395 Roo.extend(Roo.ColorPalette, Roo.Component, {
9396     /**
9397      * @cfg {String} itemCls
9398      * The CSS class to apply to the containing element (defaults to "x-color-palette")
9399      */
9400     itemCls : "x-color-palette",
9401     /**
9402      * @cfg {String} value
9403      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
9404      * the hex codes are case-sensitive.
9405      */
9406     value : null,
9407     clickEvent:'click',
9408     // private
9409     ctype: "Roo.ColorPalette",
9410
9411     /**
9412      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
9413      */
9414     allowReselect : false,
9415
9416     /**
9417      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
9418      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
9419      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
9420      * of colors with the width setting until the box is symmetrical.</p>
9421      * <p>You can override individual colors if needed:</p>
9422      * <pre><code>
9423 var cp = new Roo.ColorPalette();
9424 cp.colors[0] = "FF0000";  // change the first box to red
9425 </code></pre>
9426
9427 Or you can provide a custom array of your own for complete control:
9428 <pre><code>
9429 var cp = new Roo.ColorPalette();
9430 cp.colors = ["000000", "993300", "333300"];
9431 </code></pre>
9432      * @type Array
9433      */
9434     colors : [
9435         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
9436         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
9437         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
9438         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
9439         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
9440     ],
9441
9442     // private
9443     onRender : function(container, position){
9444         var t = new Roo.MasterTemplate(
9445             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
9446         );
9447         var c = this.colors;
9448         for(var i = 0, len = c.length; i < len; i++){
9449             t.add([c[i]]);
9450         }
9451         var el = document.createElement("div");
9452         el.className = this.itemCls;
9453         t.overwrite(el);
9454         container.dom.insertBefore(el, position);
9455         this.el = Roo.get(el);
9456         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
9457         if(this.clickEvent != 'click'){
9458             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
9459         }
9460     },
9461
9462     // private
9463     afterRender : function(){
9464         Roo.ColorPalette.superclass.afterRender.call(this);
9465         if(this.value){
9466             var s = this.value;
9467             this.value = null;
9468             this.select(s);
9469         }
9470     },
9471
9472     // private
9473     handleClick : function(e, t){
9474         e.preventDefault();
9475         if(!this.disabled){
9476             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
9477             this.select(c.toUpperCase());
9478         }
9479     },
9480
9481     /**
9482      * Selects the specified color in the palette (fires the select event)
9483      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
9484      */
9485     select : function(color){
9486         color = color.replace("#", "");
9487         if(color != this.value || this.allowReselect){
9488             var el = this.el;
9489             if(this.value){
9490                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
9491             }
9492             el.child("a.color-"+color).addClass("x-color-palette-sel");
9493             this.value = color;
9494             this.fireEvent("select", this, color);
9495         }
9496     }
9497 });/*
9498  * Based on:
9499  * Ext JS Library 1.1.1
9500  * Copyright(c) 2006-2007, Ext JS, LLC.
9501  *
9502  * Originally Released Under LGPL - original licence link has changed is not relivant.
9503  *
9504  * Fork - LGPL
9505  * <script type="text/javascript">
9506  */
9507  
9508 /**
9509  * @class Roo.DatePicker
9510  * @extends Roo.Component
9511  * Simple date picker class.
9512  * @constructor
9513  * Create a new DatePicker
9514  * @param {Object} config The config object
9515  */
9516 Roo.DatePicker = function(config){
9517     Roo.DatePicker.superclass.constructor.call(this, config);
9518
9519     this.value = config && config.value ?
9520                  config.value.clearTime() : new Date().clearTime();
9521
9522     this.addEvents({
9523         /**
9524              * @event select
9525              * Fires when a date is selected
9526              * @param {DatePicker} this
9527              * @param {Date} date The selected date
9528              */
9529         'select': true,
9530         /**
9531              * @event monthchange
9532              * Fires when the displayed month changes 
9533              * @param {DatePicker} this
9534              * @param {Date} date The selected month
9535              */
9536         'monthchange': true
9537     });
9538
9539     if(this.handler){
9540         this.on("select", this.handler,  this.scope || this);
9541     }
9542     // build the disabledDatesRE
9543     if(!this.disabledDatesRE && this.disabledDates){
9544         var dd = this.disabledDates;
9545         var re = "(?:";
9546         for(var i = 0; i < dd.length; i++){
9547             re += dd[i];
9548             if(i != dd.length-1) re += "|";
9549         }
9550         this.disabledDatesRE = new RegExp(re + ")");
9551     }
9552 };
9553
9554 Roo.extend(Roo.DatePicker, Roo.Component, {
9555     /**
9556      * @cfg {String} todayText
9557      * The text to display on the button that selects the current date (defaults to "Today")
9558      */
9559     todayText : "Today",
9560     /**
9561      * @cfg {String} okText
9562      * The text to display on the ok button
9563      */
9564     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
9565     /**
9566      * @cfg {String} cancelText
9567      * The text to display on the cancel button
9568      */
9569     cancelText : "Cancel",
9570     /**
9571      * @cfg {String} todayTip
9572      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
9573      */
9574     todayTip : "{0} (Spacebar)",
9575     /**
9576      * @cfg {Date} minDate
9577      * Minimum allowable date (JavaScript date object, defaults to null)
9578      */
9579     minDate : null,
9580     /**
9581      * @cfg {Date} maxDate
9582      * Maximum allowable date (JavaScript date object, defaults to null)
9583      */
9584     maxDate : null,
9585     /**
9586      * @cfg {String} minText
9587      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
9588      */
9589     minText : "This date is before the minimum date",
9590     /**
9591      * @cfg {String} maxText
9592      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
9593      */
9594     maxText : "This date is after the maximum date",
9595     /**
9596      * @cfg {String} format
9597      * The default date format string which can be overriden for localization support.  The format must be
9598      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
9599      */
9600     format : "m/d/y",
9601     /**
9602      * @cfg {Array} disabledDays
9603      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
9604      */
9605     disabledDays : null,
9606     /**
9607      * @cfg {String} disabledDaysText
9608      * The tooltip to display when the date falls on a disabled day (defaults to "")
9609      */
9610     disabledDaysText : "",
9611     /**
9612      * @cfg {RegExp} disabledDatesRE
9613      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
9614      */
9615     disabledDatesRE : null,
9616     /**
9617      * @cfg {String} disabledDatesText
9618      * The tooltip text to display when the date falls on a disabled date (defaults to "")
9619      */
9620     disabledDatesText : "",
9621     /**
9622      * @cfg {Boolean} constrainToViewport
9623      * True to constrain the date picker to the viewport (defaults to true)
9624      */
9625     constrainToViewport : true,
9626     /**
9627      * @cfg {Array} monthNames
9628      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
9629      */
9630     monthNames : Date.monthNames,
9631     /**
9632      * @cfg {Array} dayNames
9633      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
9634      */
9635     dayNames : Date.dayNames,
9636     /**
9637      * @cfg {String} nextText
9638      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
9639      */
9640     nextText: 'Next Month (Control+Right)',
9641     /**
9642      * @cfg {String} prevText
9643      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
9644      */
9645     prevText: 'Previous Month (Control+Left)',
9646     /**
9647      * @cfg {String} monthYearText
9648      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
9649      */
9650     monthYearText: 'Choose a month (Control+Up/Down to move years)',
9651     /**
9652      * @cfg {Number} startDay
9653      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
9654      */
9655     startDay : 0,
9656     /**
9657      * @cfg {Bool} showClear
9658      * Show a clear button (usefull for date form elements that can be blank.)
9659      */
9660     
9661     showClear: false,
9662     
9663     /**
9664      * Sets the value of the date field
9665      * @param {Date} value The date to set
9666      */
9667     setValue : function(value){
9668         var old = this.value;
9669         
9670         if (typeof(value) == 'string') {
9671          
9672             value = Date.parseDate(value, this.format);
9673         }
9674         if (!value) {
9675             value = new Date();
9676         }
9677         
9678         this.value = value.clearTime(true);
9679         if(this.el){
9680             this.update(this.value);
9681         }
9682     },
9683
9684     /**
9685      * Gets the current selected value of the date field
9686      * @return {Date} The selected date
9687      */
9688     getValue : function(){
9689         return this.value;
9690     },
9691
9692     // private
9693     focus : function(){
9694         if(this.el){
9695             this.update(this.activeDate);
9696         }
9697     },
9698
9699     // privateval
9700     onRender : function(container, position){
9701         
9702         var m = [
9703              '<table cellspacing="0">',
9704                 '<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>',
9705                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
9706         var dn = this.dayNames;
9707         for(var i = 0; i < 7; i++){
9708             var d = this.startDay+i;
9709             if(d > 6){
9710                 d = d-7;
9711             }
9712             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
9713         }
9714         m[m.length] = "</tr></thead><tbody><tr>";
9715         for(var i = 0; i < 42; i++) {
9716             if(i % 7 == 0 && i != 0){
9717                 m[m.length] = "</tr><tr>";
9718             }
9719             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
9720         }
9721         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
9722             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
9723
9724         var el = document.createElement("div");
9725         el.className = "x-date-picker";
9726         el.innerHTML = m.join("");
9727
9728         container.dom.insertBefore(el, position);
9729
9730         this.el = Roo.get(el);
9731         this.eventEl = Roo.get(el.firstChild);
9732
9733         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
9734             handler: this.showPrevMonth,
9735             scope: this,
9736             preventDefault:true,
9737             stopDefault:true
9738         });
9739
9740         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
9741             handler: this.showNextMonth,
9742             scope: this,
9743             preventDefault:true,
9744             stopDefault:true
9745         });
9746
9747         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
9748
9749         this.monthPicker = this.el.down('div.x-date-mp');
9750         this.monthPicker.enableDisplayMode('block');
9751         
9752         var kn = new Roo.KeyNav(this.eventEl, {
9753             "left" : function(e){
9754                 e.ctrlKey ?
9755                     this.showPrevMonth() :
9756                     this.update(this.activeDate.add("d", -1));
9757             },
9758
9759             "right" : function(e){
9760                 e.ctrlKey ?
9761                     this.showNextMonth() :
9762                     this.update(this.activeDate.add("d", 1));
9763             },
9764
9765             "up" : function(e){
9766                 e.ctrlKey ?
9767                     this.showNextYear() :
9768                     this.update(this.activeDate.add("d", -7));
9769             },
9770
9771             "down" : function(e){
9772                 e.ctrlKey ?
9773                     this.showPrevYear() :
9774                     this.update(this.activeDate.add("d", 7));
9775             },
9776
9777             "pageUp" : function(e){
9778                 this.showNextMonth();
9779             },
9780
9781             "pageDown" : function(e){
9782                 this.showPrevMonth();
9783             },
9784
9785             "enter" : function(e){
9786                 e.stopPropagation();
9787                 return true;
9788             },
9789
9790             scope : this
9791         });
9792
9793         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
9794
9795         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
9796
9797         this.el.unselectable();
9798         
9799         this.cells = this.el.select("table.x-date-inner tbody td");
9800         this.textNodes = this.el.query("table.x-date-inner tbody span");
9801
9802         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
9803             text: "&#160;",
9804             tooltip: this.monthYearText
9805         });
9806
9807         this.mbtn.on('click', this.showMonthPicker, this);
9808         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
9809
9810
9811         var today = (new Date()).dateFormat(this.format);
9812         
9813         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
9814         if (this.showClear) {
9815             baseTb.add( new Roo.Toolbar.Fill());
9816         }
9817         baseTb.add({
9818             text: String.format(this.todayText, today),
9819             tooltip: String.format(this.todayTip, today),
9820             handler: this.selectToday,
9821             scope: this
9822         });
9823         
9824         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
9825             
9826         //});
9827         if (this.showClear) {
9828             
9829             baseTb.add( new Roo.Toolbar.Fill());
9830             baseTb.add({
9831                 text: '&#160;',
9832                 cls: 'x-btn-icon x-btn-clear',
9833                 handler: function() {
9834                     //this.value = '';
9835                     this.fireEvent("select", this, '');
9836                 },
9837                 scope: this
9838             });
9839         }
9840         
9841         
9842         if(Roo.isIE){
9843             this.el.repaint();
9844         }
9845         this.update(this.value);
9846     },
9847
9848     createMonthPicker : function(){
9849         if(!this.monthPicker.dom.firstChild){
9850             var buf = ['<table border="0" cellspacing="0">'];
9851             for(var i = 0; i < 6; i++){
9852                 buf.push(
9853                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
9854                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
9855                     i == 0 ?
9856                     '<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>' :
9857                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
9858                 );
9859             }
9860             buf.push(
9861                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
9862                     this.okText,
9863                     '</button><button type="button" class="x-date-mp-cancel">',
9864                     this.cancelText,
9865                     '</button></td></tr>',
9866                 '</table>'
9867             );
9868             this.monthPicker.update(buf.join(''));
9869             this.monthPicker.on('click', this.onMonthClick, this);
9870             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
9871
9872             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
9873             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
9874
9875             this.mpMonths.each(function(m, a, i){
9876                 i += 1;
9877                 if((i%2) == 0){
9878                     m.dom.xmonth = 5 + Math.round(i * .5);
9879                 }else{
9880                     m.dom.xmonth = Math.round((i-1) * .5);
9881                 }
9882             });
9883         }
9884     },
9885
9886     showMonthPicker : function(){
9887         this.createMonthPicker();
9888         var size = this.el.getSize();
9889         this.monthPicker.setSize(size);
9890         this.monthPicker.child('table').setSize(size);
9891
9892         this.mpSelMonth = (this.activeDate || this.value).getMonth();
9893         this.updateMPMonth(this.mpSelMonth);
9894         this.mpSelYear = (this.activeDate || this.value).getFullYear();
9895         this.updateMPYear(this.mpSelYear);
9896
9897         this.monthPicker.slideIn('t', {duration:.2});
9898     },
9899
9900     updateMPYear : function(y){
9901         this.mpyear = y;
9902         var ys = this.mpYears.elements;
9903         for(var i = 1; i <= 10; i++){
9904             var td = ys[i-1], y2;
9905             if((i%2) == 0){
9906                 y2 = y + Math.round(i * .5);
9907                 td.firstChild.innerHTML = y2;
9908                 td.xyear = y2;
9909             }else{
9910                 y2 = y - (5-Math.round(i * .5));
9911                 td.firstChild.innerHTML = y2;
9912                 td.xyear = y2;
9913             }
9914             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
9915         }
9916     },
9917
9918     updateMPMonth : function(sm){
9919         this.mpMonths.each(function(m, a, i){
9920             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
9921         });
9922     },
9923
9924     selectMPMonth: function(m){
9925         
9926     },
9927
9928     onMonthClick : function(e, t){
9929         e.stopEvent();
9930         var el = new Roo.Element(t), pn;
9931         if(el.is('button.x-date-mp-cancel')){
9932             this.hideMonthPicker();
9933         }
9934         else if(el.is('button.x-date-mp-ok')){
9935             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9936             this.hideMonthPicker();
9937         }
9938         else if(pn = el.up('td.x-date-mp-month', 2)){
9939             this.mpMonths.removeClass('x-date-mp-sel');
9940             pn.addClass('x-date-mp-sel');
9941             this.mpSelMonth = pn.dom.xmonth;
9942         }
9943         else if(pn = el.up('td.x-date-mp-year', 2)){
9944             this.mpYears.removeClass('x-date-mp-sel');
9945             pn.addClass('x-date-mp-sel');
9946             this.mpSelYear = pn.dom.xyear;
9947         }
9948         else if(el.is('a.x-date-mp-prev')){
9949             this.updateMPYear(this.mpyear-10);
9950         }
9951         else if(el.is('a.x-date-mp-next')){
9952             this.updateMPYear(this.mpyear+10);
9953         }
9954     },
9955
9956     onMonthDblClick : function(e, t){
9957         e.stopEvent();
9958         var el = new Roo.Element(t), pn;
9959         if(pn = el.up('td.x-date-mp-month', 2)){
9960             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
9961             this.hideMonthPicker();
9962         }
9963         else if(pn = el.up('td.x-date-mp-year', 2)){
9964             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
9965             this.hideMonthPicker();
9966         }
9967     },
9968
9969     hideMonthPicker : function(disableAnim){
9970         if(this.monthPicker){
9971             if(disableAnim === true){
9972                 this.monthPicker.hide();
9973             }else{
9974                 this.monthPicker.slideOut('t', {duration:.2});
9975             }
9976         }
9977     },
9978
9979     // private
9980     showPrevMonth : function(e){
9981         this.update(this.activeDate.add("mo", -1));
9982     },
9983
9984     // private
9985     showNextMonth : function(e){
9986         this.update(this.activeDate.add("mo", 1));
9987     },
9988
9989     // private
9990     showPrevYear : function(){
9991         this.update(this.activeDate.add("y", -1));
9992     },
9993
9994     // private
9995     showNextYear : function(){
9996         this.update(this.activeDate.add("y", 1));
9997     },
9998
9999     // private
10000     handleMouseWheel : function(e){
10001         var delta = e.getWheelDelta();
10002         if(delta > 0){
10003             this.showPrevMonth();
10004             e.stopEvent();
10005         } else if(delta < 0){
10006             this.showNextMonth();
10007             e.stopEvent();
10008         }
10009     },
10010
10011     // private
10012     handleDateClick : function(e, t){
10013         e.stopEvent();
10014         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
10015             this.setValue(new Date(t.dateValue));
10016             this.fireEvent("select", this, this.value);
10017         }
10018     },
10019
10020     // private
10021     selectToday : function(){
10022         this.setValue(new Date().clearTime());
10023         this.fireEvent("select", this, this.value);
10024     },
10025
10026     // private
10027     update : function(date)
10028     {
10029         var vd = this.activeDate;
10030         this.activeDate = date;
10031         if(vd && this.el){
10032             var t = date.getTime();
10033             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
10034                 this.cells.removeClass("x-date-selected");
10035                 this.cells.each(function(c){
10036                    if(c.dom.firstChild.dateValue == t){
10037                        c.addClass("x-date-selected");
10038                        setTimeout(function(){
10039                             try{c.dom.firstChild.focus();}catch(e){}
10040                        }, 50);
10041                        return false;
10042                    }
10043                 });
10044                 return;
10045             }
10046         }
10047         
10048         var days = date.getDaysInMonth();
10049         var firstOfMonth = date.getFirstDateOfMonth();
10050         var startingPos = firstOfMonth.getDay()-this.startDay;
10051
10052         if(startingPos <= this.startDay){
10053             startingPos += 7;
10054         }
10055
10056         var pm = date.add("mo", -1);
10057         var prevStart = pm.getDaysInMonth()-startingPos;
10058
10059         var cells = this.cells.elements;
10060         var textEls = this.textNodes;
10061         days += startingPos;
10062
10063         // convert everything to numbers so it's fast
10064         var day = 86400000;
10065         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
10066         var today = new Date().clearTime().getTime();
10067         var sel = date.clearTime().getTime();
10068         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
10069         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
10070         var ddMatch = this.disabledDatesRE;
10071         var ddText = this.disabledDatesText;
10072         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
10073         var ddaysText = this.disabledDaysText;
10074         var format = this.format;
10075
10076         var setCellClass = function(cal, cell){
10077             cell.title = "";
10078             var t = d.getTime();
10079             cell.firstChild.dateValue = t;
10080             if(t == today){
10081                 cell.className += " x-date-today";
10082                 cell.title = cal.todayText;
10083             }
10084             if(t == sel){
10085                 cell.className += " x-date-selected";
10086                 setTimeout(function(){
10087                     try{cell.firstChild.focus();}catch(e){}
10088                 }, 50);
10089             }
10090             // disabling
10091             if(t < min) {
10092                 cell.className = " x-date-disabled";
10093                 cell.title = cal.minText;
10094                 return;
10095             }
10096             if(t > max) {
10097                 cell.className = " x-date-disabled";
10098                 cell.title = cal.maxText;
10099                 return;
10100             }
10101             if(ddays){
10102                 if(ddays.indexOf(d.getDay()) != -1){
10103                     cell.title = ddaysText;
10104                     cell.className = " x-date-disabled";
10105                 }
10106             }
10107             if(ddMatch && format){
10108                 var fvalue = d.dateFormat(format);
10109                 if(ddMatch.test(fvalue)){
10110                     cell.title = ddText.replace("%0", fvalue);
10111                     cell.className = " x-date-disabled";
10112                 }
10113             }
10114         };
10115
10116         var i = 0;
10117         for(; i < startingPos; i++) {
10118             textEls[i].innerHTML = (++prevStart);
10119             d.setDate(d.getDate()+1);
10120             cells[i].className = "x-date-prevday";
10121             setCellClass(this, cells[i]);
10122         }
10123         for(; i < days; i++){
10124             intDay = i - startingPos + 1;
10125             textEls[i].innerHTML = (intDay);
10126             d.setDate(d.getDate()+1);
10127             cells[i].className = "x-date-active";
10128             setCellClass(this, cells[i]);
10129         }
10130         var extraDays = 0;
10131         for(; i < 42; i++) {
10132              textEls[i].innerHTML = (++extraDays);
10133              d.setDate(d.getDate()+1);
10134              cells[i].className = "x-date-nextday";
10135              setCellClass(this, cells[i]);
10136         }
10137
10138         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
10139         this.fireEvent('monthchange', this, date);
10140         
10141         if(!this.internalRender){
10142             var main = this.el.dom.firstChild;
10143             var w = main.offsetWidth;
10144             this.el.setWidth(w + this.el.getBorderWidth("lr"));
10145             Roo.fly(main).setWidth(w);
10146             this.internalRender = true;
10147             // opera does not respect the auto grow header center column
10148             // then, after it gets a width opera refuses to recalculate
10149             // without a second pass
10150             if(Roo.isOpera && !this.secondPass){
10151                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
10152                 this.secondPass = true;
10153                 this.update.defer(10, this, [date]);
10154             }
10155         }
10156         
10157         
10158     }
10159 });        /*
10160  * Based on:
10161  * Ext JS Library 1.1.1
10162  * Copyright(c) 2006-2007, Ext JS, LLC.
10163  *
10164  * Originally Released Under LGPL - original licence link has changed is not relivant.
10165  *
10166  * Fork - LGPL
10167  * <script type="text/javascript">
10168  */
10169 /**
10170  * @class Roo.TabPanel
10171  * @extends Roo.util.Observable
10172  * A lightweight tab container.
10173  * <br><br>
10174  * Usage:
10175  * <pre><code>
10176 // basic tabs 1, built from existing content
10177 var tabs = new Roo.TabPanel("tabs1");
10178 tabs.addTab("script", "View Script");
10179 tabs.addTab("markup", "View Markup");
10180 tabs.activate("script");
10181
10182 // more advanced tabs, built from javascript
10183 var jtabs = new Roo.TabPanel("jtabs");
10184 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
10185
10186 // set up the UpdateManager
10187 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
10188 var updater = tab2.getUpdateManager();
10189 updater.setDefaultUrl("ajax1.htm");
10190 tab2.on('activate', updater.refresh, updater, true);
10191
10192 // Use setUrl for Ajax loading
10193 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
10194 tab3.setUrl("ajax2.htm", null, true);
10195
10196 // Disabled tab
10197 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
10198 tab4.disable();
10199
10200 jtabs.activate("jtabs-1");
10201  * </code></pre>
10202  * @constructor
10203  * Create a new TabPanel.
10204  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
10205  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
10206  */
10207 Roo.TabPanel = function(container, config){
10208     /**
10209     * The container element for this TabPanel.
10210     * @type Roo.Element
10211     */
10212     this.el = Roo.get(container, true);
10213     if(config){
10214         if(typeof config == "boolean"){
10215             this.tabPosition = config ? "bottom" : "top";
10216         }else{
10217             Roo.apply(this, config);
10218         }
10219     }
10220     if(this.tabPosition == "bottom"){
10221         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10222         this.el.addClass("x-tabs-bottom");
10223     }
10224     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
10225     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
10226     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
10227     if(Roo.isIE){
10228         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
10229     }
10230     if(this.tabPosition != "bottom"){
10231         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
10232          * @type Roo.Element
10233          */
10234         this.bodyEl = Roo.get(this.createBody(this.el.dom));
10235         this.el.addClass("x-tabs-top");
10236     }
10237     this.items = [];
10238
10239     this.bodyEl.setStyle("position", "relative");
10240
10241     this.active = null;
10242     this.activateDelegate = this.activate.createDelegate(this);
10243
10244     this.addEvents({
10245         /**
10246          * @event tabchange
10247          * Fires when the active tab changes
10248          * @param {Roo.TabPanel} this
10249          * @param {Roo.TabPanelItem} activePanel The new active tab
10250          */
10251         "tabchange": true,
10252         /**
10253          * @event beforetabchange
10254          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
10255          * @param {Roo.TabPanel} this
10256          * @param {Object} e Set cancel to true on this object to cancel the tab change
10257          * @param {Roo.TabPanelItem} tab The tab being changed to
10258          */
10259         "beforetabchange" : true
10260     });
10261
10262     Roo.EventManager.onWindowResize(this.onResize, this);
10263     this.cpad = this.el.getPadding("lr");
10264     this.hiddenCount = 0;
10265
10266
10267     // toolbar on the tabbar support...
10268     if (this.toolbar) {
10269         var tcfg = this.toolbar;
10270         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
10271         this.toolbar = new Roo.Toolbar(tcfg);
10272         if (Roo.isSafari) {
10273             var tbl = tcfg.container.child('table', true);
10274             tbl.setAttribute('width', '100%');
10275         }
10276         
10277     }
10278    
10279
10280
10281     Roo.TabPanel.superclass.constructor.call(this);
10282 };
10283
10284 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
10285     /*
10286      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
10287      */
10288     tabPosition : "top",
10289     /*
10290      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
10291      */
10292     currentTabWidth : 0,
10293     /*
10294      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
10295      */
10296     minTabWidth : 40,
10297     /*
10298      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
10299      */
10300     maxTabWidth : 250,
10301     /*
10302      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
10303      */
10304     preferredTabWidth : 175,
10305     /*
10306      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
10307      */
10308     resizeTabs : false,
10309     /*
10310      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
10311      */
10312     monitorResize : true,
10313     /*
10314      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
10315      */
10316     toolbar : false,
10317
10318     /**
10319      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
10320      * @param {String} id The id of the div to use <b>or create</b>
10321      * @param {String} text The text for the tab
10322      * @param {String} content (optional) Content to put in the TabPanelItem body
10323      * @param {Boolean} closable (optional) True to create a close icon on the tab
10324      * @return {Roo.TabPanelItem} The created TabPanelItem
10325      */
10326     addTab : function(id, text, content, closable){
10327         var item = new Roo.TabPanelItem(this, id, text, closable);
10328         this.addTabItem(item);
10329         if(content){
10330             item.setContent(content);
10331         }
10332         return item;
10333     },
10334
10335     /**
10336      * Returns the {@link Roo.TabPanelItem} with the specified id/index
10337      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
10338      * @return {Roo.TabPanelItem}
10339      */
10340     getTab : function(id){
10341         return this.items[id];
10342     },
10343
10344     /**
10345      * Hides the {@link Roo.TabPanelItem} with the specified id/index
10346      * @param {String/Number} id The id or index of the TabPanelItem to hide.
10347      */
10348     hideTab : function(id){
10349         var t = this.items[id];
10350         if(!t.isHidden()){
10351            t.setHidden(true);
10352            this.hiddenCount++;
10353            this.autoSizeTabs();
10354         }
10355     },
10356
10357     /**
10358      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
10359      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
10360      */
10361     unhideTab : function(id){
10362         var t = this.items[id];
10363         if(t.isHidden()){
10364            t.setHidden(false);
10365            this.hiddenCount--;
10366            this.autoSizeTabs();
10367         }
10368     },
10369
10370     /**
10371      * Adds an existing {@link Roo.TabPanelItem}.
10372      * @param {Roo.TabPanelItem} item The TabPanelItem to add
10373      */
10374     addTabItem : function(item){
10375         this.items[item.id] = item;
10376         this.items.push(item);
10377         if(this.resizeTabs){
10378            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
10379            this.autoSizeTabs();
10380         }else{
10381             item.autoSize();
10382         }
10383     },
10384
10385     /**
10386      * Removes a {@link Roo.TabPanelItem}.
10387      * @param {String/Number} id The id or index of the TabPanelItem to remove.
10388      */
10389     removeTab : function(id){
10390         var items = this.items;
10391         var tab = items[id];
10392         if(!tab) { return; }
10393         var index = items.indexOf(tab);
10394         if(this.active == tab && items.length > 1){
10395             var newTab = this.getNextAvailable(index);
10396             if(newTab) {
10397                 newTab.activate();
10398             }
10399         }
10400         this.stripEl.dom.removeChild(tab.pnode.dom);
10401         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
10402             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
10403         }
10404         items.splice(index, 1);
10405         delete this.items[tab.id];
10406         tab.fireEvent("close", tab);
10407         tab.purgeListeners();
10408         this.autoSizeTabs();
10409     },
10410
10411     getNextAvailable : function(start){
10412         var items = this.items;
10413         var index = start;
10414         // look for a next tab that will slide over to
10415         // replace the one being removed
10416         while(index < items.length){
10417             var item = items[++index];
10418             if(item && !item.isHidden()){
10419                 return item;
10420             }
10421         }
10422         // if one isn't found select the previous tab (on the left)
10423         index = start;
10424         while(index >= 0){
10425             var item = items[--index];
10426             if(item && !item.isHidden()){
10427                 return item;
10428             }
10429         }
10430         return null;
10431     },
10432
10433     /**
10434      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
10435      * @param {String/Number} id The id or index of the TabPanelItem to disable.
10436      */
10437     disableTab : function(id){
10438         var tab = this.items[id];
10439         if(tab && this.active != tab){
10440             tab.disable();
10441         }
10442     },
10443
10444     /**
10445      * Enables a {@link Roo.TabPanelItem} that is disabled.
10446      * @param {String/Number} id The id or index of the TabPanelItem to enable.
10447      */
10448     enableTab : function(id){
10449         var tab = this.items[id];
10450         tab.enable();
10451     },
10452
10453     /**
10454      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
10455      * @param {String/Number} id The id or index of the TabPanelItem to activate.
10456      * @return {Roo.TabPanelItem} The TabPanelItem.
10457      */
10458     activate : function(id){
10459         var tab = this.items[id];
10460         if(!tab){
10461             return null;
10462         }
10463         if(tab == this.active || tab.disabled){
10464             return tab;
10465         }
10466         var e = {};
10467         this.fireEvent("beforetabchange", this, e, tab);
10468         if(e.cancel !== true && !tab.disabled){
10469             if(this.active){
10470                 this.active.hide();
10471             }
10472             this.active = this.items[id];
10473             this.active.show();
10474             this.fireEvent("tabchange", this, this.active);
10475         }
10476         return tab;
10477     },
10478
10479     /**
10480      * Gets the active {@link Roo.TabPanelItem}.
10481      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
10482      */
10483     getActiveTab : function(){
10484         return this.active;
10485     },
10486
10487     /**
10488      * Updates the tab body element to fit the height of the container element
10489      * for overflow scrolling
10490      * @param {Number} targetHeight (optional) Override the starting height from the elements height
10491      */
10492     syncHeight : function(targetHeight){
10493         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
10494         var bm = this.bodyEl.getMargins();
10495         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
10496         this.bodyEl.setHeight(newHeight);
10497         return newHeight;
10498     },
10499
10500     onResize : function(){
10501         if(this.monitorResize){
10502             this.autoSizeTabs();
10503         }
10504     },
10505
10506     /**
10507      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
10508      */
10509     beginUpdate : function(){
10510         this.updating = true;
10511     },
10512
10513     /**
10514      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
10515      */
10516     endUpdate : function(){
10517         this.updating = false;
10518         this.autoSizeTabs();
10519     },
10520
10521     /**
10522      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
10523      */
10524     autoSizeTabs : function(){
10525         var count = this.items.length;
10526         var vcount = count - this.hiddenCount;
10527         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) return;
10528         var w = Math.max(this.el.getWidth() - this.cpad, 10);
10529         var availWidth = Math.floor(w / vcount);
10530         var b = this.stripBody;
10531         if(b.getWidth() > w){
10532             var tabs = this.items;
10533             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
10534             if(availWidth < this.minTabWidth){
10535                 /*if(!this.sleft){    // incomplete scrolling code
10536                     this.createScrollButtons();
10537                 }
10538                 this.showScroll();
10539                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
10540             }
10541         }else{
10542             if(this.currentTabWidth < this.preferredTabWidth){
10543                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
10544             }
10545         }
10546     },
10547
10548     /**
10549      * Returns the number of tabs in this TabPanel.
10550      * @return {Number}
10551      */
10552      getCount : function(){
10553          return this.items.length;
10554      },
10555
10556     /**
10557      * Resizes all the tabs to the passed width
10558      * @param {Number} The new width
10559      */
10560     setTabWidth : function(width){
10561         this.currentTabWidth = width;
10562         for(var i = 0, len = this.items.length; i < len; i++) {
10563                 if(!this.items[i].isHidden())this.items[i].setWidth(width);
10564         }
10565     },
10566
10567     /**
10568      * Destroys this TabPanel
10569      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
10570      */
10571     destroy : function(removeEl){
10572         Roo.EventManager.removeResizeListener(this.onResize, this);
10573         for(var i = 0, len = this.items.length; i < len; i++){
10574             this.items[i].purgeListeners();
10575         }
10576         if(removeEl === true){
10577             this.el.update("");
10578             this.el.remove();
10579         }
10580     }
10581 });
10582
10583 /**
10584  * @class Roo.TabPanelItem
10585  * @extends Roo.util.Observable
10586  * Represents an individual item (tab plus body) in a TabPanel.
10587  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
10588  * @param {String} id The id of this TabPanelItem
10589  * @param {String} text The text for the tab of this TabPanelItem
10590  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
10591  */
10592 Roo.TabPanelItem = function(tabPanel, id, text, closable){
10593     /**
10594      * The {@link Roo.TabPanel} this TabPanelItem belongs to
10595      * @type Roo.TabPanel
10596      */
10597     this.tabPanel = tabPanel;
10598     /**
10599      * The id for this TabPanelItem
10600      * @type String
10601      */
10602     this.id = id;
10603     /** @private */
10604     this.disabled = false;
10605     /** @private */
10606     this.text = text;
10607     /** @private */
10608     this.loaded = false;
10609     this.closable = closable;
10610
10611     /**
10612      * The body element for this TabPanelItem.
10613      * @type Roo.Element
10614      */
10615     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
10616     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
10617     this.bodyEl.setStyle("display", "block");
10618     this.bodyEl.setStyle("zoom", "1");
10619     this.hideAction();
10620
10621     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
10622     /** @private */
10623     this.el = Roo.get(els.el, true);
10624     this.inner = Roo.get(els.inner, true);
10625     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
10626     this.pnode = Roo.get(els.el.parentNode, true);
10627     this.el.on("mousedown", this.onTabMouseDown, this);
10628     this.el.on("click", this.onTabClick, this);
10629     /** @private */
10630     if(closable){
10631         var c = Roo.get(els.close, true);
10632         c.dom.title = this.closeText;
10633         c.addClassOnOver("close-over");
10634         c.on("click", this.closeClick, this);
10635      }
10636
10637     this.addEvents({
10638          /**
10639          * @event activate
10640          * Fires when this tab becomes the active tab.
10641          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10642          * @param {Roo.TabPanelItem} this
10643          */
10644         "activate": true,
10645         /**
10646          * @event beforeclose
10647          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
10648          * @param {Roo.TabPanelItem} this
10649          * @param {Object} e Set cancel to true on this object to cancel the close.
10650          */
10651         "beforeclose": true,
10652         /**
10653          * @event close
10654          * Fires when this tab is closed.
10655          * @param {Roo.TabPanelItem} this
10656          */
10657          "close": true,
10658         /**
10659          * @event deactivate
10660          * Fires when this tab is no longer the active tab.
10661          * @param {Roo.TabPanel} tabPanel The parent TabPanel
10662          * @param {Roo.TabPanelItem} this
10663          */
10664          "deactivate" : true
10665     });
10666     this.hidden = false;
10667
10668     Roo.TabPanelItem.superclass.constructor.call(this);
10669 };
10670
10671 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
10672     purgeListeners : function(){
10673        Roo.util.Observable.prototype.purgeListeners.call(this);
10674        this.el.removeAllListeners();
10675     },
10676     /**
10677      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
10678      */
10679     show : function(){
10680         this.pnode.addClass("on");
10681         this.showAction();
10682         if(Roo.isOpera){
10683             this.tabPanel.stripWrap.repaint();
10684         }
10685         this.fireEvent("activate", this.tabPanel, this);
10686     },
10687
10688     /**
10689      * Returns true if this tab is the active tab.
10690      * @return {Boolean}
10691      */
10692     isActive : function(){
10693         return this.tabPanel.getActiveTab() == this;
10694     },
10695
10696     /**
10697      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
10698      */
10699     hide : function(){
10700         this.pnode.removeClass("on");
10701         this.hideAction();
10702         this.fireEvent("deactivate", this.tabPanel, this);
10703     },
10704
10705     hideAction : function(){
10706         this.bodyEl.hide();
10707         this.bodyEl.setStyle("position", "absolute");
10708         this.bodyEl.setLeft("-20000px");
10709         this.bodyEl.setTop("-20000px");
10710     },
10711
10712     showAction : function(){
10713         this.bodyEl.setStyle("position", "relative");
10714         this.bodyEl.setTop("");
10715         this.bodyEl.setLeft("");
10716         this.bodyEl.show();
10717     },
10718
10719     /**
10720      * Set the tooltip for the tab.
10721      * @param {String} tooltip The tab's tooltip
10722      */
10723     setTooltip : function(text){
10724         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
10725             this.textEl.dom.qtip = text;
10726             this.textEl.dom.removeAttribute('title');
10727         }else{
10728             this.textEl.dom.title = text;
10729         }
10730     },
10731
10732     onTabClick : function(e){
10733         e.preventDefault();
10734         this.tabPanel.activate(this.id);
10735     },
10736
10737     onTabMouseDown : function(e){
10738         e.preventDefault();
10739         this.tabPanel.activate(this.id);
10740     },
10741
10742     getWidth : function(){
10743         return this.inner.getWidth();
10744     },
10745
10746     setWidth : function(width){
10747         var iwidth = width - this.pnode.getPadding("lr");
10748         this.inner.setWidth(iwidth);
10749         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
10750         this.pnode.setWidth(width);
10751     },
10752
10753     /**
10754      * Show or hide the tab
10755      * @param {Boolean} hidden True to hide or false to show.
10756      */
10757     setHidden : function(hidden){
10758         this.hidden = hidden;
10759         this.pnode.setStyle("display", hidden ? "none" : "");
10760     },
10761
10762     /**
10763      * Returns true if this tab is "hidden"
10764      * @return {Boolean}
10765      */
10766     isHidden : function(){
10767         return this.hidden;
10768     },
10769
10770     /**
10771      * Returns the text for this tab
10772      * @return {String}
10773      */
10774     getText : function(){
10775         return this.text;
10776     },
10777
10778     autoSize : function(){
10779         //this.el.beginMeasure();
10780         this.textEl.setWidth(1);
10781         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr"));
10782         //this.el.endMeasure();
10783     },
10784
10785     /**
10786      * Sets the text for the tab (Note: this also sets the tooltip text)
10787      * @param {String} text The tab's text and tooltip
10788      */
10789     setText : function(text){
10790         this.text = text;
10791         this.textEl.update(text);
10792         this.setTooltip(text);
10793         if(!this.tabPanel.resizeTabs){
10794             this.autoSize();
10795         }
10796     },
10797     /**
10798      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
10799      */
10800     activate : function(){
10801         this.tabPanel.activate(this.id);
10802     },
10803
10804     /**
10805      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
10806      */
10807     disable : function(){
10808         if(this.tabPanel.active != this){
10809             this.disabled = true;
10810             this.pnode.addClass("disabled");
10811         }
10812     },
10813
10814     /**
10815      * Enables this TabPanelItem if it was previously disabled.
10816      */
10817     enable : function(){
10818         this.disabled = false;
10819         this.pnode.removeClass("disabled");
10820     },
10821
10822     /**
10823      * Sets the content for this TabPanelItem.
10824      * @param {String} content The content
10825      * @param {Boolean} loadScripts true to look for and load scripts
10826      */
10827     setContent : function(content, loadScripts){
10828         this.bodyEl.update(content, loadScripts);
10829     },
10830
10831     /**
10832      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
10833      * @return {Roo.UpdateManager} The UpdateManager
10834      */
10835     getUpdateManager : function(){
10836         return this.bodyEl.getUpdateManager();
10837     },
10838
10839     /**
10840      * Set a URL to be used to load the content for this TabPanelItem.
10841      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
10842      * @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)
10843      * @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)
10844      * @return {Roo.UpdateManager} The UpdateManager
10845      */
10846     setUrl : function(url, params, loadOnce){
10847         if(this.refreshDelegate){
10848             this.un('activate', this.refreshDelegate);
10849         }
10850         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
10851         this.on("activate", this.refreshDelegate);
10852         return this.bodyEl.getUpdateManager();
10853     },
10854
10855     /** @private */
10856     _handleRefresh : function(url, params, loadOnce){
10857         if(!loadOnce || !this.loaded){
10858             var updater = this.bodyEl.getUpdateManager();
10859             updater.update(url, params, this._setLoaded.createDelegate(this));
10860         }
10861     },
10862
10863     /**
10864      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
10865      *   Will fail silently if the setUrl method has not been called.
10866      *   This does not activate the panel, just updates its content.
10867      */
10868     refresh : function(){
10869         if(this.refreshDelegate){
10870            this.loaded = false;
10871            this.refreshDelegate();
10872         }
10873     },
10874
10875     /** @private */
10876     _setLoaded : function(){
10877         this.loaded = true;
10878     },
10879
10880     /** @private */
10881     closeClick : function(e){
10882         var o = {};
10883         e.stopEvent();
10884         this.fireEvent("beforeclose", this, o);
10885         if(o.cancel !== true){
10886             this.tabPanel.removeTab(this.id);
10887         }
10888     },
10889     /**
10890      * The text displayed in the tooltip for the close icon.
10891      * @type String
10892      */
10893     closeText : "Close this tab"
10894 });
10895
10896 /** @private */
10897 Roo.TabPanel.prototype.createStrip = function(container){
10898     var strip = document.createElement("div");
10899     strip.className = "x-tabs-wrap";
10900     container.appendChild(strip);
10901     return strip;
10902 };
10903 /** @private */
10904 Roo.TabPanel.prototype.createStripList = function(strip){
10905     // div wrapper for retard IE
10906     // returns the "tr" element.
10907     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
10908         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
10909         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
10910     return strip.firstChild.firstChild.firstChild.firstChild;
10911 };
10912 /** @private */
10913 Roo.TabPanel.prototype.createBody = function(container){
10914     var body = document.createElement("div");
10915     Roo.id(body, "tab-body");
10916     Roo.fly(body).addClass("x-tabs-body");
10917     container.appendChild(body);
10918     return body;
10919 };
10920 /** @private */
10921 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
10922     var body = Roo.getDom(id);
10923     if(!body){
10924         body = document.createElement("div");
10925         body.id = id;
10926     }
10927     Roo.fly(body).addClass("x-tabs-item-body");
10928     bodyEl.insertBefore(body, bodyEl.firstChild);
10929     return body;
10930 };
10931 /** @private */
10932 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
10933     var td = document.createElement("td");
10934     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
10935     //stripEl.appendChild(td);
10936     if(closable){
10937         td.className = "x-tabs-closable";
10938         if(!this.closeTpl){
10939             this.closeTpl = new Roo.Template(
10940                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10941                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
10942                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
10943             );
10944         }
10945         var el = this.closeTpl.overwrite(td, {"text": text});
10946         var close = el.getElementsByTagName("div")[0];
10947         var inner = el.getElementsByTagName("em")[0];
10948         return {"el": el, "close": close, "inner": inner};
10949     } else {
10950         if(!this.tabTpl){
10951             this.tabTpl = new Roo.Template(
10952                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
10953                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
10954             );
10955         }
10956         var el = this.tabTpl.overwrite(td, {"text": text});
10957         var inner = el.getElementsByTagName("em")[0];
10958         return {"el": el, "inner": inner};
10959     }
10960 };/*
10961  * Based on:
10962  * Ext JS Library 1.1.1
10963  * Copyright(c) 2006-2007, Ext JS, LLC.
10964  *
10965  * Originally Released Under LGPL - original licence link has changed is not relivant.
10966  *
10967  * Fork - LGPL
10968  * <script type="text/javascript">
10969  */
10970
10971 /**
10972  * @class Roo.Button
10973  * @extends Roo.util.Observable
10974  * Simple Button class
10975  * @cfg {String} text The button text
10976  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
10977  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
10978  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
10979  * @cfg {Object} scope The scope of the handler
10980  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
10981  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
10982  * @cfg {Boolean} hidden True to start hidden (defaults to false)
10983  * @cfg {Boolean} disabled True to start disabled (defaults to false)
10984  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
10985  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
10986    applies if enableToggle = true)
10987  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
10988  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
10989   an {@link Roo.util.ClickRepeater} config object (defaults to false).
10990  * @constructor
10991  * Create a new button
10992  * @param {Object} config The config object
10993  */
10994 Roo.Button = function(renderTo, config)
10995 {
10996     if (!config) {
10997         config = renderTo;
10998         renderTo = config.renderTo || false;
10999     }
11000     
11001     Roo.apply(this, config);
11002     this.addEvents({
11003         /**
11004              * @event click
11005              * Fires when this button is clicked
11006              * @param {Button} this
11007              * @param {EventObject} e The click event
11008              */
11009             "click" : true,
11010         /**
11011              * @event toggle
11012              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
11013              * @param {Button} this
11014              * @param {Boolean} pressed
11015              */
11016             "toggle" : true,
11017         /**
11018              * @event mouseover
11019              * Fires when the mouse hovers over the button
11020              * @param {Button} this
11021              * @param {Event} e The event object
11022              */
11023         'mouseover' : true,
11024         /**
11025              * @event mouseout
11026              * Fires when the mouse exits the button
11027              * @param {Button} this
11028              * @param {Event} e The event object
11029              */
11030         'mouseout': true,
11031          /**
11032              * @event render
11033              * Fires when the button is rendered
11034              * @param {Button} this
11035              */
11036         'render': true
11037     });
11038     if(this.menu){
11039         this.menu = Roo.menu.MenuMgr.get(this.menu);
11040     }
11041     // register listeners first!!  - so render can be captured..
11042     Roo.util.Observable.call(this);
11043     if(renderTo){
11044         this.render(renderTo);
11045     }
11046     
11047   
11048 };
11049
11050 Roo.extend(Roo.Button, Roo.util.Observable, {
11051     /**
11052      * 
11053      */
11054     
11055     /**
11056      * Read-only. True if this button is hidden
11057      * @type Boolean
11058      */
11059     hidden : false,
11060     /**
11061      * Read-only. True if this button is disabled
11062      * @type Boolean
11063      */
11064     disabled : false,
11065     /**
11066      * Read-only. True if this button is pressed (only if enableToggle = true)
11067      * @type Boolean
11068      */
11069     pressed : false,
11070
11071     /**
11072      * @cfg {Number} tabIndex 
11073      * The DOM tabIndex for this button (defaults to undefined)
11074      */
11075     tabIndex : undefined,
11076
11077     /**
11078      * @cfg {Boolean} enableToggle
11079      * True to enable pressed/not pressed toggling (defaults to false)
11080      */
11081     enableToggle: false,
11082     /**
11083      * @cfg {Mixed} menu
11084      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
11085      */
11086     menu : undefined,
11087     /**
11088      * @cfg {String} menuAlign
11089      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
11090      */
11091     menuAlign : "tl-bl?",
11092
11093     /**
11094      * @cfg {String} iconCls
11095      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
11096      */
11097     iconCls : undefined,
11098     /**
11099      * @cfg {String} type
11100      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
11101      */
11102     type : 'button',
11103
11104     // private
11105     menuClassTarget: 'tr',
11106
11107     /**
11108      * @cfg {String} clickEvent
11109      * The type of event to map to the button's event handler (defaults to 'click')
11110      */
11111     clickEvent : 'click',
11112
11113     /**
11114      * @cfg {Boolean} handleMouseEvents
11115      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
11116      */
11117     handleMouseEvents : true,
11118
11119     /**
11120      * @cfg {String} tooltipType
11121      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
11122      */
11123     tooltipType : 'qtip',
11124
11125     /**
11126      * @cfg {String} cls
11127      * A CSS class to apply to the button's main element.
11128      */
11129     
11130     /**
11131      * @cfg {Roo.Template} template (Optional)
11132      * An {@link Roo.Template} with which to create the Button's main element. This Template must
11133      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
11134      * require code modifications if required elements (e.g. a button) aren't present.
11135      */
11136
11137     // private
11138     render : function(renderTo){
11139         var btn;
11140         if(this.hideParent){
11141             this.parentEl = Roo.get(renderTo);
11142         }
11143         if(!this.dhconfig){
11144             if(!this.template){
11145                 if(!Roo.Button.buttonTemplate){
11146                     // hideous table template
11147                     Roo.Button.buttonTemplate = new Roo.Template(
11148                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
11149                         '<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>',
11150                         "</tr></tbody></table>");
11151                 }
11152                 this.template = Roo.Button.buttonTemplate;
11153             }
11154             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
11155             var btnEl = btn.child("button:first");
11156             btnEl.on('focus', this.onFocus, this);
11157             btnEl.on('blur', this.onBlur, this);
11158             if(this.cls){
11159                 btn.addClass(this.cls);
11160             }
11161             if(this.icon){
11162                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
11163             }
11164             if(this.iconCls){
11165                 btnEl.addClass(this.iconCls);
11166                 if(!this.cls){
11167                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11168                 }
11169             }
11170             if(this.tabIndex !== undefined){
11171                 btnEl.dom.tabIndex = this.tabIndex;
11172             }
11173             if(this.tooltip){
11174                 if(typeof this.tooltip == 'object'){
11175                     Roo.QuickTips.tips(Roo.apply({
11176                           target: btnEl.id
11177                     }, this.tooltip));
11178                 } else {
11179                     btnEl.dom[this.tooltipType] = this.tooltip;
11180                 }
11181             }
11182         }else{
11183             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
11184         }
11185         this.el = btn;
11186         if(this.id){
11187             this.el.dom.id = this.el.id = this.id;
11188         }
11189         if(this.menu){
11190             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
11191             this.menu.on("show", this.onMenuShow, this);
11192             this.menu.on("hide", this.onMenuHide, this);
11193         }
11194         btn.addClass("x-btn");
11195         if(Roo.isIE && !Roo.isIE7){
11196             this.autoWidth.defer(1, this);
11197         }else{
11198             this.autoWidth();
11199         }
11200         if(this.handleMouseEvents){
11201             btn.on("mouseover", this.onMouseOver, this);
11202             btn.on("mouseout", this.onMouseOut, this);
11203             btn.on("mousedown", this.onMouseDown, this);
11204         }
11205         btn.on(this.clickEvent, this.onClick, this);
11206         //btn.on("mouseup", this.onMouseUp, this);
11207         if(this.hidden){
11208             this.hide();
11209         }
11210         if(this.disabled){
11211             this.disable();
11212         }
11213         Roo.ButtonToggleMgr.register(this);
11214         if(this.pressed){
11215             this.el.addClass("x-btn-pressed");
11216         }
11217         if(this.repeat){
11218             var repeater = new Roo.util.ClickRepeater(btn,
11219                 typeof this.repeat == "object" ? this.repeat : {}
11220             );
11221             repeater.on("click", this.onClick,  this);
11222         }
11223         
11224         this.fireEvent('render', this);
11225         
11226     },
11227     /**
11228      * Returns the button's underlying element
11229      * @return {Roo.Element} The element
11230      */
11231     getEl : function(){
11232         return this.el;  
11233     },
11234     
11235     /**
11236      * Destroys this Button and removes any listeners.
11237      */
11238     destroy : function(){
11239         Roo.ButtonToggleMgr.unregister(this);
11240         this.el.removeAllListeners();
11241         this.purgeListeners();
11242         this.el.remove();
11243     },
11244
11245     // private
11246     autoWidth : function(){
11247         if(this.el){
11248             this.el.setWidth("auto");
11249             if(Roo.isIE7 && Roo.isStrict){
11250                 var ib = this.el.child('button');
11251                 if(ib && ib.getWidth() > 20){
11252                     ib.clip();
11253                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11254                 }
11255             }
11256             if(this.minWidth){
11257                 if(this.hidden){
11258                     this.el.beginMeasure();
11259                 }
11260                 if(this.el.getWidth() < this.minWidth){
11261                     this.el.setWidth(this.minWidth);
11262                 }
11263                 if(this.hidden){
11264                     this.el.endMeasure();
11265                 }
11266             }
11267         }
11268     },
11269
11270     /**
11271      * Assigns this button's click handler
11272      * @param {Function} handler The function to call when the button is clicked
11273      * @param {Object} scope (optional) Scope for the function passed in
11274      */
11275     setHandler : function(handler, scope){
11276         this.handler = handler;
11277         this.scope = scope;  
11278     },
11279     
11280     /**
11281      * Sets this button's text
11282      * @param {String} text The button text
11283      */
11284     setText : function(text){
11285         this.text = text;
11286         if(this.el){
11287             this.el.child("td.x-btn-center button.x-btn-text").update(text);
11288         }
11289         this.autoWidth();
11290     },
11291     
11292     /**
11293      * Gets the text for this button
11294      * @return {String} The button text
11295      */
11296     getText : function(){
11297         return this.text;  
11298     },
11299     
11300     /**
11301      * Show this button
11302      */
11303     show: function(){
11304         this.hidden = false;
11305         if(this.el){
11306             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
11307         }
11308     },
11309     
11310     /**
11311      * Hide this button
11312      */
11313     hide: function(){
11314         this.hidden = true;
11315         if(this.el){
11316             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
11317         }
11318     },
11319     
11320     /**
11321      * Convenience function for boolean show/hide
11322      * @param {Boolean} visible True to show, false to hide
11323      */
11324     setVisible: function(visible){
11325         if(visible) {
11326             this.show();
11327         }else{
11328             this.hide();
11329         }
11330     },
11331     
11332     /**
11333      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
11334      * @param {Boolean} state (optional) Force a particular state
11335      */
11336     toggle : function(state){
11337         state = state === undefined ? !this.pressed : state;
11338         if(state != this.pressed){
11339             if(state){
11340                 this.el.addClass("x-btn-pressed");
11341                 this.pressed = true;
11342                 this.fireEvent("toggle", this, true);
11343             }else{
11344                 this.el.removeClass("x-btn-pressed");
11345                 this.pressed = false;
11346                 this.fireEvent("toggle", this, false);
11347             }
11348             if(this.toggleHandler){
11349                 this.toggleHandler.call(this.scope || this, this, state);
11350             }
11351         }
11352     },
11353     
11354     /**
11355      * Focus the button
11356      */
11357     focus : function(){
11358         this.el.child('button:first').focus();
11359     },
11360     
11361     /**
11362      * Disable this button
11363      */
11364     disable : function(){
11365         if(this.el){
11366             this.el.addClass("x-btn-disabled");
11367         }
11368         this.disabled = true;
11369     },
11370     
11371     /**
11372      * Enable this button
11373      */
11374     enable : function(){
11375         if(this.el){
11376             this.el.removeClass("x-btn-disabled");
11377         }
11378         this.disabled = false;
11379     },
11380
11381     /**
11382      * Convenience function for boolean enable/disable
11383      * @param {Boolean} enabled True to enable, false to disable
11384      */
11385     setDisabled : function(v){
11386         this[v !== true ? "enable" : "disable"]();
11387     },
11388
11389     // private
11390     onClick : function(e){
11391         if(e){
11392             e.preventDefault();
11393         }
11394         if(e.button != 0){
11395             return;
11396         }
11397         if(!this.disabled){
11398             if(this.enableToggle){
11399                 this.toggle();
11400             }
11401             if(this.menu && !this.menu.isVisible()){
11402                 this.menu.show(this.el, this.menuAlign);
11403             }
11404             this.fireEvent("click", this, e);
11405             if(this.handler){
11406                 this.el.removeClass("x-btn-over");
11407                 this.handler.call(this.scope || this, this, e);
11408             }
11409         }
11410     },
11411     // private
11412     onMouseOver : function(e){
11413         if(!this.disabled){
11414             this.el.addClass("x-btn-over");
11415             this.fireEvent('mouseover', this, e);
11416         }
11417     },
11418     // private
11419     onMouseOut : function(e){
11420         if(!e.within(this.el,  true)){
11421             this.el.removeClass("x-btn-over");
11422             this.fireEvent('mouseout', this, e);
11423         }
11424     },
11425     // private
11426     onFocus : function(e){
11427         if(!this.disabled){
11428             this.el.addClass("x-btn-focus");
11429         }
11430     },
11431     // private
11432     onBlur : function(e){
11433         this.el.removeClass("x-btn-focus");
11434     },
11435     // private
11436     onMouseDown : function(e){
11437         if(!this.disabled && e.button == 0){
11438             this.el.addClass("x-btn-click");
11439             Roo.get(document).on('mouseup', this.onMouseUp, this);
11440         }
11441     },
11442     // private
11443     onMouseUp : function(e){
11444         if(e.button == 0){
11445             this.el.removeClass("x-btn-click");
11446             Roo.get(document).un('mouseup', this.onMouseUp, this);
11447         }
11448     },
11449     // private
11450     onMenuShow : function(e){
11451         this.el.addClass("x-btn-menu-active");
11452     },
11453     // private
11454     onMenuHide : function(e){
11455         this.el.removeClass("x-btn-menu-active");
11456     }   
11457 });
11458
11459 // Private utility class used by Button
11460 Roo.ButtonToggleMgr = function(){
11461    var groups = {};
11462    
11463    function toggleGroup(btn, state){
11464        if(state){
11465            var g = groups[btn.toggleGroup];
11466            for(var i = 0, l = g.length; i < l; i++){
11467                if(g[i] != btn){
11468                    g[i].toggle(false);
11469                }
11470            }
11471        }
11472    }
11473    
11474    return {
11475        register : function(btn){
11476            if(!btn.toggleGroup){
11477                return;
11478            }
11479            var g = groups[btn.toggleGroup];
11480            if(!g){
11481                g = groups[btn.toggleGroup] = [];
11482            }
11483            g.push(btn);
11484            btn.on("toggle", toggleGroup);
11485        },
11486        
11487        unregister : function(btn){
11488            if(!btn.toggleGroup){
11489                return;
11490            }
11491            var g = groups[btn.toggleGroup];
11492            if(g){
11493                g.remove(btn);
11494                btn.un("toggle", toggleGroup);
11495            }
11496        }
11497    };
11498 }();/*
11499  * Based on:
11500  * Ext JS Library 1.1.1
11501  * Copyright(c) 2006-2007, Ext JS, LLC.
11502  *
11503  * Originally Released Under LGPL - original licence link has changed is not relivant.
11504  *
11505  * Fork - LGPL
11506  * <script type="text/javascript">
11507  */
11508  
11509 /**
11510  * @class Roo.SplitButton
11511  * @extends Roo.Button
11512  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
11513  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
11514  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
11515  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
11516  * @cfg {String} arrowTooltip The title attribute of the arrow
11517  * @constructor
11518  * Create a new menu button
11519  * @param {String/HTMLElement/Element} renderTo The element to append the button to
11520  * @param {Object} config The config object
11521  */
11522 Roo.SplitButton = function(renderTo, config){
11523     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
11524     /**
11525      * @event arrowclick
11526      * Fires when this button's arrow is clicked
11527      * @param {SplitButton} this
11528      * @param {EventObject} e The click event
11529      */
11530     this.addEvents({"arrowclick":true});
11531 };
11532
11533 Roo.extend(Roo.SplitButton, Roo.Button, {
11534     render : function(renderTo){
11535         // this is one sweet looking template!
11536         var tpl = new Roo.Template(
11537             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
11538             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
11539             '<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>',
11540             "</tbody></table></td><td>",
11541             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
11542             '<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>',
11543             "</tbody></table></td></tr></table>"
11544         );
11545         var btn = tpl.append(renderTo, [this.text, this.type], true);
11546         var btnEl = btn.child("button");
11547         if(this.cls){
11548             btn.addClass(this.cls);
11549         }
11550         if(this.icon){
11551             btnEl.setStyle('background-image', 'url(' +this.icon +')');
11552         }
11553         if(this.iconCls){
11554             btnEl.addClass(this.iconCls);
11555             if(!this.cls){
11556                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
11557             }
11558         }
11559         this.el = btn;
11560         if(this.handleMouseEvents){
11561             btn.on("mouseover", this.onMouseOver, this);
11562             btn.on("mouseout", this.onMouseOut, this);
11563             btn.on("mousedown", this.onMouseDown, this);
11564             btn.on("mouseup", this.onMouseUp, this);
11565         }
11566         btn.on(this.clickEvent, this.onClick, this);
11567         if(this.tooltip){
11568             if(typeof this.tooltip == 'object'){
11569                 Roo.QuickTips.tips(Roo.apply({
11570                       target: btnEl.id
11571                 }, this.tooltip));
11572             } else {
11573                 btnEl.dom[this.tooltipType] = this.tooltip;
11574             }
11575         }
11576         if(this.arrowTooltip){
11577             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
11578         }
11579         if(this.hidden){
11580             this.hide();
11581         }
11582         if(this.disabled){
11583             this.disable();
11584         }
11585         if(this.pressed){
11586             this.el.addClass("x-btn-pressed");
11587         }
11588         if(Roo.isIE && !Roo.isIE7){
11589             this.autoWidth.defer(1, this);
11590         }else{
11591             this.autoWidth();
11592         }
11593         if(this.menu){
11594             this.menu.on("show", this.onMenuShow, this);
11595             this.menu.on("hide", this.onMenuHide, this);
11596         }
11597         this.fireEvent('render', this);
11598     },
11599
11600     // private
11601     autoWidth : function(){
11602         if(this.el){
11603             var tbl = this.el.child("table:first");
11604             var tbl2 = this.el.child("table:last");
11605             this.el.setWidth("auto");
11606             tbl.setWidth("auto");
11607             if(Roo.isIE7 && Roo.isStrict){
11608                 var ib = this.el.child('button:first');
11609                 if(ib && ib.getWidth() > 20){
11610                     ib.clip();
11611                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
11612                 }
11613             }
11614             if(this.minWidth){
11615                 if(this.hidden){
11616                     this.el.beginMeasure();
11617                 }
11618                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
11619                     tbl.setWidth(this.minWidth-tbl2.getWidth());
11620                 }
11621                 if(this.hidden){
11622                     this.el.endMeasure();
11623                 }
11624             }
11625             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
11626         } 
11627     },
11628     /**
11629      * Sets this button's click handler
11630      * @param {Function} handler The function to call when the button is clicked
11631      * @param {Object} scope (optional) Scope for the function passed above
11632      */
11633     setHandler : function(handler, scope){
11634         this.handler = handler;
11635         this.scope = scope;  
11636     },
11637     
11638     /**
11639      * Sets this button's arrow click handler
11640      * @param {Function} handler The function to call when the arrow is clicked
11641      * @param {Object} scope (optional) Scope for the function passed above
11642      */
11643     setArrowHandler : function(handler, scope){
11644         this.arrowHandler = handler;
11645         this.scope = scope;  
11646     },
11647     
11648     /**
11649      * Focus the button
11650      */
11651     focus : function(){
11652         if(this.el){
11653             this.el.child("button:first").focus();
11654         }
11655     },
11656
11657     // private
11658     onClick : function(e){
11659         e.preventDefault();
11660         if(!this.disabled){
11661             if(e.getTarget(".x-btn-menu-arrow-wrap")){
11662                 if(this.menu && !this.menu.isVisible()){
11663                     this.menu.show(this.el, this.menuAlign);
11664                 }
11665                 this.fireEvent("arrowclick", this, e);
11666                 if(this.arrowHandler){
11667                     this.arrowHandler.call(this.scope || this, this, e);
11668                 }
11669             }else{
11670                 this.fireEvent("click", this, e);
11671                 if(this.handler){
11672                     this.handler.call(this.scope || this, this, e);
11673                 }
11674             }
11675         }
11676     },
11677     // private
11678     onMouseDown : function(e){
11679         if(!this.disabled){
11680             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
11681         }
11682     },
11683     // private
11684     onMouseUp : function(e){
11685         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
11686     }   
11687 });
11688
11689
11690 // backwards compat
11691 Roo.MenuButton = Roo.SplitButton;/*
11692  * Based on:
11693  * Ext JS Library 1.1.1
11694  * Copyright(c) 2006-2007, Ext JS, LLC.
11695  *
11696  * Originally Released Under LGPL - original licence link has changed is not relivant.
11697  *
11698  * Fork - LGPL
11699  * <script type="text/javascript">
11700  */
11701
11702 /**
11703  * @class Roo.Toolbar
11704  * Basic Toolbar class.
11705  * @constructor
11706  * Creates a new Toolbar
11707  * @param {Object} container The config object
11708  */ 
11709 Roo.Toolbar = function(container, buttons, config)
11710 {
11711     /// old consturctor format still supported..
11712     if(container instanceof Array){ // omit the container for later rendering
11713         buttons = container;
11714         config = buttons;
11715         container = null;
11716     }
11717     if (typeof(container) == 'object' && container.xtype) {
11718         config = container;
11719         container = config.container;
11720         buttons = config.buttons || []; // not really - use items!!
11721     }
11722     var xitems = [];
11723     if (config && config.items) {
11724         xitems = config.items;
11725         delete config.items;
11726     }
11727     Roo.apply(this, config);
11728     this.buttons = buttons;
11729     
11730     if(container){
11731         this.render(container);
11732     }
11733     this.xitems = xitems;
11734     Roo.each(xitems, function(b) {
11735         this.add(b);
11736     }, this);
11737     
11738 };
11739
11740 Roo.Toolbar.prototype = {
11741     /**
11742      * @cfg {Array} items
11743      * array of button configs or elements to add (will be converted to a MixedCollection)
11744      */
11745     
11746     /**
11747      * @cfg {String/HTMLElement/Element} container
11748      * The id or element that will contain the toolbar
11749      */
11750     // private
11751     render : function(ct){
11752         this.el = Roo.get(ct);
11753         if(this.cls){
11754             this.el.addClass(this.cls);
11755         }
11756         // using a table allows for vertical alignment
11757         // 100% width is needed by Safari...
11758         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
11759         this.tr = this.el.child("tr", true);
11760         var autoId = 0;
11761         this.items = new Roo.util.MixedCollection(false, function(o){
11762             return o.id || ("item" + (++autoId));
11763         });
11764         if(this.buttons){
11765             this.add.apply(this, this.buttons);
11766             delete this.buttons;
11767         }
11768     },
11769
11770     /**
11771      * Adds element(s) to the toolbar -- this function takes a variable number of 
11772      * arguments of mixed type and adds them to the toolbar.
11773      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
11774      * <ul>
11775      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
11776      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
11777      * <li>Field: Any form field (equivalent to {@link #addField})</li>
11778      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
11779      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
11780      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
11781      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
11782      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
11783      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
11784      * </ul>
11785      * @param {Mixed} arg2
11786      * @param {Mixed} etc.
11787      */
11788     add : function(){
11789         var a = arguments, l = a.length;
11790         for(var i = 0; i < l; i++){
11791             this._add(a[i]);
11792         }
11793     },
11794     // private..
11795     _add : function(el) {
11796         
11797         if (el.xtype) {
11798             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
11799         }
11800         
11801         if (el.applyTo){ // some kind of form field
11802             return this.addField(el);
11803         } 
11804         if (el.render){ // some kind of Toolbar.Item
11805             return this.addItem(el);
11806         }
11807         if (typeof el == "string"){ // string
11808             if(el == "separator" || el == "-"){
11809                 return this.addSeparator();
11810             }
11811             if (el == " "){
11812                 return this.addSpacer();
11813             }
11814             if(el == "->"){
11815                 return this.addFill();
11816             }
11817             return this.addText(el);
11818             
11819         }
11820         if(el.tagName){ // element
11821             return this.addElement(el);
11822         }
11823         if(typeof el == "object"){ // must be button config?
11824             return this.addButton(el);
11825         }
11826         // and now what?!?!
11827         return false;
11828         
11829     },
11830     
11831     /**
11832      * Add an Xtype element
11833      * @param {Object} xtype Xtype Object
11834      * @return {Object} created Object
11835      */
11836     addxtype : function(e){
11837         return this.add(e);  
11838     },
11839     
11840     /**
11841      * Returns the Element for this toolbar.
11842      * @return {Roo.Element}
11843      */
11844     getEl : function(){
11845         return this.el;  
11846     },
11847     
11848     /**
11849      * Adds a separator
11850      * @return {Roo.Toolbar.Item} The separator item
11851      */
11852     addSeparator : function(){
11853         return this.addItem(new Roo.Toolbar.Separator());
11854     },
11855
11856     /**
11857      * Adds a spacer element
11858      * @return {Roo.Toolbar.Spacer} The spacer item
11859      */
11860     addSpacer : function(){
11861         return this.addItem(new Roo.Toolbar.Spacer());
11862     },
11863
11864     /**
11865      * Adds a fill element that forces subsequent additions to the right side of the toolbar
11866      * @return {Roo.Toolbar.Fill} The fill item
11867      */
11868     addFill : function(){
11869         return this.addItem(new Roo.Toolbar.Fill());
11870     },
11871
11872     /**
11873      * Adds any standard HTML element to the toolbar
11874      * @param {String/HTMLElement/Element} el The element or id of the element to add
11875      * @return {Roo.Toolbar.Item} The element's item
11876      */
11877     addElement : function(el){
11878         return this.addItem(new Roo.Toolbar.Item(el));
11879     },
11880     /**
11881      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
11882      * @type Roo.util.MixedCollection  
11883      */
11884     items : false,
11885      
11886     /**
11887      * Adds any Toolbar.Item or subclass
11888      * @param {Roo.Toolbar.Item} item
11889      * @return {Roo.Toolbar.Item} The item
11890      */
11891     addItem : function(item){
11892         var td = this.nextBlock();
11893         item.render(td);
11894         this.items.add(item);
11895         return item;
11896     },
11897     
11898     /**
11899      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
11900      * @param {Object/Array} config A button config or array of configs
11901      * @return {Roo.Toolbar.Button/Array}
11902      */
11903     addButton : function(config){
11904         if(config instanceof Array){
11905             var buttons = [];
11906             for(var i = 0, len = config.length; i < len; i++) {
11907                 buttons.push(this.addButton(config[i]));
11908             }
11909             return buttons;
11910         }
11911         var b = config;
11912         if(!(config instanceof Roo.Toolbar.Button)){
11913             b = config.split ?
11914                 new Roo.Toolbar.SplitButton(config) :
11915                 new Roo.Toolbar.Button(config);
11916         }
11917         var td = this.nextBlock();
11918         b.render(td);
11919         this.items.add(b);
11920         return b;
11921     },
11922     
11923     /**
11924      * Adds text to the toolbar
11925      * @param {String} text The text to add
11926      * @return {Roo.Toolbar.Item} The element's item
11927      */
11928     addText : function(text){
11929         return this.addItem(new Roo.Toolbar.TextItem(text));
11930     },
11931     
11932     /**
11933      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
11934      * @param {Number} index The index where the item is to be inserted
11935      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
11936      * @return {Roo.Toolbar.Button/Item}
11937      */
11938     insertButton : function(index, item){
11939         if(item instanceof Array){
11940             var buttons = [];
11941             for(var i = 0, len = item.length; i < len; i++) {
11942                buttons.push(this.insertButton(index + i, item[i]));
11943             }
11944             return buttons;
11945         }
11946         if (!(item instanceof Roo.Toolbar.Button)){
11947            item = new Roo.Toolbar.Button(item);
11948         }
11949         var td = document.createElement("td");
11950         this.tr.insertBefore(td, this.tr.childNodes[index]);
11951         item.render(td);
11952         this.items.insert(index, item);
11953         return item;
11954     },
11955     
11956     /**
11957      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
11958      * @param {Object} config
11959      * @return {Roo.Toolbar.Item} The element's item
11960      */
11961     addDom : function(config, returnEl){
11962         var td = this.nextBlock();
11963         Roo.DomHelper.overwrite(td, config);
11964         var ti = new Roo.Toolbar.Item(td.firstChild);
11965         ti.render(td);
11966         this.items.add(ti);
11967         return ti;
11968     },
11969
11970     /**
11971      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
11972      * @type Roo.util.MixedCollection  
11973      */
11974     fields : false,
11975     
11976     /**
11977      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
11978      * Note: the field should not have been rendered yet. For a field that has already been
11979      * rendered, use {@link #addElement}.
11980      * @param {Roo.form.Field} field
11981      * @return {Roo.ToolbarItem}
11982      */
11983      
11984       
11985     addField : function(field) {
11986         if (!this.fields) {
11987             var autoId = 0;
11988             this.fields = new Roo.util.MixedCollection(false, function(o){
11989                 return o.id || ("item" + (++autoId));
11990             });
11991
11992         }
11993         
11994         var td = this.nextBlock();
11995         field.render(td);
11996         var ti = new Roo.Toolbar.Item(td.firstChild);
11997         ti.render(td);
11998         this.items.add(ti);
11999         this.fields.add(field);
12000         return ti;
12001     },
12002     /**
12003      * Hide the toolbar
12004      * @method hide
12005      */
12006      
12007       
12008     hide : function()
12009     {
12010         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
12011         this.el.child('div').hide();
12012     },
12013     /**
12014      * Show the toolbar
12015      * @method show
12016      */
12017     show : function()
12018     {
12019         this.el.child('div').show();
12020     },
12021       
12022     // private
12023     nextBlock : function(){
12024         var td = document.createElement("td");
12025         this.tr.appendChild(td);
12026         return td;
12027     },
12028
12029     // private
12030     destroy : function(){
12031         if(this.items){ // rendered?
12032             Roo.destroy.apply(Roo, this.items.items);
12033         }
12034         if(this.fields){ // rendered?
12035             Roo.destroy.apply(Roo, this.fields.items);
12036         }
12037         Roo.Element.uncache(this.el, this.tr);
12038     }
12039 };
12040
12041 /**
12042  * @class Roo.Toolbar.Item
12043  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
12044  * @constructor
12045  * Creates a new Item
12046  * @param {HTMLElement} el 
12047  */
12048 Roo.Toolbar.Item = function(el){
12049     this.el = Roo.getDom(el);
12050     this.id = Roo.id(this.el);
12051     this.hidden = false;
12052 };
12053
12054 Roo.Toolbar.Item.prototype = {
12055     
12056     /**
12057      * Get this item's HTML Element
12058      * @return {HTMLElement}
12059      */
12060     getEl : function(){
12061        return this.el;  
12062     },
12063
12064     // private
12065     render : function(td){
12066         this.td = td;
12067         td.appendChild(this.el);
12068     },
12069     
12070     /**
12071      * Removes and destroys this item.
12072      */
12073     destroy : function(){
12074         this.td.parentNode.removeChild(this.td);
12075     },
12076     
12077     /**
12078      * Shows this item.
12079      */
12080     show: function(){
12081         this.hidden = false;
12082         this.td.style.display = "";
12083     },
12084     
12085     /**
12086      * Hides this item.
12087      */
12088     hide: function(){
12089         this.hidden = true;
12090         this.td.style.display = "none";
12091     },
12092     
12093     /**
12094      * Convenience function for boolean show/hide.
12095      * @param {Boolean} visible true to show/false to hide
12096      */
12097     setVisible: function(visible){
12098         if(visible) {
12099             this.show();
12100         }else{
12101             this.hide();
12102         }
12103     },
12104     
12105     /**
12106      * Try to focus this item.
12107      */
12108     focus : function(){
12109         Roo.fly(this.el).focus();
12110     },
12111     
12112     /**
12113      * Disables this item.
12114      */
12115     disable : function(){
12116         Roo.fly(this.td).addClass("x-item-disabled");
12117         this.disabled = true;
12118         this.el.disabled = true;
12119     },
12120     
12121     /**
12122      * Enables this item.
12123      */
12124     enable : function(){
12125         Roo.fly(this.td).removeClass("x-item-disabled");
12126         this.disabled = false;
12127         this.el.disabled = false;
12128     }
12129 };
12130
12131
12132 /**
12133  * @class Roo.Toolbar.Separator
12134  * @extends Roo.Toolbar.Item
12135  * A simple toolbar separator class
12136  * @constructor
12137  * Creates a new Separator
12138  */
12139 Roo.Toolbar.Separator = function(){
12140     var s = document.createElement("span");
12141     s.className = "ytb-sep";
12142     Roo.Toolbar.Separator.superclass.constructor.call(this, s);
12143 };
12144 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
12145     enable:Roo.emptyFn,
12146     disable:Roo.emptyFn,
12147     focus:Roo.emptyFn
12148 });
12149
12150 /**
12151  * @class Roo.Toolbar.Spacer
12152  * @extends Roo.Toolbar.Item
12153  * A simple element that adds extra horizontal space to a toolbar.
12154  * @constructor
12155  * Creates a new Spacer
12156  */
12157 Roo.Toolbar.Spacer = function(){
12158     var s = document.createElement("div");
12159     s.className = "ytb-spacer";
12160     Roo.Toolbar.Spacer.superclass.constructor.call(this, s);
12161 };
12162 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
12163     enable:Roo.emptyFn,
12164     disable:Roo.emptyFn,
12165     focus:Roo.emptyFn
12166 });
12167
12168 /**
12169  * @class Roo.Toolbar.Fill
12170  * @extends Roo.Toolbar.Spacer
12171  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
12172  * @constructor
12173  * Creates a new Spacer
12174  */
12175 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
12176     // private
12177     render : function(td){
12178         td.style.width = '100%';
12179         Roo.Toolbar.Fill.superclass.render.call(this, td);
12180     }
12181 });
12182
12183 /**
12184  * @class Roo.Toolbar.TextItem
12185  * @extends Roo.Toolbar.Item
12186  * A simple class that renders text directly into a toolbar.
12187  * @constructor
12188  * Creates a new TextItem
12189  * @param {String} text
12190  */
12191 Roo.Toolbar.TextItem = function(text){
12192     if (typeof(text) == 'object') {
12193         text = text.text;
12194     }
12195     var s = document.createElement("span");
12196     s.className = "ytb-text";
12197     s.innerHTML = text;
12198     Roo.Toolbar.TextItem.superclass.constructor.call(this, s);
12199 };
12200 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
12201     enable:Roo.emptyFn,
12202     disable:Roo.emptyFn,
12203     focus:Roo.emptyFn
12204 });
12205
12206 /**
12207  * @class Roo.Toolbar.Button
12208  * @extends Roo.Button
12209  * A button that renders into a toolbar.
12210  * @constructor
12211  * Creates a new Button
12212  * @param {Object} config A standard {@link Roo.Button} config object
12213  */
12214 Roo.Toolbar.Button = function(config){
12215     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
12216 };
12217 Roo.extend(Roo.Toolbar.Button, Roo.Button, {
12218     render : function(td){
12219         this.td = td;
12220         Roo.Toolbar.Button.superclass.render.call(this, td);
12221     },
12222     
12223     /**
12224      * Removes and destroys this button
12225      */
12226     destroy : function(){
12227         Roo.Toolbar.Button.superclass.destroy.call(this);
12228         this.td.parentNode.removeChild(this.td);
12229     },
12230     
12231     /**
12232      * Shows this button
12233      */
12234     show: function(){
12235         this.hidden = false;
12236         this.td.style.display = "";
12237     },
12238     
12239     /**
12240      * Hides this button
12241      */
12242     hide: function(){
12243         this.hidden = true;
12244         this.td.style.display = "none";
12245     },
12246
12247     /**
12248      * Disables this item
12249      */
12250     disable : function(){
12251         Roo.fly(this.td).addClass("x-item-disabled");
12252         this.disabled = true;
12253     },
12254
12255     /**
12256      * Enables this item
12257      */
12258     enable : function(){
12259         Roo.fly(this.td).removeClass("x-item-disabled");
12260         this.disabled = false;
12261     }
12262 });
12263 // backwards compat
12264 Roo.ToolbarButton = Roo.Toolbar.Button;
12265
12266 /**
12267  * @class Roo.Toolbar.SplitButton
12268  * @extends Roo.SplitButton
12269  * A menu button that renders into a toolbar.
12270  * @constructor
12271  * Creates a new SplitButton
12272  * @param {Object} config A standard {@link Roo.SplitButton} config object
12273  */
12274 Roo.Toolbar.SplitButton = function(config){
12275     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
12276 };
12277 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
12278     render : function(td){
12279         this.td = td;
12280         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
12281     },
12282     
12283     /**
12284      * Removes and destroys this button
12285      */
12286     destroy : function(){
12287         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
12288         this.td.parentNode.removeChild(this.td);
12289     },
12290     
12291     /**
12292      * Shows this button
12293      */
12294     show: function(){
12295         this.hidden = false;
12296         this.td.style.display = "";
12297     },
12298     
12299     /**
12300      * Hides this button
12301      */
12302     hide: function(){
12303         this.hidden = true;
12304         this.td.style.display = "none";
12305     }
12306 });
12307
12308 // backwards compat
12309 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
12310  * Based on:
12311  * Ext JS Library 1.1.1
12312  * Copyright(c) 2006-2007, Ext JS, LLC.
12313  *
12314  * Originally Released Under LGPL - original licence link has changed is not relivant.
12315  *
12316  * Fork - LGPL
12317  * <script type="text/javascript">
12318  */
12319  
12320 /**
12321  * @class Roo.PagingToolbar
12322  * @extends Roo.Toolbar
12323  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
12324  * @constructor
12325  * Create a new PagingToolbar
12326  * @param {Object} config The config object
12327  */
12328 Roo.PagingToolbar = function(el, ds, config)
12329 {
12330     // old args format still supported... - xtype is prefered..
12331     if (typeof(el) == 'object' && el.xtype) {
12332         // created from xtype...
12333         config = el;
12334         ds = el.dataSource;
12335         el = config.container;
12336     }
12337     var items = [];
12338     if (config.items) {
12339         items = config.items;
12340         config.items = [];
12341     }
12342     
12343     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
12344     this.ds = ds;
12345     this.cursor = 0;
12346     this.renderButtons(this.el);
12347     this.bind(ds);
12348     
12349     // supprot items array.
12350    
12351     Roo.each(items, function(e) {
12352         this.add(Roo.factory(e));
12353     },this);
12354     
12355 };
12356
12357 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
12358     /**
12359      * @cfg {Roo.data.Store} dataSource
12360      * The underlying data store providing the paged data
12361      */
12362     /**
12363      * @cfg {String/HTMLElement/Element} container
12364      * container The id or element that will contain the toolbar
12365      */
12366     /**
12367      * @cfg {Boolean} displayInfo
12368      * True to display the displayMsg (defaults to false)
12369      */
12370     /**
12371      * @cfg {Number} pageSize
12372      * The number of records to display per page (defaults to 20)
12373      */
12374     pageSize: 20,
12375     /**
12376      * @cfg {String} displayMsg
12377      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
12378      */
12379     displayMsg : 'Displaying {0} - {1} of {2}',
12380     /**
12381      * @cfg {String} emptyMsg
12382      * The message to display when no records are found (defaults to "No data to display")
12383      */
12384     emptyMsg : 'No data to display',
12385     /**
12386      * Customizable piece of the default paging text (defaults to "Page")
12387      * @type String
12388      */
12389     beforePageText : "Page",
12390     /**
12391      * Customizable piece of the default paging text (defaults to "of %0")
12392      * @type String
12393      */
12394     afterPageText : "of {0}",
12395     /**
12396      * Customizable piece of the default paging text (defaults to "First Page")
12397      * @type String
12398      */
12399     firstText : "First Page",
12400     /**
12401      * Customizable piece of the default paging text (defaults to "Previous Page")
12402      * @type String
12403      */
12404     prevText : "Previous Page",
12405     /**
12406      * Customizable piece of the default paging text (defaults to "Next Page")
12407      * @type String
12408      */
12409     nextText : "Next Page",
12410     /**
12411      * Customizable piece of the default paging text (defaults to "Last Page")
12412      * @type String
12413      */
12414     lastText : "Last Page",
12415     /**
12416      * Customizable piece of the default paging text (defaults to "Refresh")
12417      * @type String
12418      */
12419     refreshText : "Refresh",
12420
12421     // private
12422     renderButtons : function(el){
12423         Roo.PagingToolbar.superclass.render.call(this, el);
12424         this.first = this.addButton({
12425             tooltip: this.firstText,
12426             cls: "x-btn-icon x-grid-page-first",
12427             disabled: true,
12428             handler: this.onClick.createDelegate(this, ["first"])
12429         });
12430         this.prev = this.addButton({
12431             tooltip: this.prevText,
12432             cls: "x-btn-icon x-grid-page-prev",
12433             disabled: true,
12434             handler: this.onClick.createDelegate(this, ["prev"])
12435         });
12436         //this.addSeparator();
12437         this.add(this.beforePageText);
12438         this.field = Roo.get(this.addDom({
12439            tag: "input",
12440            type: "text",
12441            size: "3",
12442            value: "1",
12443            cls: "x-grid-page-number"
12444         }).el);
12445         this.field.on("keydown", this.onPagingKeydown, this);
12446         this.field.on("focus", function(){this.dom.select();});
12447         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
12448         this.field.setHeight(18);
12449         //this.addSeparator();
12450         this.next = this.addButton({
12451             tooltip: this.nextText,
12452             cls: "x-btn-icon x-grid-page-next",
12453             disabled: true,
12454             handler: this.onClick.createDelegate(this, ["next"])
12455         });
12456         this.last = this.addButton({
12457             tooltip: this.lastText,
12458             cls: "x-btn-icon x-grid-page-last",
12459             disabled: true,
12460             handler: this.onClick.createDelegate(this, ["last"])
12461         });
12462         //this.addSeparator();
12463         this.loading = this.addButton({
12464             tooltip: this.refreshText,
12465             cls: "x-btn-icon x-grid-loading",
12466             handler: this.onClick.createDelegate(this, ["refresh"])
12467         });
12468
12469         if(this.displayInfo){
12470             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
12471         }
12472     },
12473
12474     // private
12475     updateInfo : function(){
12476         if(this.displayEl){
12477             var count = this.ds.getCount();
12478             var msg = count == 0 ?
12479                 this.emptyMsg :
12480                 String.format(
12481                     this.displayMsg,
12482                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
12483                 );
12484             this.displayEl.update(msg);
12485         }
12486     },
12487
12488     // private
12489     onLoad : function(ds, r, o){
12490        this.cursor = o.params ? o.params.start : 0;
12491        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
12492
12493        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
12494        this.field.dom.value = ap;
12495        this.first.setDisabled(ap == 1);
12496        this.prev.setDisabled(ap == 1);
12497        this.next.setDisabled(ap == ps);
12498        this.last.setDisabled(ap == ps);
12499        this.loading.enable();
12500        this.updateInfo();
12501     },
12502
12503     // private
12504     getPageData : function(){
12505         var total = this.ds.getTotalCount();
12506         return {
12507             total : total,
12508             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
12509             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
12510         };
12511     },
12512
12513     // private
12514     onLoadError : function(){
12515         this.loading.enable();
12516     },
12517
12518     // private
12519     onPagingKeydown : function(e){
12520         var k = e.getKey();
12521         var d = this.getPageData();
12522         if(k == e.RETURN){
12523             var v = this.field.dom.value, pageNum;
12524             if(!v || isNaN(pageNum = parseInt(v, 10))){
12525                 this.field.dom.value = d.activePage;
12526                 return;
12527             }
12528             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
12529             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12530             e.stopEvent();
12531         }
12532         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))
12533         {
12534           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
12535           this.field.dom.value = pageNum;
12536           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
12537           e.stopEvent();
12538         }
12539         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12540         {
12541           var v = this.field.dom.value, pageNum; 
12542           var increment = (e.shiftKey) ? 10 : 1;
12543           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
12544             increment *= -1;
12545           if(!v || isNaN(pageNum = parseInt(v, 10))) {
12546             this.field.dom.value = d.activePage;
12547             return;
12548           }
12549           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
12550           {
12551             this.field.dom.value = parseInt(v, 10) + increment;
12552             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
12553             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
12554           }
12555           e.stopEvent();
12556         }
12557     },
12558
12559     // private
12560     beforeLoad : function(){
12561         if(this.loading){
12562             this.loading.disable();
12563         }
12564     },
12565
12566     // private
12567     onClick : function(which){
12568         var ds = this.ds;
12569         switch(which){
12570             case "first":
12571                 ds.load({params:{start: 0, limit: this.pageSize}});
12572             break;
12573             case "prev":
12574                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
12575             break;
12576             case "next":
12577                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
12578             break;
12579             case "last":
12580                 var total = ds.getTotalCount();
12581                 var extra = total % this.pageSize;
12582                 var lastStart = extra ? (total - extra) : total-this.pageSize;
12583                 ds.load({params:{start: lastStart, limit: this.pageSize}});
12584             break;
12585             case "refresh":
12586                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
12587             break;
12588         }
12589     },
12590
12591     /**
12592      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
12593      * @param {Roo.data.Store} store The data store to unbind
12594      */
12595     unbind : function(ds){
12596         ds.un("beforeload", this.beforeLoad, this);
12597         ds.un("load", this.onLoad, this);
12598         ds.un("loadexception", this.onLoadError, this);
12599         ds.un("remove", this.updateInfo, this);
12600         ds.un("add", this.updateInfo, this);
12601         this.ds = undefined;
12602     },
12603
12604     /**
12605      * Binds the paging toolbar to the specified {@link Roo.data.Store}
12606      * @param {Roo.data.Store} store The data store to bind
12607      */
12608     bind : function(ds){
12609         ds.on("beforeload", this.beforeLoad, this);
12610         ds.on("load", this.onLoad, this);
12611         ds.on("loadexception", this.onLoadError, this);
12612         ds.on("remove", this.updateInfo, this);
12613         ds.on("add", this.updateInfo, this);
12614         this.ds = ds;
12615     }
12616 });/*
12617  * Based on:
12618  * Ext JS Library 1.1.1
12619  * Copyright(c) 2006-2007, Ext JS, LLC.
12620  *
12621  * Originally Released Under LGPL - original licence link has changed is not relivant.
12622  *
12623  * Fork - LGPL
12624  * <script type="text/javascript">
12625  */
12626
12627 /**
12628  * @class Roo.Resizable
12629  * @extends Roo.util.Observable
12630  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
12631  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
12632  * 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
12633  * the element will be wrapped for you automatically.</p>
12634  * <p>Here is the list of valid resize handles:</p>
12635  * <pre>
12636 Value   Description
12637 ------  -------------------
12638  'n'     north
12639  's'     south
12640  'e'     east
12641  'w'     west
12642  'nw'    northwest
12643  'sw'    southwest
12644  'se'    southeast
12645  'ne'    northeast
12646  'hd'    horizontal drag
12647  'all'   all
12648 </pre>
12649  * <p>Here's an example showing the creation of a typical Resizable:</p>
12650  * <pre><code>
12651 var resizer = new Roo.Resizable("element-id", {
12652     handles: 'all',
12653     minWidth: 200,
12654     minHeight: 100,
12655     maxWidth: 500,
12656     maxHeight: 400,
12657     pinned: true
12658 });
12659 resizer.on("resize", myHandler);
12660 </code></pre>
12661  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
12662  * resizer.east.setDisplayed(false);</p>
12663  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
12664  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
12665  * resize operation's new size (defaults to [0, 0])
12666  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
12667  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
12668  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
12669  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
12670  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
12671  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
12672  * @cfg {Number} width The width of the element in pixels (defaults to null)
12673  * @cfg {Number} height The height of the element in pixels (defaults to null)
12674  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
12675  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
12676  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
12677  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
12678  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
12679  * in favor of the handles config option (defaults to false)
12680  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
12681  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
12682  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
12683  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
12684  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
12685  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
12686  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
12687  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
12688  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
12689  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
12690  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
12691  * @constructor
12692  * Create a new resizable component
12693  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
12694  * @param {Object} config configuration options
12695   */
12696 Roo.Resizable = function(el, config)
12697 {
12698     this.el = Roo.get(el);
12699
12700     if(config && config.wrap){
12701         config.resizeChild = this.el;
12702         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
12703         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
12704         this.el.setStyle("overflow", "hidden");
12705         this.el.setPositioning(config.resizeChild.getPositioning());
12706         config.resizeChild.clearPositioning();
12707         if(!config.width || !config.height){
12708             var csize = config.resizeChild.getSize();
12709             this.el.setSize(csize.width, csize.height);
12710         }
12711         if(config.pinned && !config.adjustments){
12712             config.adjustments = "auto";
12713         }
12714     }
12715
12716     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
12717     this.proxy.unselectable();
12718     this.proxy.enableDisplayMode('block');
12719
12720     Roo.apply(this, config);
12721
12722     if(this.pinned){
12723         this.disableTrackOver = true;
12724         this.el.addClass("x-resizable-pinned");
12725     }
12726     // if the element isn't positioned, make it relative
12727     var position = this.el.getStyle("position");
12728     if(position != "absolute" && position != "fixed"){
12729         this.el.setStyle("position", "relative");
12730     }
12731     if(!this.handles){ // no handles passed, must be legacy style
12732         this.handles = 's,e,se';
12733         if(this.multiDirectional){
12734             this.handles += ',n,w';
12735         }
12736     }
12737     if(this.handles == "all"){
12738         this.handles = "n s e w ne nw se sw";
12739     }
12740     var hs = this.handles.split(/\s*?[,;]\s*?| /);
12741     var ps = Roo.Resizable.positions;
12742     for(var i = 0, len = hs.length; i < len; i++){
12743         if(hs[i] && ps[hs[i]]){
12744             var pos = ps[hs[i]];
12745             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
12746         }
12747     }
12748     // legacy
12749     this.corner = this.southeast;
12750     
12751     // updateBox = the box can move..
12752     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
12753         this.updateBox = true;
12754     }
12755
12756     this.activeHandle = null;
12757
12758     if(this.resizeChild){
12759         if(typeof this.resizeChild == "boolean"){
12760             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
12761         }else{
12762             this.resizeChild = Roo.get(this.resizeChild, true);
12763         }
12764     }
12765     
12766     if(this.adjustments == "auto"){
12767         var rc = this.resizeChild;
12768         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
12769         if(rc && (hw || hn)){
12770             rc.position("relative");
12771             rc.setLeft(hw ? hw.el.getWidth() : 0);
12772             rc.setTop(hn ? hn.el.getHeight() : 0);
12773         }
12774         this.adjustments = [
12775             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
12776             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
12777         ];
12778     }
12779
12780     if(this.draggable){
12781         this.dd = this.dynamic ?
12782             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
12783         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
12784     }
12785
12786     // public events
12787     this.addEvents({
12788         /**
12789          * @event beforeresize
12790          * Fired before resize is allowed. Set enabled to false to cancel resize.
12791          * @param {Roo.Resizable} this
12792          * @param {Roo.EventObject} e The mousedown event
12793          */
12794         "beforeresize" : true,
12795         /**
12796          * @event resizing
12797          * Fired a resizing.
12798          * @param {Roo.Resizable} this
12799          * @param {Number} x The new x position
12800          * @param {Number} y The new y position
12801          * @param {Number} w The new w width
12802          * @param {Number} h The new h hight
12803          * @param {Roo.EventObject} e The mouseup event
12804          */
12805         "resizing" : true,
12806         /**
12807          * @event resize
12808          * Fired after a resize.
12809          * @param {Roo.Resizable} this
12810          * @param {Number} width The new width
12811          * @param {Number} height The new height
12812          * @param {Roo.EventObject} e The mouseup event
12813          */
12814         "resize" : true
12815     });
12816
12817     if(this.width !== null && this.height !== null){
12818         this.resizeTo(this.width, this.height);
12819     }else{
12820         this.updateChildSize();
12821     }
12822     if(Roo.isIE){
12823         this.el.dom.style.zoom = 1;
12824     }
12825     Roo.Resizable.superclass.constructor.call(this);
12826 };
12827
12828 Roo.extend(Roo.Resizable, Roo.util.Observable, {
12829         resizeChild : false,
12830         adjustments : [0, 0],
12831         minWidth : 5,
12832         minHeight : 5,
12833         maxWidth : 10000,
12834         maxHeight : 10000,
12835         enabled : true,
12836         animate : false,
12837         duration : .35,
12838         dynamic : false,
12839         handles : false,
12840         multiDirectional : false,
12841         disableTrackOver : false,
12842         easing : 'easeOutStrong',
12843         widthIncrement : 0,
12844         heightIncrement : 0,
12845         pinned : false,
12846         width : null,
12847         height : null,
12848         preserveRatio : false,
12849         transparent: false,
12850         minX: 0,
12851         minY: 0,
12852         draggable: false,
12853
12854         /**
12855          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
12856          */
12857         constrainTo: undefined,
12858         /**
12859          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
12860          */
12861         resizeRegion: undefined,
12862
12863
12864     /**
12865      * Perform a manual resize
12866      * @param {Number} width
12867      * @param {Number} height
12868      */
12869     resizeTo : function(width, height){
12870         this.el.setSize(width, height);
12871         this.updateChildSize();
12872         this.fireEvent("resize", this, width, height, null);
12873     },
12874
12875     // private
12876     startSizing : function(e, handle){
12877         this.fireEvent("beforeresize", this, e);
12878         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
12879
12880             if(!this.overlay){
12881                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
12882                 this.overlay.unselectable();
12883                 this.overlay.enableDisplayMode("block");
12884                 this.overlay.on("mousemove", this.onMouseMove, this);
12885                 this.overlay.on("mouseup", this.onMouseUp, this);
12886             }
12887             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
12888
12889             this.resizing = true;
12890             this.startBox = this.el.getBox();
12891             this.startPoint = e.getXY();
12892             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
12893                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
12894
12895             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
12896             this.overlay.show();
12897
12898             if(this.constrainTo) {
12899                 var ct = Roo.get(this.constrainTo);
12900                 this.resizeRegion = ct.getRegion().adjust(
12901                     ct.getFrameWidth('t'),
12902                     ct.getFrameWidth('l'),
12903                     -ct.getFrameWidth('b'),
12904                     -ct.getFrameWidth('r')
12905                 );
12906             }
12907
12908             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
12909             this.proxy.show();
12910             this.proxy.setBox(this.startBox);
12911             if(!this.dynamic){
12912                 this.proxy.setStyle('visibility', 'visible');
12913             }
12914         }
12915     },
12916
12917     // private
12918     onMouseDown : function(handle, e){
12919         if(this.enabled){
12920             e.stopEvent();
12921             this.activeHandle = handle;
12922             this.startSizing(e, handle);
12923         }
12924     },
12925
12926     // private
12927     onMouseUp : function(e){
12928         var size = this.resizeElement();
12929         this.resizing = false;
12930         this.handleOut();
12931         this.overlay.hide();
12932         this.proxy.hide();
12933         this.fireEvent("resize", this, size.width, size.height, e);
12934     },
12935
12936     // private
12937     updateChildSize : function(){
12938         
12939         if(this.resizeChild){
12940             var el = this.el;
12941             var child = this.resizeChild;
12942             var adj = this.adjustments;
12943             if(el.dom.offsetWidth){
12944                 var b = el.getSize(true);
12945                 child.setSize(b.width+adj[0], b.height+adj[1]);
12946             }
12947             // Second call here for IE
12948             // The first call enables instant resizing and
12949             // the second call corrects scroll bars if they
12950             // exist
12951             if(Roo.isIE){
12952                 setTimeout(function(){
12953                     if(el.dom.offsetWidth){
12954                         var b = el.getSize(true);
12955                         child.setSize(b.width+adj[0], b.height+adj[1]);
12956                     }
12957                 }, 10);
12958             }
12959         }
12960     },
12961
12962     // private
12963     snap : function(value, inc, min){
12964         if(!inc || !value) return value;
12965         var newValue = value;
12966         var m = value % inc;
12967         if(m > 0){
12968             if(m > (inc/2)){
12969                 newValue = value + (inc-m);
12970             }else{
12971                 newValue = value - m;
12972             }
12973         }
12974         return Math.max(min, newValue);
12975     },
12976
12977     // private
12978     resizeElement : function(){
12979         var box = this.proxy.getBox();
12980         if(this.updateBox){
12981             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
12982         }else{
12983             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
12984         }
12985         this.updateChildSize();
12986         if(!this.dynamic){
12987             this.proxy.hide();
12988         }
12989         return box;
12990     },
12991
12992     // private
12993     constrain : function(v, diff, m, mx){
12994         if(v - diff < m){
12995             diff = v - m;
12996         }else if(v - diff > mx){
12997             diff = mx - v;
12998         }
12999         return diff;
13000     },
13001
13002     // private
13003     onMouseMove : function(e){
13004         
13005         if(this.enabled){
13006             try{// try catch so if something goes wrong the user doesn't get hung
13007
13008             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
13009                 return;
13010             }
13011
13012             //var curXY = this.startPoint;
13013             var curSize = this.curSize || this.startBox;
13014             var x = this.startBox.x, y = this.startBox.y;
13015             var ox = x, oy = y;
13016             var w = curSize.width, h = curSize.height;
13017             var ow = w, oh = h;
13018             var mw = this.minWidth, mh = this.minHeight;
13019             var mxw = this.maxWidth, mxh = this.maxHeight;
13020             var wi = this.widthIncrement;
13021             var hi = this.heightIncrement;
13022
13023             var eventXY = e.getXY();
13024             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
13025             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
13026
13027             var pos = this.activeHandle.position;
13028
13029             switch(pos){
13030                 case "east":
13031                     w += diffX;
13032                     w = Math.min(Math.max(mw, w), mxw);
13033                     break;
13034              
13035                 case "south":
13036                     h += diffY;
13037                     h = Math.min(Math.max(mh, h), mxh);
13038                     break;
13039                 case "southeast":
13040                     w += diffX;
13041                     h += diffY;
13042                     w = Math.min(Math.max(mw, w), mxw);
13043                     h = Math.min(Math.max(mh, h), mxh);
13044                     break;
13045                 case "north":
13046                     diffY = this.constrain(h, diffY, mh, mxh);
13047                     y += diffY;
13048                     h -= diffY;
13049                     break;
13050                 case "hdrag":
13051                     
13052                     if (wi) {
13053                         var adiffX = Math.abs(diffX);
13054                         var sub = (adiffX % wi); // how much 
13055                         if (sub > (wi/2)) { // far enough to snap
13056                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
13057                         } else {
13058                             // remove difference.. 
13059                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
13060                         }
13061                     }
13062                     x += diffX;
13063                     x = Math.max(this.minX, x);
13064                     break;
13065                 case "west":
13066                     diffX = this.constrain(w, diffX, mw, mxw);
13067                     x += diffX;
13068                     w -= diffX;
13069                     break;
13070                 case "northeast":
13071                     w += diffX;
13072                     w = Math.min(Math.max(mw, w), mxw);
13073                     diffY = this.constrain(h, diffY, mh, mxh);
13074                     y += diffY;
13075                     h -= diffY;
13076                     break;
13077                 case "northwest":
13078                     diffX = this.constrain(w, diffX, mw, mxw);
13079                     diffY = this.constrain(h, diffY, mh, mxh);
13080                     y += diffY;
13081                     h -= diffY;
13082                     x += diffX;
13083                     w -= diffX;
13084                     break;
13085                case "southwest":
13086                     diffX = this.constrain(w, diffX, mw, mxw);
13087                     h += diffY;
13088                     h = Math.min(Math.max(mh, h), mxh);
13089                     x += diffX;
13090                     w -= diffX;
13091                     break;
13092             }
13093
13094             var sw = this.snap(w, wi, mw);
13095             var sh = this.snap(h, hi, mh);
13096             if(sw != w || sh != h){
13097                 switch(pos){
13098                     case "northeast":
13099                         y -= sh - h;
13100                     break;
13101                     case "north":
13102                         y -= sh - h;
13103                         break;
13104                     case "southwest":
13105                         x -= sw - w;
13106                     break;
13107                     case "west":
13108                         x -= sw - w;
13109                         break;
13110                     case "northwest":
13111                         x -= sw - w;
13112                         y -= sh - h;
13113                     break;
13114                 }
13115                 w = sw;
13116                 h = sh;
13117             }
13118
13119             if(this.preserveRatio){
13120                 switch(pos){
13121                     case "southeast":
13122                     case "east":
13123                         h = oh * (w/ow);
13124                         h = Math.min(Math.max(mh, h), mxh);
13125                         w = ow * (h/oh);
13126                        break;
13127                     case "south":
13128                         w = ow * (h/oh);
13129                         w = Math.min(Math.max(mw, w), mxw);
13130                         h = oh * (w/ow);
13131                         break;
13132                     case "northeast":
13133                         w = ow * (h/oh);
13134                         w = Math.min(Math.max(mw, w), mxw);
13135                         h = oh * (w/ow);
13136                     break;
13137                     case "north":
13138                         var tw = w;
13139                         w = ow * (h/oh);
13140                         w = Math.min(Math.max(mw, w), mxw);
13141                         h = oh * (w/ow);
13142                         x += (tw - w) / 2;
13143                         break;
13144                     case "southwest":
13145                         h = oh * (w/ow);
13146                         h = Math.min(Math.max(mh, h), mxh);
13147                         var tw = w;
13148                         w = ow * (h/oh);
13149                         x += tw - w;
13150                         break;
13151                     case "west":
13152                         var th = h;
13153                         h = oh * (w/ow);
13154                         h = Math.min(Math.max(mh, h), mxh);
13155                         y += (th - h) / 2;
13156                         var tw = w;
13157                         w = ow * (h/oh);
13158                         x += tw - w;
13159                        break;
13160                     case "northwest":
13161                         var tw = w;
13162                         var th = h;
13163                         h = oh * (w/ow);
13164                         h = Math.min(Math.max(mh, h), mxh);
13165                         w = ow * (h/oh);
13166                         y += th - h;
13167                         x += tw - w;
13168                        break;
13169
13170                 }
13171             }
13172             if (pos == 'hdrag') {
13173                 w = ow;
13174             }
13175             this.proxy.setBounds(x, y, w, h);
13176             if(this.dynamic){
13177                 this.resizeElement();
13178             }
13179             }catch(e){}
13180         }
13181         this.fireEvent("resizing", this, x, y, w, h, e);
13182     },
13183
13184     // private
13185     handleOver : function(){
13186         if(this.enabled){
13187             this.el.addClass("x-resizable-over");
13188         }
13189     },
13190
13191     // private
13192     handleOut : function(){
13193         if(!this.resizing){
13194             this.el.removeClass("x-resizable-over");
13195         }
13196     },
13197
13198     /**
13199      * Returns the element this component is bound to.
13200      * @return {Roo.Element}
13201      */
13202     getEl : function(){
13203         return this.el;
13204     },
13205
13206     /**
13207      * Returns the resizeChild element (or null).
13208      * @return {Roo.Element}
13209      */
13210     getResizeChild : function(){
13211         return this.resizeChild;
13212     },
13213     groupHandler : function()
13214     {
13215         
13216     },
13217     /**
13218      * Destroys this resizable. If the element was wrapped and
13219      * removeEl is not true then the element remains.
13220      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
13221      */
13222     destroy : function(removeEl){
13223         this.proxy.remove();
13224         if(this.overlay){
13225             this.overlay.removeAllListeners();
13226             this.overlay.remove();
13227         }
13228         var ps = Roo.Resizable.positions;
13229         for(var k in ps){
13230             if(typeof ps[k] != "function" && this[ps[k]]){
13231                 var h = this[ps[k]];
13232                 h.el.removeAllListeners();
13233                 h.el.remove();
13234             }
13235         }
13236         if(removeEl){
13237             this.el.update("");
13238             this.el.remove();
13239         }
13240     }
13241 });
13242
13243 // private
13244 // hash to map config positions to true positions
13245 Roo.Resizable.positions = {
13246     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
13247     hd: "hdrag"
13248 };
13249
13250 // private
13251 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
13252     if(!this.tpl){
13253         // only initialize the template if resizable is used
13254         var tpl = Roo.DomHelper.createTemplate(
13255             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
13256         );
13257         tpl.compile();
13258         Roo.Resizable.Handle.prototype.tpl = tpl;
13259     }
13260     this.position = pos;
13261     this.rz = rz;
13262     // show north drag fro topdra
13263     var handlepos = pos == 'hdrag' ? 'north' : pos;
13264     
13265     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
13266     if (pos == 'hdrag') {
13267         this.el.setStyle('cursor', 'pointer');
13268     }
13269     this.el.unselectable();
13270     if(transparent){
13271         this.el.setOpacity(0);
13272     }
13273     this.el.on("mousedown", this.onMouseDown, this);
13274     if(!disableTrackOver){
13275         this.el.on("mouseover", this.onMouseOver, this);
13276         this.el.on("mouseout", this.onMouseOut, this);
13277     }
13278 };
13279
13280 // private
13281 Roo.Resizable.Handle.prototype = {
13282     afterResize : function(rz){
13283         Roo.log('after?');
13284         // do nothing
13285     },
13286     // private
13287     onMouseDown : function(e){
13288         this.rz.onMouseDown(this, e);
13289     },
13290     // private
13291     onMouseOver : function(e){
13292         this.rz.handleOver(this, e);
13293     },
13294     // private
13295     onMouseOut : function(e){
13296         this.rz.handleOut(this, e);
13297     }
13298 };/*
13299  * Based on:
13300  * Ext JS Library 1.1.1
13301  * Copyright(c) 2006-2007, Ext JS, LLC.
13302  *
13303  * Originally Released Under LGPL - original licence link has changed is not relivant.
13304  *
13305  * Fork - LGPL
13306  * <script type="text/javascript">
13307  */
13308
13309 /**
13310  * @class Roo.Editor
13311  * @extends Roo.Component
13312  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
13313  * @constructor
13314  * Create a new Editor
13315  * @param {Roo.form.Field} field The Field object (or descendant)
13316  * @param {Object} config The config object
13317  */
13318 Roo.Editor = function(field, config){
13319     Roo.Editor.superclass.constructor.call(this, config);
13320     this.field = field;
13321     this.addEvents({
13322         /**
13323              * @event beforestartedit
13324              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
13325              * false from the handler of this event.
13326              * @param {Editor} this
13327              * @param {Roo.Element} boundEl The underlying element bound to this editor
13328              * @param {Mixed} value The field value being set
13329              */
13330         "beforestartedit" : true,
13331         /**
13332              * @event startedit
13333              * Fires when this editor is displayed
13334              * @param {Roo.Element} boundEl The underlying element bound to this editor
13335              * @param {Mixed} value The starting field value
13336              */
13337         "startedit" : true,
13338         /**
13339              * @event beforecomplete
13340              * Fires after a change has been made to the field, but before the change is reflected in the underlying
13341              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
13342              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
13343              * event will not fire since no edit actually occurred.
13344              * @param {Editor} this
13345              * @param {Mixed} value The current field value
13346              * @param {Mixed} startValue The original field value
13347              */
13348         "beforecomplete" : true,
13349         /**
13350              * @event complete
13351              * Fires after editing is complete and any changed value has been written to the underlying field.
13352              * @param {Editor} this
13353              * @param {Mixed} value The current field value
13354              * @param {Mixed} startValue The original field value
13355              */
13356         "complete" : true,
13357         /**
13358          * @event specialkey
13359          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
13360          * {@link Roo.EventObject#getKey} to determine which key was pressed.
13361          * @param {Roo.form.Field} this
13362          * @param {Roo.EventObject} e The event object
13363          */
13364         "specialkey" : true
13365     });
13366 };
13367
13368 Roo.extend(Roo.Editor, Roo.Component, {
13369     /**
13370      * @cfg {Boolean/String} autosize
13371      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
13372      * or "height" to adopt the height only (defaults to false)
13373      */
13374     /**
13375      * @cfg {Boolean} revertInvalid
13376      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
13377      * validation fails (defaults to true)
13378      */
13379     /**
13380      * @cfg {Boolean} ignoreNoChange
13381      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
13382      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
13383      * will never be ignored.
13384      */
13385     /**
13386      * @cfg {Boolean} hideEl
13387      * False to keep the bound element visible while the editor is displayed (defaults to true)
13388      */
13389     /**
13390      * @cfg {Mixed} value
13391      * The data value of the underlying field (defaults to "")
13392      */
13393     value : "",
13394     /**
13395      * @cfg {String} alignment
13396      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
13397      */
13398     alignment: "c-c?",
13399     /**
13400      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
13401      * for bottom-right shadow (defaults to "frame")
13402      */
13403     shadow : "frame",
13404     /**
13405      * @cfg {Boolean} constrain True to constrain the editor to the viewport
13406      */
13407     constrain : false,
13408     /**
13409      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
13410      */
13411     completeOnEnter : false,
13412     /**
13413      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
13414      */
13415     cancelOnEsc : false,
13416     /**
13417      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
13418      */
13419     updateEl : false,
13420
13421     // private
13422     onRender : function(ct, position){
13423         this.el = new Roo.Layer({
13424             shadow: this.shadow,
13425             cls: "x-editor",
13426             parentEl : ct,
13427             shim : this.shim,
13428             shadowOffset:4,
13429             id: this.id,
13430             constrain: this.constrain
13431         });
13432         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
13433         if(this.field.msgTarget != 'title'){
13434             this.field.msgTarget = 'qtip';
13435         }
13436         this.field.render(this.el);
13437         if(Roo.isGecko){
13438             this.field.el.dom.setAttribute('autocomplete', 'off');
13439         }
13440         this.field.on("specialkey", this.onSpecialKey, this);
13441         if(this.swallowKeys){
13442             this.field.el.swallowEvent(['keydown','keypress']);
13443         }
13444         this.field.show();
13445         this.field.on("blur", this.onBlur, this);
13446         if(this.field.grow){
13447             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
13448         }
13449     },
13450
13451     onSpecialKey : function(field, e)
13452     {
13453         //Roo.log('editor onSpecialKey');
13454         if(this.completeOnEnter && e.getKey() == e.ENTER){
13455             e.stopEvent();
13456             this.completeEdit();
13457             return;
13458         }
13459         // do not fire special key otherwise it might hide close the editor...
13460         if(e.getKey() == e.ENTER){    
13461             return;
13462         }
13463         if(this.cancelOnEsc && e.getKey() == e.ESC){
13464             this.cancelEdit();
13465             return;
13466         } 
13467         this.fireEvent('specialkey', field, e);
13468     
13469     },
13470
13471     /**
13472      * Starts the editing process and shows the editor.
13473      * @param {String/HTMLElement/Element} el The element to edit
13474      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
13475       * to the innerHTML of el.
13476      */
13477     startEdit : function(el, value){
13478         if(this.editing){
13479             this.completeEdit();
13480         }
13481         this.boundEl = Roo.get(el);
13482         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
13483         if(!this.rendered){
13484             this.render(this.parentEl || document.body);
13485         }
13486         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
13487             return;
13488         }
13489         this.startValue = v;
13490         this.field.setValue(v);
13491         if(this.autoSize){
13492             var sz = this.boundEl.getSize();
13493             switch(this.autoSize){
13494                 case "width":
13495                 this.setSize(sz.width,  "");
13496                 break;
13497                 case "height":
13498                 this.setSize("",  sz.height);
13499                 break;
13500                 default:
13501                 this.setSize(sz.width,  sz.height);
13502             }
13503         }
13504         this.el.alignTo(this.boundEl, this.alignment);
13505         this.editing = true;
13506         if(Roo.QuickTips){
13507             Roo.QuickTips.disable();
13508         }
13509         this.show();
13510     },
13511
13512     /**
13513      * Sets the height and width of this editor.
13514      * @param {Number} width The new width
13515      * @param {Number} height The new height
13516      */
13517     setSize : function(w, h){
13518         this.field.setSize(w, h);
13519         if(this.el){
13520             this.el.sync();
13521         }
13522     },
13523
13524     /**
13525      * Realigns the editor to the bound field based on the current alignment config value.
13526      */
13527     realign : function(){
13528         this.el.alignTo(this.boundEl, this.alignment);
13529     },
13530
13531     /**
13532      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
13533      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
13534      */
13535     completeEdit : function(remainVisible){
13536         if(!this.editing){
13537             return;
13538         }
13539         var v = this.getValue();
13540         if(this.revertInvalid !== false && !this.field.isValid()){
13541             v = this.startValue;
13542             this.cancelEdit(true);
13543         }
13544         if(String(v) === String(this.startValue) && this.ignoreNoChange){
13545             this.editing = false;
13546             this.hide();
13547             return;
13548         }
13549         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
13550             this.editing = false;
13551             if(this.updateEl && this.boundEl){
13552                 this.boundEl.update(v);
13553             }
13554             if(remainVisible !== true){
13555                 this.hide();
13556             }
13557             this.fireEvent("complete", this, v, this.startValue);
13558         }
13559     },
13560
13561     // private
13562     onShow : function(){
13563         this.el.show();
13564         if(this.hideEl !== false){
13565             this.boundEl.hide();
13566         }
13567         this.field.show();
13568         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
13569             this.fixIEFocus = true;
13570             this.deferredFocus.defer(50, this);
13571         }else{
13572             this.field.focus();
13573         }
13574         this.fireEvent("startedit", this.boundEl, this.startValue);
13575     },
13576
13577     deferredFocus : function(){
13578         if(this.editing){
13579             this.field.focus();
13580         }
13581     },
13582
13583     /**
13584      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
13585      * reverted to the original starting value.
13586      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
13587      * cancel (defaults to false)
13588      */
13589     cancelEdit : function(remainVisible){
13590         if(this.editing){
13591             this.setValue(this.startValue);
13592             if(remainVisible !== true){
13593                 this.hide();
13594             }
13595         }
13596     },
13597
13598     // private
13599     onBlur : function(){
13600         if(this.allowBlur !== true && this.editing){
13601             this.completeEdit();
13602         }
13603     },
13604
13605     // private
13606     onHide : function(){
13607         if(this.editing){
13608             this.completeEdit();
13609             return;
13610         }
13611         this.field.blur();
13612         if(this.field.collapse){
13613             this.field.collapse();
13614         }
13615         this.el.hide();
13616         if(this.hideEl !== false){
13617             this.boundEl.show();
13618         }
13619         if(Roo.QuickTips){
13620             Roo.QuickTips.enable();
13621         }
13622     },
13623
13624     /**
13625      * Sets the data value of the editor
13626      * @param {Mixed} value Any valid value supported by the underlying field
13627      */
13628     setValue : function(v){
13629         this.field.setValue(v);
13630     },
13631
13632     /**
13633      * Gets the data value of the editor
13634      * @return {Mixed} The data value
13635      */
13636     getValue : function(){
13637         return this.field.getValue();
13638     }
13639 });/*
13640  * Based on:
13641  * Ext JS Library 1.1.1
13642  * Copyright(c) 2006-2007, Ext JS, LLC.
13643  *
13644  * Originally Released Under LGPL - original licence link has changed is not relivant.
13645  *
13646  * Fork - LGPL
13647  * <script type="text/javascript">
13648  */
13649  
13650 /**
13651  * @class Roo.BasicDialog
13652  * @extends Roo.util.Observable
13653  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
13654  * <pre><code>
13655 var dlg = new Roo.BasicDialog("my-dlg", {
13656     height: 200,
13657     width: 300,
13658     minHeight: 100,
13659     minWidth: 150,
13660     modal: true,
13661     proxyDrag: true,
13662     shadow: true
13663 });
13664 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
13665 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
13666 dlg.addButton('Cancel', dlg.hide, dlg);
13667 dlg.show();
13668 </code></pre>
13669   <b>A Dialog should always be a direct child of the body element.</b>
13670  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
13671  * @cfg {String} title Default text to display in the title bar (defaults to null)
13672  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13673  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
13674  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
13675  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
13676  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
13677  * (defaults to null with no animation)
13678  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
13679  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
13680  * property for valid values (defaults to 'all')
13681  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
13682  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
13683  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
13684  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
13685  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
13686  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
13687  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
13688  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
13689  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
13690  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
13691  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
13692  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
13693  * draggable = true (defaults to false)
13694  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
13695  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13696  * shadow (defaults to false)
13697  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
13698  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
13699  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
13700  * @cfg {Array} buttons Array of buttons
13701  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
13702  * @constructor
13703  * Create a new BasicDialog.
13704  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
13705  * @param {Object} config Configuration options
13706  */
13707 Roo.BasicDialog = function(el, config){
13708     this.el = Roo.get(el);
13709     var dh = Roo.DomHelper;
13710     if(!this.el && config && config.autoCreate){
13711         if(typeof config.autoCreate == "object"){
13712             if(!config.autoCreate.id){
13713                 config.autoCreate.id = el;
13714             }
13715             this.el = dh.append(document.body,
13716                         config.autoCreate, true);
13717         }else{
13718             this.el = dh.append(document.body,
13719                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
13720         }
13721     }
13722     el = this.el;
13723     el.setDisplayed(true);
13724     el.hide = this.hideAction;
13725     this.id = el.id;
13726     el.addClass("x-dlg");
13727
13728     Roo.apply(this, config);
13729
13730     this.proxy = el.createProxy("x-dlg-proxy");
13731     this.proxy.hide = this.hideAction;
13732     this.proxy.setOpacity(.5);
13733     this.proxy.hide();
13734
13735     if(config.width){
13736         el.setWidth(config.width);
13737     }
13738     if(config.height){
13739         el.setHeight(config.height);
13740     }
13741     this.size = el.getSize();
13742     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
13743         this.xy = [config.x,config.y];
13744     }else{
13745         this.xy = el.getCenterXY(true);
13746     }
13747     /** The header element @type Roo.Element */
13748     this.header = el.child("> .x-dlg-hd");
13749     /** The body element @type Roo.Element */
13750     this.body = el.child("> .x-dlg-bd");
13751     /** The footer element @type Roo.Element */
13752     this.footer = el.child("> .x-dlg-ft");
13753
13754     if(!this.header){
13755         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
13756     }
13757     if(!this.body){
13758         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
13759     }
13760
13761     this.header.unselectable();
13762     if(this.title){
13763         this.header.update(this.title);
13764     }
13765     // this element allows the dialog to be focused for keyboard event
13766     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
13767     this.focusEl.swallowEvent("click", true);
13768
13769     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
13770
13771     // wrap the body and footer for special rendering
13772     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
13773     if(this.footer){
13774         this.bwrap.dom.appendChild(this.footer.dom);
13775     }
13776
13777     this.bg = this.el.createChild({
13778         tag: "div", cls:"x-dlg-bg",
13779         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
13780     });
13781     this.centerBg = this.bg.child("div.x-dlg-bg-center");
13782
13783
13784     if(this.autoScroll !== false && !this.autoTabs){
13785         this.body.setStyle("overflow", "auto");
13786     }
13787
13788     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
13789
13790     if(this.closable !== false){
13791         this.el.addClass("x-dlg-closable");
13792         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
13793         this.close.on("click", this.closeClick, this);
13794         this.close.addClassOnOver("x-dlg-close-over");
13795     }
13796     if(this.collapsible !== false){
13797         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
13798         this.collapseBtn.on("click", this.collapseClick, this);
13799         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
13800         this.header.on("dblclick", this.collapseClick, this);
13801     }
13802     if(this.resizable !== false){
13803         this.el.addClass("x-dlg-resizable");
13804         this.resizer = new Roo.Resizable(el, {
13805             minWidth: this.minWidth || 80,
13806             minHeight:this.minHeight || 80,
13807             handles: this.resizeHandles || "all",
13808             pinned: true
13809         });
13810         this.resizer.on("beforeresize", this.beforeResize, this);
13811         this.resizer.on("resize", this.onResize, this);
13812     }
13813     if(this.draggable !== false){
13814         el.addClass("x-dlg-draggable");
13815         if (!this.proxyDrag) {
13816             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
13817         }
13818         else {
13819             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
13820         }
13821         dd.setHandleElId(this.header.id);
13822         dd.endDrag = this.endMove.createDelegate(this);
13823         dd.startDrag = this.startMove.createDelegate(this);
13824         dd.onDrag = this.onDrag.createDelegate(this);
13825         dd.scroll = false;
13826         this.dd = dd;
13827     }
13828     if(this.modal){
13829         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
13830         this.mask.enableDisplayMode("block");
13831         this.mask.hide();
13832         this.el.addClass("x-dlg-modal");
13833     }
13834     if(this.shadow){
13835         this.shadow = new Roo.Shadow({
13836             mode : typeof this.shadow == "string" ? this.shadow : "sides",
13837             offset : this.shadowOffset
13838         });
13839     }else{
13840         this.shadowOffset = 0;
13841     }
13842     if(Roo.useShims && this.shim !== false){
13843         this.shim = this.el.createShim();
13844         this.shim.hide = this.hideAction;
13845         this.shim.hide();
13846     }else{
13847         this.shim = false;
13848     }
13849     if(this.autoTabs){
13850         this.initTabs();
13851     }
13852     if (this.buttons) { 
13853         var bts= this.buttons;
13854         this.buttons = [];
13855         Roo.each(bts, function(b) {
13856             this.addButton(b);
13857         }, this);
13858     }
13859     
13860     
13861     this.addEvents({
13862         /**
13863          * @event keydown
13864          * Fires when a key is pressed
13865          * @param {Roo.BasicDialog} this
13866          * @param {Roo.EventObject} e
13867          */
13868         "keydown" : true,
13869         /**
13870          * @event move
13871          * Fires when this dialog is moved by the user.
13872          * @param {Roo.BasicDialog} this
13873          * @param {Number} x The new page X
13874          * @param {Number} y The new page Y
13875          */
13876         "move" : true,
13877         /**
13878          * @event resize
13879          * Fires when this dialog is resized by the user.
13880          * @param {Roo.BasicDialog} this
13881          * @param {Number} width The new width
13882          * @param {Number} height The new height
13883          */
13884         "resize" : true,
13885         /**
13886          * @event beforehide
13887          * Fires before this dialog is hidden.
13888          * @param {Roo.BasicDialog} this
13889          */
13890         "beforehide" : true,
13891         /**
13892          * @event hide
13893          * Fires when this dialog is hidden.
13894          * @param {Roo.BasicDialog} this
13895          */
13896         "hide" : true,
13897         /**
13898          * @event beforeshow
13899          * Fires before this dialog is shown.
13900          * @param {Roo.BasicDialog} this
13901          */
13902         "beforeshow" : true,
13903         /**
13904          * @event show
13905          * Fires when this dialog is shown.
13906          * @param {Roo.BasicDialog} this
13907          */
13908         "show" : true
13909     });
13910     el.on("keydown", this.onKeyDown, this);
13911     el.on("mousedown", this.toFront, this);
13912     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
13913     this.el.hide();
13914     Roo.DialogManager.register(this);
13915     Roo.BasicDialog.superclass.constructor.call(this);
13916 };
13917
13918 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
13919     shadowOffset: Roo.isIE ? 6 : 5,
13920     minHeight: 80,
13921     minWidth: 200,
13922     minButtonWidth: 75,
13923     defaultButton: null,
13924     buttonAlign: "right",
13925     tabTag: 'div',
13926     firstShow: true,
13927
13928     /**
13929      * Sets the dialog title text
13930      * @param {String} text The title text to display
13931      * @return {Roo.BasicDialog} this
13932      */
13933     setTitle : function(text){
13934         this.header.update(text);
13935         return this;
13936     },
13937
13938     // private
13939     closeClick : function(){
13940         this.hide();
13941     },
13942
13943     // private
13944     collapseClick : function(){
13945         this[this.collapsed ? "expand" : "collapse"]();
13946     },
13947
13948     /**
13949      * Collapses the dialog to its minimized state (only the title bar is visible).
13950      * Equivalent to the user clicking the collapse dialog button.
13951      */
13952     collapse : function(){
13953         if(!this.collapsed){
13954             this.collapsed = true;
13955             this.el.addClass("x-dlg-collapsed");
13956             this.restoreHeight = this.el.getHeight();
13957             this.resizeTo(this.el.getWidth(), this.header.getHeight());
13958         }
13959     },
13960
13961     /**
13962      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
13963      * clicking the expand dialog button.
13964      */
13965     expand : function(){
13966         if(this.collapsed){
13967             this.collapsed = false;
13968             this.el.removeClass("x-dlg-collapsed");
13969             this.resizeTo(this.el.getWidth(), this.restoreHeight);
13970         }
13971     },
13972
13973     /**
13974      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
13975      * @return {Roo.TabPanel} The tabs component
13976      */
13977     initTabs : function(){
13978         var tabs = this.getTabs();
13979         while(tabs.getTab(0)){
13980             tabs.removeTab(0);
13981         }
13982         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
13983             var dom = el.dom;
13984             tabs.addTab(Roo.id(dom), dom.title);
13985             dom.title = "";
13986         });
13987         tabs.activate(0);
13988         return tabs;
13989     },
13990
13991     // private
13992     beforeResize : function(){
13993         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
13994     },
13995
13996     // private
13997     onResize : function(){
13998         this.refreshSize();
13999         this.syncBodyHeight();
14000         this.adjustAssets();
14001         this.focus();
14002         this.fireEvent("resize", this, this.size.width, this.size.height);
14003     },
14004
14005     // private
14006     onKeyDown : function(e){
14007         if(this.isVisible()){
14008             this.fireEvent("keydown", this, e);
14009         }
14010     },
14011
14012     /**
14013      * Resizes the dialog.
14014      * @param {Number} width
14015      * @param {Number} height
14016      * @return {Roo.BasicDialog} this
14017      */
14018     resizeTo : function(width, height){
14019         this.el.setSize(width, height);
14020         this.size = {width: width, height: height};
14021         this.syncBodyHeight();
14022         if(this.fixedcenter){
14023             this.center();
14024         }
14025         if(this.isVisible()){
14026             this.constrainXY();
14027             this.adjustAssets();
14028         }
14029         this.fireEvent("resize", this, width, height);
14030         return this;
14031     },
14032
14033
14034     /**
14035      * Resizes the dialog to fit the specified content size.
14036      * @param {Number} width
14037      * @param {Number} height
14038      * @return {Roo.BasicDialog} this
14039      */
14040     setContentSize : function(w, h){
14041         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
14042         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
14043         //if(!this.el.isBorderBox()){
14044             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
14045             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
14046         //}
14047         if(this.tabs){
14048             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
14049             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
14050         }
14051         this.resizeTo(w, h);
14052         return this;
14053     },
14054
14055     /**
14056      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
14057      * executed in response to a particular key being pressed while the dialog is active.
14058      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
14059      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
14060      * @param {Function} fn The function to call
14061      * @param {Object} scope (optional) The scope of the function
14062      * @return {Roo.BasicDialog} this
14063      */
14064     addKeyListener : function(key, fn, scope){
14065         var keyCode, shift, ctrl, alt;
14066         if(typeof key == "object" && !(key instanceof Array)){
14067             keyCode = key["key"];
14068             shift = key["shift"];
14069             ctrl = key["ctrl"];
14070             alt = key["alt"];
14071         }else{
14072             keyCode = key;
14073         }
14074         var handler = function(dlg, e){
14075             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
14076                 var k = e.getKey();
14077                 if(keyCode instanceof Array){
14078                     for(var i = 0, len = keyCode.length; i < len; i++){
14079                         if(keyCode[i] == k){
14080                           fn.call(scope || window, dlg, k, e);
14081                           return;
14082                         }
14083                     }
14084                 }else{
14085                     if(k == keyCode){
14086                         fn.call(scope || window, dlg, k, e);
14087                     }
14088                 }
14089             }
14090         };
14091         this.on("keydown", handler);
14092         return this;
14093     },
14094
14095     /**
14096      * Returns the TabPanel component (creates it if it doesn't exist).
14097      * Note: If you wish to simply check for the existence of tabs without creating them,
14098      * check for a null 'tabs' property.
14099      * @return {Roo.TabPanel} The tabs component
14100      */
14101     getTabs : function(){
14102         if(!this.tabs){
14103             this.el.addClass("x-dlg-auto-tabs");
14104             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
14105             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
14106         }
14107         return this.tabs;
14108     },
14109
14110     /**
14111      * Adds a button to the footer section of the dialog.
14112      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
14113      * object or a valid Roo.DomHelper element config
14114      * @param {Function} handler The function called when the button is clicked
14115      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
14116      * @return {Roo.Button} The new button
14117      */
14118     addButton : function(config, handler, scope){
14119         var dh = Roo.DomHelper;
14120         if(!this.footer){
14121             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
14122         }
14123         if(!this.btnContainer){
14124             var tb = this.footer.createChild({
14125
14126                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
14127                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
14128             }, null, true);
14129             this.btnContainer = tb.firstChild.firstChild.firstChild;
14130         }
14131         var bconfig = {
14132             handler: handler,
14133             scope: scope,
14134             minWidth: this.minButtonWidth,
14135             hideParent:true
14136         };
14137         if(typeof config == "string"){
14138             bconfig.text = config;
14139         }else{
14140             if(config.tag){
14141                 bconfig.dhconfig = config;
14142             }else{
14143                 Roo.apply(bconfig, config);
14144             }
14145         }
14146         var fc = false;
14147         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
14148             bconfig.position = Math.max(0, bconfig.position);
14149             fc = this.btnContainer.childNodes[bconfig.position];
14150         }
14151          
14152         var btn = new Roo.Button(
14153             fc ? 
14154                 this.btnContainer.insertBefore(document.createElement("td"),fc)
14155                 : this.btnContainer.appendChild(document.createElement("td")),
14156             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
14157             bconfig
14158         );
14159         this.syncBodyHeight();
14160         if(!this.buttons){
14161             /**
14162              * Array of all the buttons that have been added to this dialog via addButton
14163              * @type Array
14164              */
14165             this.buttons = [];
14166         }
14167         this.buttons.push(btn);
14168         return btn;
14169     },
14170
14171     /**
14172      * Sets the default button to be focused when the dialog is displayed.
14173      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
14174      * @return {Roo.BasicDialog} this
14175      */
14176     setDefaultButton : function(btn){
14177         this.defaultButton = btn;
14178         return this;
14179     },
14180
14181     // private
14182     getHeaderFooterHeight : function(safe){
14183         var height = 0;
14184         if(this.header){
14185            height += this.header.getHeight();
14186         }
14187         if(this.footer){
14188            var fm = this.footer.getMargins();
14189             height += (this.footer.getHeight()+fm.top+fm.bottom);
14190         }
14191         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
14192         height += this.centerBg.getPadding("tb");
14193         return height;
14194     },
14195
14196     // private
14197     syncBodyHeight : function()
14198     {
14199         var bd = this.body, // the text
14200             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
14201             bw = this.bwrap;
14202         var height = this.size.height - this.getHeaderFooterHeight(false);
14203         bd.setHeight(height-bd.getMargins("tb"));
14204         var hh = this.header.getHeight();
14205         var h = this.size.height-hh;
14206         cb.setHeight(h);
14207         
14208         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
14209         bw.setHeight(h-cb.getPadding("tb"));
14210         
14211         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
14212         bd.setWidth(bw.getWidth(true));
14213         if(this.tabs){
14214             this.tabs.syncHeight();
14215             if(Roo.isIE){
14216                 this.tabs.el.repaint();
14217             }
14218         }
14219     },
14220
14221     /**
14222      * Restores the previous state of the dialog if Roo.state is configured.
14223      * @return {Roo.BasicDialog} this
14224      */
14225     restoreState : function(){
14226         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
14227         if(box && box.width){
14228             this.xy = [box.x, box.y];
14229             this.resizeTo(box.width, box.height);
14230         }
14231         return this;
14232     },
14233
14234     // private
14235     beforeShow : function(){
14236         this.expand();
14237         if(this.fixedcenter){
14238             this.xy = this.el.getCenterXY(true);
14239         }
14240         if(this.modal){
14241             Roo.get(document.body).addClass("x-body-masked");
14242             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14243             this.mask.show();
14244         }
14245         this.constrainXY();
14246     },
14247
14248     // private
14249     animShow : function(){
14250         var b = Roo.get(this.animateTarget).getBox();
14251         this.proxy.setSize(b.width, b.height);
14252         this.proxy.setLocation(b.x, b.y);
14253         this.proxy.show();
14254         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
14255                     true, .35, this.showEl.createDelegate(this));
14256     },
14257
14258     /**
14259      * Shows the dialog.
14260      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
14261      * @return {Roo.BasicDialog} this
14262      */
14263     show : function(animateTarget){
14264         if (this.fireEvent("beforeshow", this) === false){
14265             return;
14266         }
14267         if(this.syncHeightBeforeShow){
14268             this.syncBodyHeight();
14269         }else if(this.firstShow){
14270             this.firstShow = false;
14271             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
14272         }
14273         this.animateTarget = animateTarget || this.animateTarget;
14274         if(!this.el.isVisible()){
14275             this.beforeShow();
14276             if(this.animateTarget && Roo.get(this.animateTarget)){
14277                 this.animShow();
14278             }else{
14279                 this.showEl();
14280             }
14281         }
14282         return this;
14283     },
14284
14285     // private
14286     showEl : function(){
14287         this.proxy.hide();
14288         this.el.setXY(this.xy);
14289         this.el.show();
14290         this.adjustAssets(true);
14291         this.toFront();
14292         this.focus();
14293         // IE peekaboo bug - fix found by Dave Fenwick
14294         if(Roo.isIE){
14295             this.el.repaint();
14296         }
14297         this.fireEvent("show", this);
14298     },
14299
14300     /**
14301      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
14302      * dialog itself will receive focus.
14303      */
14304     focus : function(){
14305         if(this.defaultButton){
14306             this.defaultButton.focus();
14307         }else{
14308             this.focusEl.focus();
14309         }
14310     },
14311
14312     // private
14313     constrainXY : function(){
14314         if(this.constraintoviewport !== false){
14315             if(!this.viewSize){
14316                 if(this.container){
14317                     var s = this.container.getSize();
14318                     this.viewSize = [s.width, s.height];
14319                 }else{
14320                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
14321                 }
14322             }
14323             var s = Roo.get(this.container||document).getScroll();
14324
14325             var x = this.xy[0], y = this.xy[1];
14326             var w = this.size.width, h = this.size.height;
14327             var vw = this.viewSize[0], vh = this.viewSize[1];
14328             // only move it if it needs it
14329             var moved = false;
14330             // first validate right/bottom
14331             if(x + w > vw+s.left){
14332                 x = vw - w;
14333                 moved = true;
14334             }
14335             if(y + h > vh+s.top){
14336                 y = vh - h;
14337                 moved = true;
14338             }
14339             // then make sure top/left isn't negative
14340             if(x < s.left){
14341                 x = s.left;
14342                 moved = true;
14343             }
14344             if(y < s.top){
14345                 y = s.top;
14346                 moved = true;
14347             }
14348             if(moved){
14349                 // cache xy
14350                 this.xy = [x, y];
14351                 if(this.isVisible()){
14352                     this.el.setLocation(x, y);
14353                     this.adjustAssets();
14354                 }
14355             }
14356         }
14357     },
14358
14359     // private
14360     onDrag : function(){
14361         if(!this.proxyDrag){
14362             this.xy = this.el.getXY();
14363             this.adjustAssets();
14364         }
14365     },
14366
14367     // private
14368     adjustAssets : function(doShow){
14369         var x = this.xy[0], y = this.xy[1];
14370         var w = this.size.width, h = this.size.height;
14371         if(doShow === true){
14372             if(this.shadow){
14373                 this.shadow.show(this.el);
14374             }
14375             if(this.shim){
14376                 this.shim.show();
14377             }
14378         }
14379         if(this.shadow && this.shadow.isVisible()){
14380             this.shadow.show(this.el);
14381         }
14382         if(this.shim && this.shim.isVisible()){
14383             this.shim.setBounds(x, y, w, h);
14384         }
14385     },
14386
14387     // private
14388     adjustViewport : function(w, h){
14389         if(!w || !h){
14390             w = Roo.lib.Dom.getViewWidth();
14391             h = Roo.lib.Dom.getViewHeight();
14392         }
14393         // cache the size
14394         this.viewSize = [w, h];
14395         if(this.modal && this.mask.isVisible()){
14396             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
14397             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
14398         }
14399         if(this.isVisible()){
14400             this.constrainXY();
14401         }
14402     },
14403
14404     /**
14405      * Destroys this dialog and all its supporting elements (including any tabs, shim,
14406      * shadow, proxy, mask, etc.)  Also removes all event listeners.
14407      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
14408      */
14409     destroy : function(removeEl){
14410         if(this.isVisible()){
14411             this.animateTarget = null;
14412             this.hide();
14413         }
14414         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
14415         if(this.tabs){
14416             this.tabs.destroy(removeEl);
14417         }
14418         Roo.destroy(
14419              this.shim,
14420              this.proxy,
14421              this.resizer,
14422              this.close,
14423              this.mask
14424         );
14425         if(this.dd){
14426             this.dd.unreg();
14427         }
14428         if(this.buttons){
14429            for(var i = 0, len = this.buttons.length; i < len; i++){
14430                this.buttons[i].destroy();
14431            }
14432         }
14433         this.el.removeAllListeners();
14434         if(removeEl === true){
14435             this.el.update("");
14436             this.el.remove();
14437         }
14438         Roo.DialogManager.unregister(this);
14439     },
14440
14441     // private
14442     startMove : function(){
14443         if(this.proxyDrag){
14444             this.proxy.show();
14445         }
14446         if(this.constraintoviewport !== false){
14447             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
14448         }
14449     },
14450
14451     // private
14452     endMove : function(){
14453         if(!this.proxyDrag){
14454             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
14455         }else{
14456             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
14457             this.proxy.hide();
14458         }
14459         this.refreshSize();
14460         this.adjustAssets();
14461         this.focus();
14462         this.fireEvent("move", this, this.xy[0], this.xy[1]);
14463     },
14464
14465     /**
14466      * Brings this dialog to the front of any other visible dialogs
14467      * @return {Roo.BasicDialog} this
14468      */
14469     toFront : function(){
14470         Roo.DialogManager.bringToFront(this);
14471         return this;
14472     },
14473
14474     /**
14475      * Sends this dialog to the back (under) of any other visible dialogs
14476      * @return {Roo.BasicDialog} this
14477      */
14478     toBack : function(){
14479         Roo.DialogManager.sendToBack(this);
14480         return this;
14481     },
14482
14483     /**
14484      * Centers this dialog in the viewport
14485      * @return {Roo.BasicDialog} this
14486      */
14487     center : function(){
14488         var xy = this.el.getCenterXY(true);
14489         this.moveTo(xy[0], xy[1]);
14490         return this;
14491     },
14492
14493     /**
14494      * Moves the dialog's top-left corner to the specified point
14495      * @param {Number} x
14496      * @param {Number} y
14497      * @return {Roo.BasicDialog} this
14498      */
14499     moveTo : function(x, y){
14500         this.xy = [x,y];
14501         if(this.isVisible()){
14502             this.el.setXY(this.xy);
14503             this.adjustAssets();
14504         }
14505         return this;
14506     },
14507
14508     /**
14509      * Aligns the dialog to the specified element
14510      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14511      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
14512      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14513      * @return {Roo.BasicDialog} this
14514      */
14515     alignTo : function(element, position, offsets){
14516         this.xy = this.el.getAlignToXY(element, position, offsets);
14517         if(this.isVisible()){
14518             this.el.setXY(this.xy);
14519             this.adjustAssets();
14520         }
14521         return this;
14522     },
14523
14524     /**
14525      * Anchors an element to another element and realigns it when the window is resized.
14526      * @param {String/HTMLElement/Roo.Element} element The element to align to.
14527      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
14528      * @param {Array} offsets (optional) Offset the positioning by [x, y]
14529      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
14530      * is a number, it is used as the buffer delay (defaults to 50ms).
14531      * @return {Roo.BasicDialog} this
14532      */
14533     anchorTo : function(el, alignment, offsets, monitorScroll){
14534         var action = function(){
14535             this.alignTo(el, alignment, offsets);
14536         };
14537         Roo.EventManager.onWindowResize(action, this);
14538         var tm = typeof monitorScroll;
14539         if(tm != 'undefined'){
14540             Roo.EventManager.on(window, 'scroll', action, this,
14541                 {buffer: tm == 'number' ? monitorScroll : 50});
14542         }
14543         action.call(this);
14544         return this;
14545     },
14546
14547     /**
14548      * Returns true if the dialog is visible
14549      * @return {Boolean}
14550      */
14551     isVisible : function(){
14552         return this.el.isVisible();
14553     },
14554
14555     // private
14556     animHide : function(callback){
14557         var b = Roo.get(this.animateTarget).getBox();
14558         this.proxy.show();
14559         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
14560         this.el.hide();
14561         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
14562                     this.hideEl.createDelegate(this, [callback]));
14563     },
14564
14565     /**
14566      * Hides the dialog.
14567      * @param {Function} callback (optional) Function to call when the dialog is hidden
14568      * @return {Roo.BasicDialog} this
14569      */
14570     hide : function(callback){
14571         if (this.fireEvent("beforehide", this) === false){
14572             return;
14573         }
14574         if(this.shadow){
14575             this.shadow.hide();
14576         }
14577         if(this.shim) {
14578           this.shim.hide();
14579         }
14580         // sometimes animateTarget seems to get set.. causing problems...
14581         // this just double checks..
14582         if(this.animateTarget && Roo.get(this.animateTarget)) {
14583            this.animHide(callback);
14584         }else{
14585             this.el.hide();
14586             this.hideEl(callback);
14587         }
14588         return this;
14589     },
14590
14591     // private
14592     hideEl : function(callback){
14593         this.proxy.hide();
14594         if(this.modal){
14595             this.mask.hide();
14596             Roo.get(document.body).removeClass("x-body-masked");
14597         }
14598         this.fireEvent("hide", this);
14599         if(typeof callback == "function"){
14600             callback();
14601         }
14602     },
14603
14604     // private
14605     hideAction : function(){
14606         this.setLeft("-10000px");
14607         this.setTop("-10000px");
14608         this.setStyle("visibility", "hidden");
14609     },
14610
14611     // private
14612     refreshSize : function(){
14613         this.size = this.el.getSize();
14614         this.xy = this.el.getXY();
14615         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
14616     },
14617
14618     // private
14619     // z-index is managed by the DialogManager and may be overwritten at any time
14620     setZIndex : function(index){
14621         if(this.modal){
14622             this.mask.setStyle("z-index", index);
14623         }
14624         if(this.shim){
14625             this.shim.setStyle("z-index", ++index);
14626         }
14627         if(this.shadow){
14628             this.shadow.setZIndex(++index);
14629         }
14630         this.el.setStyle("z-index", ++index);
14631         if(this.proxy){
14632             this.proxy.setStyle("z-index", ++index);
14633         }
14634         if(this.resizer){
14635             this.resizer.proxy.setStyle("z-index", ++index);
14636         }
14637
14638         this.lastZIndex = index;
14639     },
14640
14641     /**
14642      * Returns the element for this dialog
14643      * @return {Roo.Element} The underlying dialog Element
14644      */
14645     getEl : function(){
14646         return this.el;
14647     }
14648 });
14649
14650 /**
14651  * @class Roo.DialogManager
14652  * Provides global access to BasicDialogs that have been created and
14653  * support for z-indexing (layering) multiple open dialogs.
14654  */
14655 Roo.DialogManager = function(){
14656     var list = {};
14657     var accessList = [];
14658     var front = null;
14659
14660     // private
14661     var sortDialogs = function(d1, d2){
14662         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
14663     };
14664
14665     // private
14666     var orderDialogs = function(){
14667         accessList.sort(sortDialogs);
14668         var seed = Roo.DialogManager.zseed;
14669         for(var i = 0, len = accessList.length; i < len; i++){
14670             var dlg = accessList[i];
14671             if(dlg){
14672                 dlg.setZIndex(seed + (i*10));
14673             }
14674         }
14675     };
14676
14677     return {
14678         /**
14679          * The starting z-index for BasicDialogs (defaults to 9000)
14680          * @type Number The z-index value
14681          */
14682         zseed : 9000,
14683
14684         // private
14685         register : function(dlg){
14686             list[dlg.id] = dlg;
14687             accessList.push(dlg);
14688         },
14689
14690         // private
14691         unregister : function(dlg){
14692             delete list[dlg.id];
14693             var i=0;
14694             var len=0;
14695             if(!accessList.indexOf){
14696                 for(  i = 0, len = accessList.length; i < len; i++){
14697                     if(accessList[i] == dlg){
14698                         accessList.splice(i, 1);
14699                         return;
14700                     }
14701                 }
14702             }else{
14703                  i = accessList.indexOf(dlg);
14704                 if(i != -1){
14705                     accessList.splice(i, 1);
14706                 }
14707             }
14708         },
14709
14710         /**
14711          * Gets a registered dialog by id
14712          * @param {String/Object} id The id of the dialog or a dialog
14713          * @return {Roo.BasicDialog} this
14714          */
14715         get : function(id){
14716             return typeof id == "object" ? id : list[id];
14717         },
14718
14719         /**
14720          * Brings the specified dialog to the front
14721          * @param {String/Object} dlg The id of the dialog or a dialog
14722          * @return {Roo.BasicDialog} this
14723          */
14724         bringToFront : function(dlg){
14725             dlg = this.get(dlg);
14726             if(dlg != front){
14727                 front = dlg;
14728                 dlg._lastAccess = new Date().getTime();
14729                 orderDialogs();
14730             }
14731             return dlg;
14732         },
14733
14734         /**
14735          * Sends the specified dialog to the back
14736          * @param {String/Object} dlg The id of the dialog or a dialog
14737          * @return {Roo.BasicDialog} this
14738          */
14739         sendToBack : function(dlg){
14740             dlg = this.get(dlg);
14741             dlg._lastAccess = -(new Date().getTime());
14742             orderDialogs();
14743             return dlg;
14744         },
14745
14746         /**
14747          * Hides all dialogs
14748          */
14749         hideAll : function(){
14750             for(var id in list){
14751                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
14752                     list[id].hide();
14753                 }
14754             }
14755         }
14756     };
14757 }();
14758
14759 /**
14760  * @class Roo.LayoutDialog
14761  * @extends Roo.BasicDialog
14762  * Dialog which provides adjustments for working with a layout in a Dialog.
14763  * Add your necessary layout config options to the dialog's config.<br>
14764  * Example usage (including a nested layout):
14765  * <pre><code>
14766 if(!dialog){
14767     dialog = new Roo.LayoutDialog("download-dlg", {
14768         modal: true,
14769         width:600,
14770         height:450,
14771         shadow:true,
14772         minWidth:500,
14773         minHeight:350,
14774         autoTabs:true,
14775         proxyDrag:true,
14776         // layout config merges with the dialog config
14777         center:{
14778             tabPosition: "top",
14779             alwaysShowTabs: true
14780         }
14781     });
14782     dialog.addKeyListener(27, dialog.hide, dialog);
14783     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
14784     dialog.addButton("Build It!", this.getDownload, this);
14785
14786     // we can even add nested layouts
14787     var innerLayout = new Roo.BorderLayout("dl-inner", {
14788         east: {
14789             initialSize: 200,
14790             autoScroll:true,
14791             split:true
14792         },
14793         center: {
14794             autoScroll:true
14795         }
14796     });
14797     innerLayout.beginUpdate();
14798     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
14799     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
14800     innerLayout.endUpdate(true);
14801
14802     var layout = dialog.getLayout();
14803     layout.beginUpdate();
14804     layout.add("center", new Roo.ContentPanel("standard-panel",
14805                         {title: "Download the Source", fitToFrame:true}));
14806     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
14807                {title: "Build your own roo.js"}));
14808     layout.getRegion("center").showPanel(sp);
14809     layout.endUpdate();
14810 }
14811 </code></pre>
14812     * @constructor
14813     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
14814     * @param {Object} config configuration options
14815   */
14816 Roo.LayoutDialog = function(el, cfg){
14817     
14818     var config=  cfg;
14819     if (typeof(cfg) == 'undefined') {
14820         config = Roo.apply({}, el);
14821         // not sure why we use documentElement here.. - it should always be body.
14822         // IE7 borks horribly if we use documentElement.
14823         // webkit also does not like documentElement - it creates a body element...
14824         el = Roo.get( document.body || document.documentElement ).createChild();
14825         //config.autoCreate = true;
14826     }
14827     
14828     
14829     config.autoTabs = false;
14830     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
14831     this.body.setStyle({overflow:"hidden", position:"relative"});
14832     this.layout = new Roo.BorderLayout(this.body.dom, config);
14833     this.layout.monitorWindowResize = false;
14834     this.el.addClass("x-dlg-auto-layout");
14835     // fix case when center region overwrites center function
14836     this.center = Roo.BasicDialog.prototype.center;
14837     this.on("show", this.layout.layout, this.layout, true);
14838     if (config.items) {
14839         var xitems = config.items;
14840         delete config.items;
14841         Roo.each(xitems, this.addxtype, this);
14842     }
14843     
14844     
14845 };
14846 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
14847     /**
14848      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
14849      * @deprecated
14850      */
14851     endUpdate : function(){
14852         this.layout.endUpdate();
14853     },
14854
14855     /**
14856      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
14857      *  @deprecated
14858      */
14859     beginUpdate : function(){
14860         this.layout.beginUpdate();
14861     },
14862
14863     /**
14864      * Get the BorderLayout for this dialog
14865      * @return {Roo.BorderLayout}
14866      */
14867     getLayout : function(){
14868         return this.layout;
14869     },
14870
14871     showEl : function(){
14872         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
14873         if(Roo.isIE7){
14874             this.layout.layout();
14875         }
14876     },
14877
14878     // private
14879     // Use the syncHeightBeforeShow config option to control this automatically
14880     syncBodyHeight : function(){
14881         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
14882         if(this.layout){this.layout.layout();}
14883     },
14884     
14885       /**
14886      * Add an xtype element (actually adds to the layout.)
14887      * @return {Object} xdata xtype object data.
14888      */
14889     
14890     addxtype : function(c) {
14891         return this.layout.addxtype(c);
14892     }
14893 });/*
14894  * Based on:
14895  * Ext JS Library 1.1.1
14896  * Copyright(c) 2006-2007, Ext JS, LLC.
14897  *
14898  * Originally Released Under LGPL - original licence link has changed is not relivant.
14899  *
14900  * Fork - LGPL
14901  * <script type="text/javascript">
14902  */
14903  
14904 /**
14905  * @class Roo.MessageBox
14906  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
14907  * Example usage:
14908  *<pre><code>
14909 // Basic alert:
14910 Roo.Msg.alert('Status', 'Changes saved successfully.');
14911
14912 // Prompt for user data:
14913 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
14914     if (btn == 'ok'){
14915         // process text value...
14916     }
14917 });
14918
14919 // Show a dialog using config options:
14920 Roo.Msg.show({
14921    title:'Save Changes?',
14922    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
14923    buttons: Roo.Msg.YESNOCANCEL,
14924    fn: processResult,
14925    animEl: 'elId'
14926 });
14927 </code></pre>
14928  * @singleton
14929  */
14930 Roo.MessageBox = function(){
14931     var dlg, opt, mask, waitTimer;
14932     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
14933     var buttons, activeTextEl, bwidth;
14934
14935     // private
14936     var handleButton = function(button){
14937         dlg.hide();
14938         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
14939     };
14940
14941     // private
14942     var handleHide = function(){
14943         if(opt && opt.cls){
14944             dlg.el.removeClass(opt.cls);
14945         }
14946         if(waitTimer){
14947             Roo.TaskMgr.stop(waitTimer);
14948             waitTimer = null;
14949         }
14950     };
14951
14952     // private
14953     var updateButtons = function(b){
14954         var width = 0;
14955         if(!b){
14956             buttons["ok"].hide();
14957             buttons["cancel"].hide();
14958             buttons["yes"].hide();
14959             buttons["no"].hide();
14960             dlg.footer.dom.style.display = 'none';
14961             return width;
14962         }
14963         dlg.footer.dom.style.display = '';
14964         for(var k in buttons){
14965             if(typeof buttons[k] != "function"){
14966                 if(b[k]){
14967                     buttons[k].show();
14968                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
14969                     width += buttons[k].el.getWidth()+15;
14970                 }else{
14971                     buttons[k].hide();
14972                 }
14973             }
14974         }
14975         return width;
14976     };
14977
14978     // private
14979     var handleEsc = function(d, k, e){
14980         if(opt && opt.closable !== false){
14981             dlg.hide();
14982         }
14983         if(e){
14984             e.stopEvent();
14985         }
14986     };
14987
14988     return {
14989         /**
14990          * Returns a reference to the underlying {@link Roo.BasicDialog} element
14991          * @return {Roo.BasicDialog} The BasicDialog element
14992          */
14993         getDialog : function(){
14994            if(!dlg){
14995                 dlg = new Roo.BasicDialog("x-msg-box", {
14996                     autoCreate : true,
14997                     shadow: true,
14998                     draggable: true,
14999                     resizable:false,
15000                     constraintoviewport:false,
15001                     fixedcenter:true,
15002                     collapsible : false,
15003                     shim:true,
15004                     modal: true,
15005                     width:400, height:100,
15006                     buttonAlign:"center",
15007                     closeClick : function(){
15008                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
15009                             handleButton("no");
15010                         }else{
15011                             handleButton("cancel");
15012                         }
15013                     }
15014                 });
15015                 dlg.on("hide", handleHide);
15016                 mask = dlg.mask;
15017                 dlg.addKeyListener(27, handleEsc);
15018                 buttons = {};
15019                 var bt = this.buttonText;
15020                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
15021                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
15022                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
15023                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
15024                 bodyEl = dlg.body.createChild({
15025
15026                     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>'
15027                 });
15028                 msgEl = bodyEl.dom.firstChild;
15029                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
15030                 textboxEl.enableDisplayMode();
15031                 textboxEl.addKeyListener([10,13], function(){
15032                     if(dlg.isVisible() && opt && opt.buttons){
15033                         if(opt.buttons.ok){
15034                             handleButton("ok");
15035                         }else if(opt.buttons.yes){
15036                             handleButton("yes");
15037                         }
15038                     }
15039                 });
15040                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
15041                 textareaEl.enableDisplayMode();
15042                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
15043                 progressEl.enableDisplayMode();
15044                 var pf = progressEl.dom.firstChild;
15045                 if (pf) {
15046                     pp = Roo.get(pf.firstChild);
15047                     pp.setHeight(pf.offsetHeight);
15048                 }
15049                 
15050             }
15051             return dlg;
15052         },
15053
15054         /**
15055          * Updates the message box body text
15056          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
15057          * the XHTML-compliant non-breaking space character '&amp;#160;')
15058          * @return {Roo.MessageBox} This message box
15059          */
15060         updateText : function(text){
15061             if(!dlg.isVisible() && !opt.width){
15062                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
15063             }
15064             msgEl.innerHTML = text || '&#160;';
15065       
15066             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
15067             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
15068             var w = Math.max(
15069                     Math.min(opt.width || cw , this.maxWidth), 
15070                     Math.max(opt.minWidth || this.minWidth, bwidth)
15071             );
15072             if(opt.prompt){
15073                 activeTextEl.setWidth(w);
15074             }
15075             if(dlg.isVisible()){
15076                 dlg.fixedcenter = false;
15077             }
15078             // to big, make it scroll. = But as usual stupid IE does not support
15079             // !important..
15080             
15081             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
15082                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
15083                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
15084             } else {
15085                 bodyEl.dom.style.height = '';
15086                 bodyEl.dom.style.overflowY = '';
15087             }
15088             if (cw > w) {
15089                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
15090             } else {
15091                 bodyEl.dom.style.overflowX = '';
15092             }
15093             
15094             dlg.setContentSize(w, bodyEl.getHeight());
15095             if(dlg.isVisible()){
15096                 dlg.fixedcenter = true;
15097             }
15098             return this;
15099         },
15100
15101         /**
15102          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
15103          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
15104          * @param {Number} value Any number between 0 and 1 (e.g., .5)
15105          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
15106          * @return {Roo.MessageBox} This message box
15107          */
15108         updateProgress : function(value, text){
15109             if(text){
15110                 this.updateText(text);
15111             }
15112             if (pp) { // weird bug on my firefox - for some reason this is not defined
15113                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
15114             }
15115             return this;
15116         },        
15117
15118         /**
15119          * Returns true if the message box is currently displayed
15120          * @return {Boolean} True if the message box is visible, else false
15121          */
15122         isVisible : function(){
15123             return dlg && dlg.isVisible();  
15124         },
15125
15126         /**
15127          * Hides the message box if it is displayed
15128          */
15129         hide : function(){
15130             if(this.isVisible()){
15131                 dlg.hide();
15132             }  
15133         },
15134
15135         /**
15136          * Displays a new message box, or reinitializes an existing message box, based on the config options
15137          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
15138          * The following config object properties are supported:
15139          * <pre>
15140 Property    Type             Description
15141 ----------  ---------------  ------------------------------------------------------------------------------------
15142 animEl            String/Element   An id or Element from which the message box should animate as it opens and
15143                                    closes (defaults to undefined)
15144 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
15145                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
15146 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
15147                                    progress and wait dialogs will ignore this property and always hide the
15148                                    close button as they can only be closed programmatically.
15149 cls               String           A custom CSS class to apply to the message box element
15150 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
15151                                    displayed (defaults to 75)
15152 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
15153                                    function will be btn (the name of the button that was clicked, if applicable,
15154                                    e.g. "ok"), and text (the value of the active text field, if applicable).
15155                                    Progress and wait dialogs will ignore this option since they do not respond to
15156                                    user actions and can only be closed programmatically, so any required function
15157                                    should be called by the same code after it closes the dialog.
15158 icon              String           A CSS class that provides a background image to be used as an icon for
15159                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
15160 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
15161 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
15162 modal             Boolean          False to allow user interaction with the page while the message box is
15163                                    displayed (defaults to true)
15164 msg               String           A string that will replace the existing message box body text (defaults
15165                                    to the XHTML-compliant non-breaking space character '&#160;')
15166 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
15167 progress          Boolean          True to display a progress bar (defaults to false)
15168 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
15169 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
15170 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
15171 title             String           The title text
15172 value             String           The string value to set into the active textbox element if displayed
15173 wait              Boolean          True to display a progress bar (defaults to false)
15174 width             Number           The width of the dialog in pixels
15175 </pre>
15176          *
15177          * Example usage:
15178          * <pre><code>
15179 Roo.Msg.show({
15180    title: 'Address',
15181    msg: 'Please enter your address:',
15182    width: 300,
15183    buttons: Roo.MessageBox.OKCANCEL,
15184    multiline: true,
15185    fn: saveAddress,
15186    animEl: 'addAddressBtn'
15187 });
15188 </code></pre>
15189          * @param {Object} config Configuration options
15190          * @return {Roo.MessageBox} This message box
15191          */
15192         show : function(options)
15193         {
15194             
15195             // this causes nightmares if you show one dialog after another
15196             // especially on callbacks..
15197              
15198             if(this.isVisible()){
15199                 
15200                 this.hide();
15201                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
15202                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
15203                 Roo.log("New Dialog Message:" +  options.msg )
15204                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
15205                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
15206                 
15207             }
15208             var d = this.getDialog();
15209             opt = options;
15210             d.setTitle(opt.title || "&#160;");
15211             d.close.setDisplayed(opt.closable !== false);
15212             activeTextEl = textboxEl;
15213             opt.prompt = opt.prompt || (opt.multiline ? true : false);
15214             if(opt.prompt){
15215                 if(opt.multiline){
15216                     textboxEl.hide();
15217                     textareaEl.show();
15218                     textareaEl.setHeight(typeof opt.multiline == "number" ?
15219                         opt.multiline : this.defaultTextHeight);
15220                     activeTextEl = textareaEl;
15221                 }else{
15222                     textboxEl.show();
15223                     textareaEl.hide();
15224                 }
15225             }else{
15226                 textboxEl.hide();
15227                 textareaEl.hide();
15228             }
15229             progressEl.setDisplayed(opt.progress === true);
15230             this.updateProgress(0);
15231             activeTextEl.dom.value = opt.value || "";
15232             if(opt.prompt){
15233                 dlg.setDefaultButton(activeTextEl);
15234             }else{
15235                 var bs = opt.buttons;
15236                 var db = null;
15237                 if(bs && bs.ok){
15238                     db = buttons["ok"];
15239                 }else if(bs && bs.yes){
15240                     db = buttons["yes"];
15241                 }
15242                 dlg.setDefaultButton(db);
15243             }
15244             bwidth = updateButtons(opt.buttons);
15245             this.updateText(opt.msg);
15246             if(opt.cls){
15247                 d.el.addClass(opt.cls);
15248             }
15249             d.proxyDrag = opt.proxyDrag === true;
15250             d.modal = opt.modal !== false;
15251             d.mask = opt.modal !== false ? mask : false;
15252             if(!d.isVisible()){
15253                 // force it to the end of the z-index stack so it gets a cursor in FF
15254                 document.body.appendChild(dlg.el.dom);
15255                 d.animateTarget = null;
15256                 d.show(options.animEl);
15257             }
15258             return this;
15259         },
15260
15261         /**
15262          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
15263          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
15264          * and closing the message box when the process is complete.
15265          * @param {String} title The title bar text
15266          * @param {String} msg The message box body text
15267          * @return {Roo.MessageBox} This message box
15268          */
15269         progress : function(title, msg){
15270             this.show({
15271                 title : title,
15272                 msg : msg,
15273                 buttons: false,
15274                 progress:true,
15275                 closable:false,
15276                 minWidth: this.minProgressWidth,
15277                 modal : true
15278             });
15279             return this;
15280         },
15281
15282         /**
15283          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
15284          * If a callback function is passed it will be called after the user clicks the button, and the
15285          * id of the button that was clicked will be passed as the only parameter to the callback
15286          * (could also be the top-right close button).
15287          * @param {String} title The title bar text
15288          * @param {String} msg The message box body text
15289          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15290          * @param {Object} scope (optional) The scope of the callback function
15291          * @return {Roo.MessageBox} This message box
15292          */
15293         alert : function(title, msg, fn, scope){
15294             this.show({
15295                 title : title,
15296                 msg : msg,
15297                 buttons: this.OK,
15298                 fn: fn,
15299                 scope : scope,
15300                 modal : true
15301             });
15302             return this;
15303         },
15304
15305         /**
15306          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
15307          * interaction while waiting for a long-running process to complete that does not have defined intervals.
15308          * You are responsible for closing the message box when the process is complete.
15309          * @param {String} msg The message box body text
15310          * @param {String} title (optional) The title bar text
15311          * @return {Roo.MessageBox} This message box
15312          */
15313         wait : function(msg, title){
15314             this.show({
15315                 title : title,
15316                 msg : msg,
15317                 buttons: false,
15318                 closable:false,
15319                 progress:true,
15320                 modal:true,
15321                 width:300,
15322                 wait:true
15323             });
15324             waitTimer = Roo.TaskMgr.start({
15325                 run: function(i){
15326                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
15327                 },
15328                 interval: 1000
15329             });
15330             return this;
15331         },
15332
15333         /**
15334          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
15335          * If a callback function is passed it will be called after the user clicks either button, and the id of the
15336          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
15337          * @param {String} title The title bar text
15338          * @param {String} msg The message box body text
15339          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15340          * @param {Object} scope (optional) The scope of the callback function
15341          * @return {Roo.MessageBox} This message box
15342          */
15343         confirm : function(title, msg, fn, scope){
15344             this.show({
15345                 title : title,
15346                 msg : msg,
15347                 buttons: this.YESNO,
15348                 fn: fn,
15349                 scope : scope,
15350                 modal : true
15351             });
15352             return this;
15353         },
15354
15355         /**
15356          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
15357          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
15358          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
15359          * (could also be the top-right close button) and the text that was entered will be passed as the two
15360          * parameters to the callback.
15361          * @param {String} title The title bar text
15362          * @param {String} msg The message box body text
15363          * @param {Function} fn (optional) The callback function invoked after the message box is closed
15364          * @param {Object} scope (optional) The scope of the callback function
15365          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
15366          * property, or the height in pixels to create the textbox (defaults to false / single-line)
15367          * @return {Roo.MessageBox} This message box
15368          */
15369         prompt : function(title, msg, fn, scope, multiline){
15370             this.show({
15371                 title : title,
15372                 msg : msg,
15373                 buttons: this.OKCANCEL,
15374                 fn: fn,
15375                 minWidth:250,
15376                 scope : scope,
15377                 prompt:true,
15378                 multiline: multiline,
15379                 modal : true
15380             });
15381             return this;
15382         },
15383
15384         /**
15385          * Button config that displays a single OK button
15386          * @type Object
15387          */
15388         OK : {ok:true},
15389         /**
15390          * Button config that displays Yes and No buttons
15391          * @type Object
15392          */
15393         YESNO : {yes:true, no:true},
15394         /**
15395          * Button config that displays OK and Cancel buttons
15396          * @type Object
15397          */
15398         OKCANCEL : {ok:true, cancel:true},
15399         /**
15400          * Button config that displays Yes, No and Cancel buttons
15401          * @type Object
15402          */
15403         YESNOCANCEL : {yes:true, no:true, cancel:true},
15404
15405         /**
15406          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
15407          * @type Number
15408          */
15409         defaultTextHeight : 75,
15410         /**
15411          * The maximum width in pixels of the message box (defaults to 600)
15412          * @type Number
15413          */
15414         maxWidth : 600,
15415         /**
15416          * The minimum width in pixels of the message box (defaults to 100)
15417          * @type Number
15418          */
15419         minWidth : 100,
15420         /**
15421          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
15422          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
15423          * @type Number
15424          */
15425         minProgressWidth : 250,
15426         /**
15427          * An object containing the default button text strings that can be overriden for localized language support.
15428          * Supported properties are: ok, cancel, yes and no.
15429          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
15430          * @type Object
15431          */
15432         buttonText : {
15433             ok : "OK",
15434             cancel : "Cancel",
15435             yes : "Yes",
15436             no : "No"
15437         }
15438     };
15439 }();
15440
15441 /**
15442  * Shorthand for {@link Roo.MessageBox}
15443  */
15444 Roo.Msg = Roo.MessageBox;/*
15445  * Based on:
15446  * Ext JS Library 1.1.1
15447  * Copyright(c) 2006-2007, Ext JS, LLC.
15448  *
15449  * Originally Released Under LGPL - original licence link has changed is not relivant.
15450  *
15451  * Fork - LGPL
15452  * <script type="text/javascript">
15453  */
15454 /**
15455  * @class Roo.QuickTips
15456  * Provides attractive and customizable tooltips for any element.
15457  * @singleton
15458  */
15459 Roo.QuickTips = function(){
15460     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
15461     var ce, bd, xy, dd;
15462     var visible = false, disabled = true, inited = false;
15463     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
15464     
15465     var onOver = function(e){
15466         if(disabled){
15467             return;
15468         }
15469         var t = e.getTarget();
15470         if(!t || t.nodeType !== 1 || t == document || t == document.body){
15471             return;
15472         }
15473         if(ce && t == ce.el){
15474             clearTimeout(hideProc);
15475             return;
15476         }
15477         if(t && tagEls[t.id]){
15478             tagEls[t.id].el = t;
15479             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
15480             return;
15481         }
15482         var ttp, et = Roo.fly(t);
15483         var ns = cfg.namespace;
15484         if(tm.interceptTitles && t.title){
15485             ttp = t.title;
15486             t.qtip = ttp;
15487             t.removeAttribute("title");
15488             e.preventDefault();
15489         }else{
15490             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute);
15491         }
15492         if(ttp){
15493             showProc = show.defer(tm.showDelay, tm, [{
15494                 el: t, 
15495                 text: ttp, 
15496                 width: et.getAttributeNS(ns, cfg.width),
15497                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
15498                 title: et.getAttributeNS(ns, cfg.title),
15499                     cls: et.getAttributeNS(ns, cfg.cls)
15500             }]);
15501         }
15502     };
15503     
15504     var onOut = function(e){
15505         clearTimeout(showProc);
15506         var t = e.getTarget();
15507         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
15508             hideProc = setTimeout(hide, tm.hideDelay);
15509         }
15510     };
15511     
15512     var onMove = function(e){
15513         if(disabled){
15514             return;
15515         }
15516         xy = e.getXY();
15517         xy[1] += 18;
15518         if(tm.trackMouse && ce){
15519             el.setXY(xy);
15520         }
15521     };
15522     
15523     var onDown = function(e){
15524         clearTimeout(showProc);
15525         clearTimeout(hideProc);
15526         if(!e.within(el)){
15527             if(tm.hideOnClick){
15528                 hide();
15529                 tm.disable();
15530                 tm.enable.defer(100, tm);
15531             }
15532         }
15533     };
15534     
15535     var getPad = function(){
15536         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
15537     };
15538
15539     var show = function(o){
15540         if(disabled){
15541             return;
15542         }
15543         clearTimeout(dismissProc);
15544         ce = o;
15545         if(removeCls){ // in case manually hidden
15546             el.removeClass(removeCls);
15547             removeCls = null;
15548         }
15549         if(ce.cls){
15550             el.addClass(ce.cls);
15551             removeCls = ce.cls;
15552         }
15553         if(ce.title){
15554             tipTitle.update(ce.title);
15555             tipTitle.show();
15556         }else{
15557             tipTitle.update('');
15558             tipTitle.hide();
15559         }
15560         el.dom.style.width  = tm.maxWidth+'px';
15561         //tipBody.dom.style.width = '';
15562         tipBodyText.update(o.text);
15563         var p = getPad(), w = ce.width;
15564         if(!w){
15565             var td = tipBodyText.dom;
15566             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
15567             if(aw > tm.maxWidth){
15568                 w = tm.maxWidth;
15569             }else if(aw < tm.minWidth){
15570                 w = tm.minWidth;
15571             }else{
15572                 w = aw;
15573             }
15574         }
15575         //tipBody.setWidth(w);
15576         el.setWidth(parseInt(w, 10) + p);
15577         if(ce.autoHide === false){
15578             close.setDisplayed(true);
15579             if(dd){
15580                 dd.unlock();
15581             }
15582         }else{
15583             close.setDisplayed(false);
15584             if(dd){
15585                 dd.lock();
15586             }
15587         }
15588         if(xy){
15589             el.avoidY = xy[1]-18;
15590             el.setXY(xy);
15591         }
15592         if(tm.animate){
15593             el.setOpacity(.1);
15594             el.setStyle("visibility", "visible");
15595             el.fadeIn({callback: afterShow});
15596         }else{
15597             afterShow();
15598         }
15599     };
15600     
15601     var afterShow = function(){
15602         if(ce){
15603             el.show();
15604             esc.enable();
15605             if(tm.autoDismiss && ce.autoHide !== false){
15606                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
15607             }
15608         }
15609     };
15610     
15611     var hide = function(noanim){
15612         clearTimeout(dismissProc);
15613         clearTimeout(hideProc);
15614         ce = null;
15615         if(el.isVisible()){
15616             esc.disable();
15617             if(noanim !== true && tm.animate){
15618                 el.fadeOut({callback: afterHide});
15619             }else{
15620                 afterHide();
15621             } 
15622         }
15623     };
15624     
15625     var afterHide = function(){
15626         el.hide();
15627         if(removeCls){
15628             el.removeClass(removeCls);
15629             removeCls = null;
15630         }
15631     };
15632     
15633     return {
15634         /**
15635         * @cfg {Number} minWidth
15636         * The minimum width of the quick tip (defaults to 40)
15637         */
15638        minWidth : 40,
15639         /**
15640         * @cfg {Number} maxWidth
15641         * The maximum width of the quick tip (defaults to 300)
15642         */
15643        maxWidth : 300,
15644         /**
15645         * @cfg {Boolean} interceptTitles
15646         * True to automatically use the element's DOM title value if available (defaults to false)
15647         */
15648        interceptTitles : false,
15649         /**
15650         * @cfg {Boolean} trackMouse
15651         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
15652         */
15653        trackMouse : false,
15654         /**
15655         * @cfg {Boolean} hideOnClick
15656         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
15657         */
15658        hideOnClick : true,
15659         /**
15660         * @cfg {Number} showDelay
15661         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
15662         */
15663        showDelay : 500,
15664         /**
15665         * @cfg {Number} hideDelay
15666         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
15667         */
15668        hideDelay : 200,
15669         /**
15670         * @cfg {Boolean} autoHide
15671         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
15672         * Used in conjunction with hideDelay.
15673         */
15674        autoHide : true,
15675         /**
15676         * @cfg {Boolean}
15677         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
15678         * (defaults to true).  Used in conjunction with autoDismissDelay.
15679         */
15680        autoDismiss : true,
15681         /**
15682         * @cfg {Number}
15683         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
15684         */
15685        autoDismissDelay : 5000,
15686        /**
15687         * @cfg {Boolean} animate
15688         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
15689         */
15690        animate : false,
15691
15692        /**
15693         * @cfg {String} title
15694         * Title text to display (defaults to '').  This can be any valid HTML markup.
15695         */
15696         title: '',
15697        /**
15698         * @cfg {String} text
15699         * Body text to display (defaults to '').  This can be any valid HTML markup.
15700         */
15701         text : '',
15702        /**
15703         * @cfg {String} cls
15704         * A CSS class to apply to the base quick tip element (defaults to '').
15705         */
15706         cls : '',
15707        /**
15708         * @cfg {Number} width
15709         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
15710         * minWidth or maxWidth.
15711         */
15712         width : null,
15713
15714     /**
15715      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
15716      * or display QuickTips in a page.
15717      */
15718        init : function(){
15719           tm = Roo.QuickTips;
15720           cfg = tm.tagConfig;
15721           if(!inited){
15722               if(!Roo.isReady){ // allow calling of init() before onReady
15723                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
15724                   return;
15725               }
15726               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
15727               el.fxDefaults = {stopFx: true};
15728               // maximum custom styling
15729               //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>');
15730               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>');              
15731               tipTitle = el.child('h3');
15732               tipTitle.enableDisplayMode("block");
15733               tipBody = el.child('div.x-tip-bd');
15734               tipBodyText = el.child('div.x-tip-bd-inner');
15735               //bdLeft = el.child('div.x-tip-bd-left');
15736               //bdRight = el.child('div.x-tip-bd-right');
15737               close = el.child('div.x-tip-close');
15738               close.enableDisplayMode("block");
15739               close.on("click", hide);
15740               var d = Roo.get(document);
15741               d.on("mousedown", onDown);
15742               d.on("mouseover", onOver);
15743               d.on("mouseout", onOut);
15744               d.on("mousemove", onMove);
15745               esc = d.addKeyListener(27, hide);
15746               esc.disable();
15747               if(Roo.dd.DD){
15748                   dd = el.initDD("default", null, {
15749                       onDrag : function(){
15750                           el.sync();  
15751                       }
15752                   });
15753                   dd.setHandleElId(tipTitle.id);
15754                   dd.lock();
15755               }
15756               inited = true;
15757           }
15758           this.enable(); 
15759        },
15760
15761     /**
15762      * Configures a new quick tip instance and assigns it to a target element.  The following config options
15763      * are supported:
15764      * <pre>
15765 Property    Type                   Description
15766 ----------  ---------------------  ------------------------------------------------------------------------
15767 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
15768      * </ul>
15769      * @param {Object} config The config object
15770      */
15771        register : function(config){
15772            var cs = config instanceof Array ? config : arguments;
15773            for(var i = 0, len = cs.length; i < len; i++) {
15774                var c = cs[i];
15775                var target = c.target;
15776                if(target){
15777                    if(target instanceof Array){
15778                        for(var j = 0, jlen = target.length; j < jlen; j++){
15779                            tagEls[target[j]] = c;
15780                        }
15781                    }else{
15782                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
15783                    }
15784                }
15785            }
15786        },
15787
15788     /**
15789      * Removes this quick tip from its element and destroys it.
15790      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
15791      */
15792        unregister : function(el){
15793            delete tagEls[Roo.id(el)];
15794        },
15795
15796     /**
15797      * Enable this quick tip.
15798      */
15799        enable : function(){
15800            if(inited && disabled){
15801                locks.pop();
15802                if(locks.length < 1){
15803                    disabled = false;
15804                }
15805            }
15806        },
15807
15808     /**
15809      * Disable this quick tip.
15810      */
15811        disable : function(){
15812           disabled = true;
15813           clearTimeout(showProc);
15814           clearTimeout(hideProc);
15815           clearTimeout(dismissProc);
15816           if(ce){
15817               hide(true);
15818           }
15819           locks.push(1);
15820        },
15821
15822     /**
15823      * Returns true if the quick tip is enabled, else false.
15824      */
15825        isEnabled : function(){
15826             return !disabled;
15827        },
15828
15829         // private
15830        tagConfig : {
15831            namespace : "ext",
15832            attribute : "qtip",
15833            width : "width",
15834            target : "target",
15835            title : "qtitle",
15836            hide : "hide",
15837            cls : "qclass"
15838        }
15839    };
15840 }();
15841
15842 // backwards compat
15843 Roo.QuickTips.tips = Roo.QuickTips.register;/*
15844  * Based on:
15845  * Ext JS Library 1.1.1
15846  * Copyright(c) 2006-2007, Ext JS, LLC.
15847  *
15848  * Originally Released Under LGPL - original licence link has changed is not relivant.
15849  *
15850  * Fork - LGPL
15851  * <script type="text/javascript">
15852  */
15853  
15854
15855 /**
15856  * @class Roo.tree.TreePanel
15857  * @extends Roo.data.Tree
15858
15859  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
15860  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
15861  * @cfg {Boolean} enableDD true to enable drag and drop
15862  * @cfg {Boolean} enableDrag true to enable just drag
15863  * @cfg {Boolean} enableDrop true to enable just drop
15864  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
15865  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
15866  * @cfg {String} ddGroup The DD group this TreePanel belongs to
15867  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
15868  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
15869  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
15870  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
15871  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
15872  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
15873  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
15874  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
15875  * @cfg {Boolean} loader A TreeLoader for use with this TreePanel
15876  * @cfg {Object|Roo.tree.TreeEditor} editor The TreeEditor or xtype data to display when clicked.
15877  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
15878  * @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>
15879  * @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>
15880  * 
15881  * @constructor
15882  * @param {String/HTMLElement/Element} el The container element
15883  * @param {Object} config
15884  */
15885 Roo.tree.TreePanel = function(el, config){
15886     var root = false;
15887     var loader = false;
15888     if (config.root) {
15889         root = config.root;
15890         delete config.root;
15891     }
15892     if (config.loader) {
15893         loader = config.loader;
15894         delete config.loader;
15895     }
15896     
15897     Roo.apply(this, config);
15898     Roo.tree.TreePanel.superclass.constructor.call(this);
15899     this.el = Roo.get(el);
15900     this.el.addClass('x-tree');
15901     //console.log(root);
15902     if (root) {
15903         this.setRootNode( Roo.factory(root, Roo.tree));
15904     }
15905     if (loader) {
15906         this.loader = Roo.factory(loader, Roo.tree);
15907     }
15908    /**
15909     * Read-only. The id of the container element becomes this TreePanel's id.
15910     */
15911     this.id = this.el.id;
15912     this.addEvents({
15913         /**
15914         * @event beforeload
15915         * Fires before a node is loaded, return false to cancel
15916         * @param {Node} node The node being loaded
15917         */
15918         "beforeload" : true,
15919         /**
15920         * @event load
15921         * Fires when a node is loaded
15922         * @param {Node} node The node that was loaded
15923         */
15924         "load" : true,
15925         /**
15926         * @event textchange
15927         * Fires when the text for a node is changed
15928         * @param {Node} node The node
15929         * @param {String} text The new text
15930         * @param {String} oldText The old text
15931         */
15932         "textchange" : true,
15933         /**
15934         * @event beforeexpand
15935         * Fires before a node is expanded, return false to cancel.
15936         * @param {Node} node The node
15937         * @param {Boolean} deep
15938         * @param {Boolean} anim
15939         */
15940         "beforeexpand" : true,
15941         /**
15942         * @event beforecollapse
15943         * Fires before a node is collapsed, return false to cancel.
15944         * @param {Node} node The node
15945         * @param {Boolean} deep
15946         * @param {Boolean} anim
15947         */
15948         "beforecollapse" : true,
15949         /**
15950         * @event expand
15951         * Fires when a node is expanded
15952         * @param {Node} node The node
15953         */
15954         "expand" : true,
15955         /**
15956         * @event disabledchange
15957         * Fires when the disabled status of a node changes
15958         * @param {Node} node The node
15959         * @param {Boolean} disabled
15960         */
15961         "disabledchange" : true,
15962         /**
15963         * @event collapse
15964         * Fires when a node is collapsed
15965         * @param {Node} node The node
15966         */
15967         "collapse" : true,
15968         /**
15969         * @event beforeclick
15970         * Fires before click processing on a node. Return false to cancel the default action.
15971         * @param {Node} node The node
15972         * @param {Roo.EventObject} e The event object
15973         */
15974         "beforeclick":true,
15975         /**
15976         * @event checkchange
15977         * Fires when a node with a checkbox's checked property changes
15978         * @param {Node} this This node
15979         * @param {Boolean} checked
15980         */
15981         "checkchange":true,
15982         /**
15983         * @event click
15984         * Fires when a node is clicked
15985         * @param {Node} node The node
15986         * @param {Roo.EventObject} e The event object
15987         */
15988         "click":true,
15989         /**
15990         * @event dblclick
15991         * Fires when a node is double clicked
15992         * @param {Node} node The node
15993         * @param {Roo.EventObject} e The event object
15994         */
15995         "dblclick":true,
15996         /**
15997         * @event contextmenu
15998         * Fires when a node is right clicked
15999         * @param {Node} node The node
16000         * @param {Roo.EventObject} e The event object
16001         */
16002         "contextmenu":true,
16003         /**
16004         * @event beforechildrenrendered
16005         * Fires right before the child nodes for a node are rendered
16006         * @param {Node} node The node
16007         */
16008         "beforechildrenrendered":true,
16009         /**
16010         * @event startdrag
16011         * Fires when a node starts being dragged
16012         * @param {Roo.tree.TreePanel} this
16013         * @param {Roo.tree.TreeNode} node
16014         * @param {event} e The raw browser event
16015         */ 
16016        "startdrag" : true,
16017        /**
16018         * @event enddrag
16019         * Fires when a drag operation is complete
16020         * @param {Roo.tree.TreePanel} this
16021         * @param {Roo.tree.TreeNode} node
16022         * @param {event} e The raw browser event
16023         */
16024        "enddrag" : true,
16025        /**
16026         * @event dragdrop
16027         * Fires when a dragged node is dropped on a valid DD target
16028         * @param {Roo.tree.TreePanel} this
16029         * @param {Roo.tree.TreeNode} node
16030         * @param {DD} dd The dd it was dropped on
16031         * @param {event} e The raw browser event
16032         */
16033        "dragdrop" : true,
16034        /**
16035         * @event beforenodedrop
16036         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
16037         * passed to handlers has the following properties:<br />
16038         * <ul style="padding:5px;padding-left:16px;">
16039         * <li>tree - The TreePanel</li>
16040         * <li>target - The node being targeted for the drop</li>
16041         * <li>data - The drag data from the drag source</li>
16042         * <li>point - The point of the drop - append, above or below</li>
16043         * <li>source - The drag source</li>
16044         * <li>rawEvent - Raw mouse event</li>
16045         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
16046         * to be inserted by setting them on this object.</li>
16047         * <li>cancel - Set this to true to cancel the drop.</li>
16048         * </ul>
16049         * @param {Object} dropEvent
16050         */
16051        "beforenodedrop" : true,
16052        /**
16053         * @event nodedrop
16054         * Fires after a DD object is dropped on a node in this tree. The dropEvent
16055         * passed to handlers has the following properties:<br />
16056         * <ul style="padding:5px;padding-left:16px;">
16057         * <li>tree - The TreePanel</li>
16058         * <li>target - The node being targeted for the drop</li>
16059         * <li>data - The drag data from the drag source</li>
16060         * <li>point - The point of the drop - append, above or below</li>
16061         * <li>source - The drag source</li>
16062         * <li>rawEvent - Raw mouse event</li>
16063         * <li>dropNode - Dropped node(s).</li>
16064         * </ul>
16065         * @param {Object} dropEvent
16066         */
16067        "nodedrop" : true,
16068         /**
16069         * @event nodedragover
16070         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
16071         * passed to handlers has the following properties:<br />
16072         * <ul style="padding:5px;padding-left:16px;">
16073         * <li>tree - The TreePanel</li>
16074         * <li>target - The node being targeted for the drop</li>
16075         * <li>data - The drag data from the drag source</li>
16076         * <li>point - The point of the drop - append, above or below</li>
16077         * <li>source - The drag source</li>
16078         * <li>rawEvent - Raw mouse event</li>
16079         * <li>dropNode - Drop node(s) provided by the source.</li>
16080         * <li>cancel - Set this to true to signal drop not allowed.</li>
16081         * </ul>
16082         * @param {Object} dragOverEvent
16083         */
16084        "nodedragover" : true
16085         
16086     });
16087     if(this.singleExpand){
16088        this.on("beforeexpand", this.restrictExpand, this);
16089     }
16090     if (this.editor) {
16091         this.editor.tree = this;
16092         this.editor = Roo.factory(this.editor, Roo.tree);
16093     }
16094     
16095     if (this.selModel) {
16096         this.selModel = Roo.factory(this.selModel, Roo.tree);
16097     }
16098    
16099 };
16100 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
16101     rootVisible : true,
16102     animate: Roo.enableFx,
16103     lines : true,
16104     enableDD : false,
16105     hlDrop : Roo.enableFx,
16106   
16107     renderer: false,
16108     
16109     rendererTip: false,
16110     // private
16111     restrictExpand : function(node){
16112         var p = node.parentNode;
16113         if(p){
16114             if(p.expandedChild && p.expandedChild.parentNode == p){
16115                 p.expandedChild.collapse();
16116             }
16117             p.expandedChild = node;
16118         }
16119     },
16120
16121     // private override
16122     setRootNode : function(node){
16123         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
16124         if(!this.rootVisible){
16125             node.ui = new Roo.tree.RootTreeNodeUI(node);
16126         }
16127         return node;
16128     },
16129
16130     /**
16131      * Returns the container element for this TreePanel
16132      */
16133     getEl : function(){
16134         return this.el;
16135     },
16136
16137     /**
16138      * Returns the default TreeLoader for this TreePanel
16139      */
16140     getLoader : function(){
16141         return this.loader;
16142     },
16143
16144     /**
16145      * Expand all nodes
16146      */
16147     expandAll : function(){
16148         this.root.expand(true);
16149     },
16150
16151     /**
16152      * Collapse all nodes
16153      */
16154     collapseAll : function(){
16155         this.root.collapse(true);
16156     },
16157
16158     /**
16159      * Returns the selection model used by this TreePanel
16160      */
16161     getSelectionModel : function(){
16162         if(!this.selModel){
16163             this.selModel = new Roo.tree.DefaultSelectionModel();
16164         }
16165         return this.selModel;
16166     },
16167
16168     /**
16169      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
16170      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
16171      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
16172      * @return {Array}
16173      */
16174     getChecked : function(a, startNode){
16175         startNode = startNode || this.root;
16176         var r = [];
16177         var f = function(){
16178             if(this.attributes.checked){
16179                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
16180             }
16181         }
16182         startNode.cascade(f);
16183         return r;
16184     },
16185
16186     /**
16187      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16188      * @param {String} path
16189      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16190      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
16191      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
16192      */
16193     expandPath : function(path, attr, callback){
16194         attr = attr || "id";
16195         var keys = path.split(this.pathSeparator);
16196         var curNode = this.root;
16197         if(curNode.attributes[attr] != keys[1]){ // invalid root
16198             if(callback){
16199                 callback(false, null);
16200             }
16201             return;
16202         }
16203         var index = 1;
16204         var f = function(){
16205             if(++index == keys.length){
16206                 if(callback){
16207                     callback(true, curNode);
16208                 }
16209                 return;
16210             }
16211             var c = curNode.findChild(attr, keys[index]);
16212             if(!c){
16213                 if(callback){
16214                     callback(false, curNode);
16215                 }
16216                 return;
16217             }
16218             curNode = c;
16219             c.expand(false, false, f);
16220         };
16221         curNode.expand(false, false, f);
16222     },
16223
16224     /**
16225      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
16226      * @param {String} path
16227      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
16228      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
16229      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
16230      */
16231     selectPath : function(path, attr, callback){
16232         attr = attr || "id";
16233         var keys = path.split(this.pathSeparator);
16234         var v = keys.pop();
16235         if(keys.length > 0){
16236             var f = function(success, node){
16237                 if(success && node){
16238                     var n = node.findChild(attr, v);
16239                     if(n){
16240                         n.select();
16241                         if(callback){
16242                             callback(true, n);
16243                         }
16244                     }else if(callback){
16245                         callback(false, n);
16246                     }
16247                 }else{
16248                     if(callback){
16249                         callback(false, n);
16250                     }
16251                 }
16252             };
16253             this.expandPath(keys.join(this.pathSeparator), attr, f);
16254         }else{
16255             this.root.select();
16256             if(callback){
16257                 callback(true, this.root);
16258             }
16259         }
16260     },
16261
16262     getTreeEl : function(){
16263         return this.el;
16264     },
16265
16266     /**
16267      * Trigger rendering of this TreePanel
16268      */
16269     render : function(){
16270         if (this.innerCt) {
16271             return this; // stop it rendering more than once!!
16272         }
16273         
16274         this.innerCt = this.el.createChild({tag:"ul",
16275                cls:"x-tree-root-ct " +
16276                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
16277
16278         if(this.containerScroll){
16279             Roo.dd.ScrollManager.register(this.el);
16280         }
16281         if((this.enableDD || this.enableDrop) && !this.dropZone){
16282            /**
16283             * The dropZone used by this tree if drop is enabled
16284             * @type Roo.tree.TreeDropZone
16285             */
16286              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
16287                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
16288            });
16289         }
16290         if((this.enableDD || this.enableDrag) && !this.dragZone){
16291            /**
16292             * The dragZone used by this tree if drag is enabled
16293             * @type Roo.tree.TreeDragZone
16294             */
16295             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
16296                ddGroup: this.ddGroup || "TreeDD",
16297                scroll: this.ddScroll
16298            });
16299         }
16300         this.getSelectionModel().init(this);
16301         if (!this.root) {
16302             Roo.log("ROOT not set in tree");
16303             return this;
16304         }
16305         this.root.render();
16306         if(!this.rootVisible){
16307             this.root.renderChildren();
16308         }
16309         return this;
16310     }
16311 });/*
16312  * Based on:
16313  * Ext JS Library 1.1.1
16314  * Copyright(c) 2006-2007, Ext JS, LLC.
16315  *
16316  * Originally Released Under LGPL - original licence link has changed is not relivant.
16317  *
16318  * Fork - LGPL
16319  * <script type="text/javascript">
16320  */
16321  
16322
16323 /**
16324  * @class Roo.tree.DefaultSelectionModel
16325  * @extends Roo.util.Observable
16326  * The default single selection for a TreePanel.
16327  * @param {Object} cfg Configuration
16328  */
16329 Roo.tree.DefaultSelectionModel = function(cfg){
16330    this.selNode = null;
16331    
16332    
16333    
16334    this.addEvents({
16335        /**
16336         * @event selectionchange
16337         * Fires when the selected node changes
16338         * @param {DefaultSelectionModel} this
16339         * @param {TreeNode} node the new selection
16340         */
16341        "selectionchange" : true,
16342
16343        /**
16344         * @event beforeselect
16345         * Fires before the selected node changes, return false to cancel the change
16346         * @param {DefaultSelectionModel} this
16347         * @param {TreeNode} node the new selection
16348         * @param {TreeNode} node the old selection
16349         */
16350        "beforeselect" : true
16351    });
16352    
16353     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
16354 };
16355
16356 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
16357     init : function(tree){
16358         this.tree = tree;
16359         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16360         tree.on("click", this.onNodeClick, this);
16361     },
16362     
16363     onNodeClick : function(node, e){
16364         if (e.ctrlKey && this.selNode == node)  {
16365             this.unselect(node);
16366             return;
16367         }
16368         this.select(node);
16369     },
16370     
16371     /**
16372      * Select a node.
16373      * @param {TreeNode} node The node to select
16374      * @return {TreeNode} The selected node
16375      */
16376     select : function(node){
16377         var last = this.selNode;
16378         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
16379             if(last){
16380                 last.ui.onSelectedChange(false);
16381             }
16382             this.selNode = node;
16383             node.ui.onSelectedChange(true);
16384             this.fireEvent("selectionchange", this, node, last);
16385         }
16386         return node;
16387     },
16388     
16389     /**
16390      * Deselect a node.
16391      * @param {TreeNode} node The node to unselect
16392      */
16393     unselect : function(node){
16394         if(this.selNode == node){
16395             this.clearSelections();
16396         }    
16397     },
16398     
16399     /**
16400      * Clear all selections
16401      */
16402     clearSelections : function(){
16403         var n = this.selNode;
16404         if(n){
16405             n.ui.onSelectedChange(false);
16406             this.selNode = null;
16407             this.fireEvent("selectionchange", this, null);
16408         }
16409         return n;
16410     },
16411     
16412     /**
16413      * Get the selected node
16414      * @return {TreeNode} The selected node
16415      */
16416     getSelectedNode : function(){
16417         return this.selNode;    
16418     },
16419     
16420     /**
16421      * Returns true if the node is selected
16422      * @param {TreeNode} node The node to check
16423      * @return {Boolean}
16424      */
16425     isSelected : function(node){
16426         return this.selNode == node;  
16427     },
16428
16429     /**
16430      * Selects the node above the selected node in the tree, intelligently walking the nodes
16431      * @return TreeNode The new selection
16432      */
16433     selectPrevious : function(){
16434         var s = this.selNode || this.lastSelNode;
16435         if(!s){
16436             return null;
16437         }
16438         var ps = s.previousSibling;
16439         if(ps){
16440             if(!ps.isExpanded() || ps.childNodes.length < 1){
16441                 return this.select(ps);
16442             } else{
16443                 var lc = ps.lastChild;
16444                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
16445                     lc = lc.lastChild;
16446                 }
16447                 return this.select(lc);
16448             }
16449         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
16450             return this.select(s.parentNode);
16451         }
16452         return null;
16453     },
16454
16455     /**
16456      * Selects the node above the selected node in the tree, intelligently walking the nodes
16457      * @return TreeNode The new selection
16458      */
16459     selectNext : function(){
16460         var s = this.selNode || this.lastSelNode;
16461         if(!s){
16462             return null;
16463         }
16464         if(s.firstChild && s.isExpanded()){
16465              return this.select(s.firstChild);
16466          }else if(s.nextSibling){
16467              return this.select(s.nextSibling);
16468          }else if(s.parentNode){
16469             var newS = null;
16470             s.parentNode.bubble(function(){
16471                 if(this.nextSibling){
16472                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
16473                     return false;
16474                 }
16475             });
16476             return newS;
16477          }
16478         return null;
16479     },
16480
16481     onKeyDown : function(e){
16482         var s = this.selNode || this.lastSelNode;
16483         // undesirable, but required
16484         var sm = this;
16485         if(!s){
16486             return;
16487         }
16488         var k = e.getKey();
16489         switch(k){
16490              case e.DOWN:
16491                  e.stopEvent();
16492                  this.selectNext();
16493              break;
16494              case e.UP:
16495                  e.stopEvent();
16496                  this.selectPrevious();
16497              break;
16498              case e.RIGHT:
16499                  e.preventDefault();
16500                  if(s.hasChildNodes()){
16501                      if(!s.isExpanded()){
16502                          s.expand();
16503                      }else if(s.firstChild){
16504                          this.select(s.firstChild, e);
16505                      }
16506                  }
16507              break;
16508              case e.LEFT:
16509                  e.preventDefault();
16510                  if(s.hasChildNodes() && s.isExpanded()){
16511                      s.collapse();
16512                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
16513                      this.select(s.parentNode, e);
16514                  }
16515              break;
16516         };
16517     }
16518 });
16519
16520 /**
16521  * @class Roo.tree.MultiSelectionModel
16522  * @extends Roo.util.Observable
16523  * Multi selection for a TreePanel.
16524  * @param {Object} cfg Configuration
16525  */
16526 Roo.tree.MultiSelectionModel = function(){
16527    this.selNodes = [];
16528    this.selMap = {};
16529    this.addEvents({
16530        /**
16531         * @event selectionchange
16532         * Fires when the selected nodes change
16533         * @param {MultiSelectionModel} this
16534         * @param {Array} nodes Array of the selected nodes
16535         */
16536        "selectionchange" : true
16537    });
16538    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
16539    
16540 };
16541
16542 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
16543     init : function(tree){
16544         this.tree = tree;
16545         tree.getTreeEl().on("keydown", this.onKeyDown, this);
16546         tree.on("click", this.onNodeClick, this);
16547     },
16548     
16549     onNodeClick : function(node, e){
16550         this.select(node, e, e.ctrlKey);
16551     },
16552     
16553     /**
16554      * Select a node.
16555      * @param {TreeNode} node The node to select
16556      * @param {EventObject} e (optional) An event associated with the selection
16557      * @param {Boolean} keepExisting True to retain existing selections
16558      * @return {TreeNode} The selected node
16559      */
16560     select : function(node, e, keepExisting){
16561         if(keepExisting !== true){
16562             this.clearSelections(true);
16563         }
16564         if(this.isSelected(node)){
16565             this.lastSelNode = node;
16566             return node;
16567         }
16568         this.selNodes.push(node);
16569         this.selMap[node.id] = node;
16570         this.lastSelNode = node;
16571         node.ui.onSelectedChange(true);
16572         this.fireEvent("selectionchange", this, this.selNodes);
16573         return node;
16574     },
16575     
16576     /**
16577      * Deselect a node.
16578      * @param {TreeNode} node The node to unselect
16579      */
16580     unselect : function(node){
16581         if(this.selMap[node.id]){
16582             node.ui.onSelectedChange(false);
16583             var sn = this.selNodes;
16584             var index = -1;
16585             if(sn.indexOf){
16586                 index = sn.indexOf(node);
16587             }else{
16588                 for(var i = 0, len = sn.length; i < len; i++){
16589                     if(sn[i] == node){
16590                         index = i;
16591                         break;
16592                     }
16593                 }
16594             }
16595             if(index != -1){
16596                 this.selNodes.splice(index, 1);
16597             }
16598             delete this.selMap[node.id];
16599             this.fireEvent("selectionchange", this, this.selNodes);
16600         }
16601     },
16602     
16603     /**
16604      * Clear all selections
16605      */
16606     clearSelections : function(suppressEvent){
16607         var sn = this.selNodes;
16608         if(sn.length > 0){
16609             for(var i = 0, len = sn.length; i < len; i++){
16610                 sn[i].ui.onSelectedChange(false);
16611             }
16612             this.selNodes = [];
16613             this.selMap = {};
16614             if(suppressEvent !== true){
16615                 this.fireEvent("selectionchange", this, this.selNodes);
16616             }
16617         }
16618     },
16619     
16620     /**
16621      * Returns true if the node is selected
16622      * @param {TreeNode} node The node to check
16623      * @return {Boolean}
16624      */
16625     isSelected : function(node){
16626         return this.selMap[node.id] ? true : false;  
16627     },
16628     
16629     /**
16630      * Returns an array of the selected nodes
16631      * @return {Array}
16632      */
16633     getSelectedNodes : function(){
16634         return this.selNodes;    
16635     },
16636
16637     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
16638
16639     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
16640
16641     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
16642 });/*
16643  * Based on:
16644  * Ext JS Library 1.1.1
16645  * Copyright(c) 2006-2007, Ext JS, LLC.
16646  *
16647  * Originally Released Under LGPL - original licence link has changed is not relivant.
16648  *
16649  * Fork - LGPL
16650  * <script type="text/javascript">
16651  */
16652  
16653 /**
16654  * @class Roo.tree.TreeNode
16655  * @extends Roo.data.Node
16656  * @cfg {String} text The text for this node
16657  * @cfg {Boolean} expanded true to start the node expanded
16658  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
16659  * @cfg {Boolean} allowDrop false if this node cannot be drop on
16660  * @cfg {Boolean} disabled true to start the node disabled
16661  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
16662  * is to use the cls or iconCls attributes and add the icon via a CSS background image.
16663  * @cfg {String} cls A css class to be added to the node
16664  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
16665  * @cfg {String} href URL of the link used for the node (defaults to #)
16666  * @cfg {String} hrefTarget target frame for the link
16667  * @cfg {String} qtip An Ext QuickTip for the node
16668  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
16669  * @cfg {Boolean} singleClickExpand True for single click expand on this node
16670  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
16671  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
16672  * (defaults to undefined with no checkbox rendered)
16673  * @constructor
16674  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
16675  */
16676 Roo.tree.TreeNode = function(attributes){
16677     attributes = attributes || {};
16678     if(typeof attributes == "string"){
16679         attributes = {text: attributes};
16680     }
16681     this.childrenRendered = false;
16682     this.rendered = false;
16683     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
16684     this.expanded = attributes.expanded === true;
16685     this.isTarget = attributes.isTarget !== false;
16686     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
16687     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
16688
16689     /**
16690      * Read-only. The text for this node. To change it use setText().
16691      * @type String
16692      */
16693     this.text = attributes.text;
16694     /**
16695      * True if this node is disabled.
16696      * @type Boolean
16697      */
16698     this.disabled = attributes.disabled === true;
16699
16700     this.addEvents({
16701         /**
16702         * @event textchange
16703         * Fires when the text for this node is changed
16704         * @param {Node} this This node
16705         * @param {String} text The new text
16706         * @param {String} oldText The old text
16707         */
16708         "textchange" : true,
16709         /**
16710         * @event beforeexpand
16711         * Fires before this node is expanded, return false to cancel.
16712         * @param {Node} this This node
16713         * @param {Boolean} deep
16714         * @param {Boolean} anim
16715         */
16716         "beforeexpand" : true,
16717         /**
16718         * @event beforecollapse
16719         * Fires before this node is collapsed, return false to cancel.
16720         * @param {Node} this This node
16721         * @param {Boolean} deep
16722         * @param {Boolean} anim
16723         */
16724         "beforecollapse" : true,
16725         /**
16726         * @event expand
16727         * Fires when this node is expanded
16728         * @param {Node} this This node
16729         */
16730         "expand" : true,
16731         /**
16732         * @event disabledchange
16733         * Fires when the disabled status of this node changes
16734         * @param {Node} this This node
16735         * @param {Boolean} disabled
16736         */
16737         "disabledchange" : true,
16738         /**
16739         * @event collapse
16740         * Fires when this node is collapsed
16741         * @param {Node} this This node
16742         */
16743         "collapse" : true,
16744         /**
16745         * @event beforeclick
16746         * Fires before click processing. Return false to cancel the default action.
16747         * @param {Node} this This node
16748         * @param {Roo.EventObject} e The event object
16749         */
16750         "beforeclick":true,
16751         /**
16752         * @event checkchange
16753         * Fires when a node with a checkbox's checked property changes
16754         * @param {Node} this This node
16755         * @param {Boolean} checked
16756         */
16757         "checkchange":true,
16758         /**
16759         * @event click
16760         * Fires when this node is clicked
16761         * @param {Node} this This node
16762         * @param {Roo.EventObject} e The event object
16763         */
16764         "click":true,
16765         /**
16766         * @event dblclick
16767         * Fires when this node is double clicked
16768         * @param {Node} this This node
16769         * @param {Roo.EventObject} e The event object
16770         */
16771         "dblclick":true,
16772         /**
16773         * @event contextmenu
16774         * Fires when this node is right clicked
16775         * @param {Node} this This node
16776         * @param {Roo.EventObject} e The event object
16777         */
16778         "contextmenu":true,
16779         /**
16780         * @event beforechildrenrendered
16781         * Fires right before the child nodes for this node are rendered
16782         * @param {Node} this This node
16783         */
16784         "beforechildrenrendered":true
16785     });
16786
16787     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
16788
16789     /**
16790      * Read-only. The UI for this node
16791      * @type TreeNodeUI
16792      */
16793     this.ui = new uiClass(this);
16794     
16795     // finally support items[]
16796     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
16797         return;
16798     }
16799     
16800     
16801     Roo.each(this.attributes.items, function(c) {
16802         this.appendChild(Roo.factory(c,Roo.Tree));
16803     }, this);
16804     delete this.attributes.items;
16805     
16806     
16807     
16808 };
16809 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
16810     preventHScroll: true,
16811     /**
16812      * Returns true if this node is expanded
16813      * @return {Boolean}
16814      */
16815     isExpanded : function(){
16816         return this.expanded;
16817     },
16818
16819     /**
16820      * Returns the UI object for this node
16821      * @return {TreeNodeUI}
16822      */
16823     getUI : function(){
16824         return this.ui;
16825     },
16826
16827     // private override
16828     setFirstChild : function(node){
16829         var of = this.firstChild;
16830         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
16831         if(this.childrenRendered && of && node != of){
16832             of.renderIndent(true, true);
16833         }
16834         if(this.rendered){
16835             this.renderIndent(true, true);
16836         }
16837     },
16838
16839     // private override
16840     setLastChild : function(node){
16841         var ol = this.lastChild;
16842         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
16843         if(this.childrenRendered && ol && node != ol){
16844             ol.renderIndent(true, true);
16845         }
16846         if(this.rendered){
16847             this.renderIndent(true, true);
16848         }
16849     },
16850
16851     // these methods are overridden to provide lazy rendering support
16852     // private override
16853     appendChild : function()
16854     {
16855         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
16856         if(node && this.childrenRendered){
16857             node.render();
16858         }
16859         this.ui.updateExpandIcon();
16860         return node;
16861     },
16862
16863     // private override
16864     removeChild : function(node){
16865         this.ownerTree.getSelectionModel().unselect(node);
16866         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
16867         // if it's been rendered remove dom node
16868         if(this.childrenRendered){
16869             node.ui.remove();
16870         }
16871         if(this.childNodes.length < 1){
16872             this.collapse(false, false);
16873         }else{
16874             this.ui.updateExpandIcon();
16875         }
16876         if(!this.firstChild) {
16877             this.childrenRendered = false;
16878         }
16879         return node;
16880     },
16881
16882     // private override
16883     insertBefore : function(node, refNode){
16884         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
16885         if(newNode && refNode && this.childrenRendered){
16886             node.render();
16887         }
16888         this.ui.updateExpandIcon();
16889         return newNode;
16890     },
16891
16892     /**
16893      * Sets the text for this node
16894      * @param {String} text
16895      */
16896     setText : function(text){
16897         var oldText = this.text;
16898         this.text = text;
16899         this.attributes.text = text;
16900         if(this.rendered){ // event without subscribing
16901             this.ui.onTextChange(this, text, oldText);
16902         }
16903         this.fireEvent("textchange", this, text, oldText);
16904     },
16905
16906     /**
16907      * Triggers selection of this node
16908      */
16909     select : function(){
16910         this.getOwnerTree().getSelectionModel().select(this);
16911     },
16912
16913     /**
16914      * Triggers deselection of this node
16915      */
16916     unselect : function(){
16917         this.getOwnerTree().getSelectionModel().unselect(this);
16918     },
16919
16920     /**
16921      * Returns true if this node is selected
16922      * @return {Boolean}
16923      */
16924     isSelected : function(){
16925         return this.getOwnerTree().getSelectionModel().isSelected(this);
16926     },
16927
16928     /**
16929      * Expand this node.
16930      * @param {Boolean} deep (optional) True to expand all children as well
16931      * @param {Boolean} anim (optional) false to cancel the default animation
16932      * @param {Function} callback (optional) A callback to be called when
16933      * expanding this node completes (does not wait for deep expand to complete).
16934      * Called with 1 parameter, this node.
16935      */
16936     expand : function(deep, anim, callback){
16937         if(!this.expanded){
16938             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
16939                 return;
16940             }
16941             if(!this.childrenRendered){
16942                 this.renderChildren();
16943             }
16944             this.expanded = true;
16945             if(!this.isHiddenRoot() && (this.getOwnerTree().animate && anim !== false) || anim){
16946                 this.ui.animExpand(function(){
16947                     this.fireEvent("expand", this);
16948                     if(typeof callback == "function"){
16949                         callback(this);
16950                     }
16951                     if(deep === true){
16952                         this.expandChildNodes(true);
16953                     }
16954                 }.createDelegate(this));
16955                 return;
16956             }else{
16957                 this.ui.expand();
16958                 this.fireEvent("expand", this);
16959                 if(typeof callback == "function"){
16960                     callback(this);
16961                 }
16962             }
16963         }else{
16964            if(typeof callback == "function"){
16965                callback(this);
16966            }
16967         }
16968         if(deep === true){
16969             this.expandChildNodes(true);
16970         }
16971     },
16972
16973     isHiddenRoot : function(){
16974         return this.isRoot && !this.getOwnerTree().rootVisible;
16975     },
16976
16977     /**
16978      * Collapse this node.
16979      * @param {Boolean} deep (optional) True to collapse all children as well
16980      * @param {Boolean} anim (optional) false to cancel the default animation
16981      */
16982     collapse : function(deep, anim){
16983         if(this.expanded && !this.isHiddenRoot()){
16984             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
16985                 return;
16986             }
16987             this.expanded = false;
16988             if((this.getOwnerTree().animate && anim !== false) || anim){
16989                 this.ui.animCollapse(function(){
16990                     this.fireEvent("collapse", this);
16991                     if(deep === true){
16992                         this.collapseChildNodes(true);
16993                     }
16994                 }.createDelegate(this));
16995                 return;
16996             }else{
16997                 this.ui.collapse();
16998                 this.fireEvent("collapse", this);
16999             }
17000         }
17001         if(deep === true){
17002             var cs = this.childNodes;
17003             for(var i = 0, len = cs.length; i < len; i++) {
17004                 cs[i].collapse(true, false);
17005             }
17006         }
17007     },
17008
17009     // private
17010     delayedExpand : function(delay){
17011         if(!this.expandProcId){
17012             this.expandProcId = this.expand.defer(delay, this);
17013         }
17014     },
17015
17016     // private
17017     cancelExpand : function(){
17018         if(this.expandProcId){
17019             clearTimeout(this.expandProcId);
17020         }
17021         this.expandProcId = false;
17022     },
17023
17024     /**
17025      * Toggles expanded/collapsed state of the node
17026      */
17027     toggle : function(){
17028         if(this.expanded){
17029             this.collapse();
17030         }else{
17031             this.expand();
17032         }
17033     },
17034
17035     /**
17036      * Ensures all parent nodes are expanded
17037      */
17038     ensureVisible : function(callback){
17039         var tree = this.getOwnerTree();
17040         tree.expandPath(this.parentNode.getPath(), false, function(){
17041             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
17042             Roo.callback(callback);
17043         }.createDelegate(this));
17044     },
17045
17046     /**
17047      * Expand all child nodes
17048      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
17049      */
17050     expandChildNodes : function(deep){
17051         var cs = this.childNodes;
17052         for(var i = 0, len = cs.length; i < len; i++) {
17053                 cs[i].expand(deep);
17054         }
17055     },
17056
17057     /**
17058      * Collapse all child nodes
17059      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
17060      */
17061     collapseChildNodes : function(deep){
17062         var cs = this.childNodes;
17063         for(var i = 0, len = cs.length; i < len; i++) {
17064                 cs[i].collapse(deep);
17065         }
17066     },
17067
17068     /**
17069      * Disables this node
17070      */
17071     disable : function(){
17072         this.disabled = true;
17073         this.unselect();
17074         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17075             this.ui.onDisableChange(this, true);
17076         }
17077         this.fireEvent("disabledchange", this, true);
17078     },
17079
17080     /**
17081      * Enables this node
17082      */
17083     enable : function(){
17084         this.disabled = false;
17085         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
17086             this.ui.onDisableChange(this, false);
17087         }
17088         this.fireEvent("disabledchange", this, false);
17089     },
17090
17091     // private
17092     renderChildren : function(suppressEvent){
17093         if(suppressEvent !== false){
17094             this.fireEvent("beforechildrenrendered", this);
17095         }
17096         var cs = this.childNodes;
17097         for(var i = 0, len = cs.length; i < len; i++){
17098             cs[i].render(true);
17099         }
17100         this.childrenRendered = true;
17101     },
17102
17103     // private
17104     sort : function(fn, scope){
17105         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
17106         if(this.childrenRendered){
17107             var cs = this.childNodes;
17108             for(var i = 0, len = cs.length; i < len; i++){
17109                 cs[i].render(true);
17110             }
17111         }
17112     },
17113
17114     // private
17115     render : function(bulkRender){
17116         this.ui.render(bulkRender);
17117         if(!this.rendered){
17118             this.rendered = true;
17119             if(this.expanded){
17120                 this.expanded = false;
17121                 this.expand(false, false);
17122             }
17123         }
17124     },
17125
17126     // private
17127     renderIndent : function(deep, refresh){
17128         if(refresh){
17129             this.ui.childIndent = null;
17130         }
17131         this.ui.renderIndent();
17132         if(deep === true && this.childrenRendered){
17133             var cs = this.childNodes;
17134             for(var i = 0, len = cs.length; i < len; i++){
17135                 cs[i].renderIndent(true, refresh);
17136             }
17137         }
17138     }
17139 });/*
17140  * Based on:
17141  * Ext JS Library 1.1.1
17142  * Copyright(c) 2006-2007, Ext JS, LLC.
17143  *
17144  * Originally Released Under LGPL - original licence link has changed is not relivant.
17145  *
17146  * Fork - LGPL
17147  * <script type="text/javascript">
17148  */
17149  
17150 /**
17151  * @class Roo.tree.AsyncTreeNode
17152  * @extends Roo.tree.TreeNode
17153  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
17154  * @constructor
17155  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
17156  */
17157  Roo.tree.AsyncTreeNode = function(config){
17158     this.loaded = false;
17159     this.loading = false;
17160     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
17161     /**
17162     * @event beforeload
17163     * Fires before this node is loaded, return false to cancel
17164     * @param {Node} this This node
17165     */
17166     this.addEvents({'beforeload':true, 'load': true});
17167     /**
17168     * @event load
17169     * Fires when this node is loaded
17170     * @param {Node} this This node
17171     */
17172     /**
17173      * The loader used by this node (defaults to using the tree's defined loader)
17174      * @type TreeLoader
17175      * @property loader
17176      */
17177 };
17178 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
17179     expand : function(deep, anim, callback){
17180         if(this.loading){ // if an async load is already running, waiting til it's done
17181             var timer;
17182             var f = function(){
17183                 if(!this.loading){ // done loading
17184                     clearInterval(timer);
17185                     this.expand(deep, anim, callback);
17186                 }
17187             }.createDelegate(this);
17188             timer = setInterval(f, 200);
17189             return;
17190         }
17191         if(!this.loaded){
17192             if(this.fireEvent("beforeload", this) === false){
17193                 return;
17194             }
17195             this.loading = true;
17196             this.ui.beforeLoad(this);
17197             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
17198             if(loader){
17199                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
17200                 return;
17201             }
17202         }
17203         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
17204     },
17205     
17206     /**
17207      * Returns true if this node is currently loading
17208      * @return {Boolean}
17209      */
17210     isLoading : function(){
17211         return this.loading;  
17212     },
17213     
17214     loadComplete : function(deep, anim, callback){
17215         this.loading = false;
17216         this.loaded = true;
17217         this.ui.afterLoad(this);
17218         this.fireEvent("load", this);
17219         this.expand(deep, anim, callback);
17220     },
17221     
17222     /**
17223      * Returns true if this node has been loaded
17224      * @return {Boolean}
17225      */
17226     isLoaded : function(){
17227         return this.loaded;
17228     },
17229     
17230     hasChildNodes : function(){
17231         if(!this.isLeaf() && !this.loaded){
17232             return true;
17233         }else{
17234             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
17235         }
17236     },
17237
17238     /**
17239      * Trigger a reload for this node
17240      * @param {Function} callback
17241      */
17242     reload : function(callback){
17243         this.collapse(false, false);
17244         while(this.firstChild){
17245             this.removeChild(this.firstChild);
17246         }
17247         this.childrenRendered = false;
17248         this.loaded = false;
17249         if(this.isHiddenRoot()){
17250             this.expanded = false;
17251         }
17252         this.expand(false, false, callback);
17253     }
17254 });/*
17255  * Based on:
17256  * Ext JS Library 1.1.1
17257  * Copyright(c) 2006-2007, Ext JS, LLC.
17258  *
17259  * Originally Released Under LGPL - original licence link has changed is not relivant.
17260  *
17261  * Fork - LGPL
17262  * <script type="text/javascript">
17263  */
17264  
17265 /**
17266  * @class Roo.tree.TreeNodeUI
17267  * @constructor
17268  * @param {Object} node The node to render
17269  * The TreeNode UI implementation is separate from the
17270  * tree implementation. Unless you are customizing the tree UI,
17271  * you should never have to use this directly.
17272  */
17273 Roo.tree.TreeNodeUI = function(node){
17274     this.node = node;
17275     this.rendered = false;
17276     this.animating = false;
17277     this.emptyIcon = Roo.BLANK_IMAGE_URL;
17278 };
17279
17280 Roo.tree.TreeNodeUI.prototype = {
17281     removeChild : function(node){
17282         if(this.rendered){
17283             this.ctNode.removeChild(node.ui.getEl());
17284         }
17285     },
17286
17287     beforeLoad : function(){
17288          this.addClass("x-tree-node-loading");
17289     },
17290
17291     afterLoad : function(){
17292          this.removeClass("x-tree-node-loading");
17293     },
17294
17295     onTextChange : function(node, text, oldText){
17296         if(this.rendered){
17297             this.textNode.innerHTML = text;
17298         }
17299     },
17300
17301     onDisableChange : function(node, state){
17302         this.disabled = state;
17303         if(state){
17304             this.addClass("x-tree-node-disabled");
17305         }else{
17306             this.removeClass("x-tree-node-disabled");
17307         }
17308     },
17309
17310     onSelectedChange : function(state){
17311         if(state){
17312             this.focus();
17313             this.addClass("x-tree-selected");
17314         }else{
17315             //this.blur();
17316             this.removeClass("x-tree-selected");
17317         }
17318     },
17319
17320     onMove : function(tree, node, oldParent, newParent, index, refNode){
17321         this.childIndent = null;
17322         if(this.rendered){
17323             var targetNode = newParent.ui.getContainer();
17324             if(!targetNode){//target not rendered
17325                 this.holder = document.createElement("div");
17326                 this.holder.appendChild(this.wrap);
17327                 return;
17328             }
17329             var insertBefore = refNode ? refNode.ui.getEl() : null;
17330             if(insertBefore){
17331                 targetNode.insertBefore(this.wrap, insertBefore);
17332             }else{
17333                 targetNode.appendChild(this.wrap);
17334             }
17335             this.node.renderIndent(true);
17336         }
17337     },
17338
17339     addClass : function(cls){
17340         if(this.elNode){
17341             Roo.fly(this.elNode).addClass(cls);
17342         }
17343     },
17344
17345     removeClass : function(cls){
17346         if(this.elNode){
17347             Roo.fly(this.elNode).removeClass(cls);
17348         }
17349     },
17350
17351     remove : function(){
17352         if(this.rendered){
17353             this.holder = document.createElement("div");
17354             this.holder.appendChild(this.wrap);
17355         }
17356     },
17357
17358     fireEvent : function(){
17359         return this.node.fireEvent.apply(this.node, arguments);
17360     },
17361
17362     initEvents : function(){
17363         this.node.on("move", this.onMove, this);
17364         var E = Roo.EventManager;
17365         var a = this.anchor;
17366
17367         var el = Roo.fly(a, '_treeui');
17368
17369         if(Roo.isOpera){ // opera render bug ignores the CSS
17370             el.setStyle("text-decoration", "none");
17371         }
17372
17373         el.on("click", this.onClick, this);
17374         el.on("dblclick", this.onDblClick, this);
17375
17376         if(this.checkbox){
17377             Roo.EventManager.on(this.checkbox,
17378                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
17379         }
17380
17381         el.on("contextmenu", this.onContextMenu, this);
17382
17383         var icon = Roo.fly(this.iconNode);
17384         icon.on("click", this.onClick, this);
17385         icon.on("dblclick", this.onDblClick, this);
17386         icon.on("contextmenu", this.onContextMenu, this);
17387         E.on(this.ecNode, "click", this.ecClick, this, true);
17388
17389         if(this.node.disabled){
17390             this.addClass("x-tree-node-disabled");
17391         }
17392         if(this.node.hidden){
17393             this.addClass("x-tree-node-disabled");
17394         }
17395         var ot = this.node.getOwnerTree();
17396         var dd = ot.enableDD || ot.enableDrag || ot.enableDrop;
17397         if(dd && (!this.node.isRoot || ot.rootVisible)){
17398             Roo.dd.Registry.register(this.elNode, {
17399                 node: this.node,
17400                 handles: this.getDDHandles(),
17401                 isHandle: false
17402             });
17403         }
17404     },
17405
17406     getDDHandles : function(){
17407         return [this.iconNode, this.textNode];
17408     },
17409
17410     hide : function(){
17411         if(this.rendered){
17412             this.wrap.style.display = "none";
17413         }
17414     },
17415
17416     show : function(){
17417         if(this.rendered){
17418             this.wrap.style.display = "";
17419         }
17420     },
17421
17422     onContextMenu : function(e){
17423         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
17424             e.preventDefault();
17425             this.focus();
17426             this.fireEvent("contextmenu", this.node, e);
17427         }
17428     },
17429
17430     onClick : function(e){
17431         if(this.dropping){
17432             e.stopEvent();
17433             return;
17434         }
17435         if(this.fireEvent("beforeclick", this.node, e) !== false){
17436             if(!this.disabled && this.node.attributes.href){
17437                 this.fireEvent("click", this.node, e);
17438                 return;
17439             }
17440             e.preventDefault();
17441             if(this.disabled){
17442                 return;
17443             }
17444
17445             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
17446                 this.node.toggle();
17447             }
17448
17449             this.fireEvent("click", this.node, e);
17450         }else{
17451             e.stopEvent();
17452         }
17453     },
17454
17455     onDblClick : function(e){
17456         e.preventDefault();
17457         if(this.disabled){
17458             return;
17459         }
17460         if(this.checkbox){
17461             this.toggleCheck();
17462         }
17463         if(!this.animating && this.node.hasChildNodes()){
17464             this.node.toggle();
17465         }
17466         this.fireEvent("dblclick", this.node, e);
17467     },
17468
17469     onCheckChange : function(){
17470         var checked = this.checkbox.checked;
17471         this.node.attributes.checked = checked;
17472         this.fireEvent('checkchange', this.node, checked);
17473     },
17474
17475     ecClick : function(e){
17476         if(!this.animating && this.node.hasChildNodes()){
17477             this.node.toggle();
17478         }
17479     },
17480
17481     startDrop : function(){
17482         this.dropping = true;
17483     },
17484
17485     // delayed drop so the click event doesn't get fired on a drop
17486     endDrop : function(){
17487        setTimeout(function(){
17488            this.dropping = false;
17489        }.createDelegate(this), 50);
17490     },
17491
17492     expand : function(){
17493         this.updateExpandIcon();
17494         this.ctNode.style.display = "";
17495     },
17496
17497     focus : function(){
17498         if(!this.node.preventHScroll){
17499             try{this.anchor.focus();
17500             }catch(e){}
17501         }else if(!Roo.isIE){
17502             try{
17503                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
17504                 var l = noscroll.scrollLeft;
17505                 this.anchor.focus();
17506                 noscroll.scrollLeft = l;
17507             }catch(e){}
17508         }
17509     },
17510
17511     toggleCheck : function(value){
17512         var cb = this.checkbox;
17513         if(cb){
17514             cb.checked = (value === undefined ? !cb.checked : value);
17515         }
17516     },
17517
17518     blur : function(){
17519         try{
17520             this.anchor.blur();
17521         }catch(e){}
17522     },
17523
17524     animExpand : function(callback){
17525         var ct = Roo.get(this.ctNode);
17526         ct.stopFx();
17527         if(!this.node.hasChildNodes()){
17528             this.updateExpandIcon();
17529             this.ctNode.style.display = "";
17530             Roo.callback(callback);
17531             return;
17532         }
17533         this.animating = true;
17534         this.updateExpandIcon();
17535
17536         ct.slideIn('t', {
17537            callback : function(){
17538                this.animating = false;
17539                Roo.callback(callback);
17540             },
17541             scope: this,
17542             duration: this.node.ownerTree.duration || .25
17543         });
17544     },
17545
17546     highlight : function(){
17547         var tree = this.node.getOwnerTree();
17548         Roo.fly(this.wrap).highlight(
17549             tree.hlColor || "C3DAF9",
17550             {endColor: tree.hlBaseColor}
17551         );
17552     },
17553
17554     collapse : function(){
17555         this.updateExpandIcon();
17556         this.ctNode.style.display = "none";
17557     },
17558
17559     animCollapse : function(callback){
17560         var ct = Roo.get(this.ctNode);
17561         ct.enableDisplayMode('block');
17562         ct.stopFx();
17563
17564         this.animating = true;
17565         this.updateExpandIcon();
17566
17567         ct.slideOut('t', {
17568             callback : function(){
17569                this.animating = false;
17570                Roo.callback(callback);
17571             },
17572             scope: this,
17573             duration: this.node.ownerTree.duration || .25
17574         });
17575     },
17576
17577     getContainer : function(){
17578         return this.ctNode;
17579     },
17580
17581     getEl : function(){
17582         return this.wrap;
17583     },
17584
17585     appendDDGhost : function(ghostNode){
17586         ghostNode.appendChild(this.elNode.cloneNode(true));
17587     },
17588
17589     getDDRepairXY : function(){
17590         return Roo.lib.Dom.getXY(this.iconNode);
17591     },
17592
17593     onRender : function(){
17594         this.render();
17595     },
17596
17597     render : function(bulkRender){
17598         var n = this.node, a = n.attributes;
17599         var targetNode = n.parentNode ?
17600               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
17601
17602         if(!this.rendered){
17603             this.rendered = true;
17604
17605             this.renderElements(n, a, targetNode, bulkRender);
17606
17607             if(a.qtip){
17608                if(this.textNode.setAttributeNS){
17609                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
17610                    if(a.qtipTitle){
17611                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
17612                    }
17613                }else{
17614                    this.textNode.setAttribute("ext:qtip", a.qtip);
17615                    if(a.qtipTitle){
17616                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
17617                    }
17618                }
17619             }else if(a.qtipCfg){
17620                 a.qtipCfg.target = Roo.id(this.textNode);
17621                 Roo.QuickTips.register(a.qtipCfg);
17622             }
17623             this.initEvents();
17624             if(!this.node.expanded){
17625                 this.updateExpandIcon();
17626             }
17627         }else{
17628             if(bulkRender === true) {
17629                 targetNode.appendChild(this.wrap);
17630             }
17631         }
17632     },
17633
17634     renderElements : function(n, a, targetNode, bulkRender)
17635     {
17636         // add some indent caching, this helps performance when rendering a large tree
17637         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
17638         var t = n.getOwnerTree();
17639         var txt = t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
17640         if (typeof(n.attributes.html) != 'undefined') {
17641             txt = n.attributes.html;
17642         }
17643         var tip = t.rendererTip ? t.rendererTip(n.attributes) : txt;
17644         var cb = typeof a.checked == 'boolean';
17645         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
17646         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
17647             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
17648             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
17649             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
17650             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
17651             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
17652              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
17653                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
17654             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
17655             "</li>"];
17656
17657         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
17658             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
17659                                 n.nextSibling.ui.getEl(), buf.join(""));
17660         }else{
17661             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
17662         }
17663
17664         this.elNode = this.wrap.childNodes[0];
17665         this.ctNode = this.wrap.childNodes[1];
17666         var cs = this.elNode.childNodes;
17667         this.indentNode = cs[0];
17668         this.ecNode = cs[1];
17669         this.iconNode = cs[2];
17670         var index = 3;
17671         if(cb){
17672             this.checkbox = cs[3];
17673             index++;
17674         }
17675         this.anchor = cs[index];
17676         this.textNode = cs[index].firstChild;
17677     },
17678
17679     getAnchor : function(){
17680         return this.anchor;
17681     },
17682
17683     getTextEl : function(){
17684         return this.textNode;
17685     },
17686
17687     getIconEl : function(){
17688         return this.iconNode;
17689     },
17690
17691     isChecked : function(){
17692         return this.checkbox ? this.checkbox.checked : false;
17693     },
17694
17695     updateExpandIcon : function(){
17696         if(this.rendered){
17697             var n = this.node, c1, c2;
17698             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
17699             var hasChild = n.hasChildNodes();
17700             if(hasChild){
17701                 if(n.expanded){
17702                     cls += "-minus";
17703                     c1 = "x-tree-node-collapsed";
17704                     c2 = "x-tree-node-expanded";
17705                 }else{
17706                     cls += "-plus";
17707                     c1 = "x-tree-node-expanded";
17708                     c2 = "x-tree-node-collapsed";
17709                 }
17710                 if(this.wasLeaf){
17711                     this.removeClass("x-tree-node-leaf");
17712                     this.wasLeaf = false;
17713                 }
17714                 if(this.c1 != c1 || this.c2 != c2){
17715                     Roo.fly(this.elNode).replaceClass(c1, c2);
17716                     this.c1 = c1; this.c2 = c2;
17717                 }
17718             }else{
17719                 // this changes non-leafs into leafs if they have no children.
17720                 // it's not very rational behaviour..
17721                 
17722                 if(!this.wasLeaf && this.node.leaf){
17723                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
17724                     delete this.c1;
17725                     delete this.c2;
17726                     this.wasLeaf = true;
17727                 }
17728             }
17729             var ecc = "x-tree-ec-icon "+cls;
17730             if(this.ecc != ecc){
17731                 this.ecNode.className = ecc;
17732                 this.ecc = ecc;
17733             }
17734         }
17735     },
17736
17737     getChildIndent : function(){
17738         if(!this.childIndent){
17739             var buf = [];
17740             var p = this.node;
17741             while(p){
17742                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
17743                     if(!p.isLast()) {
17744                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
17745                     } else {
17746                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
17747                     }
17748                 }
17749                 p = p.parentNode;
17750             }
17751             this.childIndent = buf.join("");
17752         }
17753         return this.childIndent;
17754     },
17755
17756     renderIndent : function(){
17757         if(this.rendered){
17758             var indent = "";
17759             var p = this.node.parentNode;
17760             if(p){
17761                 indent = p.ui.getChildIndent();
17762             }
17763             if(this.indentMarkup != indent){ // don't rerender if not required
17764                 this.indentNode.innerHTML = indent;
17765                 this.indentMarkup = indent;
17766             }
17767             this.updateExpandIcon();
17768         }
17769     }
17770 };
17771
17772 Roo.tree.RootTreeNodeUI = function(){
17773     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
17774 };
17775 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
17776     render : function(){
17777         if(!this.rendered){
17778             var targetNode = this.node.ownerTree.innerCt.dom;
17779             this.node.expanded = true;
17780             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
17781             this.wrap = this.ctNode = targetNode.firstChild;
17782         }
17783     },
17784     collapse : function(){
17785     },
17786     expand : function(){
17787     }
17788 });/*
17789  * Based on:
17790  * Ext JS Library 1.1.1
17791  * Copyright(c) 2006-2007, Ext JS, LLC.
17792  *
17793  * Originally Released Under LGPL - original licence link has changed is not relivant.
17794  *
17795  * Fork - LGPL
17796  * <script type="text/javascript">
17797  */
17798 /**
17799  * @class Roo.tree.TreeLoader
17800  * @extends Roo.util.Observable
17801  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
17802  * nodes from a specified URL. The response must be a javascript Array definition
17803  * who's elements are node definition objects. eg:
17804  * <pre><code>
17805 {  success : true,
17806    data :      [
17807    
17808     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
17809     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
17810     ]
17811 }
17812
17813
17814 </code></pre>
17815  * <br><br>
17816  * The old style respose with just an array is still supported, but not recommended.
17817  * <br><br>
17818  *
17819  * A server request is sent, and child nodes are loaded only when a node is expanded.
17820  * The loading node's id is passed to the server under the parameter name "node" to
17821  * enable the server to produce the correct child nodes.
17822  * <br><br>
17823  * To pass extra parameters, an event handler may be attached to the "beforeload"
17824  * event, and the parameters specified in the TreeLoader's baseParams property:
17825  * <pre><code>
17826     myTreeLoader.on("beforeload", function(treeLoader, node) {
17827         this.baseParams.category = node.attributes.category;
17828     }, this);
17829 </code></pre><
17830  * This would pass an HTTP parameter called "category" to the server containing
17831  * the value of the Node's "category" attribute.
17832  * @constructor
17833  * Creates a new Treeloader.
17834  * @param {Object} config A config object containing config properties.
17835  */
17836 Roo.tree.TreeLoader = function(config){
17837     this.baseParams = {};
17838     this.requestMethod = "POST";
17839     Roo.apply(this, config);
17840
17841     this.addEvents({
17842     
17843         /**
17844          * @event beforeload
17845          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
17846          * @param {Object} This TreeLoader object.
17847          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17848          * @param {Object} callback The callback function specified in the {@link #load} call.
17849          */
17850         beforeload : true,
17851         /**
17852          * @event load
17853          * Fires when the node has been successfuly loaded.
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         load : true,
17859         /**
17860          * @event loadexception
17861          * Fires if the network request failed.
17862          * @param {Object} This TreeLoader object.
17863          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
17864          * @param {Object} response The response object containing the data from the server.
17865          */
17866         loadexception : true,
17867         /**
17868          * @event create
17869          * Fires before a node is created, enabling you to return custom Node types 
17870          * @param {Object} This TreeLoader object.
17871          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
17872          */
17873         create : true
17874     });
17875
17876     Roo.tree.TreeLoader.superclass.constructor.call(this);
17877 };
17878
17879 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
17880     /**
17881     * @cfg {String} dataUrl The URL from which to request a Json string which
17882     * specifies an array of node definition object representing the child nodes
17883     * to be loaded.
17884     */
17885     /**
17886     * @cfg {String} requestMethod either GET or POST
17887     * defaults to POST (due to BC)
17888     * to be loaded.
17889     */
17890     /**
17891     * @cfg {Object} baseParams (optional) An object containing properties which
17892     * specify HTTP parameters to be passed to each request for child nodes.
17893     */
17894     /**
17895     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
17896     * created by this loader. If the attributes sent by the server have an attribute in this object,
17897     * they take priority.
17898     */
17899     /**
17900     * @cfg {Object} uiProviders (optional) An object containing properties which
17901     * 
17902     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
17903     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
17904     * <i>uiProvider</i> attribute of a returned child node is a string rather
17905     * than a reference to a TreeNodeUI implementation, this that string value
17906     * is used as a property name in the uiProviders object. You can define the provider named
17907     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
17908     */
17909     uiProviders : {},
17910
17911     /**
17912     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
17913     * child nodes before loading.
17914     */
17915     clearOnLoad : true,
17916
17917     /**
17918     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
17919     * property on loading, rather than expecting an array. (eg. more compatible to a standard
17920     * Grid query { data : [ .....] }
17921     */
17922     
17923     root : false,
17924      /**
17925     * @cfg {String} queryParam (optional) 
17926     * Name of the query as it will be passed on the querystring (defaults to 'node')
17927     * eg. the request will be ?node=[id]
17928     */
17929     
17930     
17931     queryParam: false,
17932     
17933     /**
17934      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
17935      * This is called automatically when a node is expanded, but may be used to reload
17936      * a node (or append new children if the {@link #clearOnLoad} option is false.)
17937      * @param {Roo.tree.TreeNode} node
17938      * @param {Function} callback
17939      */
17940     load : function(node, callback){
17941         if(this.clearOnLoad){
17942             while(node.firstChild){
17943                 node.removeChild(node.firstChild);
17944             }
17945         }
17946         if(node.attributes.children){ // preloaded json children
17947             var cs = node.attributes.children;
17948             for(var i = 0, len = cs.length; i < len; i++){
17949                 node.appendChild(this.createNode(cs[i]));
17950             }
17951             if(typeof callback == "function"){
17952                 callback();
17953             }
17954         }else if(this.dataUrl){
17955             this.requestData(node, callback);
17956         }
17957     },
17958
17959     getParams: function(node){
17960         var buf = [], bp = this.baseParams;
17961         for(var key in bp){
17962             if(typeof bp[key] != "function"){
17963                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
17964             }
17965         }
17966         var n = this.queryParam === false ? 'node' : this.queryParam;
17967         buf.push(n + "=", encodeURIComponent(node.id));
17968         return buf.join("");
17969     },
17970
17971     requestData : function(node, callback){
17972         if(this.fireEvent("beforeload", this, node, callback) !== false){
17973             this.transId = Roo.Ajax.request({
17974                 method:this.requestMethod,
17975                 url: this.dataUrl||this.url,
17976                 success: this.handleResponse,
17977                 failure: this.handleFailure,
17978                 scope: this,
17979                 argument: {callback: callback, node: node},
17980                 params: this.getParams(node)
17981             });
17982         }else{
17983             // if the load is cancelled, make sure we notify
17984             // the node that we are done
17985             if(typeof callback == "function"){
17986                 callback();
17987             }
17988         }
17989     },
17990
17991     isLoading : function(){
17992         return this.transId ? true : false;
17993     },
17994
17995     abort : function(){
17996         if(this.isLoading()){
17997             Roo.Ajax.abort(this.transId);
17998         }
17999     },
18000
18001     // private
18002     createNode : function(attr)
18003     {
18004         // apply baseAttrs, nice idea Corey!
18005         if(this.baseAttrs){
18006             Roo.applyIf(attr, this.baseAttrs);
18007         }
18008         if(this.applyLoader !== false){
18009             attr.loader = this;
18010         }
18011         // uiProvider = depreciated..
18012         
18013         if(typeof(attr.uiProvider) == 'string'){
18014            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
18015                 /**  eval:var:attr */ eval(attr.uiProvider);
18016         }
18017         if(typeof(this.uiProviders['default']) != 'undefined') {
18018             attr.uiProvider = this.uiProviders['default'];
18019         }
18020         
18021         this.fireEvent('create', this, attr);
18022         
18023         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
18024         return(attr.leaf ?
18025                         new Roo.tree.TreeNode(attr) :
18026                         new Roo.tree.AsyncTreeNode(attr));
18027     },
18028
18029     processResponse : function(response, node, callback)
18030     {
18031         var json = response.responseText;
18032         try {
18033             
18034             var o = Roo.decode(json);
18035             
18036             if (this.root === false && typeof(o.success) != undefined) {
18037                 this.root = 'data'; // the default behaviour for list like data..
18038                 }
18039                 
18040             if (this.root !== false &&  !o.success) {
18041                 // it's a failure condition.
18042                 var a = response.argument;
18043                 this.fireEvent("loadexception", this, a.node, response);
18044                 Roo.log("Load failed - should have a handler really");
18045                 return;
18046             }
18047             
18048             
18049             
18050             if (this.root !== false) {
18051                  o = o[this.root];
18052             }
18053             
18054             for(var i = 0, len = o.length; i < len; i++){
18055                 var n = this.createNode(o[i]);
18056                 if(n){
18057                     node.appendChild(n);
18058                 }
18059             }
18060             if(typeof callback == "function"){
18061                 callback(this, node);
18062             }
18063         }catch(e){
18064             this.handleFailure(response);
18065         }
18066     },
18067
18068     handleResponse : function(response){
18069         this.transId = false;
18070         var a = response.argument;
18071         this.processResponse(response, a.node, a.callback);
18072         this.fireEvent("load", this, a.node, response);
18073     },
18074
18075     handleFailure : function(response)
18076     {
18077         // should handle failure better..
18078         this.transId = false;
18079         var a = response.argument;
18080         this.fireEvent("loadexception", this, a.node, response);
18081         if(typeof a.callback == "function"){
18082             a.callback(this, a.node);
18083         }
18084     }
18085 });/*
18086  * Based on:
18087  * Ext JS Library 1.1.1
18088  * Copyright(c) 2006-2007, Ext JS, LLC.
18089  *
18090  * Originally Released Under LGPL - original licence link has changed is not relivant.
18091  *
18092  * Fork - LGPL
18093  * <script type="text/javascript">
18094  */
18095
18096 /**
18097 * @class Roo.tree.TreeFilter
18098 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
18099 * @param {TreePanel} tree
18100 * @param {Object} config (optional)
18101  */
18102 Roo.tree.TreeFilter = function(tree, config){
18103     this.tree = tree;
18104     this.filtered = {};
18105     Roo.apply(this, config);
18106 };
18107
18108 Roo.tree.TreeFilter.prototype = {
18109     clearBlank:false,
18110     reverse:false,
18111     autoClear:false,
18112     remove:false,
18113
18114      /**
18115      * Filter the data by a specific attribute.
18116      * @param {String/RegExp} value Either string that the attribute value
18117      * should start with or a RegExp to test against the attribute
18118      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
18119      * @param {TreeNode} startNode (optional) The node to start the filter at.
18120      */
18121     filter : function(value, attr, startNode){
18122         attr = attr || "text";
18123         var f;
18124         if(typeof value == "string"){
18125             var vlen = value.length;
18126             // auto clear empty filter
18127             if(vlen == 0 && this.clearBlank){
18128                 this.clear();
18129                 return;
18130             }
18131             value = value.toLowerCase();
18132             f = function(n){
18133                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
18134             };
18135         }else if(value.exec){ // regex?
18136             f = function(n){
18137                 return value.test(n.attributes[attr]);
18138             };
18139         }else{
18140             throw 'Illegal filter type, must be string or regex';
18141         }
18142         this.filterBy(f, null, startNode);
18143         },
18144
18145     /**
18146      * Filter by a function. The passed function will be called with each
18147      * node in the tree (or from the startNode). If the function returns true, the node is kept
18148      * otherwise it is filtered. If a node is filtered, its children are also filtered.
18149      * @param {Function} fn The filter function
18150      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
18151      */
18152     filterBy : function(fn, scope, startNode){
18153         startNode = startNode || this.tree.root;
18154         if(this.autoClear){
18155             this.clear();
18156         }
18157         var af = this.filtered, rv = this.reverse;
18158         var f = function(n){
18159             if(n == startNode){
18160                 return true;
18161             }
18162             if(af[n.id]){
18163                 return false;
18164             }
18165             var m = fn.call(scope || n, n);
18166             if(!m || rv){
18167                 af[n.id] = n;
18168                 n.ui.hide();
18169                 return false;
18170             }
18171             return true;
18172         };
18173         startNode.cascade(f);
18174         if(this.remove){
18175            for(var id in af){
18176                if(typeof id != "function"){
18177                    var n = af[id];
18178                    if(n && n.parentNode){
18179                        n.parentNode.removeChild(n);
18180                    }
18181                }
18182            }
18183         }
18184     },
18185
18186     /**
18187      * Clears the current filter. Note: with the "remove" option
18188      * set a filter cannot be cleared.
18189      */
18190     clear : function(){
18191         var t = this.tree;
18192         var af = this.filtered;
18193         for(var id in af){
18194             if(typeof id != "function"){
18195                 var n = af[id];
18196                 if(n){
18197                     n.ui.show();
18198                 }
18199             }
18200         }
18201         this.filtered = {};
18202     }
18203 };
18204 /*
18205  * Based on:
18206  * Ext JS Library 1.1.1
18207  * Copyright(c) 2006-2007, Ext JS, LLC.
18208  *
18209  * Originally Released Under LGPL - original licence link has changed is not relivant.
18210  *
18211  * Fork - LGPL
18212  * <script type="text/javascript">
18213  */
18214  
18215
18216 /**
18217  * @class Roo.tree.TreeSorter
18218  * Provides sorting of nodes in a TreePanel
18219  * 
18220  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
18221  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
18222  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
18223  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
18224  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
18225  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
18226  * @constructor
18227  * @param {TreePanel} tree
18228  * @param {Object} config
18229  */
18230 Roo.tree.TreeSorter = function(tree, config){
18231     Roo.apply(this, config);
18232     tree.on("beforechildrenrendered", this.doSort, this);
18233     tree.on("append", this.updateSort, this);
18234     tree.on("insert", this.updateSort, this);
18235     
18236     var dsc = this.dir && this.dir.toLowerCase() == "desc";
18237     var p = this.property || "text";
18238     var sortType = this.sortType;
18239     var fs = this.folderSort;
18240     var cs = this.caseSensitive === true;
18241     var leafAttr = this.leafAttr || 'leaf';
18242
18243     this.sortFn = function(n1, n2){
18244         if(fs){
18245             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
18246                 return 1;
18247             }
18248             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
18249                 return -1;
18250             }
18251         }
18252         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
18253         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
18254         if(v1 < v2){
18255                         return dsc ? +1 : -1;
18256                 }else if(v1 > v2){
18257                         return dsc ? -1 : +1;
18258         }else{
18259                 return 0;
18260         }
18261     };
18262 };
18263
18264 Roo.tree.TreeSorter.prototype = {
18265     doSort : function(node){
18266         node.sort(this.sortFn);
18267     },
18268     
18269     compareNodes : function(n1, n2){
18270         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
18271     },
18272     
18273     updateSort : function(tree, node){
18274         if(node.childrenRendered){
18275             this.doSort.defer(1, this, [node]);
18276         }
18277     }
18278 };/*
18279  * Based on:
18280  * Ext JS Library 1.1.1
18281  * Copyright(c) 2006-2007, Ext JS, LLC.
18282  *
18283  * Originally Released Under LGPL - original licence link has changed is not relivant.
18284  *
18285  * Fork - LGPL
18286  * <script type="text/javascript">
18287  */
18288
18289 if(Roo.dd.DropZone){
18290     
18291 Roo.tree.TreeDropZone = function(tree, config){
18292     this.allowParentInsert = false;
18293     this.allowContainerDrop = false;
18294     this.appendOnly = false;
18295     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
18296     this.tree = tree;
18297     this.lastInsertClass = "x-tree-no-status";
18298     this.dragOverData = {};
18299 };
18300
18301 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
18302     ddGroup : "TreeDD",
18303     scroll:  true,
18304     
18305     expandDelay : 1000,
18306     
18307     expandNode : function(node){
18308         if(node.hasChildNodes() && !node.isExpanded()){
18309             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
18310         }
18311     },
18312     
18313     queueExpand : function(node){
18314         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
18315     },
18316     
18317     cancelExpand : function(){
18318         if(this.expandProcId){
18319             clearTimeout(this.expandProcId);
18320             this.expandProcId = false;
18321         }
18322     },
18323     
18324     isValidDropPoint : function(n, pt, dd, e, data){
18325         if(!n || !data){ return false; }
18326         var targetNode = n.node;
18327         var dropNode = data.node;
18328         // default drop rules
18329         if(!(targetNode && targetNode.isTarget && pt)){
18330             return false;
18331         }
18332         if(pt == "append" && targetNode.allowChildren === false){
18333             return false;
18334         }
18335         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
18336             return false;
18337         }
18338         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
18339             return false;
18340         }
18341         // reuse the object
18342         var overEvent = this.dragOverData;
18343         overEvent.tree = this.tree;
18344         overEvent.target = targetNode;
18345         overEvent.data = data;
18346         overEvent.point = pt;
18347         overEvent.source = dd;
18348         overEvent.rawEvent = e;
18349         overEvent.dropNode = dropNode;
18350         overEvent.cancel = false;  
18351         var result = this.tree.fireEvent("nodedragover", overEvent);
18352         return overEvent.cancel === false && result !== false;
18353     },
18354     
18355     getDropPoint : function(e, n, dd)
18356     {
18357         var tn = n.node;
18358         if(tn.isRoot){
18359             return tn.allowChildren !== false ? "append" : false; // always append for root
18360         }
18361         var dragEl = n.ddel;
18362         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
18363         var y = Roo.lib.Event.getPageY(e);
18364         //var noAppend = tn.allowChildren === false || tn.isLeaf();
18365         
18366         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
18367         var noAppend = tn.allowChildren === false;
18368         if(this.appendOnly || tn.parentNode.allowChildren === false){
18369             return noAppend ? false : "append";
18370         }
18371         var noBelow = false;
18372         if(!this.allowParentInsert){
18373             noBelow = tn.hasChildNodes() && tn.isExpanded();
18374         }
18375         var q = (b - t) / (noAppend ? 2 : 3);
18376         if(y >= t && y < (t + q)){
18377             return "above";
18378         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
18379             return "below";
18380         }else{
18381             return "append";
18382         }
18383     },
18384     
18385     onNodeEnter : function(n, dd, e, data)
18386     {
18387         this.cancelExpand();
18388     },
18389     
18390     onNodeOver : function(n, dd, e, data)
18391     {
18392        
18393         var pt = this.getDropPoint(e, n, dd);
18394         var node = n.node;
18395         
18396         // auto node expand check
18397         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
18398             this.queueExpand(node);
18399         }else if(pt != "append"){
18400             this.cancelExpand();
18401         }
18402         
18403         // set the insert point style on the target node
18404         var returnCls = this.dropNotAllowed;
18405         if(this.isValidDropPoint(n, pt, dd, e, data)){
18406            if(pt){
18407                var el = n.ddel;
18408                var cls;
18409                if(pt == "above"){
18410                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
18411                    cls = "x-tree-drag-insert-above";
18412                }else if(pt == "below"){
18413                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
18414                    cls = "x-tree-drag-insert-below";
18415                }else{
18416                    returnCls = "x-tree-drop-ok-append";
18417                    cls = "x-tree-drag-append";
18418                }
18419                if(this.lastInsertClass != cls){
18420                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
18421                    this.lastInsertClass = cls;
18422                }
18423            }
18424        }
18425        return returnCls;
18426     },
18427     
18428     onNodeOut : function(n, dd, e, data){
18429         
18430         this.cancelExpand();
18431         this.removeDropIndicators(n);
18432     },
18433     
18434     onNodeDrop : function(n, dd, e, data){
18435         var point = this.getDropPoint(e, n, dd);
18436         var targetNode = n.node;
18437         targetNode.ui.startDrop();
18438         if(!this.isValidDropPoint(n, point, dd, e, data)){
18439             targetNode.ui.endDrop();
18440             return false;
18441         }
18442         // first try to find the drop node
18443         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
18444         var dropEvent = {
18445             tree : this.tree,
18446             target: targetNode,
18447             data: data,
18448             point: point,
18449             source: dd,
18450             rawEvent: e,
18451             dropNode: dropNode,
18452             cancel: !dropNode   
18453         };
18454         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
18455         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
18456             targetNode.ui.endDrop();
18457             return false;
18458         }
18459         // allow target changing
18460         targetNode = dropEvent.target;
18461         if(point == "append" && !targetNode.isExpanded()){
18462             targetNode.expand(false, null, function(){
18463                 this.completeDrop(dropEvent);
18464             }.createDelegate(this));
18465         }else{
18466             this.completeDrop(dropEvent);
18467         }
18468         return true;
18469     },
18470     
18471     completeDrop : function(de){
18472         var ns = de.dropNode, p = de.point, t = de.target;
18473         if(!(ns instanceof Array)){
18474             ns = [ns];
18475         }
18476         var n;
18477         for(var i = 0, len = ns.length; i < len; i++){
18478             n = ns[i];
18479             if(p == "above"){
18480                 t.parentNode.insertBefore(n, t);
18481             }else if(p == "below"){
18482                 t.parentNode.insertBefore(n, t.nextSibling);
18483             }else{
18484                 t.appendChild(n);
18485             }
18486         }
18487         n.ui.focus();
18488         if(this.tree.hlDrop){
18489             n.ui.highlight();
18490         }
18491         t.ui.endDrop();
18492         this.tree.fireEvent("nodedrop", de);
18493     },
18494     
18495     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
18496         if(this.tree.hlDrop){
18497             dropNode.ui.focus();
18498             dropNode.ui.highlight();
18499         }
18500         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
18501     },
18502     
18503     getTree : function(){
18504         return this.tree;
18505     },
18506     
18507     removeDropIndicators : function(n){
18508         if(n && n.ddel){
18509             var el = n.ddel;
18510             Roo.fly(el).removeClass([
18511                     "x-tree-drag-insert-above",
18512                     "x-tree-drag-insert-below",
18513                     "x-tree-drag-append"]);
18514             this.lastInsertClass = "_noclass";
18515         }
18516     },
18517     
18518     beforeDragDrop : function(target, e, id){
18519         this.cancelExpand();
18520         return true;
18521     },
18522     
18523     afterRepair : function(data){
18524         if(data && Roo.enableFx){
18525             data.node.ui.highlight();
18526         }
18527         this.hideProxy();
18528     } 
18529     
18530 });
18531
18532 }
18533 /*
18534  * Based on:
18535  * Ext JS Library 1.1.1
18536  * Copyright(c) 2006-2007, Ext JS, LLC.
18537  *
18538  * Originally Released Under LGPL - original licence link has changed is not relivant.
18539  *
18540  * Fork - LGPL
18541  * <script type="text/javascript">
18542  */
18543  
18544
18545 if(Roo.dd.DragZone){
18546 Roo.tree.TreeDragZone = function(tree, config){
18547     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
18548     this.tree = tree;
18549 };
18550
18551 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
18552     ddGroup : "TreeDD",
18553    
18554     onBeforeDrag : function(data, e){
18555         var n = data.node;
18556         return n && n.draggable && !n.disabled;
18557     },
18558      
18559     
18560     onInitDrag : function(e){
18561         var data = this.dragData;
18562         this.tree.getSelectionModel().select(data.node);
18563         this.proxy.update("");
18564         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
18565         this.tree.fireEvent("startdrag", this.tree, data.node, e);
18566     },
18567     
18568     getRepairXY : function(e, data){
18569         return data.node.ui.getDDRepairXY();
18570     },
18571     
18572     onEndDrag : function(data, e){
18573         this.tree.fireEvent("enddrag", this.tree, data.node, e);
18574         
18575         
18576     },
18577     
18578     onValidDrop : function(dd, e, id){
18579         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
18580         this.hideProxy();
18581     },
18582     
18583     beforeInvalidDrop : function(e, id){
18584         // this scrolls the original position back into view
18585         var sm = this.tree.getSelectionModel();
18586         sm.clearSelections();
18587         sm.select(this.dragData.node);
18588     }
18589 });
18590 }/*
18591  * Based on:
18592  * Ext JS Library 1.1.1
18593  * Copyright(c) 2006-2007, Ext JS, LLC.
18594  *
18595  * Originally Released Under LGPL - original licence link has changed is not relivant.
18596  *
18597  * Fork - LGPL
18598  * <script type="text/javascript">
18599  */
18600 /**
18601  * @class Roo.tree.TreeEditor
18602  * @extends Roo.Editor
18603  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
18604  * as the editor field.
18605  * @constructor
18606  * @param {Object} config (used to be the tree panel.)
18607  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
18608  * 
18609  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
18610  * @cfg {Roo.form.TextField|Object} field The field configuration
18611  *
18612  * 
18613  */
18614 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
18615     var tree = config;
18616     var field;
18617     if (oldconfig) { // old style..
18618         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
18619     } else {
18620         // new style..
18621         tree = config.tree;
18622         config.field = config.field  || {};
18623         config.field.xtype = 'TextField';
18624         field = Roo.factory(config.field, Roo.form);
18625     }
18626     config = config || {};
18627     
18628     
18629     this.addEvents({
18630         /**
18631          * @event beforenodeedit
18632          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
18633          * false from the handler of this event.
18634          * @param {Editor} this
18635          * @param {Roo.tree.Node} node 
18636          */
18637         "beforenodeedit" : true
18638     });
18639     
18640     //Roo.log(config);
18641     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
18642
18643     this.tree = tree;
18644
18645     tree.on('beforeclick', this.beforeNodeClick, this);
18646     tree.getTreeEl().on('mousedown', this.hide, this);
18647     this.on('complete', this.updateNode, this);
18648     this.on('beforestartedit', this.fitToTree, this);
18649     this.on('startedit', this.bindScroll, this, {delay:10});
18650     this.on('specialkey', this.onSpecialKey, this);
18651 };
18652
18653 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
18654     /**
18655      * @cfg {String} alignment
18656      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
18657      */
18658     alignment: "l-l",
18659     // inherit
18660     autoSize: false,
18661     /**
18662      * @cfg {Boolean} hideEl
18663      * True to hide the bound element while the editor is displayed (defaults to false)
18664      */
18665     hideEl : false,
18666     /**
18667      * @cfg {String} cls
18668      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
18669      */
18670     cls: "x-small-editor x-tree-editor",
18671     /**
18672      * @cfg {Boolean} shim
18673      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
18674      */
18675     shim:false,
18676     // inherit
18677     shadow:"frame",
18678     /**
18679      * @cfg {Number} maxWidth
18680      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
18681      * the containing tree element's size, it will be automatically limited for you to the container width, taking
18682      * scroll and client offsets into account prior to each edit.
18683      */
18684     maxWidth: 250,
18685
18686     editDelay : 350,
18687
18688     // private
18689     fitToTree : function(ed, el){
18690         var td = this.tree.getTreeEl().dom, nd = el.dom;
18691         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
18692             td.scrollLeft = nd.offsetLeft;
18693         }
18694         var w = Math.min(
18695                 this.maxWidth,
18696                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
18697         this.setSize(w, '');
18698         
18699         return this.fireEvent('beforenodeedit', this, this.editNode);
18700         
18701     },
18702
18703     // private
18704     triggerEdit : function(node){
18705         this.completeEdit();
18706         this.editNode = node;
18707         this.startEdit(node.ui.textNode, node.text);
18708     },
18709
18710     // private
18711     bindScroll : function(){
18712         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
18713     },
18714
18715     // private
18716     beforeNodeClick : function(node, e){
18717         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
18718         this.lastClick = new Date();
18719         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
18720             e.stopEvent();
18721             this.triggerEdit(node);
18722             return false;
18723         }
18724         return true;
18725     },
18726
18727     // private
18728     updateNode : function(ed, value){
18729         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
18730         this.editNode.setText(value);
18731     },
18732
18733     // private
18734     onHide : function(){
18735         Roo.tree.TreeEditor.superclass.onHide.call(this);
18736         if(this.editNode){
18737             this.editNode.ui.focus();
18738         }
18739     },
18740
18741     // private
18742     onSpecialKey : function(field, e){
18743         var k = e.getKey();
18744         if(k == e.ESC){
18745             e.stopEvent();
18746             this.cancelEdit();
18747         }else if(k == e.ENTER && !e.hasModifier()){
18748             e.stopEvent();
18749             this.completeEdit();
18750         }
18751     }
18752 });//<Script type="text/javascript">
18753 /*
18754  * Based on:
18755  * Ext JS Library 1.1.1
18756  * Copyright(c) 2006-2007, Ext JS, LLC.
18757  *
18758  * Originally Released Under LGPL - original licence link has changed is not relivant.
18759  *
18760  * Fork - LGPL
18761  * <script type="text/javascript">
18762  */
18763  
18764 /**
18765  * Not documented??? - probably should be...
18766  */
18767
18768 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
18769     //focus: Roo.emptyFn, // prevent odd scrolling behavior
18770     
18771     renderElements : function(n, a, targetNode, bulkRender){
18772         //consel.log("renderElements?");
18773         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
18774
18775         var t = n.getOwnerTree();
18776         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
18777         
18778         var cols = t.columns;
18779         var bw = t.borderWidth;
18780         var c = cols[0];
18781         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
18782          var cb = typeof a.checked == "boolean";
18783         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18784         var colcls = 'x-t-' + tid + '-c0';
18785         var buf = [
18786             '<li class="x-tree-node">',
18787             
18788                 
18789                 '<div class="x-tree-node-el ', a.cls,'">',
18790                     // extran...
18791                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
18792                 
18793                 
18794                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
18795                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
18796                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
18797                            (a.icon ? ' x-tree-node-inline-icon' : ''),
18798                            (a.iconCls ? ' '+a.iconCls : ''),
18799                            '" unselectable="on" />',
18800                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
18801                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
18802                              
18803                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18804                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
18805                             '<span unselectable="on" qtip="' + tx + '">',
18806                              tx,
18807                              '</span></a>' ,
18808                     '</div>',
18809                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
18810                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
18811                  ];
18812         for(var i = 1, len = cols.length; i < len; i++){
18813             c = cols[i];
18814             colcls = 'x-t-' + tid + '-c' +i;
18815             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
18816             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
18817                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
18818                       "</div>");
18819          }
18820          
18821          buf.push(
18822             '</a>',
18823             '<div class="x-clear"></div></div>',
18824             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
18825             "</li>");
18826         
18827         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
18828             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
18829                                 n.nextSibling.ui.getEl(), buf.join(""));
18830         }else{
18831             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
18832         }
18833         var el = this.wrap.firstChild;
18834         this.elRow = el;
18835         this.elNode = el.firstChild;
18836         this.ranchor = el.childNodes[1];
18837         this.ctNode = this.wrap.childNodes[1];
18838         var cs = el.firstChild.childNodes;
18839         this.indentNode = cs[0];
18840         this.ecNode = cs[1];
18841         this.iconNode = cs[2];
18842         var index = 3;
18843         if(cb){
18844             this.checkbox = cs[3];
18845             index++;
18846         }
18847         this.anchor = cs[index];
18848         
18849         this.textNode = cs[index].firstChild;
18850         
18851         //el.on("click", this.onClick, this);
18852         //el.on("dblclick", this.onDblClick, this);
18853         
18854         
18855        // console.log(this);
18856     },
18857     initEvents : function(){
18858         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
18859         
18860             
18861         var a = this.ranchor;
18862
18863         var el = Roo.get(a);
18864
18865         if(Roo.isOpera){ // opera render bug ignores the CSS
18866             el.setStyle("text-decoration", "none");
18867         }
18868
18869         el.on("click", this.onClick, this);
18870         el.on("dblclick", this.onDblClick, this);
18871         el.on("contextmenu", this.onContextMenu, this);
18872         
18873     },
18874     
18875     /*onSelectedChange : function(state){
18876         if(state){
18877             this.focus();
18878             this.addClass("x-tree-selected");
18879         }else{
18880             //this.blur();
18881             this.removeClass("x-tree-selected");
18882         }
18883     },*/
18884     addClass : function(cls){
18885         if(this.elRow){
18886             Roo.fly(this.elRow).addClass(cls);
18887         }
18888         
18889     },
18890     
18891     
18892     removeClass : function(cls){
18893         if(this.elRow){
18894             Roo.fly(this.elRow).removeClass(cls);
18895         }
18896     }
18897
18898     
18899     
18900 });//<Script type="text/javascript">
18901
18902 /*
18903  * Based on:
18904  * Ext JS Library 1.1.1
18905  * Copyright(c) 2006-2007, Ext JS, LLC.
18906  *
18907  * Originally Released Under LGPL - original licence link has changed is not relivant.
18908  *
18909  * Fork - LGPL
18910  * <script type="text/javascript">
18911  */
18912  
18913
18914 /**
18915  * @class Roo.tree.ColumnTree
18916  * @extends Roo.data.TreePanel
18917  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
18918  * @cfg {int} borderWidth  compined right/left border allowance
18919  * @constructor
18920  * @param {String/HTMLElement/Element} el The container element
18921  * @param {Object} config
18922  */
18923 Roo.tree.ColumnTree =  function(el, config)
18924 {
18925    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
18926    this.addEvents({
18927         /**
18928         * @event resize
18929         * Fire this event on a container when it resizes
18930         * @param {int} w Width
18931         * @param {int} h Height
18932         */
18933        "resize" : true
18934     });
18935     this.on('resize', this.onResize, this);
18936 };
18937
18938 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
18939     //lines:false,
18940     
18941     
18942     borderWidth: Roo.isBorderBox ? 0 : 2, 
18943     headEls : false,
18944     
18945     render : function(){
18946         // add the header.....
18947        
18948         Roo.tree.ColumnTree.superclass.render.apply(this);
18949         
18950         this.el.addClass('x-column-tree');
18951         
18952         this.headers = this.el.createChild(
18953             {cls:'x-tree-headers'},this.innerCt.dom);
18954    
18955         var cols = this.columns, c;
18956         var totalWidth = 0;
18957         this.headEls = [];
18958         var  len = cols.length;
18959         for(var i = 0; i < len; i++){
18960              c = cols[i];
18961              totalWidth += c.width;
18962             this.headEls.push(this.headers.createChild({
18963                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
18964                  cn: {
18965                      cls:'x-tree-hd-text',
18966                      html: c.header
18967                  },
18968                  style:'width:'+(c.width-this.borderWidth)+'px;'
18969              }));
18970         }
18971         this.headers.createChild({cls:'x-clear'});
18972         // prevent floats from wrapping when clipped
18973         this.headers.setWidth(totalWidth);
18974         //this.innerCt.setWidth(totalWidth);
18975         this.innerCt.setStyle({ overflow: 'auto' });
18976         this.onResize(this.width, this.height);
18977              
18978         
18979     },
18980     onResize : function(w,h)
18981     {
18982         this.height = h;
18983         this.width = w;
18984         // resize cols..
18985         this.innerCt.setWidth(this.width);
18986         this.innerCt.setHeight(this.height-20);
18987         
18988         // headers...
18989         var cols = this.columns, c;
18990         var totalWidth = 0;
18991         var expEl = false;
18992         var len = cols.length;
18993         for(var i = 0; i < len; i++){
18994             c = cols[i];
18995             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
18996                 // it's the expander..
18997                 expEl  = this.headEls[i];
18998                 continue;
18999             }
19000             totalWidth += c.width;
19001             
19002         }
19003         if (expEl) {
19004             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
19005         }
19006         this.headers.setWidth(w-20);
19007
19008         
19009         
19010         
19011     }
19012 });
19013 /*
19014  * Based on:
19015  * Ext JS Library 1.1.1
19016  * Copyright(c) 2006-2007, Ext JS, LLC.
19017  *
19018  * Originally Released Under LGPL - original licence link has changed is not relivant.
19019  *
19020  * Fork - LGPL
19021  * <script type="text/javascript">
19022  */
19023  
19024 /**
19025  * @class Roo.menu.Menu
19026  * @extends Roo.util.Observable
19027  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
19028  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
19029  * @constructor
19030  * Creates a new Menu
19031  * @param {Object} config Configuration options
19032  */
19033 Roo.menu.Menu = function(config){
19034     Roo.apply(this, config);
19035     this.id = this.id || Roo.id();
19036     this.addEvents({
19037         /**
19038          * @event beforeshow
19039          * Fires before this menu is displayed
19040          * @param {Roo.menu.Menu} this
19041          */
19042         beforeshow : true,
19043         /**
19044          * @event beforehide
19045          * Fires before this menu is hidden
19046          * @param {Roo.menu.Menu} this
19047          */
19048         beforehide : true,
19049         /**
19050          * @event show
19051          * Fires after this menu is displayed
19052          * @param {Roo.menu.Menu} this
19053          */
19054         show : true,
19055         /**
19056          * @event hide
19057          * Fires after this menu is hidden
19058          * @param {Roo.menu.Menu} this
19059          */
19060         hide : true,
19061         /**
19062          * @event click
19063          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
19064          * @param {Roo.menu.Menu} this
19065          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19066          * @param {Roo.EventObject} e
19067          */
19068         click : true,
19069         /**
19070          * @event mouseover
19071          * Fires when the mouse is hovering over 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         mouseover : true,
19077         /**
19078          * @event mouseout
19079          * Fires when the mouse exits this menu
19080          * @param {Roo.menu.Menu} this
19081          * @param {Roo.EventObject} e
19082          * @param {Roo.menu.Item} menuItem The menu item that was clicked
19083          */
19084         mouseout : true,
19085         /**
19086          * @event itemclick
19087          * Fires when a menu item contained in this menu is clicked
19088          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
19089          * @param {Roo.EventObject} e
19090          */
19091         itemclick: true
19092     });
19093     if (this.registerMenu) {
19094         Roo.menu.MenuMgr.register(this);
19095     }
19096     
19097     var mis = this.items;
19098     this.items = new Roo.util.MixedCollection();
19099     if(mis){
19100         this.add.apply(this, mis);
19101     }
19102 };
19103
19104 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
19105     /**
19106      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
19107      */
19108     minWidth : 120,
19109     /**
19110      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
19111      * for bottom-right shadow (defaults to "sides")
19112      */
19113     shadow : "sides",
19114     /**
19115      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
19116      * this menu (defaults to "tl-tr?")
19117      */
19118     subMenuAlign : "tl-tr?",
19119     /**
19120      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
19121      * relative to its element of origin (defaults to "tl-bl?")
19122      */
19123     defaultAlign : "tl-bl?",
19124     /**
19125      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
19126      */
19127     allowOtherMenus : false,
19128     /**
19129      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
19130      */
19131     registerMenu : true,
19132
19133     hidden:true,
19134
19135     // private
19136     render : function(){
19137         if(this.el){
19138             return;
19139         }
19140         var el = this.el = new Roo.Layer({
19141             cls: "x-menu",
19142             shadow:this.shadow,
19143             constrain: false,
19144             parentEl: this.parentEl || document.body,
19145             zindex:15000
19146         });
19147
19148         this.keyNav = new Roo.menu.MenuNav(this);
19149
19150         if(this.plain){
19151             el.addClass("x-menu-plain");
19152         }
19153         if(this.cls){
19154             el.addClass(this.cls);
19155         }
19156         // generic focus element
19157         this.focusEl = el.createChild({
19158             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
19159         });
19160         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
19161         ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
19162         
19163         ul.on("mouseover", this.onMouseOver, this);
19164         ul.on("mouseout", this.onMouseOut, this);
19165         this.items.each(function(item){
19166             if (item.hidden) {
19167                 return;
19168             }
19169             
19170             var li = document.createElement("li");
19171             li.className = "x-menu-list-item";
19172             ul.dom.appendChild(li);
19173             item.render(li, this);
19174         }, this);
19175         this.ul = ul;
19176         this.autoWidth();
19177     },
19178
19179     // private
19180     autoWidth : function(){
19181         var el = this.el, ul = this.ul;
19182         if(!el){
19183             return;
19184         }
19185         var w = this.width;
19186         if(w){
19187             el.setWidth(w);
19188         }else if(Roo.isIE){
19189             el.setWidth(this.minWidth);
19190             var t = el.dom.offsetWidth; // force recalc
19191             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
19192         }
19193     },
19194
19195     // private
19196     delayAutoWidth : function(){
19197         if(this.rendered){
19198             if(!this.awTask){
19199                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
19200             }
19201             this.awTask.delay(20);
19202         }
19203     },
19204
19205     // private
19206     findTargetItem : function(e){
19207         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
19208         if(t && t.menuItemId){
19209             return this.items.get(t.menuItemId);
19210         }
19211     },
19212
19213     // private
19214     onClick : function(e){
19215         Roo.log("menu.onClick");
19216         var t = this.findTargetItem(e);
19217         if(!t){
19218             return;
19219         }
19220         Roo.log(e);
19221         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
19222             if(t == this.activeItem && t.shouldDeactivate(e)){
19223                 this.activeItem.deactivate();
19224                 delete this.activeItem;
19225                 return;
19226             }
19227             if(t.canActivate){
19228                 this.setActiveItem(t, true);
19229             }
19230             return;
19231             
19232             
19233         }
19234         
19235         t.onClick(e);
19236         this.fireEvent("click", this, t, e);
19237     },
19238
19239     // private
19240     setActiveItem : function(item, autoExpand){
19241         if(item != this.activeItem){
19242             if(this.activeItem){
19243                 this.activeItem.deactivate();
19244             }
19245             this.activeItem = item;
19246             item.activate(autoExpand);
19247         }else if(autoExpand){
19248             item.expandMenu();
19249         }
19250     },
19251
19252     // private
19253     tryActivate : function(start, step){
19254         var items = this.items;
19255         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
19256             var item = items.get(i);
19257             if(!item.disabled && item.canActivate){
19258                 this.setActiveItem(item, false);
19259                 return item;
19260             }
19261         }
19262         return false;
19263     },
19264
19265     // private
19266     onMouseOver : function(e){
19267         var t;
19268         if(t = this.findTargetItem(e)){
19269             if(t.canActivate && !t.disabled){
19270                 this.setActiveItem(t, true);
19271             }
19272         }
19273         this.fireEvent("mouseover", this, e, t);
19274     },
19275
19276     // private
19277     onMouseOut : function(e){
19278         var t;
19279         if(t = this.findTargetItem(e)){
19280             if(t == this.activeItem && t.shouldDeactivate(e)){
19281                 this.activeItem.deactivate();
19282                 delete this.activeItem;
19283             }
19284         }
19285         this.fireEvent("mouseout", this, e, t);
19286     },
19287
19288     /**
19289      * Read-only.  Returns true if the menu is currently displayed, else false.
19290      * @type Boolean
19291      */
19292     isVisible : function(){
19293         return this.el && !this.hidden;
19294     },
19295
19296     /**
19297      * Displays this menu relative to another element
19298      * @param {String/HTMLElement/Roo.Element} element The element to align to
19299      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
19300      * the element (defaults to this.defaultAlign)
19301      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19302      */
19303     show : function(el, pos, parentMenu){
19304         this.parentMenu = parentMenu;
19305         if(!this.el){
19306             this.render();
19307         }
19308         this.fireEvent("beforeshow", this);
19309         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
19310     },
19311
19312     /**
19313      * Displays this menu at a specific xy position
19314      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
19315      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
19316      */
19317     showAt : function(xy, parentMenu, /* private: */_e){
19318         this.parentMenu = parentMenu;
19319         if(!this.el){
19320             this.render();
19321         }
19322         if(_e !== false){
19323             this.fireEvent("beforeshow", this);
19324             xy = this.el.adjustForConstraints(xy);
19325         }
19326         this.el.setXY(xy);
19327         this.el.show();
19328         this.hidden = false;
19329         this.focus();
19330         this.fireEvent("show", this);
19331     },
19332
19333     focus : function(){
19334         if(!this.hidden){
19335             this.doFocus.defer(50, this);
19336         }
19337     },
19338
19339     doFocus : function(){
19340         if(!this.hidden){
19341             this.focusEl.focus();
19342         }
19343     },
19344
19345     /**
19346      * Hides this menu and optionally all parent menus
19347      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
19348      */
19349     hide : function(deep){
19350         if(this.el && this.isVisible()){
19351             this.fireEvent("beforehide", this);
19352             if(this.activeItem){
19353                 this.activeItem.deactivate();
19354                 this.activeItem = null;
19355             }
19356             this.el.hide();
19357             this.hidden = true;
19358             this.fireEvent("hide", this);
19359         }
19360         if(deep === true && this.parentMenu){
19361             this.parentMenu.hide(true);
19362         }
19363     },
19364
19365     /**
19366      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
19367      * Any of the following are valid:
19368      * <ul>
19369      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
19370      * <li>An HTMLElement object which will be converted to a menu item</li>
19371      * <li>A menu item config object that will be created as a new menu item</li>
19372      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
19373      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
19374      * </ul>
19375      * Usage:
19376      * <pre><code>
19377 // Create the menu
19378 var menu = new Roo.menu.Menu();
19379
19380 // Create a menu item to add by reference
19381 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
19382
19383 // Add a bunch of items at once using different methods.
19384 // Only the last item added will be returned.
19385 var item = menu.add(
19386     menuItem,                // add existing item by ref
19387     'Dynamic Item',          // new TextItem
19388     '-',                     // new separator
19389     { text: 'Config Item' }  // new item by config
19390 );
19391 </code></pre>
19392      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
19393      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
19394      */
19395     add : function(){
19396         var a = arguments, l = a.length, item;
19397         for(var i = 0; i < l; i++){
19398             var el = a[i];
19399             if ((typeof(el) == "object") && el.xtype && el.xns) {
19400                 el = Roo.factory(el, Roo.menu);
19401             }
19402             
19403             if(el.render){ // some kind of Item
19404                 item = this.addItem(el);
19405             }else if(typeof el == "string"){ // string
19406                 if(el == "separator" || el == "-"){
19407                     item = this.addSeparator();
19408                 }else{
19409                     item = this.addText(el);
19410                 }
19411             }else if(el.tagName || el.el){ // element
19412                 item = this.addElement(el);
19413             }else if(typeof el == "object"){ // must be menu item config?
19414                 item = this.addMenuItem(el);
19415             }
19416         }
19417         return item;
19418     },
19419
19420     /**
19421      * Returns this menu's underlying {@link Roo.Element} object
19422      * @return {Roo.Element} The element
19423      */
19424     getEl : function(){
19425         if(!this.el){
19426             this.render();
19427         }
19428         return this.el;
19429     },
19430
19431     /**
19432      * Adds a separator bar to the menu
19433      * @return {Roo.menu.Item} The menu item that was added
19434      */
19435     addSeparator : function(){
19436         return this.addItem(new Roo.menu.Separator());
19437     },
19438
19439     /**
19440      * Adds an {@link Roo.Element} object to the menu
19441      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
19442      * @return {Roo.menu.Item} The menu item that was added
19443      */
19444     addElement : function(el){
19445         return this.addItem(new Roo.menu.BaseItem(el));
19446     },
19447
19448     /**
19449      * Adds an existing object based on {@link Roo.menu.Item} to the menu
19450      * @param {Roo.menu.Item} item The menu item to add
19451      * @return {Roo.menu.Item} The menu item that was added
19452      */
19453     addItem : function(item){
19454         this.items.add(item);
19455         if(this.ul){
19456             var li = document.createElement("li");
19457             li.className = "x-menu-list-item";
19458             this.ul.dom.appendChild(li);
19459             item.render(li, this);
19460             this.delayAutoWidth();
19461         }
19462         return item;
19463     },
19464
19465     /**
19466      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
19467      * @param {Object} config A MenuItem config object
19468      * @return {Roo.menu.Item} The menu item that was added
19469      */
19470     addMenuItem : function(config){
19471         if(!(config instanceof Roo.menu.Item)){
19472             if(typeof config.checked == "boolean"){ // must be check menu item config?
19473                 config = new Roo.menu.CheckItem(config);
19474             }else{
19475                 config = new Roo.menu.Item(config);
19476             }
19477         }
19478         return this.addItem(config);
19479     },
19480
19481     /**
19482      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
19483      * @param {String} text The text to display in the menu item
19484      * @return {Roo.menu.Item} The menu item that was added
19485      */
19486     addText : function(text){
19487         return this.addItem(new Roo.menu.TextItem({ text : text }));
19488     },
19489
19490     /**
19491      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
19492      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
19493      * @param {Roo.menu.Item} item The menu item to add
19494      * @return {Roo.menu.Item} The menu item that was added
19495      */
19496     insert : function(index, item){
19497         this.items.insert(index, item);
19498         if(this.ul){
19499             var li = document.createElement("li");
19500             li.className = "x-menu-list-item";
19501             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
19502             item.render(li, this);
19503             this.delayAutoWidth();
19504         }
19505         return item;
19506     },
19507
19508     /**
19509      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
19510      * @param {Roo.menu.Item} item The menu item to remove
19511      */
19512     remove : function(item){
19513         this.items.removeKey(item.id);
19514         item.destroy();
19515     },
19516
19517     /**
19518      * Removes and destroys all items in the menu
19519      */
19520     removeAll : function(){
19521         var f;
19522         while(f = this.items.first()){
19523             this.remove(f);
19524         }
19525     }
19526 });
19527
19528 // MenuNav is a private utility class used internally by the Menu
19529 Roo.menu.MenuNav = function(menu){
19530     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
19531     this.scope = this.menu = menu;
19532 };
19533
19534 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
19535     doRelay : function(e, h){
19536         var k = e.getKey();
19537         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
19538             this.menu.tryActivate(0, 1);
19539             return false;
19540         }
19541         return h.call(this.scope || this, e, this.menu);
19542     },
19543
19544     up : function(e, m){
19545         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
19546             m.tryActivate(m.items.length-1, -1);
19547         }
19548     },
19549
19550     down : function(e, m){
19551         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
19552             m.tryActivate(0, 1);
19553         }
19554     },
19555
19556     right : function(e, m){
19557         if(m.activeItem){
19558             m.activeItem.expandMenu(true);
19559         }
19560     },
19561
19562     left : function(e, m){
19563         m.hide();
19564         if(m.parentMenu && m.parentMenu.activeItem){
19565             m.parentMenu.activeItem.activate();
19566         }
19567     },
19568
19569     enter : function(e, m){
19570         if(m.activeItem){
19571             e.stopPropagation();
19572             m.activeItem.onClick(e);
19573             m.fireEvent("click", this, m.activeItem);
19574             return true;
19575         }
19576     }
19577 });/*
19578  * Based on:
19579  * Ext JS Library 1.1.1
19580  * Copyright(c) 2006-2007, Ext JS, LLC.
19581  *
19582  * Originally Released Under LGPL - original licence link has changed is not relivant.
19583  *
19584  * Fork - LGPL
19585  * <script type="text/javascript">
19586  */
19587  
19588 /**
19589  * @class Roo.menu.MenuMgr
19590  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
19591  * @singleton
19592  */
19593 Roo.menu.MenuMgr = function(){
19594    var menus, active, groups = {}, attached = false, lastShow = new Date();
19595
19596    // private - called when first menu is created
19597    function init(){
19598        menus = {};
19599        active = new Roo.util.MixedCollection();
19600        Roo.get(document).addKeyListener(27, function(){
19601            if(active.length > 0){
19602                hideAll();
19603            }
19604        });
19605    }
19606
19607    // private
19608    function hideAll(){
19609        if(active && active.length > 0){
19610            var c = active.clone();
19611            c.each(function(m){
19612                m.hide();
19613            });
19614        }
19615    }
19616
19617    // private
19618    function onHide(m){
19619        active.remove(m);
19620        if(active.length < 1){
19621            Roo.get(document).un("mousedown", onMouseDown);
19622            attached = false;
19623        }
19624    }
19625
19626    // private
19627    function onShow(m){
19628        var last = active.last();
19629        lastShow = new Date();
19630        active.add(m);
19631        if(!attached){
19632            Roo.get(document).on("mousedown", onMouseDown);
19633            attached = true;
19634        }
19635        if(m.parentMenu){
19636           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
19637           m.parentMenu.activeChild = m;
19638        }else if(last && last.isVisible()){
19639           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
19640        }
19641    }
19642
19643    // private
19644    function onBeforeHide(m){
19645        if(m.activeChild){
19646            m.activeChild.hide();
19647        }
19648        if(m.autoHideTimer){
19649            clearTimeout(m.autoHideTimer);
19650            delete m.autoHideTimer;
19651        }
19652    }
19653
19654    // private
19655    function onBeforeShow(m){
19656        var pm = m.parentMenu;
19657        if(!pm && !m.allowOtherMenus){
19658            hideAll();
19659        }else if(pm && pm.activeChild && active != m){
19660            pm.activeChild.hide();
19661        }
19662    }
19663
19664    // private
19665    function onMouseDown(e){
19666        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
19667            hideAll();
19668        }
19669    }
19670
19671    // private
19672    function onBeforeCheck(mi, state){
19673        if(state){
19674            var g = groups[mi.group];
19675            for(var i = 0, l = g.length; i < l; i++){
19676                if(g[i] != mi){
19677                    g[i].setChecked(false);
19678                }
19679            }
19680        }
19681    }
19682
19683    return {
19684
19685        /**
19686         * Hides all menus that are currently visible
19687         */
19688        hideAll : function(){
19689             hideAll();  
19690        },
19691
19692        // private
19693        register : function(menu){
19694            if(!menus){
19695                init();
19696            }
19697            menus[menu.id] = menu;
19698            menu.on("beforehide", onBeforeHide);
19699            menu.on("hide", onHide);
19700            menu.on("beforeshow", onBeforeShow);
19701            menu.on("show", onShow);
19702            var g = menu.group;
19703            if(g && menu.events["checkchange"]){
19704                if(!groups[g]){
19705                    groups[g] = [];
19706                }
19707                groups[g].push(menu);
19708                menu.on("checkchange", onCheck);
19709            }
19710        },
19711
19712         /**
19713          * Returns a {@link Roo.menu.Menu} object
19714          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
19715          * be used to generate and return a new Menu instance.
19716          */
19717        get : function(menu){
19718            if(typeof menu == "string"){ // menu id
19719                return menus[menu];
19720            }else if(menu.events){  // menu instance
19721                return menu;
19722            }else if(typeof menu.length == 'number'){ // array of menu items?
19723                return new Roo.menu.Menu({items:menu});
19724            }else{ // otherwise, must be a config
19725                return new Roo.menu.Menu(menu);
19726            }
19727        },
19728
19729        // private
19730        unregister : function(menu){
19731            delete menus[menu.id];
19732            menu.un("beforehide", onBeforeHide);
19733            menu.un("hide", onHide);
19734            menu.un("beforeshow", onBeforeShow);
19735            menu.un("show", onShow);
19736            var g = menu.group;
19737            if(g && menu.events["checkchange"]){
19738                groups[g].remove(menu);
19739                menu.un("checkchange", onCheck);
19740            }
19741        },
19742
19743        // private
19744        registerCheckable : function(menuItem){
19745            var g = menuItem.group;
19746            if(g){
19747                if(!groups[g]){
19748                    groups[g] = [];
19749                }
19750                groups[g].push(menuItem);
19751                menuItem.on("beforecheckchange", onBeforeCheck);
19752            }
19753        },
19754
19755        // private
19756        unregisterCheckable : function(menuItem){
19757            var g = menuItem.group;
19758            if(g){
19759                groups[g].remove(menuItem);
19760                menuItem.un("beforecheckchange", onBeforeCheck);
19761            }
19762        }
19763    };
19764 }();/*
19765  * Based on:
19766  * Ext JS Library 1.1.1
19767  * Copyright(c) 2006-2007, Ext JS, LLC.
19768  *
19769  * Originally Released Under LGPL - original licence link has changed is not relivant.
19770  *
19771  * Fork - LGPL
19772  * <script type="text/javascript">
19773  */
19774  
19775
19776 /**
19777  * @class Roo.menu.BaseItem
19778  * @extends Roo.Component
19779  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
19780  * management and base configuration options shared by all menu components.
19781  * @constructor
19782  * Creates a new BaseItem
19783  * @param {Object} config Configuration options
19784  */
19785 Roo.menu.BaseItem = function(config){
19786     Roo.menu.BaseItem.superclass.constructor.call(this, config);
19787
19788     this.addEvents({
19789         /**
19790          * @event click
19791          * Fires when this item is clicked
19792          * @param {Roo.menu.BaseItem} this
19793          * @param {Roo.EventObject} e
19794          */
19795         click: true,
19796         /**
19797          * @event activate
19798          * Fires when this item is activated
19799          * @param {Roo.menu.BaseItem} this
19800          */
19801         activate : true,
19802         /**
19803          * @event deactivate
19804          * Fires when this item is deactivated
19805          * @param {Roo.menu.BaseItem} this
19806          */
19807         deactivate : true
19808     });
19809
19810     if(this.handler){
19811         this.on("click", this.handler, this.scope, true);
19812     }
19813 };
19814
19815 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
19816     /**
19817      * @cfg {Function} handler
19818      * A function that will handle the click event of this menu item (defaults to undefined)
19819      */
19820     /**
19821      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
19822      */
19823     canActivate : false,
19824     
19825      /**
19826      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
19827      */
19828     hidden: false,
19829     
19830     /**
19831      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
19832      */
19833     activeClass : "x-menu-item-active",
19834     /**
19835      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
19836      */
19837     hideOnClick : true,
19838     /**
19839      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
19840      */
19841     hideDelay : 100,
19842
19843     // private
19844     ctype: "Roo.menu.BaseItem",
19845
19846     // private
19847     actionMode : "container",
19848
19849     // private
19850     render : function(container, parentMenu){
19851         this.parentMenu = parentMenu;
19852         Roo.menu.BaseItem.superclass.render.call(this, container);
19853         this.container.menuItemId = this.id;
19854     },
19855
19856     // private
19857     onRender : function(container, position){
19858         this.el = Roo.get(this.el);
19859         container.dom.appendChild(this.el.dom);
19860     },
19861
19862     // private
19863     onClick : function(e){
19864         if(!this.disabled && this.fireEvent("click", this, e) !== false
19865                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
19866             this.handleClick(e);
19867         }else{
19868             e.stopEvent();
19869         }
19870     },
19871
19872     // private
19873     activate : function(){
19874         if(this.disabled){
19875             return false;
19876         }
19877         var li = this.container;
19878         li.addClass(this.activeClass);
19879         this.region = li.getRegion().adjust(2, 2, -2, -2);
19880         this.fireEvent("activate", this);
19881         return true;
19882     },
19883
19884     // private
19885     deactivate : function(){
19886         this.container.removeClass(this.activeClass);
19887         this.fireEvent("deactivate", this);
19888     },
19889
19890     // private
19891     shouldDeactivate : function(e){
19892         return !this.region || !this.region.contains(e.getPoint());
19893     },
19894
19895     // private
19896     handleClick : function(e){
19897         if(this.hideOnClick){
19898             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
19899         }
19900     },
19901
19902     // private
19903     expandMenu : function(autoActivate){
19904         // do nothing
19905     },
19906
19907     // private
19908     hideMenu : function(){
19909         // do nothing
19910     }
19911 });/*
19912  * Based on:
19913  * Ext JS Library 1.1.1
19914  * Copyright(c) 2006-2007, Ext JS, LLC.
19915  *
19916  * Originally Released Under LGPL - original licence link has changed is not relivant.
19917  *
19918  * Fork - LGPL
19919  * <script type="text/javascript">
19920  */
19921  
19922 /**
19923  * @class Roo.menu.Adapter
19924  * @extends Roo.menu.BaseItem
19925  * 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.
19926  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
19927  * @constructor
19928  * Creates a new Adapter
19929  * @param {Object} config Configuration options
19930  */
19931 Roo.menu.Adapter = function(component, config){
19932     Roo.menu.Adapter.superclass.constructor.call(this, config);
19933     this.component = component;
19934 };
19935 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
19936     // private
19937     canActivate : true,
19938
19939     // private
19940     onRender : function(container, position){
19941         this.component.render(container);
19942         this.el = this.component.getEl();
19943     },
19944
19945     // private
19946     activate : function(){
19947         if(this.disabled){
19948             return false;
19949         }
19950         this.component.focus();
19951         this.fireEvent("activate", this);
19952         return true;
19953     },
19954
19955     // private
19956     deactivate : function(){
19957         this.fireEvent("deactivate", this);
19958     },
19959
19960     // private
19961     disable : function(){
19962         this.component.disable();
19963         Roo.menu.Adapter.superclass.disable.call(this);
19964     },
19965
19966     // private
19967     enable : function(){
19968         this.component.enable();
19969         Roo.menu.Adapter.superclass.enable.call(this);
19970     }
19971 });/*
19972  * Based on:
19973  * Ext JS Library 1.1.1
19974  * Copyright(c) 2006-2007, Ext JS, LLC.
19975  *
19976  * Originally Released Under LGPL - original licence link has changed is not relivant.
19977  *
19978  * Fork - LGPL
19979  * <script type="text/javascript">
19980  */
19981
19982 /**
19983  * @class Roo.menu.TextItem
19984  * @extends Roo.menu.BaseItem
19985  * Adds a static text string to a menu, usually used as either a heading or group separator.
19986  * Note: old style constructor with text is still supported.
19987  * 
19988  * @constructor
19989  * Creates a new TextItem
19990  * @param {Object} cfg Configuration
19991  */
19992 Roo.menu.TextItem = function(cfg){
19993     if (typeof(cfg) == 'string') {
19994         this.text = cfg;
19995     } else {
19996         Roo.apply(this,cfg);
19997     }
19998     
19999     Roo.menu.TextItem.superclass.constructor.call(this);
20000 };
20001
20002 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
20003     /**
20004      * @cfg {Boolean} text Text to show on item.
20005      */
20006     text : '',
20007     
20008     /**
20009      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20010      */
20011     hideOnClick : false,
20012     /**
20013      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
20014      */
20015     itemCls : "x-menu-text",
20016
20017     // private
20018     onRender : function(){
20019         var s = document.createElement("span");
20020         s.className = this.itemCls;
20021         s.innerHTML = this.text;
20022         this.el = s;
20023         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
20024     }
20025 });/*
20026  * Based on:
20027  * Ext JS Library 1.1.1
20028  * Copyright(c) 2006-2007, Ext JS, LLC.
20029  *
20030  * Originally Released Under LGPL - original licence link has changed is not relivant.
20031  *
20032  * Fork - LGPL
20033  * <script type="text/javascript">
20034  */
20035
20036 /**
20037  * @class Roo.menu.Separator
20038  * @extends Roo.menu.BaseItem
20039  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
20040  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
20041  * @constructor
20042  * @param {Object} config Configuration options
20043  */
20044 Roo.menu.Separator = function(config){
20045     Roo.menu.Separator.superclass.constructor.call(this, config);
20046 };
20047
20048 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
20049     /**
20050      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
20051      */
20052     itemCls : "x-menu-sep",
20053     /**
20054      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
20055      */
20056     hideOnClick : false,
20057
20058     // private
20059     onRender : function(li){
20060         var s = document.createElement("span");
20061         s.className = this.itemCls;
20062         s.innerHTML = "&#160;";
20063         this.el = s;
20064         li.addClass("x-menu-sep-li");
20065         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
20066     }
20067 });/*
20068  * Based on:
20069  * Ext JS Library 1.1.1
20070  * Copyright(c) 2006-2007, Ext JS, LLC.
20071  *
20072  * Originally Released Under LGPL - original licence link has changed is not relivant.
20073  *
20074  * Fork - LGPL
20075  * <script type="text/javascript">
20076  */
20077 /**
20078  * @class Roo.menu.Item
20079  * @extends Roo.menu.BaseItem
20080  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
20081  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
20082  * activation and click handling.
20083  * @constructor
20084  * Creates a new Item
20085  * @param {Object} config Configuration options
20086  */
20087 Roo.menu.Item = function(config){
20088     Roo.menu.Item.superclass.constructor.call(this, config);
20089     if(this.menu){
20090         this.menu = Roo.menu.MenuMgr.get(this.menu);
20091     }
20092 };
20093 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
20094     
20095     /**
20096      * @cfg {String} text
20097      * The text to show on the menu item.
20098      */
20099     text: '',
20100      /**
20101      * @cfg {String} HTML to render in menu
20102      * The text to show on the menu item (HTML version).
20103      */
20104     html: '',
20105     /**
20106      * @cfg {String} icon
20107      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
20108      */
20109     icon: undefined,
20110     /**
20111      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
20112      */
20113     itemCls : "x-menu-item",
20114     /**
20115      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
20116      */
20117     canActivate : true,
20118     /**
20119      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
20120      */
20121     showDelay: 200,
20122     // doc'd in BaseItem
20123     hideDelay: 200,
20124
20125     // private
20126     ctype: "Roo.menu.Item",
20127     
20128     // private
20129     onRender : function(container, position){
20130         var el = document.createElement("a");
20131         el.hideFocus = true;
20132         el.unselectable = "on";
20133         el.href = this.href || "#";
20134         if(this.hrefTarget){
20135             el.target = this.hrefTarget;
20136         }
20137         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
20138         
20139         var html = this.html.length ? this.html  : String.format('{0}',this.text);
20140         
20141         el.innerHTML = String.format(
20142                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
20143                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
20144         this.el = el;
20145         Roo.menu.Item.superclass.onRender.call(this, container, position);
20146     },
20147
20148     /**
20149      * Sets the text to display in this menu item
20150      * @param {String} text The text to display
20151      * @param {Boolean} isHTML true to indicate text is pure html.
20152      */
20153     setText : function(text, isHTML){
20154         if (isHTML) {
20155             this.html = text;
20156         } else {
20157             this.text = text;
20158             this.html = '';
20159         }
20160         if(this.rendered){
20161             var html = this.html.length ? this.html  : String.format('{0}',this.text);
20162      
20163             this.el.update(String.format(
20164                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
20165                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
20166             this.parentMenu.autoWidth();
20167         }
20168     },
20169
20170     // private
20171     handleClick : function(e){
20172         if(!this.href){ // if no link defined, stop the event automatically
20173             e.stopEvent();
20174         }
20175         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
20176     },
20177
20178     // private
20179     activate : function(autoExpand){
20180         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
20181             this.focus();
20182             if(autoExpand){
20183                 this.expandMenu();
20184             }
20185         }
20186         return true;
20187     },
20188
20189     // private
20190     shouldDeactivate : function(e){
20191         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
20192             if(this.menu && this.menu.isVisible()){
20193                 return !this.menu.getEl().getRegion().contains(e.getPoint());
20194             }
20195             return true;
20196         }
20197         return false;
20198     },
20199
20200     // private
20201     deactivate : function(){
20202         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
20203         this.hideMenu();
20204     },
20205
20206     // private
20207     expandMenu : function(autoActivate){
20208         if(!this.disabled && this.menu){
20209             clearTimeout(this.hideTimer);
20210             delete this.hideTimer;
20211             if(!this.menu.isVisible() && !this.showTimer){
20212                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
20213             }else if (this.menu.isVisible() && autoActivate){
20214                 this.menu.tryActivate(0, 1);
20215             }
20216         }
20217     },
20218
20219     // private
20220     deferExpand : function(autoActivate){
20221         delete this.showTimer;
20222         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
20223         if(autoActivate){
20224             this.menu.tryActivate(0, 1);
20225         }
20226     },
20227
20228     // private
20229     hideMenu : function(){
20230         clearTimeout(this.showTimer);
20231         delete this.showTimer;
20232         if(!this.hideTimer && this.menu && this.menu.isVisible()){
20233             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
20234         }
20235     },
20236
20237     // private
20238     deferHide : function(){
20239         delete this.hideTimer;
20240         this.menu.hide();
20241     }
20242 });/*
20243  * Based on:
20244  * Ext JS Library 1.1.1
20245  * Copyright(c) 2006-2007, Ext JS, LLC.
20246  *
20247  * Originally Released Under LGPL - original licence link has changed is not relivant.
20248  *
20249  * Fork - LGPL
20250  * <script type="text/javascript">
20251  */
20252  
20253 /**
20254  * @class Roo.menu.CheckItem
20255  * @extends Roo.menu.Item
20256  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
20257  * @constructor
20258  * Creates a new CheckItem
20259  * @param {Object} config Configuration options
20260  */
20261 Roo.menu.CheckItem = function(config){
20262     Roo.menu.CheckItem.superclass.constructor.call(this, config);
20263     this.addEvents({
20264         /**
20265          * @event beforecheckchange
20266          * Fires before the checked value is set, providing an opportunity to cancel if needed
20267          * @param {Roo.menu.CheckItem} this
20268          * @param {Boolean} checked The new checked value that will be set
20269          */
20270         "beforecheckchange" : true,
20271         /**
20272          * @event checkchange
20273          * Fires after the checked value has been set
20274          * @param {Roo.menu.CheckItem} this
20275          * @param {Boolean} checked The checked value that was set
20276          */
20277         "checkchange" : true
20278     });
20279     if(this.checkHandler){
20280         this.on('checkchange', this.checkHandler, this.scope);
20281     }
20282 };
20283 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
20284     /**
20285      * @cfg {String} group
20286      * All check items with the same group name will automatically be grouped into a single-select
20287      * radio button group (defaults to '')
20288      */
20289     /**
20290      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
20291      */
20292     itemCls : "x-menu-item x-menu-check-item",
20293     /**
20294      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
20295      */
20296     groupClass : "x-menu-group-item",
20297
20298     /**
20299      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
20300      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
20301      * initialized with checked = true will be rendered as checked.
20302      */
20303     checked: false,
20304
20305     // private
20306     ctype: "Roo.menu.CheckItem",
20307
20308     // private
20309     onRender : function(c){
20310         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
20311         if(this.group){
20312             this.el.addClass(this.groupClass);
20313         }
20314         Roo.menu.MenuMgr.registerCheckable(this);
20315         if(this.checked){
20316             this.checked = false;
20317             this.setChecked(true, true);
20318         }
20319     },
20320
20321     // private
20322     destroy : function(){
20323         if(this.rendered){
20324             Roo.menu.MenuMgr.unregisterCheckable(this);
20325         }
20326         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
20327     },
20328
20329     /**
20330      * Set the checked state of this item
20331      * @param {Boolean} checked The new checked value
20332      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
20333      */
20334     setChecked : function(state, suppressEvent){
20335         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
20336             if(this.container){
20337                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
20338             }
20339             this.checked = state;
20340             if(suppressEvent !== true){
20341                 this.fireEvent("checkchange", this, state);
20342             }
20343         }
20344     },
20345
20346     // private
20347     handleClick : function(e){
20348        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
20349            this.setChecked(!this.checked);
20350        }
20351        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
20352     }
20353 });/*
20354  * Based on:
20355  * Ext JS Library 1.1.1
20356  * Copyright(c) 2006-2007, Ext JS, LLC.
20357  *
20358  * Originally Released Under LGPL - original licence link has changed is not relivant.
20359  *
20360  * Fork - LGPL
20361  * <script type="text/javascript">
20362  */
20363  
20364 /**
20365  * @class Roo.menu.DateItem
20366  * @extends Roo.menu.Adapter
20367  * A menu item that wraps the {@link Roo.DatPicker} component.
20368  * @constructor
20369  * Creates a new DateItem
20370  * @param {Object} config Configuration options
20371  */
20372 Roo.menu.DateItem = function(config){
20373     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
20374     /** The Roo.DatePicker object @type Roo.DatePicker */
20375     this.picker = this.component;
20376     this.addEvents({select: true});
20377     
20378     this.picker.on("render", function(picker){
20379         picker.getEl().swallowEvent("click");
20380         picker.container.addClass("x-menu-date-item");
20381     });
20382
20383     this.picker.on("select", this.onSelect, this);
20384 };
20385
20386 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
20387     // private
20388     onSelect : function(picker, date){
20389         this.fireEvent("select", this, date, picker);
20390         Roo.menu.DateItem.superclass.handleClick.call(this);
20391     }
20392 });/*
20393  * Based on:
20394  * Ext JS Library 1.1.1
20395  * Copyright(c) 2006-2007, Ext JS, LLC.
20396  *
20397  * Originally Released Under LGPL - original licence link has changed is not relivant.
20398  *
20399  * Fork - LGPL
20400  * <script type="text/javascript">
20401  */
20402  
20403 /**
20404  * @class Roo.menu.ColorItem
20405  * @extends Roo.menu.Adapter
20406  * A menu item that wraps the {@link Roo.ColorPalette} component.
20407  * @constructor
20408  * Creates a new ColorItem
20409  * @param {Object} config Configuration options
20410  */
20411 Roo.menu.ColorItem = function(config){
20412     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
20413     /** The Roo.ColorPalette object @type Roo.ColorPalette */
20414     this.palette = this.component;
20415     this.relayEvents(this.palette, ["select"]);
20416     if(this.selectHandler){
20417         this.on('select', this.selectHandler, this.scope);
20418     }
20419 };
20420 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
20421  * Based on:
20422  * Ext JS Library 1.1.1
20423  * Copyright(c) 2006-2007, Ext JS, LLC.
20424  *
20425  * Originally Released Under LGPL - original licence link has changed is not relivant.
20426  *
20427  * Fork - LGPL
20428  * <script type="text/javascript">
20429  */
20430  
20431
20432 /**
20433  * @class Roo.menu.DateMenu
20434  * @extends Roo.menu.Menu
20435  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
20436  * @constructor
20437  * Creates a new DateMenu
20438  * @param {Object} config Configuration options
20439  */
20440 Roo.menu.DateMenu = function(config){
20441     Roo.menu.DateMenu.superclass.constructor.call(this, config);
20442     this.plain = true;
20443     var di = new Roo.menu.DateItem(config);
20444     this.add(di);
20445     /**
20446      * The {@link Roo.DatePicker} instance for this DateMenu
20447      * @type DatePicker
20448      */
20449     this.picker = di.picker;
20450     /**
20451      * @event select
20452      * @param {DatePicker} picker
20453      * @param {Date} date
20454      */
20455     this.relayEvents(di, ["select"]);
20456     this.on('beforeshow', function(){
20457         if(this.picker){
20458             this.picker.hideMonthPicker(false);
20459         }
20460     }, this);
20461 };
20462 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
20463     cls:'x-date-menu'
20464 });/*
20465  * Based on:
20466  * Ext JS Library 1.1.1
20467  * Copyright(c) 2006-2007, Ext JS, LLC.
20468  *
20469  * Originally Released Under LGPL - original licence link has changed is not relivant.
20470  *
20471  * Fork - LGPL
20472  * <script type="text/javascript">
20473  */
20474  
20475
20476 /**
20477  * @class Roo.menu.ColorMenu
20478  * @extends Roo.menu.Menu
20479  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
20480  * @constructor
20481  * Creates a new ColorMenu
20482  * @param {Object} config Configuration options
20483  */
20484 Roo.menu.ColorMenu = function(config){
20485     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
20486     this.plain = true;
20487     var ci = new Roo.menu.ColorItem(config);
20488     this.add(ci);
20489     /**
20490      * The {@link Roo.ColorPalette} instance for this ColorMenu
20491      * @type ColorPalette
20492      */
20493     this.palette = ci.palette;
20494     /**
20495      * @event select
20496      * @param {ColorPalette} palette
20497      * @param {String} color
20498      */
20499     this.relayEvents(ci, ["select"]);
20500 };
20501 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
20502  * Based on:
20503  * Ext JS Library 1.1.1
20504  * Copyright(c) 2006-2007, Ext JS, LLC.
20505  *
20506  * Originally Released Under LGPL - original licence link has changed is not relivant.
20507  *
20508  * Fork - LGPL
20509  * <script type="text/javascript">
20510  */
20511  
20512 /**
20513  * @class Roo.form.Field
20514  * @extends Roo.BoxComponent
20515  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
20516  * @constructor
20517  * Creates a new Field
20518  * @param {Object} config Configuration options
20519  */
20520 Roo.form.Field = function(config){
20521     Roo.form.Field.superclass.constructor.call(this, config);
20522 };
20523
20524 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
20525     /**
20526      * @cfg {String} fieldLabel Label to use when rendering a form.
20527      */
20528        /**
20529      * @cfg {String} qtip Mouse over tip
20530      */
20531      
20532     /**
20533      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
20534      */
20535     invalidClass : "x-form-invalid",
20536     /**
20537      * @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")
20538      */
20539     invalidText : "The value in this field is invalid",
20540     /**
20541      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
20542      */
20543     focusClass : "x-form-focus",
20544     /**
20545      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
20546       automatic validation (defaults to "keyup").
20547      */
20548     validationEvent : "keyup",
20549     /**
20550      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
20551      */
20552     validateOnBlur : true,
20553     /**
20554      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
20555      */
20556     validationDelay : 250,
20557     /**
20558      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
20559      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
20560      */
20561     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "off"},
20562     /**
20563      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
20564      */
20565     fieldClass : "x-form-field",
20566     /**
20567      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
20568      *<pre>
20569 Value         Description
20570 -----------   ----------------------------------------------------------------------
20571 qtip          Display a quick tip when the user hovers over the field
20572 title         Display a default browser title attribute popup
20573 under         Add a block div beneath the field containing the error text
20574 side          Add an error icon to the right of the field with a popup on hover
20575 [element id]  Add the error text directly to the innerHTML of the specified element
20576 </pre>
20577      */
20578     msgTarget : 'qtip',
20579     /**
20580      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
20581      */
20582     msgFx : 'normal',
20583
20584     /**
20585      * @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.
20586      */
20587     readOnly : false,
20588
20589     /**
20590      * @cfg {Boolean} disabled True to disable the field (defaults to false).
20591      */
20592     disabled : false,
20593
20594     /**
20595      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
20596      */
20597     inputType : undefined,
20598     
20599     /**
20600      * @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).
20601          */
20602         tabIndex : undefined,
20603         
20604     // private
20605     isFormField : true,
20606
20607     // private
20608     hasFocus : false,
20609     /**
20610      * @property {Roo.Element} fieldEl
20611      * Element Containing the rendered Field (with label etc.)
20612      */
20613     /**
20614      * @cfg {Mixed} value A value to initialize this field with.
20615      */
20616     value : undefined,
20617
20618     /**
20619      * @cfg {String} name The field's HTML name attribute.
20620      */
20621     /**
20622      * @cfg {String} cls A CSS class to apply to the field's underlying element.
20623      */
20624
20625         // private ??
20626         initComponent : function(){
20627         Roo.form.Field.superclass.initComponent.call(this);
20628         this.addEvents({
20629             /**
20630              * @event focus
20631              * Fires when this field receives input focus.
20632              * @param {Roo.form.Field} this
20633              */
20634             focus : true,
20635             /**
20636              * @event blur
20637              * Fires when this field loses input focus.
20638              * @param {Roo.form.Field} this
20639              */
20640             blur : true,
20641             /**
20642              * @event specialkey
20643              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
20644              * {@link Roo.EventObject#getKey} to determine which key was pressed.
20645              * @param {Roo.form.Field} this
20646              * @param {Roo.EventObject} e The event object
20647              */
20648             specialkey : true,
20649             /**
20650              * @event change
20651              * Fires just before the field blurs if the field value has changed.
20652              * @param {Roo.form.Field} this
20653              * @param {Mixed} newValue The new value
20654              * @param {Mixed} oldValue The original value
20655              */
20656             change : true,
20657             /**
20658              * @event invalid
20659              * Fires after the field has been marked as invalid.
20660              * @param {Roo.form.Field} this
20661              * @param {String} msg The validation message
20662              */
20663             invalid : true,
20664             /**
20665              * @event valid
20666              * Fires after the field has been validated with no errors.
20667              * @param {Roo.form.Field} this
20668              */
20669             valid : true,
20670              /**
20671              * @event keyup
20672              * Fires after the key up
20673              * @param {Roo.form.Field} this
20674              * @param {Roo.EventObject}  e The event Object
20675              */
20676             keyup : true
20677         });
20678     },
20679
20680     /**
20681      * Returns the name attribute of the field if available
20682      * @return {String} name The field name
20683      */
20684     getName: function(){
20685          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
20686     },
20687
20688     // private
20689     onRender : function(ct, position){
20690         Roo.form.Field.superclass.onRender.call(this, ct, position);
20691         if(!this.el){
20692             var cfg = this.getAutoCreate();
20693             if(!cfg.name){
20694                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
20695             }
20696             if (!cfg.name.length) {
20697                 delete cfg.name;
20698             }
20699             if(this.inputType){
20700                 cfg.type = this.inputType;
20701             }
20702             this.el = ct.createChild(cfg, position);
20703         }
20704         var type = this.el.dom.type;
20705         if(type){
20706             if(type == 'password'){
20707                 type = 'text';
20708             }
20709             this.el.addClass('x-form-'+type);
20710         }
20711         if(this.readOnly){
20712             this.el.dom.readOnly = true;
20713         }
20714         if(this.tabIndex !== undefined){
20715             this.el.dom.setAttribute('tabIndex', this.tabIndex);
20716         }
20717
20718         this.el.addClass([this.fieldClass, this.cls]);
20719         this.initValue();
20720     },
20721
20722     /**
20723      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
20724      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
20725      * @return {Roo.form.Field} this
20726      */
20727     applyTo : function(target){
20728         this.allowDomMove = false;
20729         this.el = Roo.get(target);
20730         this.render(this.el.dom.parentNode);
20731         return this;
20732     },
20733
20734     // private
20735     initValue : function(){
20736         if(this.value !== undefined){
20737             this.setValue(this.value);
20738         }else if(this.el.dom.value.length > 0){
20739             this.setValue(this.el.dom.value);
20740         }
20741     },
20742
20743     /**
20744      * Returns true if this field has been changed since it was originally loaded and is not disabled.
20745      */
20746     isDirty : function() {
20747         if(this.disabled) {
20748             return false;
20749         }
20750         return String(this.getValue()) !== String(this.originalValue);
20751     },
20752
20753     // private
20754     afterRender : function(){
20755         Roo.form.Field.superclass.afterRender.call(this);
20756         this.initEvents();
20757     },
20758
20759     // private
20760     fireKey : function(e){
20761         //Roo.log('field ' + e.getKey());
20762         if(e.isNavKeyPress()){
20763             this.fireEvent("specialkey", this, e);
20764         }
20765     },
20766
20767     /**
20768      * Resets the current field value to the originally loaded value and clears any validation messages
20769      */
20770     reset : function(){
20771         this.setValue(this.resetValue);
20772         this.clearInvalid();
20773     },
20774
20775     // private
20776     initEvents : function(){
20777         // safari killled keypress - so keydown is now used..
20778         this.el.on("keydown" , this.fireKey,  this);
20779         this.el.on("focus", this.onFocus,  this);
20780         this.el.on("blur", this.onBlur,  this);
20781         this.el.relayEvent('keyup', this);
20782
20783         // reference to original value for reset
20784         this.originalValue = this.getValue();
20785         this.resetValue =  this.getValue();
20786     },
20787
20788     // private
20789     onFocus : function(){
20790         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20791             this.el.addClass(this.focusClass);
20792         }
20793         if(!this.hasFocus){
20794             this.hasFocus = true;
20795             this.startValue = this.getValue();
20796             this.fireEvent("focus", this);
20797         }
20798     },
20799
20800     beforeBlur : Roo.emptyFn,
20801
20802     // private
20803     onBlur : function(){
20804         this.beforeBlur();
20805         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
20806             this.el.removeClass(this.focusClass);
20807         }
20808         this.hasFocus = false;
20809         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
20810             this.validate();
20811         }
20812         var v = this.getValue();
20813         if(String(v) !== String(this.startValue)){
20814             this.fireEvent('change', this, v, this.startValue);
20815         }
20816         this.fireEvent("blur", this);
20817     },
20818
20819     /**
20820      * Returns whether or not the field value is currently valid
20821      * @param {Boolean} preventMark True to disable marking the field invalid
20822      * @return {Boolean} True if the value is valid, else false
20823      */
20824     isValid : function(preventMark){
20825         if(this.disabled){
20826             return true;
20827         }
20828         var restore = this.preventMark;
20829         this.preventMark = preventMark === true;
20830         var v = this.validateValue(this.processValue(this.getRawValue()));
20831         this.preventMark = restore;
20832         return v;
20833     },
20834
20835     /**
20836      * Validates the field value
20837      * @return {Boolean} True if the value is valid, else false
20838      */
20839     validate : function(){
20840         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
20841             this.clearInvalid();
20842             return true;
20843         }
20844         return false;
20845     },
20846
20847     processValue : function(value){
20848         return value;
20849     },
20850
20851     // private
20852     // Subclasses should provide the validation implementation by overriding this
20853     validateValue : function(value){
20854         return true;
20855     },
20856
20857     /**
20858      * Mark this field as invalid
20859      * @param {String} msg The validation message
20860      */
20861     markInvalid : function(msg){
20862         if(!this.rendered || this.preventMark){ // not rendered
20863             return;
20864         }
20865         
20866         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20867         
20868         obj.el.addClass(this.invalidClass);
20869         msg = msg || this.invalidText;
20870         switch(this.msgTarget){
20871             case 'qtip':
20872                 obj.el.dom.qtip = msg;
20873                 obj.el.dom.qclass = 'x-form-invalid-tip';
20874                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
20875                     Roo.QuickTips.enable();
20876                 }
20877                 break;
20878             case 'title':
20879                 this.el.dom.title = msg;
20880                 break;
20881             case 'under':
20882                 if(!this.errorEl){
20883                     var elp = this.el.findParent('.x-form-element', 5, true);
20884                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
20885                     this.errorEl.setWidth(elp.getWidth(true)-20);
20886                 }
20887                 this.errorEl.update(msg);
20888                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
20889                 break;
20890             case 'side':
20891                 if(!this.errorIcon){
20892                     var elp = this.el.findParent('.x-form-element', 5, true);
20893                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
20894                 }
20895                 this.alignErrorIcon();
20896                 this.errorIcon.dom.qtip = msg;
20897                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
20898                 this.errorIcon.show();
20899                 this.on('resize', this.alignErrorIcon, this);
20900                 break;
20901             default:
20902                 var t = Roo.getDom(this.msgTarget);
20903                 t.innerHTML = msg;
20904                 t.style.display = this.msgDisplay;
20905                 break;
20906         }
20907         this.fireEvent('invalid', this, msg);
20908     },
20909
20910     // private
20911     alignErrorIcon : function(){
20912         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
20913     },
20914
20915     /**
20916      * Clear any invalid styles/messages for this field
20917      */
20918     clearInvalid : function(){
20919         if(!this.rendered || this.preventMark){ // not rendered
20920             return;
20921         }
20922         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
20923         
20924         obj.el.removeClass(this.invalidClass);
20925         switch(this.msgTarget){
20926             case 'qtip':
20927                 obj.el.dom.qtip = '';
20928                 break;
20929             case 'title':
20930                 this.el.dom.title = '';
20931                 break;
20932             case 'under':
20933                 if(this.errorEl){
20934                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
20935                 }
20936                 break;
20937             case 'side':
20938                 if(this.errorIcon){
20939                     this.errorIcon.dom.qtip = '';
20940                     this.errorIcon.hide();
20941                     this.un('resize', this.alignErrorIcon, this);
20942                 }
20943                 break;
20944             default:
20945                 var t = Roo.getDom(this.msgTarget);
20946                 t.innerHTML = '';
20947                 t.style.display = 'none';
20948                 break;
20949         }
20950         this.fireEvent('valid', this);
20951     },
20952
20953     /**
20954      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
20955      * @return {Mixed} value The field value
20956      */
20957     getRawValue : function(){
20958         var v = this.el.getValue();
20959         
20960         return v;
20961     },
20962
20963     /**
20964      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
20965      * @return {Mixed} value The field value
20966      */
20967     getValue : function(){
20968         var v = this.el.getValue();
20969          
20970         return v;
20971     },
20972
20973     /**
20974      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
20975      * @param {Mixed} value The value to set
20976      */
20977     setRawValue : function(v){
20978         return this.el.dom.value = (v === null || v === undefined ? '' : v);
20979     },
20980
20981     /**
20982      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
20983      * @param {Mixed} value The value to set
20984      */
20985     setValue : function(v){
20986         this.value = v;
20987         if(this.rendered){
20988             this.el.dom.value = (v === null || v === undefined ? '' : v);
20989              this.validate();
20990         }
20991     },
20992
20993     adjustSize : function(w, h){
20994         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
20995         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
20996         return s;
20997     },
20998
20999     adjustWidth : function(tag, w){
21000         tag = tag.toLowerCase();
21001         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
21002             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
21003                 if(tag == 'input'){
21004                     return w + 2;
21005                 }
21006                 if(tag == 'textarea'){
21007                     return w-2;
21008                 }
21009             }else if(Roo.isOpera){
21010                 if(tag == 'input'){
21011                     return w + 2;
21012                 }
21013                 if(tag == 'textarea'){
21014                     return w-2;
21015                 }
21016             }
21017         }
21018         return w;
21019     }
21020 });
21021
21022
21023 // anything other than normal should be considered experimental
21024 Roo.form.Field.msgFx = {
21025     normal : {
21026         show: function(msgEl, f){
21027             msgEl.setDisplayed('block');
21028         },
21029
21030         hide : function(msgEl, f){
21031             msgEl.setDisplayed(false).update('');
21032         }
21033     },
21034
21035     slide : {
21036         show: function(msgEl, f){
21037             msgEl.slideIn('t', {stopFx:true});
21038         },
21039
21040         hide : function(msgEl, f){
21041             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
21042         }
21043     },
21044
21045     slideRight : {
21046         show: function(msgEl, f){
21047             msgEl.fixDisplay();
21048             msgEl.alignTo(f.el, 'tl-tr');
21049             msgEl.slideIn('l', {stopFx:true});
21050         },
21051
21052         hide : function(msgEl, f){
21053             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
21054         }
21055     }
21056 };/*
21057  * Based on:
21058  * Ext JS Library 1.1.1
21059  * Copyright(c) 2006-2007, Ext JS, LLC.
21060  *
21061  * Originally Released Under LGPL - original licence link has changed is not relivant.
21062  *
21063  * Fork - LGPL
21064  * <script type="text/javascript">
21065  */
21066  
21067
21068 /**
21069  * @class Roo.form.TextField
21070  * @extends Roo.form.Field
21071  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
21072  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
21073  * @constructor
21074  * Creates a new TextField
21075  * @param {Object} config Configuration options
21076  */
21077 Roo.form.TextField = function(config){
21078     Roo.form.TextField.superclass.constructor.call(this, config);
21079     this.addEvents({
21080         /**
21081          * @event autosize
21082          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
21083          * according to the default logic, but this event provides a hook for the developer to apply additional
21084          * logic at runtime to resize the field if needed.
21085              * @param {Roo.form.Field} this This text field
21086              * @param {Number} width The new field width
21087              */
21088         autosize : true
21089     });
21090 };
21091
21092 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
21093     /**
21094      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
21095      */
21096     grow : false,
21097     /**
21098      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
21099      */
21100     growMin : 30,
21101     /**
21102      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
21103      */
21104     growMax : 800,
21105     /**
21106      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
21107      */
21108     vtype : null,
21109     /**
21110      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
21111      */
21112     maskRe : null,
21113     /**
21114      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
21115      */
21116     disableKeyFilter : false,
21117     /**
21118      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
21119      */
21120     allowBlank : true,
21121     /**
21122      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
21123      */
21124     minLength : 0,
21125     /**
21126      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
21127      */
21128     maxLength : Number.MAX_VALUE,
21129     /**
21130      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
21131      */
21132     minLengthText : "The minimum length for this field is {0}",
21133     /**
21134      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
21135      */
21136     maxLengthText : "The maximum length for this field is {0}",
21137     /**
21138      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
21139      */
21140     selectOnFocus : false,
21141     /**
21142      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
21143      */
21144     blankText : "This field is required",
21145     /**
21146      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
21147      * If available, this function will be called only after the basic validators all return true, and will be passed the
21148      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
21149      */
21150     validator : null,
21151     /**
21152      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
21153      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
21154      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
21155      */
21156     regex : null,
21157     /**
21158      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
21159      */
21160     regexText : "",
21161     /**
21162      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
21163      */
21164     emptyText : null,
21165    
21166
21167     // private
21168     initEvents : function()
21169     {
21170         if (this.emptyText) {
21171             this.el.attr('placeholder', this.emptyText);
21172         }
21173         
21174         Roo.form.TextField.superclass.initEvents.call(this);
21175         if(this.validationEvent == 'keyup'){
21176             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
21177             this.el.on('keyup', this.filterValidation, this);
21178         }
21179         else if(this.validationEvent !== false){
21180             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
21181         }
21182         
21183         if(this.selectOnFocus){
21184             this.on("focus", this.preFocus, this);
21185             
21186         }
21187         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
21188             this.el.on("keypress", this.filterKeys, this);
21189         }
21190         if(this.grow){
21191             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
21192             this.el.on("click", this.autoSize,  this);
21193         }
21194         if(this.el.is('input[type=password]') && Roo.isSafari){
21195             this.el.on('keydown', this.SafariOnKeyDown, this);
21196         }
21197     },
21198
21199     processValue : function(value){
21200         if(this.stripCharsRe){
21201             var newValue = value.replace(this.stripCharsRe, '');
21202             if(newValue !== value){
21203                 this.setRawValue(newValue);
21204                 return newValue;
21205             }
21206         }
21207         return value;
21208     },
21209
21210     filterValidation : function(e){
21211         if(!e.isNavKeyPress()){
21212             this.validationTask.delay(this.validationDelay);
21213         }
21214     },
21215
21216     // private
21217     onKeyUp : function(e){
21218         if(!e.isNavKeyPress()){
21219             this.autoSize();
21220         }
21221     },
21222
21223     /**
21224      * Resets the current field value to the originally-loaded value and clears any validation messages.
21225      *  
21226      */
21227     reset : function(){
21228         Roo.form.TextField.superclass.reset.call(this);
21229        
21230     },
21231
21232     
21233     // private
21234     preFocus : function(){
21235         
21236         if(this.selectOnFocus){
21237             this.el.dom.select();
21238         }
21239     },
21240
21241     
21242     // private
21243     filterKeys : function(e){
21244         var k = e.getKey();
21245         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
21246             return;
21247         }
21248         var c = e.getCharCode(), cc = String.fromCharCode(c);
21249         if(Roo.isIE && (e.isSpecialKey() || !cc)){
21250             return;
21251         }
21252         if(!this.maskRe.test(cc)){
21253             e.stopEvent();
21254         }
21255     },
21256
21257     setValue : function(v){
21258         
21259         Roo.form.TextField.superclass.setValue.apply(this, arguments);
21260         
21261         this.autoSize();
21262     },
21263
21264     /**
21265      * Validates a value according to the field's validation rules and marks the field as invalid
21266      * if the validation fails
21267      * @param {Mixed} value The value to validate
21268      * @return {Boolean} True if the value is valid, else false
21269      */
21270     validateValue : function(value){
21271         if(value.length < 1)  { // if it's blank
21272              if(this.allowBlank){
21273                 this.clearInvalid();
21274                 return true;
21275              }else{
21276                 this.markInvalid(this.blankText);
21277                 return false;
21278              }
21279         }
21280         if(value.length < this.minLength){
21281             this.markInvalid(String.format(this.minLengthText, this.minLength));
21282             return false;
21283         }
21284         if(value.length > this.maxLength){
21285             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
21286             return false;
21287         }
21288         if(this.vtype){
21289             var vt = Roo.form.VTypes;
21290             if(!vt[this.vtype](value, this)){
21291                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
21292                 return false;
21293             }
21294         }
21295         if(typeof this.validator == "function"){
21296             var msg = this.validator(value);
21297             if(msg !== true){
21298                 this.markInvalid(msg);
21299                 return false;
21300             }
21301         }
21302         if(this.regex && !this.regex.test(value)){
21303             this.markInvalid(this.regexText);
21304             return false;
21305         }
21306         return true;
21307     },
21308
21309     /**
21310      * Selects text in this field
21311      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
21312      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
21313      */
21314     selectText : function(start, end){
21315         var v = this.getRawValue();
21316         if(v.length > 0){
21317             start = start === undefined ? 0 : start;
21318             end = end === undefined ? v.length : end;
21319             var d = this.el.dom;
21320             if(d.setSelectionRange){
21321                 d.setSelectionRange(start, end);
21322             }else if(d.createTextRange){
21323                 var range = d.createTextRange();
21324                 range.moveStart("character", start);
21325                 range.moveEnd("character", v.length-end);
21326                 range.select();
21327             }
21328         }
21329     },
21330
21331     /**
21332      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
21333      * This only takes effect if grow = true, and fires the autosize event.
21334      */
21335     autoSize : function(){
21336         if(!this.grow || !this.rendered){
21337             return;
21338         }
21339         if(!this.metrics){
21340             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
21341         }
21342         var el = this.el;
21343         var v = el.dom.value;
21344         var d = document.createElement('div');
21345         d.appendChild(document.createTextNode(v));
21346         v = d.innerHTML;
21347         d = null;
21348         v += "&#160;";
21349         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
21350         this.el.setWidth(w);
21351         this.fireEvent("autosize", this, w);
21352     },
21353     
21354     // private
21355     SafariOnKeyDown : function(event)
21356     {
21357         // this is a workaround for a password hang bug on chrome/ webkit.
21358         
21359         var isSelectAll = false;
21360         
21361         if(this.el.dom.selectionEnd > 0){
21362             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
21363         }
21364         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
21365             event.preventDefault();
21366             this.setValue('');
21367             return;
21368         }
21369         
21370         if(isSelectAll){ // backspace and delete key
21371             
21372             event.preventDefault();
21373             // this is very hacky as keydown always get's upper case.
21374             //
21375             var cc = String.fromCharCode(event.getCharCode());
21376             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
21377             
21378         }
21379         
21380         
21381     }
21382 });/*
21383  * Based on:
21384  * Ext JS Library 1.1.1
21385  * Copyright(c) 2006-2007, Ext JS, LLC.
21386  *
21387  * Originally Released Under LGPL - original licence link has changed is not relivant.
21388  *
21389  * Fork - LGPL
21390  * <script type="text/javascript">
21391  */
21392  
21393 /**
21394  * @class Roo.form.Hidden
21395  * @extends Roo.form.TextField
21396  * Simple Hidden element used on forms 
21397  * 
21398  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
21399  * 
21400  * @constructor
21401  * Creates a new Hidden form element.
21402  * @param {Object} config Configuration options
21403  */
21404
21405
21406
21407 // easy hidden field...
21408 Roo.form.Hidden = function(config){
21409     Roo.form.Hidden.superclass.constructor.call(this, config);
21410 };
21411   
21412 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
21413     fieldLabel:      '',
21414     inputType:      'hidden',
21415     width:          50,
21416     allowBlank:     true,
21417     labelSeparator: '',
21418     hidden:         true,
21419     itemCls :       'x-form-item-display-none'
21420
21421
21422 });
21423
21424
21425 /*
21426  * Based on:
21427  * Ext JS Library 1.1.1
21428  * Copyright(c) 2006-2007, Ext JS, LLC.
21429  *
21430  * Originally Released Under LGPL - original licence link has changed is not relivant.
21431  *
21432  * Fork - LGPL
21433  * <script type="text/javascript">
21434  */
21435  
21436 /**
21437  * @class Roo.form.TriggerField
21438  * @extends Roo.form.TextField
21439  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
21440  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
21441  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
21442  * for which you can provide a custom implementation.  For example:
21443  * <pre><code>
21444 var trigger = new Roo.form.TriggerField();
21445 trigger.onTriggerClick = myTriggerFn;
21446 trigger.applyTo('my-field');
21447 </code></pre>
21448  *
21449  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
21450  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
21451  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
21452  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
21453  * @constructor
21454  * Create a new TriggerField.
21455  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
21456  * to the base TextField)
21457  */
21458 Roo.form.TriggerField = function(config){
21459     this.mimicing = false;
21460     Roo.form.TriggerField.superclass.constructor.call(this, config);
21461 };
21462
21463 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
21464     /**
21465      * @cfg {String} triggerClass A CSS class to apply to the trigger
21466      */
21467     /**
21468      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21469      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
21470      */
21471     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "off"},
21472     /**
21473      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
21474      */
21475     hideTrigger:false,
21476
21477     /** @cfg {Boolean} grow @hide */
21478     /** @cfg {Number} growMin @hide */
21479     /** @cfg {Number} growMax @hide */
21480
21481     /**
21482      * @hide 
21483      * @method
21484      */
21485     autoSize: Roo.emptyFn,
21486     // private
21487     monitorTab : true,
21488     // private
21489     deferHeight : true,
21490
21491     
21492     actionMode : 'wrap',
21493     // private
21494     onResize : function(w, h){
21495         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
21496         if(typeof w == 'number'){
21497             var x = w - this.trigger.getWidth();
21498             this.el.setWidth(this.adjustWidth('input', x));
21499             this.trigger.setStyle('left', x+'px');
21500         }
21501     },
21502
21503     // private
21504     adjustSize : Roo.BoxComponent.prototype.adjustSize,
21505
21506     // private
21507     getResizeEl : function(){
21508         return this.wrap;
21509     },
21510
21511     // private
21512     getPositionEl : function(){
21513         return this.wrap;
21514     },
21515
21516     // private
21517     alignErrorIcon : function(){
21518         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
21519     },
21520
21521     // private
21522     onRender : function(ct, position){
21523         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
21524         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
21525         this.trigger = this.wrap.createChild(this.triggerConfig ||
21526                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
21527         if(this.hideTrigger){
21528             this.trigger.setDisplayed(false);
21529         }
21530         this.initTrigger();
21531         if(!this.width){
21532             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
21533         }
21534     },
21535
21536     // private
21537     initTrigger : function(){
21538         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
21539         this.trigger.addClassOnOver('x-form-trigger-over');
21540         this.trigger.addClassOnClick('x-form-trigger-click');
21541     },
21542
21543     // private
21544     onDestroy : function(){
21545         if(this.trigger){
21546             this.trigger.removeAllListeners();
21547             this.trigger.remove();
21548         }
21549         if(this.wrap){
21550             this.wrap.remove();
21551         }
21552         Roo.form.TriggerField.superclass.onDestroy.call(this);
21553     },
21554
21555     // private
21556     onFocus : function(){
21557         Roo.form.TriggerField.superclass.onFocus.call(this);
21558         if(!this.mimicing){
21559             this.wrap.addClass('x-trigger-wrap-focus');
21560             this.mimicing = true;
21561             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
21562             if(this.monitorTab){
21563                 this.el.on("keydown", this.checkTab, this);
21564             }
21565         }
21566     },
21567
21568     // private
21569     checkTab : function(e){
21570         if(e.getKey() == e.TAB){
21571             this.triggerBlur();
21572         }
21573     },
21574
21575     // private
21576     onBlur : function(){
21577         // do nothing
21578     },
21579
21580     // private
21581     mimicBlur : function(e, t){
21582         if(!this.wrap.contains(t) && this.validateBlur()){
21583             this.triggerBlur();
21584         }
21585     },
21586
21587     // private
21588     triggerBlur : function(){
21589         this.mimicing = false;
21590         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
21591         if(this.monitorTab){
21592             this.el.un("keydown", this.checkTab, this);
21593         }
21594         this.wrap.removeClass('x-trigger-wrap-focus');
21595         Roo.form.TriggerField.superclass.onBlur.call(this);
21596     },
21597
21598     // private
21599     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
21600     validateBlur : function(e, t){
21601         return true;
21602     },
21603
21604     // private
21605     onDisable : function(){
21606         Roo.form.TriggerField.superclass.onDisable.call(this);
21607         if(this.wrap){
21608             this.wrap.addClass('x-item-disabled');
21609         }
21610     },
21611
21612     // private
21613     onEnable : function(){
21614         Roo.form.TriggerField.superclass.onEnable.call(this);
21615         if(this.wrap){
21616             this.wrap.removeClass('x-item-disabled');
21617         }
21618     },
21619
21620     // private
21621     onShow : function(){
21622         var ae = this.getActionEl();
21623         
21624         if(ae){
21625             ae.dom.style.display = '';
21626             ae.dom.style.visibility = 'visible';
21627         }
21628     },
21629
21630     // private
21631     
21632     onHide : function(){
21633         var ae = this.getActionEl();
21634         ae.dom.style.display = 'none';
21635     },
21636
21637     /**
21638      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
21639      * by an implementing function.
21640      * @method
21641      * @param {EventObject} e
21642      */
21643     onTriggerClick : Roo.emptyFn
21644 });
21645
21646 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
21647 // to be extended by an implementing class.  For an example of implementing this class, see the custom
21648 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
21649 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
21650     initComponent : function(){
21651         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
21652
21653         this.triggerConfig = {
21654             tag:'span', cls:'x-form-twin-triggers', cn:[
21655             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
21656             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
21657         ]};
21658     },
21659
21660     getTrigger : function(index){
21661         return this.triggers[index];
21662     },
21663
21664     initTrigger : function(){
21665         var ts = this.trigger.select('.x-form-trigger', true);
21666         this.wrap.setStyle('overflow', 'hidden');
21667         var triggerField = this;
21668         ts.each(function(t, all, index){
21669             t.hide = function(){
21670                 var w = triggerField.wrap.getWidth();
21671                 this.dom.style.display = 'none';
21672                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21673             };
21674             t.show = function(){
21675                 var w = triggerField.wrap.getWidth();
21676                 this.dom.style.display = '';
21677                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
21678             };
21679             var triggerIndex = 'Trigger'+(index+1);
21680
21681             if(this['hide'+triggerIndex]){
21682                 t.dom.style.display = 'none';
21683             }
21684             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
21685             t.addClassOnOver('x-form-trigger-over');
21686             t.addClassOnClick('x-form-trigger-click');
21687         }, this);
21688         this.triggers = ts.elements;
21689     },
21690
21691     onTrigger1Click : Roo.emptyFn,
21692     onTrigger2Click : Roo.emptyFn
21693 });/*
21694  * Based on:
21695  * Ext JS Library 1.1.1
21696  * Copyright(c) 2006-2007, Ext JS, LLC.
21697  *
21698  * Originally Released Under LGPL - original licence link has changed is not relivant.
21699  *
21700  * Fork - LGPL
21701  * <script type="text/javascript">
21702  */
21703  
21704 /**
21705  * @class Roo.form.TextArea
21706  * @extends Roo.form.TextField
21707  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
21708  * support for auto-sizing.
21709  * @constructor
21710  * Creates a new TextArea
21711  * @param {Object} config Configuration options
21712  */
21713 Roo.form.TextArea = function(config){
21714     Roo.form.TextArea.superclass.constructor.call(this, config);
21715     // these are provided exchanges for backwards compat
21716     // minHeight/maxHeight were replaced by growMin/growMax to be
21717     // compatible with TextField growing config values
21718     if(this.minHeight !== undefined){
21719         this.growMin = this.minHeight;
21720     }
21721     if(this.maxHeight !== undefined){
21722         this.growMax = this.maxHeight;
21723     }
21724 };
21725
21726 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
21727     /**
21728      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
21729      */
21730     growMin : 60,
21731     /**
21732      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
21733      */
21734     growMax: 1000,
21735     /**
21736      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
21737      * in the field (equivalent to setting overflow: hidden, defaults to false)
21738      */
21739     preventScrollbars: false,
21740     /**
21741      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
21742      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
21743      */
21744
21745     // private
21746     onRender : function(ct, position){
21747         if(!this.el){
21748             this.defaultAutoCreate = {
21749                 tag: "textarea",
21750                 style:"width:300px;height:60px;",
21751                 autocomplete: "off"
21752             };
21753         }
21754         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
21755         if(this.grow){
21756             this.textSizeEl = Roo.DomHelper.append(document.body, {
21757                 tag: "pre", cls: "x-form-grow-sizer"
21758             });
21759             if(this.preventScrollbars){
21760                 this.el.setStyle("overflow", "hidden");
21761             }
21762             this.el.setHeight(this.growMin);
21763         }
21764     },
21765
21766     onDestroy : function(){
21767         if(this.textSizeEl){
21768             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
21769         }
21770         Roo.form.TextArea.superclass.onDestroy.call(this);
21771     },
21772
21773     // private
21774     onKeyUp : function(e){
21775         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
21776             this.autoSize();
21777         }
21778     },
21779
21780     /**
21781      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
21782      * This only takes effect if grow = true, and fires the autosize event if the height changes.
21783      */
21784     autoSize : function(){
21785         if(!this.grow || !this.textSizeEl){
21786             return;
21787         }
21788         var el = this.el;
21789         var v = el.dom.value;
21790         var ts = this.textSizeEl;
21791
21792         ts.innerHTML = '';
21793         ts.appendChild(document.createTextNode(v));
21794         v = ts.innerHTML;
21795
21796         Roo.fly(ts).setWidth(this.el.getWidth());
21797         if(v.length < 1){
21798             v = "&#160;&#160;";
21799         }else{
21800             if(Roo.isIE){
21801                 v = v.replace(/\n/g, '<p>&#160;</p>');
21802             }
21803             v += "&#160;\n&#160;";
21804         }
21805         ts.innerHTML = v;
21806         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
21807         if(h != this.lastHeight){
21808             this.lastHeight = h;
21809             this.el.setHeight(h);
21810             this.fireEvent("autosize", this, h);
21811         }
21812     }
21813 });/*
21814  * Based on:
21815  * Ext JS Library 1.1.1
21816  * Copyright(c) 2006-2007, Ext JS, LLC.
21817  *
21818  * Originally Released Under LGPL - original licence link has changed is not relivant.
21819  *
21820  * Fork - LGPL
21821  * <script type="text/javascript">
21822  */
21823  
21824
21825 /**
21826  * @class Roo.form.NumberField
21827  * @extends Roo.form.TextField
21828  * Numeric text field that provides automatic keystroke filtering and numeric validation.
21829  * @constructor
21830  * Creates a new NumberField
21831  * @param {Object} config Configuration options
21832  */
21833 Roo.form.NumberField = function(config){
21834     Roo.form.NumberField.superclass.constructor.call(this, config);
21835 };
21836
21837 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
21838     /**
21839      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
21840      */
21841     fieldClass: "x-form-field x-form-num-field",
21842     /**
21843      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
21844      */
21845     allowDecimals : true,
21846     /**
21847      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
21848      */
21849     decimalSeparator : ".",
21850     /**
21851      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
21852      */
21853     decimalPrecision : 2,
21854     /**
21855      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
21856      */
21857     allowNegative : true,
21858     /**
21859      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
21860      */
21861     minValue : Number.NEGATIVE_INFINITY,
21862     /**
21863      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
21864      */
21865     maxValue : Number.MAX_VALUE,
21866     /**
21867      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
21868      */
21869     minText : "The minimum value for this field is {0}",
21870     /**
21871      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
21872      */
21873     maxText : "The maximum value for this field is {0}",
21874     /**
21875      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
21876      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
21877      */
21878     nanText : "{0} is not a valid number",
21879
21880     // private
21881     initEvents : function(){
21882         Roo.form.NumberField.superclass.initEvents.call(this);
21883         var allowed = "0123456789";
21884         if(this.allowDecimals){
21885             allowed += this.decimalSeparator;
21886         }
21887         if(this.allowNegative){
21888             allowed += "-";
21889         }
21890         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
21891         var keyPress = function(e){
21892             var k = e.getKey();
21893             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
21894                 return;
21895             }
21896             var c = e.getCharCode();
21897             if(allowed.indexOf(String.fromCharCode(c)) === -1){
21898                 e.stopEvent();
21899             }
21900         };
21901         this.el.on("keypress", keyPress, this);
21902     },
21903
21904     // private
21905     validateValue : function(value){
21906         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
21907             return false;
21908         }
21909         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
21910              return true;
21911         }
21912         var num = this.parseValue(value);
21913         if(isNaN(num)){
21914             this.markInvalid(String.format(this.nanText, value));
21915             return false;
21916         }
21917         if(num < this.minValue){
21918             this.markInvalid(String.format(this.minText, this.minValue));
21919             return false;
21920         }
21921         if(num > this.maxValue){
21922             this.markInvalid(String.format(this.maxText, this.maxValue));
21923             return false;
21924         }
21925         return true;
21926     },
21927
21928     getValue : function(){
21929         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
21930     },
21931
21932     // private
21933     parseValue : function(value){
21934         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
21935         return isNaN(value) ? '' : value;
21936     },
21937
21938     // private
21939     fixPrecision : function(value){
21940         var nan = isNaN(value);
21941         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
21942             return nan ? '' : value;
21943         }
21944         return parseFloat(value).toFixed(this.decimalPrecision);
21945     },
21946
21947     setValue : function(v){
21948         v = this.fixPrecision(v);
21949         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
21950     },
21951
21952     // private
21953     decimalPrecisionFcn : function(v){
21954         return Math.floor(v);
21955     },
21956
21957     beforeBlur : function(){
21958         var v = this.parseValue(this.getRawValue());
21959         if(v){
21960             this.setValue(v);
21961         }
21962     }
21963 });/*
21964  * Based on:
21965  * Ext JS Library 1.1.1
21966  * Copyright(c) 2006-2007, Ext JS, LLC.
21967  *
21968  * Originally Released Under LGPL - original licence link has changed is not relivant.
21969  *
21970  * Fork - LGPL
21971  * <script type="text/javascript">
21972  */
21973  
21974 /**
21975  * @class Roo.form.DateField
21976  * @extends Roo.form.TriggerField
21977  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
21978 * @constructor
21979 * Create a new DateField
21980 * @param {Object} config
21981  */
21982 Roo.form.DateField = function(config){
21983     Roo.form.DateField.superclass.constructor.call(this, config);
21984     
21985       this.addEvents({
21986          
21987         /**
21988          * @event select
21989          * Fires when a date is selected
21990              * @param {Roo.form.DateField} combo This combo box
21991              * @param {Date} date The date selected
21992              */
21993         'select' : true
21994          
21995     });
21996     
21997     
21998     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
21999     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22000     this.ddMatch = null;
22001     if(this.disabledDates){
22002         var dd = this.disabledDates;
22003         var re = "(?:";
22004         for(var i = 0; i < dd.length; i++){
22005             re += dd[i];
22006             if(i != dd.length-1) re += "|";
22007         }
22008         this.ddMatch = new RegExp(re + ")");
22009     }
22010 };
22011
22012 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
22013     /**
22014      * @cfg {String} format
22015      * The default date format string which can be overriden for localization support.  The format must be
22016      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22017      */
22018     format : "m/d/y",
22019     /**
22020      * @cfg {String} altFormats
22021      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22022      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22023      */
22024     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
22025     /**
22026      * @cfg {Array} disabledDays
22027      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22028      */
22029     disabledDays : null,
22030     /**
22031      * @cfg {String} disabledDaysText
22032      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22033      */
22034     disabledDaysText : "Disabled",
22035     /**
22036      * @cfg {Array} disabledDates
22037      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22038      * expression so they are very powerful. Some examples:
22039      * <ul>
22040      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22041      * <li>["03/08", "09/16"] would disable those days for every year</li>
22042      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22043      * <li>["03/../2006"] would disable every day in March 2006</li>
22044      * <li>["^03"] would disable every day in every March</li>
22045      * </ul>
22046      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22047      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22048      */
22049     disabledDates : null,
22050     /**
22051      * @cfg {String} disabledDatesText
22052      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22053      */
22054     disabledDatesText : "Disabled",
22055     /**
22056      * @cfg {Date/String} minValue
22057      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22058      * valid format (defaults to null).
22059      */
22060     minValue : null,
22061     /**
22062      * @cfg {Date/String} maxValue
22063      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22064      * valid format (defaults to null).
22065      */
22066     maxValue : null,
22067     /**
22068      * @cfg {String} minText
22069      * The error text to display when the date in the cell is before minValue (defaults to
22070      * 'The date in this field must be after {minValue}').
22071      */
22072     minText : "The date in this field must be equal to or after {0}",
22073     /**
22074      * @cfg {String} maxText
22075      * The error text to display when the date in the cell is after maxValue (defaults to
22076      * 'The date in this field must be before {maxValue}').
22077      */
22078     maxText : "The date in this field must be equal to or before {0}",
22079     /**
22080      * @cfg {String} invalidText
22081      * The error text to display when the date in the field is invalid (defaults to
22082      * '{value} is not a valid date - it must be in the format {format}').
22083      */
22084     invalidText : "{0} is not a valid date - it must be in the format {1}",
22085     /**
22086      * @cfg {String} triggerClass
22087      * An additional CSS class used to style the trigger button.  The trigger will always get the
22088      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22089      * which displays a calendar icon).
22090      */
22091     triggerClass : 'x-form-date-trigger',
22092     
22093
22094     /**
22095      * @cfg {Boolean} useIso
22096      * if enabled, then the date field will use a hidden field to store the 
22097      * real value as iso formated date. default (false)
22098      */ 
22099     useIso : false,
22100     /**
22101      * @cfg {String/Object} autoCreate
22102      * A DomHelper element spec, or true for a default element spec (defaults to
22103      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22104      */ 
22105     // private
22106     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22107     
22108     // private
22109     hiddenField: false,
22110     
22111     onRender : function(ct, position)
22112     {
22113         Roo.form.DateField.superclass.onRender.call(this, ct, position);
22114         if (this.useIso) {
22115             //this.el.dom.removeAttribute('name'); 
22116             Roo.log("Changing name?");
22117             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
22118             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22119                     'before', true);
22120             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22121             // prevent input submission
22122             this.hiddenName = this.name;
22123         }
22124             
22125             
22126     },
22127     
22128     // private
22129     validateValue : function(value)
22130     {
22131         value = this.formatDate(value);
22132         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
22133             Roo.log('super failed');
22134             return false;
22135         }
22136         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22137              return true;
22138         }
22139         var svalue = value;
22140         value = this.parseDate(value);
22141         if(!value){
22142             Roo.log('parse date failed' + svalue);
22143             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22144             return false;
22145         }
22146         var time = value.getTime();
22147         if(this.minValue && time < this.minValue.getTime()){
22148             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22149             return false;
22150         }
22151         if(this.maxValue && time > this.maxValue.getTime()){
22152             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22153             return false;
22154         }
22155         if(this.disabledDays){
22156             var day = value.getDay();
22157             for(var i = 0; i < this.disabledDays.length; i++) {
22158                 if(day === this.disabledDays[i]){
22159                     this.markInvalid(this.disabledDaysText);
22160                     return false;
22161                 }
22162             }
22163         }
22164         var fvalue = this.formatDate(value);
22165         if(this.ddMatch && this.ddMatch.test(fvalue)){
22166             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22167             return false;
22168         }
22169         return true;
22170     },
22171
22172     // private
22173     // Provides logic to override the default TriggerField.validateBlur which just returns true
22174     validateBlur : function(){
22175         return !this.menu || !this.menu.isVisible();
22176     },
22177     
22178     getName: function()
22179     {
22180         // returns hidden if it's set..
22181         if (!this.rendered) {return ''};
22182         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
22183         
22184     },
22185
22186     /**
22187      * Returns the current date value of the date field.
22188      * @return {Date} The date value
22189      */
22190     getValue : function(){
22191         
22192         return  this.hiddenField ?
22193                 this.hiddenField.value :
22194                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
22195     },
22196
22197     /**
22198      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22199      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
22200      * (the default format used is "m/d/y").
22201      * <br />Usage:
22202      * <pre><code>
22203 //All of these calls set the same date value (May 4, 2006)
22204
22205 //Pass a date object:
22206 var dt = new Date('5/4/06');
22207 dateField.setValue(dt);
22208
22209 //Pass a date string (default format):
22210 dateField.setValue('5/4/06');
22211
22212 //Pass a date string (custom format):
22213 dateField.format = 'Y-m-d';
22214 dateField.setValue('2006-5-4');
22215 </code></pre>
22216      * @param {String/Date} date The date or valid date string
22217      */
22218     setValue : function(date){
22219         if (this.hiddenField) {
22220             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22221         }
22222         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22223         // make sure the value field is always stored as a date..
22224         this.value = this.parseDate(date);
22225         
22226         
22227     },
22228
22229     // private
22230     parseDate : function(value){
22231         if(!value || value instanceof Date){
22232             return value;
22233         }
22234         var v = Date.parseDate(value, this.format);
22235          if (!v && this.useIso) {
22236             v = Date.parseDate(value, 'Y-m-d');
22237         }
22238         if(!v && this.altFormats){
22239             if(!this.altFormatsArray){
22240                 this.altFormatsArray = this.altFormats.split("|");
22241             }
22242             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22243                 v = Date.parseDate(value, this.altFormatsArray[i]);
22244             }
22245         }
22246         return v;
22247     },
22248
22249     // private
22250     formatDate : function(date, fmt){
22251         return (!date || !(date instanceof Date)) ?
22252                date : date.dateFormat(fmt || this.format);
22253     },
22254
22255     // private
22256     menuListeners : {
22257         select: function(m, d){
22258             
22259             this.setValue(d);
22260             this.fireEvent('select', this, d);
22261         },
22262         show : function(){ // retain focus styling
22263             this.onFocus();
22264         },
22265         hide : function(){
22266             this.focus.defer(10, this);
22267             var ml = this.menuListeners;
22268             this.menu.un("select", ml.select,  this);
22269             this.menu.un("show", ml.show,  this);
22270             this.menu.un("hide", ml.hide,  this);
22271         }
22272     },
22273
22274     // private
22275     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22276     onTriggerClick : function(){
22277         if(this.disabled){
22278             return;
22279         }
22280         if(this.menu == null){
22281             this.menu = new Roo.menu.DateMenu();
22282         }
22283         Roo.apply(this.menu.picker,  {
22284             showClear: this.allowBlank,
22285             minDate : this.minValue,
22286             maxDate : this.maxValue,
22287             disabledDatesRE : this.ddMatch,
22288             disabledDatesText : this.disabledDatesText,
22289             disabledDays : this.disabledDays,
22290             disabledDaysText : this.disabledDaysText,
22291             format : this.useIso ? 'Y-m-d' : this.format,
22292             minText : String.format(this.minText, this.formatDate(this.minValue)),
22293             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22294         });
22295         this.menu.on(Roo.apply({}, this.menuListeners, {
22296             scope:this
22297         }));
22298         this.menu.picker.setValue(this.getValue() || new Date());
22299         this.menu.show(this.el, "tl-bl?");
22300     },
22301
22302     beforeBlur : function(){
22303         var v = this.parseDate(this.getRawValue());
22304         if(v){
22305             this.setValue(v);
22306         }
22307     },
22308
22309     /*@
22310      * overide
22311      * 
22312      */
22313     isDirty : function() {
22314         if(this.disabled) {
22315             return false;
22316         }
22317         
22318         if(typeof(this.startValue) === 'undefined'){
22319             return false;
22320         }
22321         
22322         return String(this.getValue()) !== String(this.startValue);
22323         
22324     }
22325 });/*
22326  * Based on:
22327  * Ext JS Library 1.1.1
22328  * Copyright(c) 2006-2007, Ext JS, LLC.
22329  *
22330  * Originally Released Under LGPL - original licence link has changed is not relivant.
22331  *
22332  * Fork - LGPL
22333  * <script type="text/javascript">
22334  */
22335  
22336 /**
22337  * @class Roo.form.MonthField
22338  * @extends Roo.form.TriggerField
22339  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
22340 * @constructor
22341 * Create a new MonthField
22342 * @param {Object} config
22343  */
22344 Roo.form.MonthField = function(config){
22345     
22346     Roo.form.MonthField.superclass.constructor.call(this, config);
22347     
22348       this.addEvents({
22349          
22350         /**
22351          * @event select
22352          * Fires when a date is selected
22353              * @param {Roo.form.MonthFieeld} combo This combo box
22354              * @param {Date} date The date selected
22355              */
22356         'select' : true
22357          
22358     });
22359     
22360     
22361     if(typeof this.minValue == "string") this.minValue = this.parseDate(this.minValue);
22362     if(typeof this.maxValue == "string") this.maxValue = this.parseDate(this.maxValue);
22363     this.ddMatch = null;
22364     if(this.disabledDates){
22365         var dd = this.disabledDates;
22366         var re = "(?:";
22367         for(var i = 0; i < dd.length; i++){
22368             re += dd[i];
22369             if(i != dd.length-1) re += "|";
22370         }
22371         this.ddMatch = new RegExp(re + ")");
22372     }
22373 };
22374
22375 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
22376     /**
22377      * @cfg {String} format
22378      * The default date format string which can be overriden for localization support.  The format must be
22379      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
22380      */
22381     format : "M Y",
22382     /**
22383      * @cfg {String} altFormats
22384      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
22385      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
22386      */
22387     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
22388     /**
22389      * @cfg {Array} disabledDays
22390      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
22391      */
22392     disabledDays : [0,1,2,3,4,5,6],
22393     /**
22394      * @cfg {String} disabledDaysText
22395      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
22396      */
22397     disabledDaysText : "Disabled",
22398     /**
22399      * @cfg {Array} disabledDates
22400      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
22401      * expression so they are very powerful. Some examples:
22402      * <ul>
22403      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
22404      * <li>["03/08", "09/16"] would disable those days for every year</li>
22405      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
22406      * <li>["03/../2006"] would disable every day in March 2006</li>
22407      * <li>["^03"] would disable every day in every March</li>
22408      * </ul>
22409      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
22410      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
22411      */
22412     disabledDates : null,
22413     /**
22414      * @cfg {String} disabledDatesText
22415      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
22416      */
22417     disabledDatesText : "Disabled",
22418     /**
22419      * @cfg {Date/String} minValue
22420      * The minimum allowed date. Can be either a Javascript date object or a string date in a
22421      * valid format (defaults to null).
22422      */
22423     minValue : null,
22424     /**
22425      * @cfg {Date/String} maxValue
22426      * The maximum allowed date. Can be either a Javascript date object or a string date in a
22427      * valid format (defaults to null).
22428      */
22429     maxValue : null,
22430     /**
22431      * @cfg {String} minText
22432      * The error text to display when the date in the cell is before minValue (defaults to
22433      * 'The date in this field must be after {minValue}').
22434      */
22435     minText : "The date in this field must be equal to or after {0}",
22436     /**
22437      * @cfg {String} maxTextf
22438      * The error text to display when the date in the cell is after maxValue (defaults to
22439      * 'The date in this field must be before {maxValue}').
22440      */
22441     maxText : "The date in this field must be equal to or before {0}",
22442     /**
22443      * @cfg {String} invalidText
22444      * The error text to display when the date in the field is invalid (defaults to
22445      * '{value} is not a valid date - it must be in the format {format}').
22446      */
22447     invalidText : "{0} is not a valid date - it must be in the format {1}",
22448     /**
22449      * @cfg {String} triggerClass
22450      * An additional CSS class used to style the trigger button.  The trigger will always get the
22451      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
22452      * which displays a calendar icon).
22453      */
22454     triggerClass : 'x-form-date-trigger',
22455     
22456
22457     /**
22458      * @cfg {Boolean} useIso
22459      * if enabled, then the date field will use a hidden field to store the 
22460      * real value as iso formated date. default (true)
22461      */ 
22462     useIso : true,
22463     /**
22464      * @cfg {String/Object} autoCreate
22465      * A DomHelper element spec, or true for a default element spec (defaults to
22466      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
22467      */ 
22468     // private
22469     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
22470     
22471     // private
22472     hiddenField: false,
22473     
22474     hideMonthPicker : false,
22475     
22476     onRender : function(ct, position)
22477     {
22478         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
22479         if (this.useIso) {
22480             this.el.dom.removeAttribute('name'); 
22481             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
22482                     'before', true);
22483             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
22484             // prevent input submission
22485             this.hiddenName = this.name;
22486         }
22487             
22488             
22489     },
22490     
22491     // private
22492     validateValue : function(value)
22493     {
22494         value = this.formatDate(value);
22495         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
22496             return false;
22497         }
22498         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
22499              return true;
22500         }
22501         var svalue = value;
22502         value = this.parseDate(value);
22503         if(!value){
22504             this.markInvalid(String.format(this.invalidText, svalue, this.format));
22505             return false;
22506         }
22507         var time = value.getTime();
22508         if(this.minValue && time < this.minValue.getTime()){
22509             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
22510             return false;
22511         }
22512         if(this.maxValue && time > this.maxValue.getTime()){
22513             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
22514             return false;
22515         }
22516         /*if(this.disabledDays){
22517             var day = value.getDay();
22518             for(var i = 0; i < this.disabledDays.length; i++) {
22519                 if(day === this.disabledDays[i]){
22520                     this.markInvalid(this.disabledDaysText);
22521                     return false;
22522                 }
22523             }
22524         }
22525         */
22526         var fvalue = this.formatDate(value);
22527         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
22528             this.markInvalid(String.format(this.disabledDatesText, fvalue));
22529             return false;
22530         }
22531         */
22532         return true;
22533     },
22534
22535     // private
22536     // Provides logic to override the default TriggerField.validateBlur which just returns true
22537     validateBlur : function(){
22538         return !this.menu || !this.menu.isVisible();
22539     },
22540
22541     /**
22542      * Returns the current date value of the date field.
22543      * @return {Date} The date value
22544      */
22545     getValue : function(){
22546         
22547         
22548         
22549         return  this.hiddenField ?
22550                 this.hiddenField.value :
22551                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
22552     },
22553
22554     /**
22555      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
22556      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
22557      * (the default format used is "m/d/y").
22558      * <br />Usage:
22559      * <pre><code>
22560 //All of these calls set the same date value (May 4, 2006)
22561
22562 //Pass a date object:
22563 var dt = new Date('5/4/06');
22564 monthField.setValue(dt);
22565
22566 //Pass a date string (default format):
22567 monthField.setValue('5/4/06');
22568
22569 //Pass a date string (custom format):
22570 monthField.format = 'Y-m-d';
22571 monthField.setValue('2006-5-4');
22572 </code></pre>
22573      * @param {String/Date} date The date or valid date string
22574      */
22575     setValue : function(date){
22576         Roo.log('month setValue' + date);
22577         // can only be first of month..
22578         
22579         var val = this.parseDate(date);
22580         
22581         if (this.hiddenField) {
22582             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
22583         }
22584         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
22585         this.value = this.parseDate(date);
22586     },
22587
22588     // private
22589     parseDate : function(value){
22590         if(!value || value instanceof Date){
22591             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
22592             return value;
22593         }
22594         var v = Date.parseDate(value, this.format);
22595         if (!v && this.useIso) {
22596             v = Date.parseDate(value, 'Y-m-d');
22597         }
22598         if (v) {
22599             // 
22600             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
22601         }
22602         
22603         
22604         if(!v && this.altFormats){
22605             if(!this.altFormatsArray){
22606                 this.altFormatsArray = this.altFormats.split("|");
22607             }
22608             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
22609                 v = Date.parseDate(value, this.altFormatsArray[i]);
22610             }
22611         }
22612         return v;
22613     },
22614
22615     // private
22616     formatDate : function(date, fmt){
22617         return (!date || !(date instanceof Date)) ?
22618                date : date.dateFormat(fmt || this.format);
22619     },
22620
22621     // private
22622     menuListeners : {
22623         select: function(m, d){
22624             this.setValue(d);
22625             this.fireEvent('select', this, d);
22626         },
22627         show : function(){ // retain focus styling
22628             this.onFocus();
22629         },
22630         hide : function(){
22631             this.focus.defer(10, this);
22632             var ml = this.menuListeners;
22633             this.menu.un("select", ml.select,  this);
22634             this.menu.un("show", ml.show,  this);
22635             this.menu.un("hide", ml.hide,  this);
22636         }
22637     },
22638     // private
22639     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
22640     onTriggerClick : function(){
22641         if(this.disabled){
22642             return;
22643         }
22644         if(this.menu == null){
22645             this.menu = new Roo.menu.DateMenu();
22646            
22647         }
22648         
22649         Roo.apply(this.menu.picker,  {
22650             
22651             showClear: this.allowBlank,
22652             minDate : this.minValue,
22653             maxDate : this.maxValue,
22654             disabledDatesRE : this.ddMatch,
22655             disabledDatesText : this.disabledDatesText,
22656             
22657             format : this.useIso ? 'Y-m-d' : this.format,
22658             minText : String.format(this.minText, this.formatDate(this.minValue)),
22659             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
22660             
22661         });
22662          this.menu.on(Roo.apply({}, this.menuListeners, {
22663             scope:this
22664         }));
22665        
22666         
22667         var m = this.menu;
22668         var p = m.picker;
22669         
22670         // hide month picker get's called when we called by 'before hide';
22671         
22672         var ignorehide = true;
22673         p.hideMonthPicker  = function(disableAnim){
22674             if (ignorehide) {
22675                 return;
22676             }
22677              if(this.monthPicker){
22678                 Roo.log("hideMonthPicker called");
22679                 if(disableAnim === true){
22680                     this.monthPicker.hide();
22681                 }else{
22682                     this.monthPicker.slideOut('t', {duration:.2});
22683                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
22684                     p.fireEvent("select", this, this.value);
22685                     m.hide();
22686                 }
22687             }
22688         }
22689         
22690         Roo.log('picker set value');
22691         Roo.log(this.getValue());
22692         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
22693         m.show(this.el, 'tl-bl?');
22694         ignorehide  = false;
22695         // this will trigger hideMonthPicker..
22696         
22697         
22698         // hidden the day picker
22699         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
22700         
22701         
22702         
22703       
22704         
22705         p.showMonthPicker.defer(100, p);
22706     
22707         
22708        
22709     },
22710
22711     beforeBlur : function(){
22712         var v = this.parseDate(this.getRawValue());
22713         if(v){
22714             this.setValue(v);
22715         }
22716     }
22717
22718     /** @cfg {Boolean} grow @hide */
22719     /** @cfg {Number} growMin @hide */
22720     /** @cfg {Number} growMax @hide */
22721     /**
22722      * @hide
22723      * @method autoSize
22724      */
22725 });/*
22726  * Based on:
22727  * Ext JS Library 1.1.1
22728  * Copyright(c) 2006-2007, Ext JS, LLC.
22729  *
22730  * Originally Released Under LGPL - original licence link has changed is not relivant.
22731  *
22732  * Fork - LGPL
22733  * <script type="text/javascript">
22734  */
22735  
22736
22737 /**
22738  * @class Roo.form.ComboBox
22739  * @extends Roo.form.TriggerField
22740  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
22741  * @constructor
22742  * Create a new ComboBox.
22743  * @param {Object} config Configuration options
22744  */
22745 Roo.form.ComboBox = function(config){
22746     Roo.form.ComboBox.superclass.constructor.call(this, config);
22747     this.addEvents({
22748         /**
22749          * @event expand
22750          * Fires when the dropdown list is expanded
22751              * @param {Roo.form.ComboBox} combo This combo box
22752              */
22753         'expand' : true,
22754         /**
22755          * @event collapse
22756          * Fires when the dropdown list is collapsed
22757              * @param {Roo.form.ComboBox} combo This combo box
22758              */
22759         'collapse' : true,
22760         /**
22761          * @event beforeselect
22762          * Fires before a list item is selected. Return false to cancel the selection.
22763              * @param {Roo.form.ComboBox} combo This combo box
22764              * @param {Roo.data.Record} record The data record returned from the underlying store
22765              * @param {Number} index The index of the selected item in the dropdown list
22766              */
22767         'beforeselect' : true,
22768         /**
22769          * @event select
22770          * Fires when a list item is selected
22771              * @param {Roo.form.ComboBox} combo This combo box
22772              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
22773              * @param {Number} index The index of the selected item in the dropdown list
22774              */
22775         'select' : true,
22776         /**
22777          * @event beforequery
22778          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
22779          * The event object passed has these properties:
22780              * @param {Roo.form.ComboBox} combo This combo box
22781              * @param {String} query The query
22782              * @param {Boolean} forceAll true to force "all" query
22783              * @param {Boolean} cancel true to cancel the query
22784              * @param {Object} e The query event object
22785              */
22786         'beforequery': true,
22787          /**
22788          * @event add
22789          * Fires when the 'add' icon is pressed (add a listener to enable add button)
22790              * @param {Roo.form.ComboBox} combo This combo box
22791              */
22792         'add' : true,
22793         /**
22794          * @event edit
22795          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
22796              * @param {Roo.form.ComboBox} combo This combo box
22797              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
22798              */
22799         'edit' : true
22800         
22801         
22802     });
22803     if(this.transform){
22804         this.allowDomMove = false;
22805         var s = Roo.getDom(this.transform);
22806         if(!this.hiddenName){
22807             this.hiddenName = s.name;
22808         }
22809         if(!this.store){
22810             this.mode = 'local';
22811             var d = [], opts = s.options;
22812             for(var i = 0, len = opts.length;i < len; i++){
22813                 var o = opts[i];
22814                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
22815                 if(o.selected) {
22816                     this.value = value;
22817                 }
22818                 d.push([value, o.text]);
22819             }
22820             this.store = new Roo.data.SimpleStore({
22821                 'id': 0,
22822                 fields: ['value', 'text'],
22823                 data : d
22824             });
22825             this.valueField = 'value';
22826             this.displayField = 'text';
22827         }
22828         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
22829         if(!this.lazyRender){
22830             this.target = true;
22831             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
22832             s.parentNode.removeChild(s); // remove it
22833             this.render(this.el.parentNode);
22834         }else{
22835             s.parentNode.removeChild(s); // remove it
22836         }
22837
22838     }
22839     if (this.store) {
22840         this.store = Roo.factory(this.store, Roo.data);
22841     }
22842     
22843     this.selectedIndex = -1;
22844     if(this.mode == 'local'){
22845         if(config.queryDelay === undefined){
22846             this.queryDelay = 10;
22847         }
22848         if(config.minChars === undefined){
22849             this.minChars = 0;
22850         }
22851     }
22852 };
22853
22854 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
22855     /**
22856      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
22857      */
22858     /**
22859      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
22860      * rendering into an Roo.Editor, defaults to false)
22861      */
22862     /**
22863      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
22864      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
22865      */
22866     /**
22867      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
22868      */
22869     /**
22870      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
22871      * the dropdown list (defaults to undefined, with no header element)
22872      */
22873
22874      /**
22875      * @cfg {String/Roo.Template} tpl The template to use to render the output
22876      */
22877      
22878     // private
22879     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
22880     /**
22881      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
22882      */
22883     listWidth: undefined,
22884     /**
22885      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
22886      * mode = 'remote' or 'text' if mode = 'local')
22887      */
22888     displayField: undefined,
22889     /**
22890      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
22891      * mode = 'remote' or 'value' if mode = 'local'). 
22892      * Note: use of a valueField requires the user make a selection
22893      * in order for a value to be mapped.
22894      */
22895     valueField: undefined,
22896     
22897     
22898     /**
22899      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
22900      * field's data value (defaults to the underlying DOM element's name)
22901      */
22902     hiddenName: undefined,
22903     /**
22904      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
22905      */
22906     listClass: '',
22907     /**
22908      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
22909      */
22910     selectedClass: 'x-combo-selected',
22911     /**
22912      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
22913      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
22914      * which displays a downward arrow icon).
22915      */
22916     triggerClass : 'x-form-arrow-trigger',
22917     /**
22918      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
22919      */
22920     shadow:'sides',
22921     /**
22922      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
22923      * anchor positions (defaults to 'tl-bl')
22924      */
22925     listAlign: 'tl-bl?',
22926     /**
22927      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
22928      */
22929     maxHeight: 300,
22930     /**
22931      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
22932      * query specified by the allQuery config option (defaults to 'query')
22933      */
22934     triggerAction: 'query',
22935     /**
22936      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
22937      * (defaults to 4, does not apply if editable = false)
22938      */
22939     minChars : 4,
22940     /**
22941      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
22942      * delay (typeAheadDelay) if it matches a known value (defaults to false)
22943      */
22944     typeAhead: false,
22945     /**
22946      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
22947      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
22948      */
22949     queryDelay: 500,
22950     /**
22951      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
22952      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
22953      */
22954     pageSize: 0,
22955     /**
22956      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
22957      * when editable = true (defaults to false)
22958      */
22959     selectOnFocus:false,
22960     /**
22961      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
22962      */
22963     queryParam: 'query',
22964     /**
22965      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
22966      * when mode = 'remote' (defaults to 'Loading...')
22967      */
22968     loadingText: 'Loading...',
22969     /**
22970      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
22971      */
22972     resizable: false,
22973     /**
22974      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
22975      */
22976     handleHeight : 8,
22977     /**
22978      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
22979      * traditional select (defaults to true)
22980      */
22981     editable: true,
22982     /**
22983      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
22984      */
22985     allQuery: '',
22986     /**
22987      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
22988      */
22989     mode: 'remote',
22990     /**
22991      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
22992      * listWidth has a higher value)
22993      */
22994     minListWidth : 70,
22995     /**
22996      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
22997      * allow the user to set arbitrary text into the field (defaults to false)
22998      */
22999     forceSelection:false,
23000     /**
23001      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
23002      * if typeAhead = true (defaults to 250)
23003      */
23004     typeAheadDelay : 250,
23005     /**
23006      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
23007      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
23008      */
23009     valueNotFoundText : undefined,
23010     /**
23011      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
23012      */
23013     blockFocus : false,
23014     
23015     /**
23016      * @cfg {Boolean} disableClear Disable showing of clear button.
23017      */
23018     disableClear : false,
23019     /**
23020      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
23021      */
23022     alwaysQuery : false,
23023     
23024     //private
23025     addicon : false,
23026     editicon: false,
23027     
23028     // element that contains real text value.. (when hidden is used..)
23029      
23030     // private
23031     onRender : function(ct, position){
23032         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
23033         if(this.hiddenName){
23034             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
23035                     'before', true);
23036             this.hiddenField.value =
23037                 this.hiddenValue !== undefined ? this.hiddenValue :
23038                 this.value !== undefined ? this.value : '';
23039
23040             // prevent input submission
23041             this.el.dom.removeAttribute('name');
23042              
23043              
23044         }
23045         if(Roo.isGecko){
23046             this.el.dom.setAttribute('autocomplete', 'off');
23047         }
23048
23049         var cls = 'x-combo-list';
23050
23051         this.list = new Roo.Layer({
23052             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
23053         });
23054
23055         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
23056         this.list.setWidth(lw);
23057         this.list.swallowEvent('mousewheel');
23058         this.assetHeight = 0;
23059
23060         if(this.title){
23061             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
23062             this.assetHeight += this.header.getHeight();
23063         }
23064
23065         this.innerList = this.list.createChild({cls:cls+'-inner'});
23066         this.innerList.on('mouseover', this.onViewOver, this);
23067         this.innerList.on('mousemove', this.onViewMove, this);
23068         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23069         
23070         if(this.allowBlank && !this.pageSize && !this.disableClear){
23071             this.footer = this.list.createChild({cls:cls+'-ft'});
23072             this.pageTb = new Roo.Toolbar(this.footer);
23073            
23074         }
23075         if(this.pageSize){
23076             this.footer = this.list.createChild({cls:cls+'-ft'});
23077             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
23078                     {pageSize: this.pageSize});
23079             
23080         }
23081         
23082         if (this.pageTb && this.allowBlank && !this.disableClear) {
23083             var _this = this;
23084             this.pageTb.add(new Roo.Toolbar.Fill(), {
23085                 cls: 'x-btn-icon x-btn-clear',
23086                 text: '&#160;',
23087                 handler: function()
23088                 {
23089                     _this.collapse();
23090                     _this.clearValue();
23091                     _this.onSelect(false, -1);
23092                 }
23093             });
23094         }
23095         if (this.footer) {
23096             this.assetHeight += this.footer.getHeight();
23097         }
23098         
23099
23100         if(!this.tpl){
23101             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
23102         }
23103
23104         this.view = new Roo.View(this.innerList, this.tpl, {
23105             singleSelect:true, store: this.store, selectedClass: this.selectedClass
23106         });
23107
23108         this.view.on('click', this.onViewClick, this);
23109
23110         this.store.on('beforeload', this.onBeforeLoad, this);
23111         this.store.on('load', this.onLoad, this);
23112         this.store.on('loadexception', this.onLoadException, this);
23113
23114         if(this.resizable){
23115             this.resizer = new Roo.Resizable(this.list,  {
23116                pinned:true, handles:'se'
23117             });
23118             this.resizer.on('resize', function(r, w, h){
23119                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
23120                 this.listWidth = w;
23121                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
23122                 this.restrictHeight();
23123             }, this);
23124             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
23125         }
23126         if(!this.editable){
23127             this.editable = true;
23128             this.setEditable(false);
23129         }  
23130         
23131         
23132         if (typeof(this.events.add.listeners) != 'undefined') {
23133             
23134             this.addicon = this.wrap.createChild(
23135                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
23136        
23137             this.addicon.on('click', function(e) {
23138                 this.fireEvent('add', this);
23139             }, this);
23140         }
23141         if (typeof(this.events.edit.listeners) != 'undefined') {
23142             
23143             this.editicon = this.wrap.createChild(
23144                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
23145             if (this.addicon) {
23146                 this.editicon.setStyle('margin-left', '40px');
23147             }
23148             this.editicon.on('click', function(e) {
23149                 
23150                 // we fire even  if inothing is selected..
23151                 this.fireEvent('edit', this, this.lastData );
23152                 
23153             }, this);
23154         }
23155         
23156         
23157         
23158     },
23159
23160     // private
23161     initEvents : function(){
23162         Roo.form.ComboBox.superclass.initEvents.call(this);
23163
23164         this.keyNav = new Roo.KeyNav(this.el, {
23165             "up" : function(e){
23166                 this.inKeyMode = true;
23167                 this.selectPrev();
23168             },
23169
23170             "down" : function(e){
23171                 if(!this.isExpanded()){
23172                     this.onTriggerClick();
23173                 }else{
23174                     this.inKeyMode = true;
23175                     this.selectNext();
23176                 }
23177             },
23178
23179             "enter" : function(e){
23180                 this.onViewClick();
23181                 //return true;
23182             },
23183
23184             "esc" : function(e){
23185                 this.collapse();
23186             },
23187
23188             "tab" : function(e){
23189                 this.onViewClick(false);
23190                 this.fireEvent("specialkey", this, e);
23191                 return true;
23192             },
23193
23194             scope : this,
23195
23196             doRelay : function(foo, bar, hname){
23197                 if(hname == 'down' || this.scope.isExpanded()){
23198                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
23199                 }
23200                 return true;
23201             },
23202
23203             forceKeyDown: true
23204         });
23205         this.queryDelay = Math.max(this.queryDelay || 10,
23206                 this.mode == 'local' ? 10 : 250);
23207         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
23208         if(this.typeAhead){
23209             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
23210         }
23211         if(this.editable !== false){
23212             this.el.on("keyup", this.onKeyUp, this);
23213         }
23214         if(this.forceSelection){
23215             this.on('blur', this.doForce, this);
23216         }
23217     },
23218
23219     onDestroy : function(){
23220         if(this.view){
23221             this.view.setStore(null);
23222             this.view.el.removeAllListeners();
23223             this.view.el.remove();
23224             this.view.purgeListeners();
23225         }
23226         if(this.list){
23227             this.list.destroy();
23228         }
23229         if(this.store){
23230             this.store.un('beforeload', this.onBeforeLoad, this);
23231             this.store.un('load', this.onLoad, this);
23232             this.store.un('loadexception', this.onLoadException, this);
23233         }
23234         Roo.form.ComboBox.superclass.onDestroy.call(this);
23235     },
23236
23237     // private
23238     fireKey : function(e){
23239         if(e.isNavKeyPress() && !this.list.isVisible()){
23240             this.fireEvent("specialkey", this, e);
23241         }
23242     },
23243
23244     // private
23245     onResize: function(w, h){
23246         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
23247         
23248         if(typeof w != 'number'){
23249             // we do not handle it!?!?
23250             return;
23251         }
23252         var tw = this.trigger.getWidth();
23253         tw += this.addicon ? this.addicon.getWidth() : 0;
23254         tw += this.editicon ? this.editicon.getWidth() : 0;
23255         var x = w - tw;
23256         this.el.setWidth( this.adjustWidth('input', x));
23257             
23258         this.trigger.setStyle('left', x+'px');
23259         
23260         if(this.list && this.listWidth === undefined){
23261             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
23262             this.list.setWidth(lw);
23263             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
23264         }
23265         
23266     
23267         
23268     },
23269
23270     /**
23271      * Allow or prevent the user from directly editing the field text.  If false is passed,
23272      * the user will only be able to select from the items defined in the dropdown list.  This method
23273      * is the runtime equivalent of setting the 'editable' config option at config time.
23274      * @param {Boolean} value True to allow the user to directly edit the field text
23275      */
23276     setEditable : function(value){
23277         if(value == this.editable){
23278             return;
23279         }
23280         this.editable = value;
23281         if(!value){
23282             this.el.dom.setAttribute('readOnly', true);
23283             this.el.on('mousedown', this.onTriggerClick,  this);
23284             this.el.addClass('x-combo-noedit');
23285         }else{
23286             this.el.dom.setAttribute('readOnly', false);
23287             this.el.un('mousedown', this.onTriggerClick,  this);
23288             this.el.removeClass('x-combo-noedit');
23289         }
23290     },
23291
23292     // private
23293     onBeforeLoad : function(){
23294         if(!this.hasFocus){
23295             return;
23296         }
23297         this.innerList.update(this.loadingText ?
23298                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
23299         this.restrictHeight();
23300         this.selectedIndex = -1;
23301     },
23302
23303     // private
23304     onLoad : function(){
23305         if(!this.hasFocus){
23306             return;
23307         }
23308         if(this.store.getCount() > 0){
23309             this.expand();
23310             this.restrictHeight();
23311             if(this.lastQuery == this.allQuery){
23312                 if(this.editable){
23313                     this.el.dom.select();
23314                 }
23315                 if(!this.selectByValue(this.value, true)){
23316                     this.select(0, true);
23317                 }
23318             }else{
23319                 this.selectNext();
23320                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
23321                     this.taTask.delay(this.typeAheadDelay);
23322                 }
23323             }
23324         }else{
23325             this.onEmptyResults();
23326         }
23327         //this.el.focus();
23328     },
23329     // private
23330     onLoadException : function()
23331     {
23332         this.collapse();
23333         Roo.log(this.store.reader.jsonData);
23334         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
23335             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
23336         }
23337         
23338         
23339     },
23340     // private
23341     onTypeAhead : function(){
23342         if(this.store.getCount() > 0){
23343             var r = this.store.getAt(0);
23344             var newValue = r.data[this.displayField];
23345             var len = newValue.length;
23346             var selStart = this.getRawValue().length;
23347             if(selStart != len){
23348                 this.setRawValue(newValue);
23349                 this.selectText(selStart, newValue.length);
23350             }
23351         }
23352     },
23353
23354     // private
23355     onSelect : function(record, index){
23356         if(this.fireEvent('beforeselect', this, record, index) !== false){
23357             this.setFromData(index > -1 ? record.data : false);
23358             this.collapse();
23359             this.fireEvent('select', this, record, index);
23360         }
23361     },
23362
23363     /**
23364      * Returns the currently selected field value or empty string if no value is set.
23365      * @return {String} value The selected value
23366      */
23367     getValue : function(){
23368         if(this.valueField){
23369             return typeof this.value != 'undefined' ? this.value : '';
23370         }else{
23371             return Roo.form.ComboBox.superclass.getValue.call(this);
23372         }
23373     },
23374
23375     /**
23376      * Clears any text/value currently set in the field
23377      */
23378     clearValue : function(){
23379         if(this.hiddenField){
23380             this.hiddenField.value = '';
23381         }
23382         this.value = '';
23383         this.setRawValue('');
23384         this.lastSelectionText = '';
23385         
23386     },
23387
23388     /**
23389      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
23390      * will be displayed in the field.  If the value does not match the data value of an existing item,
23391      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
23392      * Otherwise the field will be blank (although the value will still be set).
23393      * @param {String} value The value to match
23394      */
23395     setValue : function(v){
23396         var text = v;
23397         if(this.valueField){
23398             var r = this.findRecord(this.valueField, v);
23399             if(r){
23400                 text = r.data[this.displayField];
23401             }else if(this.valueNotFoundText !== undefined){
23402                 text = this.valueNotFoundText;
23403             }
23404         }
23405         this.lastSelectionText = text;
23406         if(this.hiddenField){
23407             this.hiddenField.value = v;
23408         }
23409         Roo.form.ComboBox.superclass.setValue.call(this, text);
23410         this.value = v;
23411     },
23412     /**
23413      * @property {Object} the last set data for the element
23414      */
23415     
23416     lastData : false,
23417     /**
23418      * Sets the value of the field based on a object which is related to the record format for the store.
23419      * @param {Object} value the value to set as. or false on reset?
23420      */
23421     setFromData : function(o){
23422         var dv = ''; // display value
23423         var vv = ''; // value value..
23424         this.lastData = o;
23425         if (this.displayField) {
23426             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
23427         } else {
23428             // this is an error condition!!!
23429             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
23430         }
23431         
23432         if(this.valueField){
23433             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
23434         }
23435         if(this.hiddenField){
23436             this.hiddenField.value = vv;
23437             
23438             this.lastSelectionText = dv;
23439             Roo.form.ComboBox.superclass.setValue.call(this, dv);
23440             this.value = vv;
23441             return;
23442         }
23443         // no hidden field.. - we store the value in 'value', but still display
23444         // display field!!!!
23445         this.lastSelectionText = dv;
23446         Roo.form.ComboBox.superclass.setValue.call(this, dv);
23447         this.value = vv;
23448         
23449         
23450     },
23451     // private
23452     reset : function(){
23453         // overridden so that last data is reset..
23454         this.setValue(this.resetValue);
23455         this.clearInvalid();
23456         this.lastData = false;
23457         if (this.view) {
23458             this.view.clearSelections();
23459         }
23460     },
23461     // private
23462     findRecord : function(prop, value){
23463         var record;
23464         if(this.store.getCount() > 0){
23465             this.store.each(function(r){
23466                 if(r.data[prop] == value){
23467                     record = r;
23468                     return false;
23469                 }
23470                 return true;
23471             });
23472         }
23473         return record;
23474     },
23475     
23476     getName: function()
23477     {
23478         // returns hidden if it's set..
23479         if (!this.rendered) {return ''};
23480         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
23481         
23482     },
23483     // private
23484     onViewMove : function(e, t){
23485         this.inKeyMode = false;
23486     },
23487
23488     // private
23489     onViewOver : function(e, t){
23490         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
23491             return;
23492         }
23493         var item = this.view.findItemFromChild(t);
23494         if(item){
23495             var index = this.view.indexOf(item);
23496             this.select(index, false);
23497         }
23498     },
23499
23500     // private
23501     onViewClick : function(doFocus)
23502     {
23503         var index = this.view.getSelectedIndexes()[0];
23504         var r = this.store.getAt(index);
23505         if(r){
23506             this.onSelect(r, index);
23507         }
23508         if(doFocus !== false && !this.blockFocus){
23509             this.el.focus();
23510         }
23511     },
23512
23513     // private
23514     restrictHeight : function(){
23515         this.innerList.dom.style.height = '';
23516         var inner = this.innerList.dom;
23517         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
23518         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
23519         this.list.beginUpdate();
23520         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
23521         this.list.alignTo(this.el, this.listAlign);
23522         this.list.endUpdate();
23523     },
23524
23525     // private
23526     onEmptyResults : function(){
23527         this.collapse();
23528     },
23529
23530     /**
23531      * Returns true if the dropdown list is expanded, else false.
23532      */
23533     isExpanded : function(){
23534         return this.list.isVisible();
23535     },
23536
23537     /**
23538      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
23539      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23540      * @param {String} value The data value of the item to select
23541      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23542      * selected item if it is not currently in view (defaults to true)
23543      * @return {Boolean} True if the value matched an item in the list, else false
23544      */
23545     selectByValue : function(v, scrollIntoView){
23546         if(v !== undefined && v !== null){
23547             var r = this.findRecord(this.valueField || this.displayField, v);
23548             if(r){
23549                 this.select(this.store.indexOf(r), scrollIntoView);
23550                 return true;
23551             }
23552         }
23553         return false;
23554     },
23555
23556     /**
23557      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
23558      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
23559      * @param {Number} index The zero-based index of the list item to select
23560      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
23561      * selected item if it is not currently in view (defaults to true)
23562      */
23563     select : function(index, scrollIntoView){
23564         this.selectedIndex = index;
23565         this.view.select(index);
23566         if(scrollIntoView !== false){
23567             var el = this.view.getNode(index);
23568             if(el){
23569                 this.innerList.scrollChildIntoView(el, false);
23570             }
23571         }
23572     },
23573
23574     // private
23575     selectNext : function(){
23576         var ct = this.store.getCount();
23577         if(ct > 0){
23578             if(this.selectedIndex == -1){
23579                 this.select(0);
23580             }else if(this.selectedIndex < ct-1){
23581                 this.select(this.selectedIndex+1);
23582             }
23583         }
23584     },
23585
23586     // private
23587     selectPrev : function(){
23588         var ct = this.store.getCount();
23589         if(ct > 0){
23590             if(this.selectedIndex == -1){
23591                 this.select(0);
23592             }else if(this.selectedIndex != 0){
23593                 this.select(this.selectedIndex-1);
23594             }
23595         }
23596     },
23597
23598     // private
23599     onKeyUp : function(e){
23600         if(this.editable !== false && !e.isSpecialKey()){
23601             this.lastKey = e.getKey();
23602             this.dqTask.delay(this.queryDelay);
23603         }
23604     },
23605
23606     // private
23607     validateBlur : function(){
23608         return !this.list || !this.list.isVisible();   
23609     },
23610
23611     // private
23612     initQuery : function(){
23613         this.doQuery(this.getRawValue());
23614     },
23615
23616     // private
23617     doForce : function(){
23618         if(this.el.dom.value.length > 0){
23619             this.el.dom.value =
23620                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
23621              
23622         }
23623     },
23624
23625     /**
23626      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
23627      * query allowing the query action to be canceled if needed.
23628      * @param {String} query The SQL query to execute
23629      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
23630      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
23631      * saved in the current store (defaults to false)
23632      */
23633     doQuery : function(q, forceAll){
23634         if(q === undefined || q === null){
23635             q = '';
23636         }
23637         var qe = {
23638             query: q,
23639             forceAll: forceAll,
23640             combo: this,
23641             cancel:false
23642         };
23643         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
23644             return false;
23645         }
23646         q = qe.query;
23647         forceAll = qe.forceAll;
23648         if(forceAll === true || (q.length >= this.minChars)){
23649             if(this.lastQuery != q || this.alwaysQuery){
23650                 this.lastQuery = q;
23651                 if(this.mode == 'local'){
23652                     this.selectedIndex = -1;
23653                     if(forceAll){
23654                         this.store.clearFilter();
23655                     }else{
23656                         this.store.filter(this.displayField, q);
23657                     }
23658                     this.onLoad();
23659                 }else{
23660                     this.store.baseParams[this.queryParam] = q;
23661                     this.store.load({
23662                         params: this.getParams(q)
23663                     });
23664                     this.expand();
23665                 }
23666             }else{
23667                 this.selectedIndex = -1;
23668                 this.onLoad();   
23669             }
23670         }
23671     },
23672
23673     // private
23674     getParams : function(q){
23675         var p = {};
23676         //p[this.queryParam] = q;
23677         if(this.pageSize){
23678             p.start = 0;
23679             p.limit = this.pageSize;
23680         }
23681         return p;
23682     },
23683
23684     /**
23685      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
23686      */
23687     collapse : function(){
23688         if(!this.isExpanded()){
23689             return;
23690         }
23691         this.list.hide();
23692         Roo.get(document).un('mousedown', this.collapseIf, this);
23693         Roo.get(document).un('mousewheel', this.collapseIf, this);
23694         if (!this.editable) {
23695             Roo.get(document).un('keydown', this.listKeyPress, this);
23696         }
23697         this.fireEvent('collapse', this);
23698     },
23699
23700     // private
23701     collapseIf : function(e){
23702         if(!e.within(this.wrap) && !e.within(this.list)){
23703             this.collapse();
23704         }
23705     },
23706
23707     /**
23708      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
23709      */
23710     expand : function(){
23711         if(this.isExpanded() || !this.hasFocus){
23712             return;
23713         }
23714         this.list.alignTo(this.el, this.listAlign);
23715         this.list.show();
23716         Roo.get(document).on('mousedown', this.collapseIf, this);
23717         Roo.get(document).on('mousewheel', this.collapseIf, this);
23718         if (!this.editable) {
23719             Roo.get(document).on('keydown', this.listKeyPress, this);
23720         }
23721         
23722         this.fireEvent('expand', this);
23723     },
23724
23725     // private
23726     // Implements the default empty TriggerField.onTriggerClick function
23727     onTriggerClick : function(){
23728         if(this.disabled){
23729             return;
23730         }
23731         if(this.isExpanded()){
23732             this.collapse();
23733             if (!this.blockFocus) {
23734                 this.el.focus();
23735             }
23736             
23737         }else {
23738             this.hasFocus = true;
23739             if(this.triggerAction == 'all') {
23740                 this.doQuery(this.allQuery, true);
23741             } else {
23742                 this.doQuery(this.getRawValue());
23743             }
23744             if (!this.blockFocus) {
23745                 this.el.focus();
23746             }
23747         }
23748     },
23749     listKeyPress : function(e)
23750     {
23751         //Roo.log('listkeypress');
23752         // scroll to first matching element based on key pres..
23753         if (e.isSpecialKey()) {
23754             return false;
23755         }
23756         var k = String.fromCharCode(e.getKey()).toUpperCase();
23757         //Roo.log(k);
23758         var match  = false;
23759         var csel = this.view.getSelectedNodes();
23760         var cselitem = false;
23761         if (csel.length) {
23762             var ix = this.view.indexOf(csel[0]);
23763             cselitem  = this.store.getAt(ix);
23764             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
23765                 cselitem = false;
23766             }
23767             
23768         }
23769         
23770         this.store.each(function(v) { 
23771             if (cselitem) {
23772                 // start at existing selection.
23773                 if (cselitem.id == v.id) {
23774                     cselitem = false;
23775                 }
23776                 return;
23777             }
23778                 
23779             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
23780                 match = this.store.indexOf(v);
23781                 return false;
23782             }
23783         }, this);
23784         
23785         if (match === false) {
23786             return true; // no more action?
23787         }
23788         // scroll to?
23789         this.view.select(match);
23790         var sn = Roo.get(this.view.getSelectedNodes()[0])
23791         sn.scrollIntoView(sn.dom.parentNode, false);
23792     }
23793
23794     /** 
23795     * @cfg {Boolean} grow 
23796     * @hide 
23797     */
23798     /** 
23799     * @cfg {Number} growMin 
23800     * @hide 
23801     */
23802     /** 
23803     * @cfg {Number} growMax 
23804     * @hide 
23805     */
23806     /**
23807      * @hide
23808      * @method autoSize
23809      */
23810 });/*
23811  * Copyright(c) 2010-2012, Roo J Solutions Limited
23812  *
23813  * Licence LGPL
23814  *
23815  */
23816
23817 /**
23818  * @class Roo.form.ComboBoxArray
23819  * @extends Roo.form.TextField
23820  * A facebook style adder... for lists of email / people / countries  etc...
23821  * pick multiple items from a combo box, and shows each one.
23822  *
23823  *  Fred [x]  Brian [x]  [Pick another |v]
23824  *
23825  *
23826  *  For this to work: it needs various extra information
23827  *    - normal combo problay has
23828  *      name, hiddenName
23829  *    + displayField, valueField
23830  *
23831  *    For our purpose...
23832  *
23833  *
23834  *   If we change from 'extends' to wrapping...
23835  *   
23836  *  
23837  *
23838  
23839  
23840  * @constructor
23841  * Create a new ComboBoxArray.
23842  * @param {Object} config Configuration options
23843  */
23844  
23845
23846 Roo.form.ComboBoxArray = function(config)
23847 {
23848     
23849     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
23850     
23851     this.items = new Roo.util.MixedCollection(false);
23852     
23853     // construct the child combo...
23854     
23855     
23856     
23857     
23858    
23859     
23860 }
23861
23862  
23863 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
23864
23865     /**
23866      * @cfg {Roo.form.Combo} combo The combo box that is wrapped
23867      */
23868     
23869     lastData : false,
23870     
23871     // behavies liek a hiddne field
23872     inputType:      'hidden',
23873     /**
23874      * @cfg {Number} width The width of the box that displays the selected element
23875      */ 
23876     width:          300,
23877
23878     
23879     
23880     /**
23881      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
23882      */
23883     name : false,
23884     /**
23885      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
23886      */
23887     hiddenName : false,
23888     
23889     
23890     // private the array of items that are displayed..
23891     items  : false,
23892     // private - the hidden field el.
23893     hiddenEl : false,
23894     // private - the filed el..
23895     el : false,
23896     
23897     //validateValue : function() { return true; }, // all values are ok!
23898     //onAddClick: function() { },
23899     
23900     onRender : function(ct, position) 
23901     {
23902         
23903         // create the standard hidden element
23904         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
23905         
23906         
23907         // give fake names to child combo;
23908         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
23909         this.combo.name = this.name? (this.name+'-subcombo') : this.name;
23910         
23911         this.combo = Roo.factory(this.combo, Roo.form);
23912         this.combo.onRender(ct, position);
23913         if (typeof(this.combo.width) != 'undefined') {
23914             this.combo.onResize(this.combo.width,0);
23915         }
23916         
23917         this.combo.initEvents();
23918         
23919         // assigned so form know we need to do this..
23920         this.store          = this.combo.store;
23921         this.valueField     = this.combo.valueField;
23922         this.displayField   = this.combo.displayField ;
23923         
23924         
23925         this.combo.wrap.addClass('x-cbarray-grp');
23926         
23927         var cbwrap = this.combo.wrap.createChild(
23928             {tag: 'div', cls: 'x-cbarray-cb'},
23929             this.combo.el.dom
23930         );
23931         
23932              
23933         this.hiddenEl = this.combo.wrap.createChild({
23934             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
23935         });
23936         this.el = this.combo.wrap.createChild({
23937             tag: 'input',  type:'hidden' , name: this.name, value : ''
23938         });
23939          //   this.el.dom.removeAttribute("name");
23940         
23941         
23942         this.outerWrap = this.combo.wrap;
23943         this.wrap = cbwrap;
23944         
23945         this.outerWrap.setWidth(this.width);
23946         this.outerWrap.dom.removeChild(this.el.dom);
23947         
23948         this.wrap.dom.appendChild(this.el.dom);
23949         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
23950         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
23951         
23952         this.combo.trigger.setStyle('position','relative');
23953         this.combo.trigger.setStyle('left', '0px');
23954         this.combo.trigger.setStyle('top', '2px');
23955         
23956         this.combo.el.setStyle('vertical-align', 'text-bottom');
23957         
23958         //this.trigger.setStyle('vertical-align', 'top');
23959         
23960         // this should use the code from combo really... on('add' ....)
23961         if (this.adder) {
23962             
23963         
23964             this.adder = this.outerWrap.createChild(
23965                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
23966             var _t = this;
23967             this.adder.on('click', function(e) {
23968                 _t.fireEvent('adderclick', this, e);
23969             }, _t);
23970         }
23971         //var _t = this;
23972         //this.adder.on('click', this.onAddClick, _t);
23973         
23974         
23975         this.combo.on('select', function(cb, rec, ix) {
23976             this.addItem(rec.data);
23977             
23978             cb.setValue('');
23979             cb.el.dom.value = '';
23980             //cb.lastData = rec.data;
23981             // add to list
23982             
23983         }, this);
23984         
23985         
23986     },
23987     
23988     
23989     getName: function()
23990     {
23991         // returns hidden if it's set..
23992         if (!this.rendered) {return ''};
23993         return  this.hiddenName ? this.hiddenName : this.name;
23994         
23995     },
23996     
23997     
23998     onResize: function(w, h){
23999         
24000         return;
24001         // not sure if this is needed..
24002         //this.combo.onResize(w,h);
24003         
24004         if(typeof w != 'number'){
24005             // we do not handle it!?!?
24006             return;
24007         }
24008         var tw = this.combo.trigger.getWidth();
24009         tw += this.addicon ? this.addicon.getWidth() : 0;
24010         tw += this.editicon ? this.editicon.getWidth() : 0;
24011         var x = w - tw;
24012         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
24013             
24014         this.combo.trigger.setStyle('left', '0px');
24015         
24016         if(this.list && this.listWidth === undefined){
24017             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
24018             this.list.setWidth(lw);
24019             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
24020         }
24021         
24022     
24023         
24024     },
24025     
24026     addItem: function(rec)
24027     {
24028         var valueField = this.combo.valueField;
24029         var displayField = this.combo.displayField;
24030         if (this.items.indexOfKey(rec[valueField]) > -1) {
24031             //console.log("GOT " + rec.data.id);
24032             return;
24033         }
24034         
24035         var x = new Roo.form.ComboBoxArray.Item({
24036             //id : rec[this.idField],
24037             data : rec,
24038             displayField : displayField ,
24039             tipField : displayField ,
24040             cb : this
24041         });
24042         // use the 
24043         this.items.add(rec[valueField],x);
24044         // add it before the element..
24045         this.updateHiddenEl();
24046         x.render(this.outerWrap, this.wrap.dom);
24047         // add the image handler..
24048     },
24049     
24050     updateHiddenEl : function()
24051     {
24052         this.validate();
24053         if (!this.hiddenEl) {
24054             return;
24055         }
24056         var ar = [];
24057         var idField = this.combo.valueField;
24058         
24059         this.items.each(function(f) {
24060             ar.push(f.data[idField]);
24061            
24062         });
24063         this.hiddenEl.dom.value = ar.join(',');
24064         this.validate();
24065     },
24066     
24067     reset : function()
24068     {
24069         //Roo.form.ComboBoxArray.superclass.reset.call(this); 
24070         this.items.each(function(f) {
24071            f.remove(); 
24072         });
24073         this.el.dom.value = '';
24074         if (this.hiddenEl) {
24075             this.hiddenEl.dom.value = '';
24076         }
24077         
24078     },
24079     getValue: function()
24080     {
24081         return this.hiddenEl ? this.hiddenEl.dom.value : '';
24082     },
24083     setValue: function(v) // not a valid action - must use addItems..
24084     {
24085          
24086         this.reset();
24087         
24088         
24089         
24090         if (this.store.isLocal && (typeof(v) == 'string')) {
24091             // then we can use the store to find the values..
24092             // comma seperated at present.. this needs to allow JSON based encoding..
24093             this.hiddenEl.value  = v;
24094             var v_ar = [];
24095             Roo.each(v.split(','), function(k) {
24096                 Roo.log("CHECK " + this.valueField + ',' + k);
24097                 var li = this.store.query(this.valueField, k);
24098                 if (!li.length) {
24099                     return;
24100                 }
24101                 var add = {};
24102                 add[this.valueField] = k;
24103                 add[this.displayField] = li.item(0).data[this.displayField];
24104                 
24105                 this.addItem(add);
24106             }, this) 
24107              
24108         }
24109         if (typeof(v) == 'object') {
24110             // then let's assume it's an array of objects..
24111             Roo.each(v, function(l) {
24112                 this.addItem(l);
24113             }, this);
24114              
24115         }
24116         
24117         
24118     },
24119     setFromData: function(v)
24120     {
24121         // this recieves an object, if setValues is called.
24122         this.reset();
24123         this.el.dom.value = v[this.displayField];
24124         this.hiddenEl.dom.value = v[this.valueField];
24125         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
24126             return;
24127         }
24128         var kv = v[this.valueField];
24129         var dv = v[this.displayField];
24130         kv = typeof(kv) != 'string' ? '' : kv;
24131         dv = typeof(dv) != 'string' ? '' : dv;
24132         
24133         
24134         var keys = kv.split(',');
24135         var display = dv.split(',');
24136         for (var i = 0 ; i < keys.length; i++) {
24137             
24138             add = {};
24139             add[this.valueField] = keys[i];
24140             add[this.displayField] = display[i];
24141             this.addItem(add);
24142         }
24143       
24144         
24145     },
24146     
24147     /**
24148      * Validates the combox array value
24149      * @return {Boolean} True if the value is valid, else false
24150      */
24151     validate : function(){
24152         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
24153             this.clearInvalid();
24154             return true;
24155         }
24156         return false;
24157     },
24158     
24159     validateValue : function(value){
24160         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
24161         
24162     },
24163     
24164     /*@
24165      * overide
24166      * 
24167      */
24168     isDirty : function() {
24169         if(this.disabled) {
24170             return false;
24171         }
24172         
24173         try {
24174             var d = Roo.decode(String(this.originalValue));
24175         } catch (e) {
24176             return String(this.getValue()) !== String(this.originalValue);
24177         }
24178         
24179         var originalValue = [];
24180         
24181         for (var i = 0; i < d.length; i++){
24182             originalValue.push(d[i][this.valueField]);
24183         }
24184         
24185         return String(this.getValue()) !== String(originalValue.join(','));
24186         
24187     }
24188     
24189 });
24190
24191
24192
24193 /**
24194  * @class Roo.form.ComboBoxArray.Item
24195  * @extends Roo.BoxComponent
24196  * A selected item in the list
24197  *  Fred [x]  Brian [x]  [Pick another |v]
24198  * 
24199  * @constructor
24200  * Create a new item.
24201  * @param {Object} config Configuration options
24202  */
24203  
24204 Roo.form.ComboBoxArray.Item = function(config) {
24205     config.id = Roo.id();
24206     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
24207 }
24208
24209 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
24210     data : {},
24211     cb: false,
24212     displayField : false,
24213     tipField : false,
24214     
24215     
24216     defaultAutoCreate : {
24217         tag: 'div',
24218         cls: 'x-cbarray-item',
24219         cn : [ 
24220             { tag: 'div' },
24221             {
24222                 tag: 'img',
24223                 width:16,
24224                 height : 16,
24225                 src : Roo.BLANK_IMAGE_URL ,
24226                 align: 'center'
24227             }
24228         ]
24229         
24230     },
24231     
24232  
24233     onRender : function(ct, position)
24234     {
24235         Roo.form.Field.superclass.onRender.call(this, ct, position);
24236         
24237         if(!this.el){
24238             var cfg = this.getAutoCreate();
24239             this.el = ct.createChild(cfg, position);
24240         }
24241         
24242         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
24243         
24244         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
24245             this.cb.renderer(this.data) :
24246             String.format('{0}',this.data[this.displayField]);
24247         
24248             
24249         this.el.child('div').dom.setAttribute('qtip',
24250                         String.format('{0}',this.data[this.tipField])
24251         );
24252         
24253         this.el.child('img').on('click', this.remove, this);
24254         
24255     },
24256    
24257     remove : function()
24258     {
24259         
24260         this.cb.items.remove(this);
24261         this.el.child('img').un('click', this.remove, this);
24262         this.el.remove();
24263         this.cb.updateHiddenEl();
24264     }
24265 });/*
24266  * Based on:
24267  * Ext JS Library 1.1.1
24268  * Copyright(c) 2006-2007, Ext JS, LLC.
24269  *
24270  * Originally Released Under LGPL - original licence link has changed is not relivant.
24271  *
24272  * Fork - LGPL
24273  * <script type="text/javascript">
24274  */
24275 /**
24276  * @class Roo.form.Checkbox
24277  * @extends Roo.form.Field
24278  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
24279  * @constructor
24280  * Creates a new Checkbox
24281  * @param {Object} config Configuration options
24282  */
24283 Roo.form.Checkbox = function(config){
24284     Roo.form.Checkbox.superclass.constructor.call(this, config);
24285     this.addEvents({
24286         /**
24287          * @event check
24288          * Fires when the checkbox is checked or unchecked.
24289              * @param {Roo.form.Checkbox} this This checkbox
24290              * @param {Boolean} checked The new checked value
24291              */
24292         check : true
24293     });
24294 };
24295
24296 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
24297     /**
24298      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
24299      */
24300     focusClass : undefined,
24301     /**
24302      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
24303      */
24304     fieldClass: "x-form-field",
24305     /**
24306      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
24307      */
24308     checked: false,
24309     /**
24310      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
24311      * {tag: "input", type: "checkbox", autocomplete: "off"})
24312      */
24313     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
24314     /**
24315      * @cfg {String} boxLabel The text that appears beside the checkbox
24316      */
24317     boxLabel : "",
24318     /**
24319      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
24320      */  
24321     inputValue : '1',
24322     /**
24323      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
24324      */
24325      valueOff: '0', // value when not checked..
24326
24327     actionMode : 'viewEl', 
24328     //
24329     // private
24330     itemCls : 'x-menu-check-item x-form-item',
24331     groupClass : 'x-menu-group-item',
24332     inputType : 'hidden',
24333     
24334     
24335     inSetChecked: false, // check that we are not calling self...
24336     
24337     inputElement: false, // real input element?
24338     basedOn: false, // ????
24339     
24340     isFormField: true, // not sure where this is needed!!!!
24341
24342     onResize : function(){
24343         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
24344         if(!this.boxLabel){
24345             this.el.alignTo(this.wrap, 'c-c');
24346         }
24347     },
24348
24349     initEvents : function(){
24350         Roo.form.Checkbox.superclass.initEvents.call(this);
24351         this.el.on("click", this.onClick,  this);
24352         this.el.on("change", this.onClick,  this);
24353     },
24354
24355
24356     getResizeEl : function(){
24357         return this.wrap;
24358     },
24359
24360     getPositionEl : function(){
24361         return this.wrap;
24362     },
24363
24364     // private
24365     onRender : function(ct, position){
24366         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24367         /*
24368         if(this.inputValue !== undefined){
24369             this.el.dom.value = this.inputValue;
24370         }
24371         */
24372         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24373         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24374         var viewEl = this.wrap.createChild({ 
24375             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24376         this.viewEl = viewEl;   
24377         this.wrap.on('click', this.onClick,  this); 
24378         
24379         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24380         this.el.on('propertychange', this.setFromHidden,  this);  //ie
24381         
24382         
24383         
24384         if(this.boxLabel){
24385             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24386         //    viewEl.on('click', this.onClick,  this); 
24387         }
24388         //if(this.checked){
24389             this.setChecked(this.checked);
24390         //}else{
24391             //this.checked = this.el.dom;
24392         //}
24393
24394     },
24395
24396     // private
24397     initValue : Roo.emptyFn,
24398
24399     /**
24400      * Returns the checked state of the checkbox.
24401      * @return {Boolean} True if checked, else false
24402      */
24403     getValue : function(){
24404         if(this.el){
24405             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
24406         }
24407         return this.valueOff;
24408         
24409     },
24410
24411         // private
24412     onClick : function(){ 
24413         this.setChecked(!this.checked);
24414
24415         //if(this.el.dom.checked != this.checked){
24416         //    this.setValue(this.el.dom.checked);
24417        // }
24418     },
24419
24420     /**
24421      * Sets the checked state of the checkbox.
24422      * On is always based on a string comparison between inputValue and the param.
24423      * @param {Boolean/String} value - the value to set 
24424      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
24425      */
24426     setValue : function(v,suppressEvent){
24427         
24428         
24429         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
24430         //if(this.el && this.el.dom){
24431         //    this.el.dom.checked = this.checked;
24432         //    this.el.dom.defaultChecked = this.checked;
24433         //}
24434         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
24435         //this.fireEvent("check", this, this.checked);
24436     },
24437     // private..
24438     setChecked : function(state,suppressEvent)
24439     {
24440         if (this.inSetChecked) {
24441             this.checked = state;
24442             return;
24443         }
24444         
24445     
24446         if(this.wrap){
24447             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
24448         }
24449         this.checked = state;
24450         if(suppressEvent !== true){
24451             this.fireEvent('check', this, state);
24452         }
24453         this.inSetChecked = true;
24454         this.el.dom.value = state ? this.inputValue : this.valueOff;
24455         this.inSetChecked = false;
24456         
24457     },
24458     // handle setting of hidden value by some other method!!?!?
24459     setFromHidden: function()
24460     {
24461         if(!this.el){
24462             return;
24463         }
24464         //console.log("SET FROM HIDDEN");
24465         //alert('setFrom hidden');
24466         this.setValue(this.el.dom.value);
24467     },
24468     
24469     onDestroy : function()
24470     {
24471         if(this.viewEl){
24472             Roo.get(this.viewEl).remove();
24473         }
24474          
24475         Roo.form.Checkbox.superclass.onDestroy.call(this);
24476     }
24477
24478 });/*
24479  * Based on:
24480  * Ext JS Library 1.1.1
24481  * Copyright(c) 2006-2007, Ext JS, LLC.
24482  *
24483  * Originally Released Under LGPL - original licence link has changed is not relivant.
24484  *
24485  * Fork - LGPL
24486  * <script type="text/javascript">
24487  */
24488  
24489 /**
24490  * @class Roo.form.Radio
24491  * @extends Roo.form.Checkbox
24492  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
24493  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
24494  * @constructor
24495  * Creates a new Radio
24496  * @param {Object} config Configuration options
24497  */
24498 Roo.form.Radio = function(){
24499     Roo.form.Radio.superclass.constructor.apply(this, arguments);
24500 };
24501 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
24502     inputType: 'radio',
24503
24504     /**
24505      * If this radio is part of a group, it will return the selected value
24506      * @return {String}
24507      */
24508     getGroupValue : function(){
24509         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
24510     },
24511     
24512     
24513     onRender : function(ct, position){
24514         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
24515         
24516         if(this.inputValue !== undefined){
24517             this.el.dom.value = this.inputValue;
24518         }
24519          
24520         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
24521         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
24522         //var viewEl = this.wrap.createChild({ 
24523         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
24524         //this.viewEl = viewEl;   
24525         //this.wrap.on('click', this.onClick,  this); 
24526         
24527         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
24528         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
24529         
24530         
24531         
24532         if(this.boxLabel){
24533             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
24534         //    viewEl.on('click', this.onClick,  this); 
24535         }
24536          if(this.checked){
24537             this.el.dom.checked =   'checked' ;
24538         }
24539          
24540     } 
24541     
24542     
24543 });//<script type="text/javascript">
24544
24545 /*
24546  * Based  Ext JS Library 1.1.1
24547  * Copyright(c) 2006-2007, Ext JS, LLC.
24548  * LGPL
24549  *
24550  */
24551  
24552 /**
24553  * @class Roo.HtmlEditorCore
24554  * @extends Roo.Component
24555  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
24556  *
24557  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
24558  */
24559
24560 Roo.HtmlEditorCore = function(config){
24561     
24562     
24563     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
24564     this.addEvents({
24565         /**
24566          * @event initialize
24567          * Fires when the editor is fully initialized (including the iframe)
24568          * @param {Roo.HtmlEditorCore} this
24569          */
24570         initialize: true,
24571         /**
24572          * @event activate
24573          * Fires when the editor is first receives the focus. Any insertion must wait
24574          * until after this event.
24575          * @param {Roo.HtmlEditorCore} this
24576          */
24577         activate: true,
24578          /**
24579          * @event beforesync
24580          * Fires before the textarea is updated with content from the editor iframe. Return false
24581          * to cancel the sync.
24582          * @param {Roo.HtmlEditorCore} this
24583          * @param {String} html
24584          */
24585         beforesync: true,
24586          /**
24587          * @event beforepush
24588          * Fires before the iframe editor is updated with content from the textarea. Return false
24589          * to cancel the push.
24590          * @param {Roo.HtmlEditorCore} this
24591          * @param {String} html
24592          */
24593         beforepush: true,
24594          /**
24595          * @event sync
24596          * Fires when the textarea is updated with content from the editor iframe.
24597          * @param {Roo.HtmlEditorCore} this
24598          * @param {String} html
24599          */
24600         sync: true,
24601          /**
24602          * @event push
24603          * Fires when the iframe editor is updated with content from the textarea.
24604          * @param {Roo.HtmlEditorCore} this
24605          * @param {String} html
24606          */
24607         push: true,
24608         
24609         /**
24610          * @event editorevent
24611          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
24612          * @param {Roo.HtmlEditorCore} this
24613          */
24614         editorevent: true
24615     });
24616      
24617 };
24618
24619
24620 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
24621
24622
24623      /**
24624      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
24625      */
24626     
24627     owner : false,
24628     
24629      /**
24630      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
24631      *                        Roo.resizable.
24632      */
24633     resizable : false,
24634      /**
24635      * @cfg {Number} height (in pixels)
24636      */   
24637     height: 300,
24638    /**
24639      * @cfg {Number} width (in pixels)
24640      */   
24641     width: 500,
24642     
24643     /**
24644      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
24645      * 
24646      */
24647     stylesheets: false,
24648     
24649     // id of frame..
24650     frameId: false,
24651     
24652     // private properties
24653     validationEvent : false,
24654     deferHeight: true,
24655     initialized : false,
24656     activated : false,
24657     sourceEditMode : false,
24658     onFocus : Roo.emptyFn,
24659     iframePad:3,
24660     hideMode:'offsets',
24661     
24662      
24663     
24664
24665     /**
24666      * Protected method that will not generally be called directly. It
24667      * is called when the editor initializes the iframe with HTML contents. Override this method if you
24668      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
24669      */
24670     getDocMarkup : function(){
24671         // body styles..
24672         var st = '';
24673         Roo.log(this.stylesheets);
24674         
24675         // inherit styels from page...?? 
24676         if (this.stylesheets === false) {
24677             
24678             Roo.get(document.head).select('style').each(function(node) {
24679                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24680             });
24681             
24682             Roo.get(document.head).select('link').each(function(node) { 
24683                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
24684             });
24685             
24686         } else if (!this.stylesheets.length) {
24687                 // simple..
24688                 st = '<style type="text/css">' +
24689                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24690                    '</style>';
24691         } else {
24692             Roo.each(this.stylesheets, function(s) {
24693                 st += '<link rel="stylesheet" type="text/css" href="' + s +'" />'
24694             });
24695             
24696         }
24697         
24698         st +=  '<style type="text/css">' +
24699             'IMG { cursor: pointer } ' +
24700         '</style>';
24701
24702         
24703         return '<html><head>' + st  +
24704             //<style type="text/css">' +
24705             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
24706             //'</style>' +
24707             ' </head><body class="roo-htmleditor-body"></body></html>';
24708     },
24709
24710     // private
24711     onRender : function(ct, position)
24712     {
24713         var _t = this;
24714         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
24715         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
24716         
24717         
24718         this.el.dom.style.border = '0 none';
24719         this.el.dom.setAttribute('tabIndex', -1);
24720         this.el.addClass('x-hidden hide');
24721         
24722         
24723         
24724         if(Roo.isIE){ // fix IE 1px bogus margin
24725             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
24726         }
24727        
24728         
24729         this.frameId = Roo.id();
24730         
24731          
24732         
24733         var iframe = this.owner.wrap.createChild({
24734             tag: 'iframe',
24735             cls: 'form-control', // bootstrap..
24736             id: this.frameId,
24737             name: this.frameId,
24738             frameBorder : 'no',
24739             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
24740         }, this.el
24741         );
24742         
24743         
24744         this.iframe = iframe.dom;
24745
24746          this.assignDocWin();
24747         
24748         this.doc.designMode = 'on';
24749        
24750         this.doc.open();
24751         this.doc.write(this.getDocMarkup());
24752         this.doc.close();
24753
24754         
24755         var task = { // must defer to wait for browser to be ready
24756             run : function(){
24757                 //console.log("run task?" + this.doc.readyState);
24758                 this.assignDocWin();
24759                 if(this.doc.body || this.doc.readyState == 'complete'){
24760                     try {
24761                         this.doc.designMode="on";
24762                     } catch (e) {
24763                         return;
24764                     }
24765                     Roo.TaskMgr.stop(task);
24766                     this.initEditor.defer(10, this);
24767                 }
24768             },
24769             interval : 10,
24770             duration: 10000,
24771             scope: this
24772         };
24773         Roo.TaskMgr.start(task);
24774
24775         
24776          
24777     },
24778
24779     // private
24780     onResize : function(w, h)
24781     {
24782          Roo.log('resize: ' +w + ',' + h );
24783         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
24784         if(!this.iframe){
24785             return;
24786         }
24787         if(typeof w == 'number'){
24788             
24789             this.iframe.style.width = w + 'px';
24790         }
24791         if(typeof h == 'number'){
24792             
24793             this.iframe.style.height = h + 'px';
24794             if(this.doc){
24795                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
24796             }
24797         }
24798         
24799     },
24800
24801     /**
24802      * Toggles the editor between standard and source edit mode.
24803      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24804      */
24805     toggleSourceEdit : function(sourceEditMode){
24806         
24807         this.sourceEditMode = sourceEditMode === true;
24808         
24809         if(this.sourceEditMode){
24810  
24811             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
24812             
24813         }else{
24814             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
24815             //this.iframe.className = '';
24816             this.deferFocus();
24817         }
24818         //this.setSize(this.owner.wrap.getSize());
24819         //this.fireEvent('editmodechange', this, this.sourceEditMode);
24820     },
24821
24822     
24823   
24824
24825     /**
24826      * Protected method that will not generally be called directly. If you need/want
24827      * custom HTML cleanup, this is the method you should override.
24828      * @param {String} html The HTML to be cleaned
24829      * return {String} The cleaned HTML
24830      */
24831     cleanHtml : function(html){
24832         html = String(html);
24833         if(html.length > 5){
24834             if(Roo.isSafari){ // strip safari nonsense
24835                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
24836             }
24837         }
24838         if(html == '&nbsp;'){
24839             html = '';
24840         }
24841         return html;
24842     },
24843
24844     /**
24845      * HTML Editor -> Textarea
24846      * Protected method that will not generally be called directly. Syncs the contents
24847      * of the editor iframe with the textarea.
24848      */
24849     syncValue : function(){
24850         if(this.initialized){
24851             var bd = (this.doc.body || this.doc.documentElement);
24852             //this.cleanUpPaste(); -- this is done else where and causes havoc..
24853             var html = bd.innerHTML;
24854             if(Roo.isSafari){
24855                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
24856                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
24857                 if(m && m[1]){
24858                     html = '<div style="'+m[0]+'">' + html + '</div>';
24859                 }
24860             }
24861             html = this.cleanHtml(html);
24862             // fix up the special chars.. normaly like back quotes in word...
24863             // however we do not want to do this with chinese..
24864             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
24865                 var cc = b.charCodeAt();
24866                 if (
24867                     (cc >= 0x4E00 && cc < 0xA000 ) ||
24868                     (cc >= 0x3400 && cc < 0x4E00 ) ||
24869                     (cc >= 0xf900 && cc < 0xfb00 )
24870                 ) {
24871                         return b;
24872                 }
24873                 return "&#"+cc+";" 
24874             });
24875             if(this.owner.fireEvent('beforesync', this, html) !== false){
24876                 this.el.dom.value = html;
24877                 this.owner.fireEvent('sync', this, html);
24878             }
24879         }
24880     },
24881
24882     /**
24883      * Protected method that will not generally be called directly. Pushes the value of the textarea
24884      * into the iframe editor.
24885      */
24886     pushValue : function(){
24887         if(this.initialized){
24888             var v = this.el.dom.value;
24889             
24890             if(v.length < 1){
24891                 v = '&#160;';
24892             }
24893             
24894             if(this.owner.fireEvent('beforepush', this, v) !== false){
24895                 var d = (this.doc.body || this.doc.documentElement);
24896                 d.innerHTML = v;
24897                 this.cleanUpPaste();
24898                 this.el.dom.value = d.innerHTML;
24899                 this.owner.fireEvent('push', this, v);
24900             }
24901         }
24902     },
24903
24904     // private
24905     deferFocus : function(){
24906         this.focus.defer(10, this);
24907     },
24908
24909     // doc'ed in Field
24910     focus : function(){
24911         if(this.win && !this.sourceEditMode){
24912             this.win.focus();
24913         }else{
24914             this.el.focus();
24915         }
24916     },
24917     
24918     assignDocWin: function()
24919     {
24920         var iframe = this.iframe;
24921         
24922          if(Roo.isIE){
24923             this.doc = iframe.contentWindow.document;
24924             this.win = iframe.contentWindow;
24925         } else {
24926             if (!Roo.get(this.frameId)) {
24927                 return;
24928             }
24929             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
24930             this.win = Roo.get(this.frameId).dom.contentWindow;
24931         }
24932     },
24933     
24934     // private
24935     initEditor : function(){
24936         //console.log("INIT EDITOR");
24937         this.assignDocWin();
24938         
24939         
24940         
24941         this.doc.designMode="on";
24942         this.doc.open();
24943         this.doc.write(this.getDocMarkup());
24944         this.doc.close();
24945         
24946         var dbody = (this.doc.body || this.doc.documentElement);
24947         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
24948         // this copies styles from the containing element into thsi one..
24949         // not sure why we need all of this..
24950         var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
24951         ss['background-attachment'] = 'fixed'; // w3c
24952         dbody.bgProperties = 'fixed'; // ie
24953         Roo.DomHelper.applyStyles(dbody, ss);
24954         Roo.EventManager.on(this.doc, {
24955             //'mousedown': this.onEditorEvent,
24956             'mouseup': this.onEditorEvent,
24957             'dblclick': this.onEditorEvent,
24958             'click': this.onEditorEvent,
24959             'keyup': this.onEditorEvent,
24960             buffer:100,
24961             scope: this
24962         });
24963         if(Roo.isGecko){
24964             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
24965         }
24966         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
24967             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
24968         }
24969         this.initialized = true;
24970
24971         this.owner.fireEvent('initialize', this);
24972         this.pushValue();
24973     },
24974
24975     // private
24976     onDestroy : function(){
24977         
24978         
24979         
24980         if(this.rendered){
24981             
24982             //for (var i =0; i < this.toolbars.length;i++) {
24983             //    // fixme - ask toolbars for heights?
24984             //    this.toolbars[i].onDestroy();
24985            // }
24986             
24987             //this.wrap.dom.innerHTML = '';
24988             //this.wrap.remove();
24989         }
24990     },
24991
24992     // private
24993     onFirstFocus : function(){
24994         
24995         this.assignDocWin();
24996         
24997         
24998         this.activated = true;
24999          
25000     
25001         if(Roo.isGecko){ // prevent silly gecko errors
25002             this.win.focus();
25003             var s = this.win.getSelection();
25004             if(!s.focusNode || s.focusNode.nodeType != 3){
25005                 var r = s.getRangeAt(0);
25006                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
25007                 r.collapse(true);
25008                 this.deferFocus();
25009             }
25010             try{
25011                 this.execCmd('useCSS', true);
25012                 this.execCmd('styleWithCSS', false);
25013             }catch(e){}
25014         }
25015         this.owner.fireEvent('activate', this);
25016     },
25017
25018     // private
25019     adjustFont: function(btn){
25020         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
25021         //if(Roo.isSafari){ // safari
25022         //    adjust *= 2;
25023        // }
25024         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
25025         if(Roo.isSafari){ // safari
25026             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
25027             v =  (v < 10) ? 10 : v;
25028             v =  (v > 48) ? 48 : v;
25029             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
25030             
25031         }
25032         
25033         
25034         v = Math.max(1, v+adjust);
25035         
25036         this.execCmd('FontSize', v  );
25037     },
25038
25039     onEditorEvent : function(e){
25040         this.owner.fireEvent('editorevent', this, e);
25041       //  this.updateToolbar();
25042         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
25043     },
25044
25045     insertTag : function(tg)
25046     {
25047         // could be a bit smarter... -> wrap the current selected tRoo..
25048         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
25049             
25050             range = this.createRange(this.getSelection());
25051             var wrappingNode = this.doc.createElement(tg.toLowerCase());
25052             wrappingNode.appendChild(range.extractContents());
25053             range.insertNode(wrappingNode);
25054
25055             return;
25056             
25057             
25058             
25059         }
25060         this.execCmd("formatblock",   tg);
25061         
25062     },
25063     
25064     insertText : function(txt)
25065     {
25066         
25067         
25068         var range = this.createRange();
25069         range.deleteContents();
25070                //alert(Sender.getAttribute('label'));
25071                
25072         range.insertNode(this.doc.createTextNode(txt));
25073     } ,
25074     
25075      
25076
25077     /**
25078      * Executes a Midas editor command on the editor document and performs necessary focus and
25079      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
25080      * @param {String} cmd The Midas command
25081      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25082      */
25083     relayCmd : function(cmd, value){
25084         this.win.focus();
25085         this.execCmd(cmd, value);
25086         this.owner.fireEvent('editorevent', this);
25087         //this.updateToolbar();
25088         this.owner.deferFocus();
25089     },
25090
25091     /**
25092      * Executes a Midas editor command directly on the editor document.
25093      * For visual commands, you should use {@link #relayCmd} instead.
25094      * <b>This should only be called after the editor is initialized.</b>
25095      * @param {String} cmd The Midas command
25096      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
25097      */
25098     execCmd : function(cmd, value){
25099         this.doc.execCommand(cmd, false, value === undefined ? null : value);
25100         this.syncValue();
25101     },
25102  
25103  
25104    
25105     /**
25106      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
25107      * to insert tRoo.
25108      * @param {String} text | dom node.. 
25109      */
25110     insertAtCursor : function(text)
25111     {
25112         
25113         
25114         
25115         if(!this.activated){
25116             return;
25117         }
25118         /*
25119         if(Roo.isIE){
25120             this.win.focus();
25121             var r = this.doc.selection.createRange();
25122             if(r){
25123                 r.collapse(true);
25124                 r.pasteHTML(text);
25125                 this.syncValue();
25126                 this.deferFocus();
25127             
25128             }
25129             return;
25130         }
25131         */
25132         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
25133             this.win.focus();
25134             
25135             
25136             // from jquery ui (MIT licenced)
25137             var range, node;
25138             var win = this.win;
25139             
25140             if (win.getSelection && win.getSelection().getRangeAt) {
25141                 range = win.getSelection().getRangeAt(0);
25142                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
25143                 range.insertNode(node);
25144             } else if (win.document.selection && win.document.selection.createRange) {
25145                 // no firefox support
25146                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25147                 win.document.selection.createRange().pasteHTML(txt);
25148             } else {
25149                 // no firefox support
25150                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
25151                 this.execCmd('InsertHTML', txt);
25152             } 
25153             
25154             this.syncValue();
25155             
25156             this.deferFocus();
25157         }
25158     },
25159  // private
25160     mozKeyPress : function(e){
25161         if(e.ctrlKey){
25162             var c = e.getCharCode(), cmd;
25163           
25164             if(c > 0){
25165                 c = String.fromCharCode(c).toLowerCase();
25166                 switch(c){
25167                     case 'b':
25168                         cmd = 'bold';
25169                         break;
25170                     case 'i':
25171                         cmd = 'italic';
25172                         break;
25173                     
25174                     case 'u':
25175                         cmd = 'underline';
25176                         break;
25177                     
25178                     case 'v':
25179                         this.cleanUpPaste.defer(100, this);
25180                         return;
25181                         
25182                 }
25183                 if(cmd){
25184                     this.win.focus();
25185                     this.execCmd(cmd);
25186                     this.deferFocus();
25187                     e.preventDefault();
25188                 }
25189                 
25190             }
25191         }
25192     },
25193
25194     // private
25195     fixKeys : function(){ // load time branching for fastest keydown performance
25196         if(Roo.isIE){
25197             return function(e){
25198                 var k = e.getKey(), r;
25199                 if(k == e.TAB){
25200                     e.stopEvent();
25201                     r = this.doc.selection.createRange();
25202                     if(r){
25203                         r.collapse(true);
25204                         r.pasteHTML('&#160;&#160;&#160;&#160;');
25205                         this.deferFocus();
25206                     }
25207                     return;
25208                 }
25209                 
25210                 if(k == e.ENTER){
25211                     r = this.doc.selection.createRange();
25212                     if(r){
25213                         var target = r.parentElement();
25214                         if(!target || target.tagName.toLowerCase() != 'li'){
25215                             e.stopEvent();
25216                             r.pasteHTML('<br />');
25217                             r.collapse(false);
25218                             r.select();
25219                         }
25220                     }
25221                 }
25222                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25223                     this.cleanUpPaste.defer(100, this);
25224                     return;
25225                 }
25226                 
25227                 
25228             };
25229         }else if(Roo.isOpera){
25230             return function(e){
25231                 var k = e.getKey();
25232                 if(k == e.TAB){
25233                     e.stopEvent();
25234                     this.win.focus();
25235                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
25236                     this.deferFocus();
25237                 }
25238                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25239                     this.cleanUpPaste.defer(100, this);
25240                     return;
25241                 }
25242                 
25243             };
25244         }else if(Roo.isSafari){
25245             return function(e){
25246                 var k = e.getKey();
25247                 
25248                 if(k == e.TAB){
25249                     e.stopEvent();
25250                     this.execCmd('InsertText','\t');
25251                     this.deferFocus();
25252                     return;
25253                 }
25254                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
25255                     this.cleanUpPaste.defer(100, this);
25256                     return;
25257                 }
25258                 
25259              };
25260         }
25261     }(),
25262     
25263     getAllAncestors: function()
25264     {
25265         var p = this.getSelectedNode();
25266         var a = [];
25267         if (!p) {
25268             a.push(p); // push blank onto stack..
25269             p = this.getParentElement();
25270         }
25271         
25272         
25273         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
25274             a.push(p);
25275             p = p.parentNode;
25276         }
25277         a.push(this.doc.body);
25278         return a;
25279     },
25280     lastSel : false,
25281     lastSelNode : false,
25282     
25283     
25284     getSelection : function() 
25285     {
25286         this.assignDocWin();
25287         return Roo.isIE ? this.doc.selection : this.win.getSelection();
25288     },
25289     
25290     getSelectedNode: function() 
25291     {
25292         // this may only work on Gecko!!!
25293         
25294         // should we cache this!!!!
25295         
25296         
25297         
25298          
25299         var range = this.createRange(this.getSelection()).cloneRange();
25300         
25301         if (Roo.isIE) {
25302             var parent = range.parentElement();
25303             while (true) {
25304                 var testRange = range.duplicate();
25305                 testRange.moveToElementText(parent);
25306                 if (testRange.inRange(range)) {
25307                     break;
25308                 }
25309                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
25310                     break;
25311                 }
25312                 parent = parent.parentElement;
25313             }
25314             return parent;
25315         }
25316         
25317         // is ancestor a text element.
25318         var ac =  range.commonAncestorContainer;
25319         if (ac.nodeType == 3) {
25320             ac = ac.parentNode;
25321         }
25322         
25323         var ar = ac.childNodes;
25324          
25325         var nodes = [];
25326         var other_nodes = [];
25327         var has_other_nodes = false;
25328         for (var i=0;i<ar.length;i++) {
25329             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
25330                 continue;
25331             }
25332             // fullly contained node.
25333             
25334             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
25335                 nodes.push(ar[i]);
25336                 continue;
25337             }
25338             
25339             // probably selected..
25340             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
25341                 other_nodes.push(ar[i]);
25342                 continue;
25343             }
25344             // outer..
25345             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
25346                 continue;
25347             }
25348             
25349             
25350             has_other_nodes = true;
25351         }
25352         if (!nodes.length && other_nodes.length) {
25353             nodes= other_nodes;
25354         }
25355         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
25356             return false;
25357         }
25358         
25359         return nodes[0];
25360     },
25361     createRange: function(sel)
25362     {
25363         // this has strange effects when using with 
25364         // top toolbar - not sure if it's a great idea.
25365         //this.editor.contentWindow.focus();
25366         if (typeof sel != "undefined") {
25367             try {
25368                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
25369             } catch(e) {
25370                 return this.doc.createRange();
25371             }
25372         } else {
25373             return this.doc.createRange();
25374         }
25375     },
25376     getParentElement: function()
25377     {
25378         
25379         this.assignDocWin();
25380         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
25381         
25382         var range = this.createRange(sel);
25383          
25384         try {
25385             var p = range.commonAncestorContainer;
25386             while (p.nodeType == 3) { // text node
25387                 p = p.parentNode;
25388             }
25389             return p;
25390         } catch (e) {
25391             return null;
25392         }
25393     
25394     },
25395     /***
25396      *
25397      * Range intersection.. the hard stuff...
25398      *  '-1' = before
25399      *  '0' = hits..
25400      *  '1' = after.
25401      *         [ -- selected range --- ]
25402      *   [fail]                        [fail]
25403      *
25404      *    basically..
25405      *      if end is before start or  hits it. fail.
25406      *      if start is after end or hits it fail.
25407      *
25408      *   if either hits (but other is outside. - then it's not 
25409      *   
25410      *    
25411      **/
25412     
25413     
25414     // @see http://www.thismuchiknow.co.uk/?p=64.
25415     rangeIntersectsNode : function(range, node)
25416     {
25417         var nodeRange = node.ownerDocument.createRange();
25418         try {
25419             nodeRange.selectNode(node);
25420         } catch (e) {
25421             nodeRange.selectNodeContents(node);
25422         }
25423     
25424         var rangeStartRange = range.cloneRange();
25425         rangeStartRange.collapse(true);
25426     
25427         var rangeEndRange = range.cloneRange();
25428         rangeEndRange.collapse(false);
25429     
25430         var nodeStartRange = nodeRange.cloneRange();
25431         nodeStartRange.collapse(true);
25432     
25433         var nodeEndRange = nodeRange.cloneRange();
25434         nodeEndRange.collapse(false);
25435     
25436         return rangeStartRange.compareBoundaryPoints(
25437                  Range.START_TO_START, nodeEndRange) == -1 &&
25438                rangeEndRange.compareBoundaryPoints(
25439                  Range.START_TO_START, nodeStartRange) == 1;
25440         
25441          
25442     },
25443     rangeCompareNode : function(range, node)
25444     {
25445         var nodeRange = node.ownerDocument.createRange();
25446         try {
25447             nodeRange.selectNode(node);
25448         } catch (e) {
25449             nodeRange.selectNodeContents(node);
25450         }
25451         
25452         
25453         range.collapse(true);
25454     
25455         nodeRange.collapse(true);
25456      
25457         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
25458         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
25459          
25460         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
25461         
25462         var nodeIsBefore   =  ss == 1;
25463         var nodeIsAfter    = ee == -1;
25464         
25465         if (nodeIsBefore && nodeIsAfter)
25466             return 0; // outer
25467         if (!nodeIsBefore && nodeIsAfter)
25468             return 1; //right trailed.
25469         
25470         if (nodeIsBefore && !nodeIsAfter)
25471             return 2;  // left trailed.
25472         // fully contined.
25473         return 3;
25474     },
25475
25476     // private? - in a new class?
25477     cleanUpPaste :  function()
25478     {
25479         // cleans up the whole document..
25480          Roo.log('cleanuppaste');
25481         this.cleanUpChildren(this.doc.body);
25482         var clean = this.cleanWordChars(this.doc.body.innerHTML);
25483         if (clean != this.doc.body.innerHTML) {
25484             this.doc.body.innerHTML = clean;
25485         }
25486         
25487     },
25488     
25489     cleanWordChars : function(input) {// change the chars to hex code
25490         var he = Roo.HtmlEditorCore;
25491         
25492         var output = input;
25493         Roo.each(he.swapCodes, function(sw) { 
25494             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
25495             
25496             output = output.replace(swapper, sw[1]);
25497         });
25498         
25499         return output;
25500     },
25501     
25502     
25503     cleanUpChildren : function (n)
25504     {
25505         if (!n.childNodes.length) {
25506             return;
25507         }
25508         for (var i = n.childNodes.length-1; i > -1 ; i--) {
25509            this.cleanUpChild(n.childNodes[i]);
25510         }
25511     },
25512     
25513     
25514         
25515     
25516     cleanUpChild : function (node)
25517     {
25518         var ed = this;
25519         //console.log(node);
25520         if (node.nodeName == "#text") {
25521             // clean up silly Windows -- stuff?
25522             return; 
25523         }
25524         if (node.nodeName == "#comment") {
25525             node.parentNode.removeChild(node);
25526             // clean up silly Windows -- stuff?
25527             return; 
25528         }
25529         
25530         if (Roo.HtmlEditorCore.black.indexOf(node.tagName.toLowerCase()) > -1) {
25531             // remove node.
25532             node.parentNode.removeChild(node);
25533             return;
25534             
25535         }
25536         
25537         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
25538         
25539         // remove <a name=....> as rendering on yahoo mailer is borked with this.
25540         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
25541         
25542         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
25543         //    remove_keep_children = true;
25544         //}
25545         
25546         if (remove_keep_children) {
25547             this.cleanUpChildren(node);
25548             // inserts everything just before this node...
25549             while (node.childNodes.length) {
25550                 var cn = node.childNodes[0];
25551                 node.removeChild(cn);
25552                 node.parentNode.insertBefore(cn, node);
25553             }
25554             node.parentNode.removeChild(node);
25555             return;
25556         }
25557         
25558         if (!node.attributes || !node.attributes.length) {
25559             this.cleanUpChildren(node);
25560             return;
25561         }
25562         
25563         function cleanAttr(n,v)
25564         {
25565             
25566             if (v.match(/^\./) || v.match(/^\//)) {
25567                 return;
25568             }
25569             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
25570                 return;
25571             }
25572             if (v.match(/^#/)) {
25573                 return;
25574             }
25575 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
25576             node.removeAttribute(n);
25577             
25578         }
25579         
25580         function cleanStyle(n,v)
25581         {
25582             if (v.match(/expression/)) { //XSS?? should we even bother..
25583                 node.removeAttribute(n);
25584                 return;
25585             }
25586             var cwhite = typeof(ed.cwhite) == 'undefined' ? Roo.HtmlEditorCore.cwhite : ed.cwhite;
25587             var cblack = typeof(ed.cblack) == 'undefined' ? Roo.HtmlEditorCore.cblack : ed.cblack;
25588             
25589             
25590             var parts = v.split(/;/);
25591             var clean = [];
25592             
25593             Roo.each(parts, function(p) {
25594                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
25595                 if (!p.length) {
25596                     return true;
25597                 }
25598                 var l = p.split(':').shift().replace(/\s+/g,'');
25599                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
25600                 
25601                 
25602                 if ( cblack.indexOf(l) > -1) {
25603 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25604                     //node.removeAttribute(n);
25605                     return true;
25606                 }
25607                 //Roo.log()
25608                 // only allow 'c whitelisted system attributes'
25609                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
25610 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
25611                     //node.removeAttribute(n);
25612                     return true;
25613                 }
25614                 
25615                 
25616                  
25617                 
25618                 clean.push(p);
25619                 return true;
25620             });
25621             if (clean.length) { 
25622                 node.setAttribute(n, clean.join(';'));
25623             } else {
25624                 node.removeAttribute(n);
25625             }
25626             
25627         }
25628         
25629         
25630         for (var i = node.attributes.length-1; i > -1 ; i--) {
25631             var a = node.attributes[i];
25632             //console.log(a);
25633             
25634             if (a.name.toLowerCase().substr(0,2)=='on')  {
25635                 node.removeAttribute(a.name);
25636                 continue;
25637             }
25638             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
25639                 node.removeAttribute(a.name);
25640                 continue;
25641             }
25642             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
25643                 cleanAttr(a.name,a.value); // fixme..
25644                 continue;
25645             }
25646             if (a.name == 'style') {
25647                 cleanStyle(a.name,a.value);
25648                 continue;
25649             }
25650             /// clean up MS crap..
25651             // tecnically this should be a list of valid class'es..
25652             
25653             
25654             if (a.name == 'class') {
25655                 if (a.value.match(/^Mso/)) {
25656                     node.className = '';
25657                 }
25658                 
25659                 if (a.value.match(/body/)) {
25660                     node.className = '';
25661                 }
25662                 continue;
25663             }
25664             
25665             // style cleanup!?
25666             // class cleanup?
25667             
25668         }
25669         
25670         
25671         this.cleanUpChildren(node);
25672         
25673         
25674     }
25675     
25676     
25677     // hide stuff that is not compatible
25678     /**
25679      * @event blur
25680      * @hide
25681      */
25682     /**
25683      * @event change
25684      * @hide
25685      */
25686     /**
25687      * @event focus
25688      * @hide
25689      */
25690     /**
25691      * @event specialkey
25692      * @hide
25693      */
25694     /**
25695      * @cfg {String} fieldClass @hide
25696      */
25697     /**
25698      * @cfg {String} focusClass @hide
25699      */
25700     /**
25701      * @cfg {String} autoCreate @hide
25702      */
25703     /**
25704      * @cfg {String} inputType @hide
25705      */
25706     /**
25707      * @cfg {String} invalidClass @hide
25708      */
25709     /**
25710      * @cfg {String} invalidText @hide
25711      */
25712     /**
25713      * @cfg {String} msgFx @hide
25714      */
25715     /**
25716      * @cfg {String} validateOnBlur @hide
25717      */
25718 });
25719
25720 Roo.HtmlEditorCore.white = [
25721         'area', 'br', 'img', 'input', 'hr', 'wbr',
25722         
25723        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
25724        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
25725        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
25726        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
25727        'table',   'ul',         'xmp', 
25728        
25729        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
25730       'thead',   'tr', 
25731      
25732       'dir', 'menu', 'ol', 'ul', 'dl',
25733        
25734       'embed',  'object'
25735 ];
25736
25737
25738 Roo.HtmlEditorCore.black = [
25739     //    'embed',  'object', // enable - backend responsiblity to clean thiese
25740         'applet', // 
25741         'base',   'basefont', 'bgsound', 'blink',  'body', 
25742         'frame',  'frameset', 'head',    'html',   'ilayer', 
25743         'iframe', 'layer',  'link',     'meta',    'object',   
25744         'script', 'style' ,'title',  'xml' // clean later..
25745 ];
25746 Roo.HtmlEditorCore.clean = [
25747     'script', 'style', 'title', 'xml'
25748 ];
25749 Roo.HtmlEditorCore.remove = [
25750     'font'
25751 ];
25752 // attributes..
25753
25754 Roo.HtmlEditorCore.ablack = [
25755     'on'
25756 ];
25757     
25758 Roo.HtmlEditorCore.aclean = [ 
25759     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
25760 ];
25761
25762 // protocols..
25763 Roo.HtmlEditorCore.pwhite= [
25764         'http',  'https',  'mailto'
25765 ];
25766
25767 // white listed style attributes.
25768 Roo.HtmlEditorCore.cwhite= [
25769       //  'text-align', /// default is to allow most things..
25770       
25771          
25772 //        'font-size'//??
25773 ];
25774
25775 // black listed style attributes.
25776 Roo.HtmlEditorCore.cblack= [
25777       //  'font-size' -- this can be set by the project 
25778 ];
25779
25780
25781 Roo.HtmlEditorCore.swapCodes   =[ 
25782     [    8211, "--" ], 
25783     [    8212, "--" ], 
25784     [    8216,  "'" ],  
25785     [    8217, "'" ],  
25786     [    8220, '"' ],  
25787     [    8221, '"' ],  
25788     [    8226, "*" ],  
25789     [    8230, "..." ]
25790 ]; 
25791
25792     //<script type="text/javascript">
25793
25794 /*
25795  * Ext JS Library 1.1.1
25796  * Copyright(c) 2006-2007, Ext JS, LLC.
25797  * Licence LGPL
25798  * 
25799  */
25800  
25801  
25802 Roo.form.HtmlEditor = function(config){
25803     
25804     
25805     
25806     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
25807     
25808     if (!this.toolbars) {
25809         this.toolbars = [];
25810     }
25811     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
25812     
25813     
25814 };
25815
25816 /**
25817  * @class Roo.form.HtmlEditor
25818  * @extends Roo.form.Field
25819  * Provides a lightweight HTML Editor component.
25820  *
25821  * This has been tested on Fireforx / Chrome.. IE may not be so great..
25822  * 
25823  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
25824  * supported by this editor.</b><br/><br/>
25825  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
25826  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
25827  */
25828 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
25829       /**
25830      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
25831      */
25832     toolbars : false,
25833    
25834      /**
25835      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
25836      *                        Roo.resizable.
25837      */
25838     resizable : false,
25839      /**
25840      * @cfg {Number} height (in pixels)
25841      */   
25842     height: 300,
25843    /**
25844      * @cfg {Number} width (in pixels)
25845      */   
25846     width: 500,
25847     
25848     /**
25849      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
25850      * 
25851      */
25852     stylesheets: false,
25853     
25854     // id of frame..
25855     frameId: false,
25856     
25857     // private properties
25858     validationEvent : false,
25859     deferHeight: true,
25860     initialized : false,
25861     activated : false,
25862     
25863     onFocus : Roo.emptyFn,
25864     iframePad:3,
25865     hideMode:'offsets',
25866     
25867     defaultAutoCreate : { // modified by initCompnoent..
25868         tag: "textarea",
25869         style:"width:500px;height:300px;",
25870         autocomplete: "off"
25871     },
25872
25873     // private
25874     initComponent : function(){
25875         this.addEvents({
25876             /**
25877              * @event initialize
25878              * Fires when the editor is fully initialized (including the iframe)
25879              * @param {HtmlEditor} this
25880              */
25881             initialize: true,
25882             /**
25883              * @event activate
25884              * Fires when the editor is first receives the focus. Any insertion must wait
25885              * until after this event.
25886              * @param {HtmlEditor} this
25887              */
25888             activate: true,
25889              /**
25890              * @event beforesync
25891              * Fires before the textarea is updated with content from the editor iframe. Return false
25892              * to cancel the sync.
25893              * @param {HtmlEditor} this
25894              * @param {String} html
25895              */
25896             beforesync: true,
25897              /**
25898              * @event beforepush
25899              * Fires before the iframe editor is updated with content from the textarea. Return false
25900              * to cancel the push.
25901              * @param {HtmlEditor} this
25902              * @param {String} html
25903              */
25904             beforepush: true,
25905              /**
25906              * @event sync
25907              * Fires when the textarea is updated with content from the editor iframe.
25908              * @param {HtmlEditor} this
25909              * @param {String} html
25910              */
25911             sync: true,
25912              /**
25913              * @event push
25914              * Fires when the iframe editor is updated with content from the textarea.
25915              * @param {HtmlEditor} this
25916              * @param {String} html
25917              */
25918             push: true,
25919              /**
25920              * @event editmodechange
25921              * Fires when the editor switches edit modes
25922              * @param {HtmlEditor} this
25923              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
25924              */
25925             editmodechange: true,
25926             /**
25927              * @event editorevent
25928              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
25929              * @param {HtmlEditor} this
25930              */
25931             editorevent: true,
25932             /**
25933              * @event firstfocus
25934              * Fires when on first focus - needed by toolbars..
25935              * @param {HtmlEditor} this
25936              */
25937             firstfocus: true,
25938             /**
25939              * @event autosave
25940              * Auto save the htmlEditor value as a file into Events
25941              * @param {HtmlEditor} this
25942              */
25943             autosave: true,
25944             /**
25945              * @event savedpreview
25946              * preview the saved version of htmlEditor
25947              * @param {HtmlEditor} this
25948              */
25949             savedpreview: true
25950         });
25951         this.defaultAutoCreate =  {
25952             tag: "textarea",
25953             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
25954             autocomplete: "off"
25955         };
25956     },
25957
25958     /**
25959      * Protected method that will not generally be called directly. It
25960      * is called when the editor creates its toolbar. Override this method if you need to
25961      * add custom toolbar buttons.
25962      * @param {HtmlEditor} editor
25963      */
25964     createToolbar : function(editor){
25965         Roo.log("create toolbars");
25966         if (!editor.toolbars || !editor.toolbars.length) {
25967             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
25968         }
25969         
25970         for (var i =0 ; i < editor.toolbars.length;i++) {
25971             editor.toolbars[i] = Roo.factory(
25972                     typeof(editor.toolbars[i]) == 'string' ?
25973                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
25974                 Roo.form.HtmlEditor);
25975             editor.toolbars[i].init(editor);
25976         }
25977          
25978         
25979     },
25980
25981      
25982     // private
25983     onRender : function(ct, position)
25984     {
25985         var _t = this;
25986         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
25987         
25988         this.wrap = this.el.wrap({
25989             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
25990         });
25991         
25992         this.editorcore.onRender(ct, position);
25993          
25994         if (this.resizable) {
25995             this.resizeEl = new Roo.Resizable(this.wrap, {
25996                 pinned : true,
25997                 wrap: true,
25998                 dynamic : true,
25999                 minHeight : this.height,
26000                 height: this.height,
26001                 handles : this.resizable,
26002                 width: this.width,
26003                 listeners : {
26004                     resize : function(r, w, h) {
26005                         _t.onResize(w,h); // -something
26006                     }
26007                 }
26008             });
26009             
26010         }
26011         this.createToolbar(this);
26012        
26013         
26014         if(!this.width){
26015             this.setSize(this.wrap.getSize());
26016         }
26017         if (this.resizeEl) {
26018             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
26019             // should trigger onReize..
26020         }
26021         
26022 //        if(this.autosave && this.w){
26023 //            this.autoSaveFn = setInterval(this.autosave, 1000);
26024 //        }
26025     },
26026
26027     // private
26028     onResize : function(w, h)
26029     {
26030         //Roo.log('resize: ' +w + ',' + h );
26031         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
26032         var ew = false;
26033         var eh = false;
26034         
26035         if(this.el ){
26036             if(typeof w == 'number'){
26037                 var aw = w - this.wrap.getFrameWidth('lr');
26038                 this.el.setWidth(this.adjustWidth('textarea', aw));
26039                 ew = aw;
26040             }
26041             if(typeof h == 'number'){
26042                 var tbh = 0;
26043                 for (var i =0; i < this.toolbars.length;i++) {
26044                     // fixme - ask toolbars for heights?
26045                     tbh += this.toolbars[i].tb.el.getHeight();
26046                     if (this.toolbars[i].footer) {
26047                         tbh += this.toolbars[i].footer.el.getHeight();
26048                     }
26049                 }
26050                 
26051                 
26052                 
26053                 
26054                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
26055                 ah -= 5; // knock a few pixes off for look..
26056                 this.el.setHeight(this.adjustWidth('textarea', ah));
26057                 var eh = ah;
26058             }
26059         }
26060         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
26061         this.editorcore.onResize(ew,eh);
26062         
26063     },
26064
26065     /**
26066      * Toggles the editor between standard and source edit mode.
26067      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
26068      */
26069     toggleSourceEdit : function(sourceEditMode)
26070     {
26071         this.editorcore.toggleSourceEdit(sourceEditMode);
26072         
26073         if(this.editorcore.sourceEditMode){
26074             Roo.log('editor - showing textarea');
26075             
26076 //            Roo.log('in');
26077 //            Roo.log(this.syncValue());
26078             this.editorcore.syncValue();
26079             this.el.removeClass('x-hidden');
26080             this.el.dom.removeAttribute('tabIndex');
26081             this.el.focus();
26082         }else{
26083             Roo.log('editor - hiding textarea');
26084 //            Roo.log('out')
26085 //            Roo.log(this.pushValue()); 
26086             this.editorcore.pushValue();
26087             
26088             this.el.addClass('x-hidden');
26089             this.el.dom.setAttribute('tabIndex', -1);
26090             //this.deferFocus();
26091         }
26092          
26093         this.setSize(this.wrap.getSize());
26094         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
26095     },
26096  
26097     // private (for BoxComponent)
26098     adjustSize : Roo.BoxComponent.prototype.adjustSize,
26099
26100     // private (for BoxComponent)
26101     getResizeEl : function(){
26102         return this.wrap;
26103     },
26104
26105     // private (for BoxComponent)
26106     getPositionEl : function(){
26107         return this.wrap;
26108     },
26109
26110     // private
26111     initEvents : function(){
26112         this.originalValue = this.getValue();
26113     },
26114
26115     /**
26116      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26117      * @method
26118      */
26119     markInvalid : Roo.emptyFn,
26120     /**
26121      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
26122      * @method
26123      */
26124     clearInvalid : Roo.emptyFn,
26125
26126     setValue : function(v){
26127         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
26128         this.editorcore.pushValue();
26129     },
26130
26131      
26132     // private
26133     deferFocus : function(){
26134         this.focus.defer(10, this);
26135     },
26136
26137     // doc'ed in Field
26138     focus : function(){
26139         this.editorcore.focus();
26140         
26141     },
26142       
26143
26144     // private
26145     onDestroy : function(){
26146         
26147         
26148         
26149         if(this.rendered){
26150             
26151             for (var i =0; i < this.toolbars.length;i++) {
26152                 // fixme - ask toolbars for heights?
26153                 this.toolbars[i].onDestroy();
26154             }
26155             
26156             this.wrap.dom.innerHTML = '';
26157             this.wrap.remove();
26158         }
26159     },
26160
26161     // private
26162     onFirstFocus : function(){
26163         //Roo.log("onFirstFocus");
26164         this.editorcore.onFirstFocus();
26165          for (var i =0; i < this.toolbars.length;i++) {
26166             this.toolbars[i].onFirstFocus();
26167         }
26168         
26169     },
26170     
26171     // private
26172     syncValue : function()
26173     {
26174         this.editorcore.syncValue();
26175     },
26176     
26177     pushValue : function()
26178     {
26179         this.editorcore.pushValue();
26180     }
26181      
26182     
26183     // hide stuff that is not compatible
26184     /**
26185      * @event blur
26186      * @hide
26187      */
26188     /**
26189      * @event change
26190      * @hide
26191      */
26192     /**
26193      * @event focus
26194      * @hide
26195      */
26196     /**
26197      * @event specialkey
26198      * @hide
26199      */
26200     /**
26201      * @cfg {String} fieldClass @hide
26202      */
26203     /**
26204      * @cfg {String} focusClass @hide
26205      */
26206     /**
26207      * @cfg {String} autoCreate @hide
26208      */
26209     /**
26210      * @cfg {String} inputType @hide
26211      */
26212     /**
26213      * @cfg {String} invalidClass @hide
26214      */
26215     /**
26216      * @cfg {String} invalidText @hide
26217      */
26218     /**
26219      * @cfg {String} msgFx @hide
26220      */
26221     /**
26222      * @cfg {String} validateOnBlur @hide
26223      */
26224 });
26225  
26226     // <script type="text/javascript">
26227 /*
26228  * Based on
26229  * Ext JS Library 1.1.1
26230  * Copyright(c) 2006-2007, Ext JS, LLC.
26231  *  
26232  
26233  */
26234
26235 /**
26236  * @class Roo.form.HtmlEditorToolbar1
26237  * Basic Toolbar
26238  * 
26239  * Usage:
26240  *
26241  new Roo.form.HtmlEditor({
26242     ....
26243     toolbars : [
26244         new Roo.form.HtmlEditorToolbar1({
26245             disable : { fonts: 1 , format: 1, ..., ... , ...],
26246             btns : [ .... ]
26247         })
26248     }
26249      
26250  * 
26251  * @cfg {Object} disable List of elements to disable..
26252  * @cfg {Array} btns List of additional buttons.
26253  * 
26254  * 
26255  * NEEDS Extra CSS? 
26256  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
26257  */
26258  
26259 Roo.form.HtmlEditor.ToolbarStandard = function(config)
26260 {
26261     
26262     Roo.apply(this, config);
26263     
26264     // default disabled, based on 'good practice'..
26265     this.disable = this.disable || {};
26266     Roo.applyIf(this.disable, {
26267         fontSize : true,
26268         colors : true,
26269         specialElements : true
26270     });
26271     
26272     
26273     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26274     // dont call parent... till later.
26275 }
26276
26277 Roo.apply(Roo.form.HtmlEditor.ToolbarStandard.prototype,  {
26278     
26279     tb: false,
26280     
26281     rendered: false,
26282     
26283     editor : false,
26284     editorcore : false,
26285     /**
26286      * @cfg {Object} disable  List of toolbar elements to disable
26287          
26288      */
26289     disable : false,
26290     
26291     
26292      /**
26293      * @cfg {String} createLinkText The default text for the create link prompt
26294      */
26295     createLinkText : 'Please enter the URL for the link:',
26296     /**
26297      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
26298      */
26299     defaultLinkValue : 'http:/'+'/',
26300    
26301     
26302       /**
26303      * @cfg {Array} fontFamilies An array of available font families
26304      */
26305     fontFamilies : [
26306         'Arial',
26307         'Courier New',
26308         'Tahoma',
26309         'Times New Roman',
26310         'Verdana'
26311     ],
26312     
26313     specialChars : [
26314            "&#169;",
26315           "&#174;",     
26316           "&#8482;",    
26317           "&#163;" ,    
26318          // "&#8212;",    
26319           "&#8230;",    
26320           "&#247;" ,    
26321         //  "&#225;" ,     ?? a acute?
26322            "&#8364;"    , //Euro
26323        //   "&#8220;"    ,
26324         //  "&#8221;"    ,
26325         //  "&#8226;"    ,
26326           "&#176;"  //   , // degrees
26327
26328          // "&#233;"     , // e ecute
26329          // "&#250;"     , // u ecute?
26330     ],
26331     
26332     specialElements : [
26333         {
26334             text: "Insert Table",
26335             xtype: 'MenuItem',
26336             xns : Roo.Menu,
26337             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
26338                 
26339         },
26340         {    
26341             text: "Insert Image",
26342             xtype: 'MenuItem',
26343             xns : Roo.Menu,
26344             ihtml : '<img src="about:blank"/>'
26345             
26346         }
26347         
26348          
26349     ],
26350     
26351     
26352     inputElements : [ 
26353             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
26354             "input:submit", "input:button", "select", "textarea", "label" ],
26355     formats : [
26356         ["p"] ,  
26357         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
26358         ["pre"],[ "code"], 
26359         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
26360         ['div'],['span']
26361     ],
26362     
26363     cleanStyles : [
26364         "font-size"
26365     ],
26366      /**
26367      * @cfg {String} defaultFont default font to use.
26368      */
26369     defaultFont: 'tahoma',
26370    
26371     fontSelect : false,
26372     
26373     
26374     formatCombo : false,
26375     
26376     init : function(editor)
26377     {
26378         this.editor = editor;
26379         this.editorcore = editor.editorcore ? editor.editorcore : editor;
26380         var editorcore = this.editorcore;
26381         
26382         var _t = this;
26383         
26384         var fid = editorcore.frameId;
26385         var etb = this;
26386         function btn(id, toggle, handler){
26387             var xid = fid + '-'+ id ;
26388             return {
26389                 id : xid,
26390                 cmd : id,
26391                 cls : 'x-btn-icon x-edit-'+id,
26392                 enableToggle:toggle !== false,
26393                 scope: _t, // was editor...
26394                 handler:handler||_t.relayBtnCmd,
26395                 clickEvent:'mousedown',
26396                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
26397                 tabIndex:-1
26398             };
26399         }
26400         
26401         
26402         
26403         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
26404         this.tb = tb;
26405          // stop form submits
26406         tb.el.on('click', function(e){
26407             e.preventDefault(); // what does this do?
26408         });
26409
26410         if(!this.disable.font) { // && !Roo.isSafari){
26411             /* why no safari for fonts 
26412             editor.fontSelect = tb.el.createChild({
26413                 tag:'select',
26414                 tabIndex: -1,
26415                 cls:'x-font-select',
26416                 html: this.createFontOptions()
26417             });
26418             
26419             editor.fontSelect.on('change', function(){
26420                 var font = editor.fontSelect.dom.value;
26421                 editor.relayCmd('fontname', font);
26422                 editor.deferFocus();
26423             }, editor);
26424             
26425             tb.add(
26426                 editor.fontSelect.dom,
26427                 '-'
26428             );
26429             */
26430             
26431         };
26432         if(!this.disable.formats){
26433             this.formatCombo = new Roo.form.ComboBox({
26434                 store: new Roo.data.SimpleStore({
26435                     id : 'tag',
26436                     fields: ['tag'],
26437                     data : this.formats // from states.js
26438                 }),
26439                 blockFocus : true,
26440                 name : '',
26441                 //autoCreate : {tag: "div",  size: "20"},
26442                 displayField:'tag',
26443                 typeAhead: false,
26444                 mode: 'local',
26445                 editable : false,
26446                 triggerAction: 'all',
26447                 emptyText:'Add tag',
26448                 selectOnFocus:true,
26449                 width:135,
26450                 listeners : {
26451                     'select': function(c, r, i) {
26452                         editorcore.insertTag(r.get('tag'));
26453                         editor.focus();
26454                     }
26455                 }
26456
26457             });
26458             tb.addField(this.formatCombo);
26459             
26460         }
26461         
26462         if(!this.disable.format){
26463             tb.add(
26464                 btn('bold'),
26465                 btn('italic'),
26466                 btn('underline')
26467             );
26468         };
26469         if(!this.disable.fontSize){
26470             tb.add(
26471                 '-',
26472                 
26473                 
26474                 btn('increasefontsize', false, editorcore.adjustFont),
26475                 btn('decreasefontsize', false, editorcore.adjustFont)
26476             );
26477         };
26478         
26479         
26480         if(!this.disable.colors){
26481             tb.add(
26482                 '-', {
26483                     id:editorcore.frameId +'-forecolor',
26484                     cls:'x-btn-icon x-edit-forecolor',
26485                     clickEvent:'mousedown',
26486                     tooltip: this.buttonTips['forecolor'] || undefined,
26487                     tabIndex:-1,
26488                     menu : new Roo.menu.ColorMenu({
26489                         allowReselect: true,
26490                         focus: Roo.emptyFn,
26491                         value:'000000',
26492                         plain:true,
26493                         selectHandler: function(cp, color){
26494                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
26495                             editor.deferFocus();
26496                         },
26497                         scope: editorcore,
26498                         clickEvent:'mousedown'
26499                     })
26500                 }, {
26501                     id:editorcore.frameId +'backcolor',
26502                     cls:'x-btn-icon x-edit-backcolor',
26503                     clickEvent:'mousedown',
26504                     tooltip: this.buttonTips['backcolor'] || undefined,
26505                     tabIndex:-1,
26506                     menu : new Roo.menu.ColorMenu({
26507                         focus: Roo.emptyFn,
26508                         value:'FFFFFF',
26509                         plain:true,
26510                         allowReselect: true,
26511                         selectHandler: function(cp, color){
26512                             if(Roo.isGecko){
26513                                 editorcore.execCmd('useCSS', false);
26514                                 editorcore.execCmd('hilitecolor', color);
26515                                 editorcore.execCmd('useCSS', true);
26516                                 editor.deferFocus();
26517                             }else{
26518                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
26519                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
26520                                 editor.deferFocus();
26521                             }
26522                         },
26523                         scope:editorcore,
26524                         clickEvent:'mousedown'
26525                     })
26526                 }
26527             );
26528         };
26529         // now add all the items...
26530         
26531
26532         if(!this.disable.alignments){
26533             tb.add(
26534                 '-',
26535                 btn('justifyleft'),
26536                 btn('justifycenter'),
26537                 btn('justifyright')
26538             );
26539         };
26540
26541         //if(!Roo.isSafari){
26542             if(!this.disable.links){
26543                 tb.add(
26544                     '-',
26545                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
26546                 );
26547             };
26548
26549             if(!this.disable.lists){
26550                 tb.add(
26551                     '-',
26552                     btn('insertorderedlist'),
26553                     btn('insertunorderedlist')
26554                 );
26555             }
26556             if(!this.disable.sourceEdit){
26557                 tb.add(
26558                     '-',
26559                     btn('sourceedit', true, function(btn){
26560                         Roo.log(this);
26561                         this.toggleSourceEdit(btn.pressed);
26562                     })
26563                 );
26564             }
26565         //}
26566         
26567         var smenu = { };
26568         // special menu.. - needs to be tidied up..
26569         if (!this.disable.special) {
26570             smenu = {
26571                 text: "&#169;",
26572                 cls: 'x-edit-none',
26573                 
26574                 menu : {
26575                     items : []
26576                 }
26577             };
26578             for (var i =0; i < this.specialChars.length; i++) {
26579                 smenu.menu.items.push({
26580                     
26581                     html: this.specialChars[i],
26582                     handler: function(a,b) {
26583                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
26584                         //editor.insertAtCursor(a.html);
26585                         
26586                     },
26587                     tabIndex:-1
26588                 });
26589             }
26590             
26591             
26592             tb.add(smenu);
26593             
26594             
26595         }
26596         
26597         var cmenu = { };
26598         if (!this.disable.cleanStyles) {
26599             cmenu = {
26600                 cls: 'x-btn-icon x-btn-clear',
26601                 
26602                 menu : {
26603                     items : []
26604                 }
26605             };
26606             for (var i =0; i < this.cleanStyles.length; i++) {
26607                 cmenu.menu.items.push({
26608                     actiontype : this.cleanStyles[i],
26609                     html: 'Remove ' + this.cleanStyles[i],
26610                     handler: function(a,b) {
26611                         Roo.log(a);
26612                         Roo.log(b);
26613                         var c = Roo.get(editorcore.doc.body);
26614                         c.select('[style]').each(function(s) {
26615                             s.dom.style.removeProperty(a.actiontype);
26616                         });
26617                         
26618                     },
26619                     tabIndex:-1
26620                 });
26621             }
26622             
26623             tb.add(cmenu);
26624         }
26625          
26626         if (!this.disable.specialElements) {
26627             var semenu = {
26628                 text: "Other;",
26629                 cls: 'x-edit-none',
26630                 menu : {
26631                     items : []
26632                 }
26633             };
26634             for (var i =0; i < this.specialElements.length; i++) {
26635                 semenu.menu.items.push(
26636                     Roo.apply({ 
26637                         handler: function(a,b) {
26638                             editor.insertAtCursor(this.ihtml);
26639                         }
26640                     }, this.specialElements[i])
26641                 );
26642                     
26643             }
26644             
26645             tb.add(semenu);
26646             
26647             
26648         }
26649          
26650         
26651         if (this.btns) {
26652             for(var i =0; i< this.btns.length;i++) {
26653                 var b = Roo.factory(this.btns[i],Roo.form);
26654                 b.cls =  'x-edit-none';
26655                 b.scope = editorcore;
26656                 tb.add(b);
26657             }
26658         
26659         }
26660         
26661         
26662         
26663         // disable everything...
26664         
26665         this.tb.items.each(function(item){
26666            if(item.id != editorcore.frameId+ '-sourceedit'){
26667                 item.disable();
26668             }
26669         });
26670         this.rendered = true;
26671         
26672         // the all the btns;
26673         editor.on('editorevent', this.updateToolbar, this);
26674         // other toolbars need to implement this..
26675         //editor.on('editmodechange', this.updateToolbar, this);
26676     },
26677     
26678     
26679     relayBtnCmd : function(btn) {
26680         this.editorcore.relayCmd(btn.cmd);
26681     },
26682     // private used internally
26683     createLink : function(){
26684         Roo.log("create link?");
26685         var url = prompt(this.createLinkText, this.defaultLinkValue);
26686         if(url && url != 'http:/'+'/'){
26687             this.editorcore.relayCmd('createlink', url);
26688         }
26689     },
26690
26691     
26692     /**
26693      * Protected method that will not generally be called directly. It triggers
26694      * a toolbar update by reading the markup state of the current selection in the editor.
26695      */
26696     updateToolbar: function(){
26697
26698         if(!this.editorcore.activated){
26699             this.editor.onFirstFocus();
26700             return;
26701         }
26702
26703         var btns = this.tb.items.map, 
26704             doc = this.editorcore.doc,
26705             frameId = this.editorcore.frameId;
26706
26707         if(!this.disable.font && !Roo.isSafari){
26708             /*
26709             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
26710             if(name != this.fontSelect.dom.value){
26711                 this.fontSelect.dom.value = name;
26712             }
26713             */
26714         }
26715         if(!this.disable.format){
26716             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
26717             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
26718             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
26719         }
26720         if(!this.disable.alignments){
26721             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
26722             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
26723             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
26724         }
26725         if(!Roo.isSafari && !this.disable.lists){
26726             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
26727             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
26728         }
26729         
26730         var ans = this.editorcore.getAllAncestors();
26731         if (this.formatCombo) {
26732             
26733             
26734             var store = this.formatCombo.store;
26735             this.formatCombo.setValue("");
26736             for (var i =0; i < ans.length;i++) {
26737                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
26738                     // select it..
26739                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
26740                     break;
26741                 }
26742             }
26743         }
26744         
26745         
26746         
26747         // hides menus... - so this cant be on a menu...
26748         Roo.menu.MenuMgr.hideAll();
26749
26750         //this.editorsyncValue();
26751     },
26752    
26753     
26754     createFontOptions : function(){
26755         var buf = [], fs = this.fontFamilies, ff, lc;
26756         
26757         
26758         
26759         for(var i = 0, len = fs.length; i< len; i++){
26760             ff = fs[i];
26761             lc = ff.toLowerCase();
26762             buf.push(
26763                 '<option value="',lc,'" style="font-family:',ff,';"',
26764                     (this.defaultFont == lc ? ' selected="true">' : '>'),
26765                     ff,
26766                 '</option>'
26767             );
26768         }
26769         return buf.join('');
26770     },
26771     
26772     toggleSourceEdit : function(sourceEditMode){
26773         
26774         Roo.log("toolbar toogle");
26775         if(sourceEditMode === undefined){
26776             sourceEditMode = !this.sourceEditMode;
26777         }
26778         this.sourceEditMode = sourceEditMode === true;
26779         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
26780         // just toggle the button?
26781         if(btn.pressed !== this.sourceEditMode){
26782             btn.toggle(this.sourceEditMode);
26783             return;
26784         }
26785         
26786         if(sourceEditMode){
26787             Roo.log("disabling buttons");
26788             this.tb.items.each(function(item){
26789                 if(item.cmd != 'sourceedit'){
26790                     item.disable();
26791                 }
26792             });
26793           
26794         }else{
26795             Roo.log("enabling buttons");
26796             if(this.editorcore.initialized){
26797                 this.tb.items.each(function(item){
26798                     item.enable();
26799                 });
26800             }
26801             
26802         }
26803         Roo.log("calling toggole on editor");
26804         // tell the editor that it's been pressed..
26805         this.editor.toggleSourceEdit(sourceEditMode);
26806        
26807     },
26808      /**
26809      * Object collection of toolbar tooltips for the buttons in the editor. The key
26810      * is the command id associated with that button and the value is a valid QuickTips object.
26811      * For example:
26812 <pre><code>
26813 {
26814     bold : {
26815         title: 'Bold (Ctrl+B)',
26816         text: 'Make the selected text bold.',
26817         cls: 'x-html-editor-tip'
26818     },
26819     italic : {
26820         title: 'Italic (Ctrl+I)',
26821         text: 'Make the selected text italic.',
26822         cls: 'x-html-editor-tip'
26823     },
26824     ...
26825 </code></pre>
26826     * @type Object
26827      */
26828     buttonTips : {
26829         bold : {
26830             title: 'Bold (Ctrl+B)',
26831             text: 'Make the selected text bold.',
26832             cls: 'x-html-editor-tip'
26833         },
26834         italic : {
26835             title: 'Italic (Ctrl+I)',
26836             text: 'Make the selected text italic.',
26837             cls: 'x-html-editor-tip'
26838         },
26839         underline : {
26840             title: 'Underline (Ctrl+U)',
26841             text: 'Underline the selected text.',
26842             cls: 'x-html-editor-tip'
26843         },
26844         increasefontsize : {
26845             title: 'Grow Text',
26846             text: 'Increase the font size.',
26847             cls: 'x-html-editor-tip'
26848         },
26849         decreasefontsize : {
26850             title: 'Shrink Text',
26851             text: 'Decrease the font size.',
26852             cls: 'x-html-editor-tip'
26853         },
26854         backcolor : {
26855             title: 'Text Highlight Color',
26856             text: 'Change the background color of the selected text.',
26857             cls: 'x-html-editor-tip'
26858         },
26859         forecolor : {
26860             title: 'Font Color',
26861             text: 'Change the color of the selected text.',
26862             cls: 'x-html-editor-tip'
26863         },
26864         justifyleft : {
26865             title: 'Align Text Left',
26866             text: 'Align text to the left.',
26867             cls: 'x-html-editor-tip'
26868         },
26869         justifycenter : {
26870             title: 'Center Text',
26871             text: 'Center text in the editor.',
26872             cls: 'x-html-editor-tip'
26873         },
26874         justifyright : {
26875             title: 'Align Text Right',
26876             text: 'Align text to the right.',
26877             cls: 'x-html-editor-tip'
26878         },
26879         insertunorderedlist : {
26880             title: 'Bullet List',
26881             text: 'Start a bulleted list.',
26882             cls: 'x-html-editor-tip'
26883         },
26884         insertorderedlist : {
26885             title: 'Numbered List',
26886             text: 'Start a numbered list.',
26887             cls: 'x-html-editor-tip'
26888         },
26889         createlink : {
26890             title: 'Hyperlink',
26891             text: 'Make the selected text a hyperlink.',
26892             cls: 'x-html-editor-tip'
26893         },
26894         sourceedit : {
26895             title: 'Source Edit',
26896             text: 'Switch to source editing mode.',
26897             cls: 'x-html-editor-tip'
26898         }
26899     },
26900     // private
26901     onDestroy : function(){
26902         if(this.rendered){
26903             
26904             this.tb.items.each(function(item){
26905                 if(item.menu){
26906                     item.menu.removeAll();
26907                     if(item.menu.el){
26908                         item.menu.el.destroy();
26909                     }
26910                 }
26911                 item.destroy();
26912             });
26913              
26914         }
26915     },
26916     onFirstFocus: function() {
26917         this.tb.items.each(function(item){
26918            item.enable();
26919         });
26920     }
26921 });
26922
26923
26924
26925
26926 // <script type="text/javascript">
26927 /*
26928  * Based on
26929  * Ext JS Library 1.1.1
26930  * Copyright(c) 2006-2007, Ext JS, LLC.
26931  *  
26932  
26933  */
26934
26935  
26936 /**
26937  * @class Roo.form.HtmlEditor.ToolbarContext
26938  * Context Toolbar
26939  * 
26940  * Usage:
26941  *
26942  new Roo.form.HtmlEditor({
26943     ....
26944     toolbars : [
26945         { xtype: 'ToolbarStandard', styles : {} }
26946         { xtype: 'ToolbarContext', disable : {} }
26947     ]
26948 })
26949
26950      
26951  * 
26952  * @config : {Object} disable List of elements to disable.. (not done yet.)
26953  * @config : {Object} styles  Map of styles available.
26954  * 
26955  */
26956
26957 Roo.form.HtmlEditor.ToolbarContext = function(config)
26958 {
26959     
26960     Roo.apply(this, config);
26961     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
26962     // dont call parent... till later.
26963     this.styles = this.styles || {};
26964 }
26965
26966  
26967
26968 Roo.form.HtmlEditor.ToolbarContext.types = {
26969     'IMG' : {
26970         width : {
26971             title: "Width",
26972             width: 40
26973         },
26974         height:  {
26975             title: "Height",
26976             width: 40
26977         },
26978         align: {
26979             title: "Align",
26980             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
26981             width : 80
26982             
26983         },
26984         border: {
26985             title: "Border",
26986             width: 40
26987         },
26988         alt: {
26989             title: "Alt",
26990             width: 120
26991         },
26992         src : {
26993             title: "Src",
26994             width: 220
26995         }
26996         
26997     },
26998     'A' : {
26999         name : {
27000             title: "Name",
27001             width: 50
27002         },
27003         target:  {
27004             title: "Target",
27005             width: 120
27006         },
27007         href:  {
27008             title: "Href",
27009             width: 220
27010         } // border?
27011         
27012     },
27013     'TABLE' : {
27014         rows : {
27015             title: "Rows",
27016             width: 20
27017         },
27018         cols : {
27019             title: "Cols",
27020             width: 20
27021         },
27022         width : {
27023             title: "Width",
27024             width: 40
27025         },
27026         height : {
27027             title: "Height",
27028             width: 40
27029         },
27030         border : {
27031             title: "Border",
27032             width: 20
27033         }
27034     },
27035     'TD' : {
27036         width : {
27037             title: "Width",
27038             width: 40
27039         },
27040         height : {
27041             title: "Height",
27042             width: 40
27043         },   
27044         align: {
27045             title: "Align",
27046             opts : [[""],[ "left"],[ "center"],[ "right"],[ "justify"],[ "char"]],
27047             width: 80
27048         },
27049         valign: {
27050             title: "Valign",
27051             opts : [[""],[ "top"],[ "middle"],[ "bottom"],[ "baseline"]],
27052             width: 80
27053         },
27054         colspan: {
27055             title: "Colspan",
27056             width: 20
27057             
27058         },
27059          'font-family'  : {
27060             title : "Font",
27061             style : 'fontFamily',
27062             displayField: 'display',
27063             optname : 'font-family',
27064             width: 140
27065         }
27066     },
27067     'INPUT' : {
27068         name : {
27069             title: "name",
27070             width: 120
27071         },
27072         value : {
27073             title: "Value",
27074             width: 120
27075         },
27076         width : {
27077             title: "Width",
27078             width: 40
27079         }
27080     },
27081     'LABEL' : {
27082         'for' : {
27083             title: "For",
27084             width: 120
27085         }
27086     },
27087     'TEXTAREA' : {
27088           name : {
27089             title: "name",
27090             width: 120
27091         },
27092         rows : {
27093             title: "Rows",
27094             width: 20
27095         },
27096         cols : {
27097             title: "Cols",
27098             width: 20
27099         }
27100     },
27101     'SELECT' : {
27102         name : {
27103             title: "name",
27104             width: 120
27105         },
27106         selectoptions : {
27107             title: "Options",
27108             width: 200
27109         }
27110     },
27111     
27112     // should we really allow this??
27113     // should this just be 
27114     'BODY' : {
27115         title : {
27116             title: "Title",
27117             width: 200,
27118             disabled : true
27119         }
27120     },
27121     'SPAN' : {
27122         'font-family'  : {
27123             title : "Font",
27124             style : 'fontFamily',
27125             displayField: 'display',
27126             optname : 'font-family',
27127             width: 140
27128         }
27129     },
27130     'DIV' : {
27131         'font-family'  : {
27132             title : "Font",
27133             style : 'fontFamily',
27134             displayField: 'display',
27135             optname : 'font-family',
27136             width: 140
27137         }
27138     },
27139      'P' : {
27140         'font-family'  : {
27141             title : "Font",
27142             style : 'fontFamily',
27143             displayField: 'display',
27144             optname : 'font-family',
27145             width: 140
27146         }
27147     },
27148     
27149     '*' : {
27150         // empty..
27151     }
27152
27153 };
27154
27155 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
27156 Roo.form.HtmlEditor.ToolbarContext.stores = false;
27157
27158 Roo.form.HtmlEditor.ToolbarContext.options = {
27159         'font-family'  : [ 
27160                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
27161                 [ 'Courier New', 'Courier New'],
27162                 [ 'Tahoma', 'Tahoma'],
27163                 [ 'Times New Roman,serif', 'Times'],
27164                 [ 'Verdana','Verdana' ]
27165         ]
27166 };
27167
27168 // fixme - these need to be configurable..
27169  
27170
27171 Roo.form.HtmlEditor.ToolbarContext.types
27172
27173
27174 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
27175     
27176     tb: false,
27177     
27178     rendered: false,
27179     
27180     editor : false,
27181     editorcore : false,
27182     /**
27183      * @cfg {Object} disable  List of toolbar elements to disable
27184          
27185      */
27186     disable : false,
27187     /**
27188      * @cfg {Object} styles List of styles 
27189      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
27190      *
27191      * These must be defined in the page, so they get rendered correctly..
27192      * .headline { }
27193      * TD.underline { }
27194      * 
27195      */
27196     styles : false,
27197     
27198     options: false,
27199     
27200     toolbars : false,
27201     
27202     init : function(editor)
27203     {
27204         this.editor = editor;
27205         this.editorcore = editor.editorcore ? editor.editorcore : editor;
27206         var editorcore = this.editorcore;
27207         
27208         var fid = editorcore.frameId;
27209         var etb = this;
27210         function btn(id, toggle, handler){
27211             var xid = fid + '-'+ id ;
27212             return {
27213                 id : xid,
27214                 cmd : id,
27215                 cls : 'x-btn-icon x-edit-'+id,
27216                 enableToggle:toggle !== false,
27217                 scope: editorcore, // was editor...
27218                 handler:handler||editorcore.relayBtnCmd,
27219                 clickEvent:'mousedown',
27220                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
27221                 tabIndex:-1
27222             };
27223         }
27224         // create a new element.
27225         var wdiv = editor.wrap.createChild({
27226                 tag: 'div'
27227             }, editor.wrap.dom.firstChild.nextSibling, true);
27228         
27229         // can we do this more than once??
27230         
27231          // stop form submits
27232       
27233  
27234         // disable everything...
27235         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27236         this.toolbars = {};
27237            
27238         for (var i in  ty) {
27239           
27240             this.toolbars[i] = this.buildToolbar(ty[i],i);
27241         }
27242         this.tb = this.toolbars.BODY;
27243         this.tb.el.show();
27244         this.buildFooter();
27245         this.footer.show();
27246         editor.on('hide', function( ) { this.footer.hide() }, this);
27247         editor.on('show', function( ) { this.footer.show() }, this);
27248         
27249          
27250         this.rendered = true;
27251         
27252         // the all the btns;
27253         editor.on('editorevent', this.updateToolbar, this);
27254         // other toolbars need to implement this..
27255         //editor.on('editmodechange', this.updateToolbar, this);
27256     },
27257     
27258     
27259     
27260     /**
27261      * Protected method that will not generally be called directly. It triggers
27262      * a toolbar update by reading the markup state of the current selection in the editor.
27263      */
27264     updateToolbar: function(editor,ev,sel){
27265
27266         //Roo.log(ev);
27267         // capture mouse up - this is handy for selecting images..
27268         // perhaps should go somewhere else...
27269         if(!this.editorcore.activated){
27270              this.editor.onFirstFocus();
27271             return;
27272         }
27273         
27274         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
27275         // selectNode - might want to handle IE?
27276         if (ev &&
27277             (ev.type == 'mouseup' || ev.type == 'click' ) &&
27278             ev.target && ev.target.tagName == 'IMG') {
27279             // they have click on an image...
27280             // let's see if we can change the selection...
27281             sel = ev.target;
27282          
27283               var nodeRange = sel.ownerDocument.createRange();
27284             try {
27285                 nodeRange.selectNode(sel);
27286             } catch (e) {
27287                 nodeRange.selectNodeContents(sel);
27288             }
27289             //nodeRange.collapse(true);
27290             var s = this.editorcore.win.getSelection();
27291             s.removeAllRanges();
27292             s.addRange(nodeRange);
27293         }  
27294         
27295       
27296         var updateFooter = sel ? false : true;
27297         
27298         
27299         var ans = this.editorcore.getAllAncestors();
27300         
27301         // pick
27302         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
27303         
27304         if (!sel) { 
27305             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
27306             sel = sel ? sel : this.editorcore.doc.body;
27307             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
27308             
27309         }
27310         // pick a menu that exists..
27311         var tn = sel.tagName.toUpperCase();
27312         //sel = typeof(ty[tn]) != 'undefined' ? sel : this.editor.doc.body;
27313         
27314         tn = sel.tagName.toUpperCase();
27315         
27316         var lastSel = this.tb.selectedNode
27317         
27318         this.tb.selectedNode = sel;
27319         
27320         // if current menu does not match..
27321         if ((this.tb.name != tn) || (lastSel != this.tb.selectedNode)) {
27322                 
27323             this.tb.el.hide();
27324             ///console.log("show: " + tn);
27325             this.tb =  typeof(ty[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
27326             this.tb.el.show();
27327             // update name
27328             this.tb.items.first().el.innerHTML = tn + ':&nbsp;';
27329             
27330             
27331             // update attributes
27332             if (this.tb.fields) {
27333                 this.tb.fields.each(function(e) {
27334                     if (e.stylename) {
27335                         e.setValue(sel.style[e.stylename]);
27336                         return;
27337                     } 
27338                    e.setValue(sel.getAttribute(e.attrname));
27339                 });
27340             }
27341             
27342             var hasStyles = false;
27343             for(var i in this.styles) {
27344                 hasStyles = true;
27345                 break;
27346             }
27347             
27348             // update styles
27349             if (hasStyles) { 
27350                 var st = this.tb.fields.item(0);
27351                 
27352                 st.store.removeAll();
27353                
27354                 
27355                 var cn = sel.className.split(/\s+/);
27356                 
27357                 var avs = [];
27358                 if (this.styles['*']) {
27359                     
27360                     Roo.each(this.styles['*'], function(v) {
27361                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27362                     });
27363                 }
27364                 if (this.styles[tn]) { 
27365                     Roo.each(this.styles[tn], function(v) {
27366                         avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
27367                     });
27368                 }
27369                 
27370                 st.store.loadData(avs);
27371                 st.collapse();
27372                 st.setValue(cn);
27373             }
27374             // flag our selected Node.
27375             this.tb.selectedNode = sel;
27376            
27377            
27378             Roo.menu.MenuMgr.hideAll();
27379
27380         }
27381         
27382         if (!updateFooter) {
27383             //this.footDisp.dom.innerHTML = ''; 
27384             return;
27385         }
27386         // update the footer
27387         //
27388         var html = '';
27389         
27390         this.footerEls = ans.reverse();
27391         Roo.each(this.footerEls, function(a,i) {
27392             if (!a) { return; }
27393             html += html.length ? ' &gt; '  :  '';
27394             
27395             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
27396             
27397         });
27398        
27399         // 
27400         var sz = this.footDisp.up('td').getSize();
27401         this.footDisp.dom.style.width = (sz.width -10) + 'px';
27402         this.footDisp.dom.style.marginLeft = '5px';
27403         
27404         this.footDisp.dom.style.overflow = 'hidden';
27405         
27406         this.footDisp.dom.innerHTML = html;
27407             
27408         //this.editorsyncValue();
27409     },
27410      
27411     
27412    
27413        
27414     // private
27415     onDestroy : function(){
27416         if(this.rendered){
27417             
27418             this.tb.items.each(function(item){
27419                 if(item.menu){
27420                     item.menu.removeAll();
27421                     if(item.menu.el){
27422                         item.menu.el.destroy();
27423                     }
27424                 }
27425                 item.destroy();
27426             });
27427              
27428         }
27429     },
27430     onFirstFocus: function() {
27431         // need to do this for all the toolbars..
27432         this.tb.items.each(function(item){
27433            item.enable();
27434         });
27435     },
27436     buildToolbar: function(tlist, nm)
27437     {
27438         var editor = this.editor;
27439         var editorcore = this.editorcore;
27440          // create a new element.
27441         var wdiv = editor.wrap.createChild({
27442                 tag: 'div'
27443             }, editor.wrap.dom.firstChild.nextSibling, true);
27444         
27445        
27446         var tb = new Roo.Toolbar(wdiv);
27447         // add the name..
27448         
27449         tb.add(nm+ ":&nbsp;");
27450         
27451         var styles = [];
27452         for(var i in this.styles) {
27453             styles.push(i);
27454         }
27455         
27456         // styles...
27457         if (styles && styles.length) {
27458             
27459             // this needs a multi-select checkbox...
27460             tb.addField( new Roo.form.ComboBox({
27461                 store: new Roo.data.SimpleStore({
27462                     id : 'val',
27463                     fields: ['val', 'selected'],
27464                     data : [] 
27465                 }),
27466                 name : '-roo-edit-className',
27467                 attrname : 'className',
27468                 displayField: 'val',
27469                 typeAhead: false,
27470                 mode: 'local',
27471                 editable : false,
27472                 triggerAction: 'all',
27473                 emptyText:'Select Style',
27474                 selectOnFocus:true,
27475                 width: 130,
27476                 listeners : {
27477                     'select': function(c, r, i) {
27478                         // initial support only for on class per el..
27479                         tb.selectedNode.className =  r ? r.get('val') : '';
27480                         editorcore.syncValue();
27481                     }
27482                 }
27483     
27484             }));
27485         }
27486         
27487         var tbc = Roo.form.HtmlEditor.ToolbarContext;
27488         var tbops = tbc.options;
27489         
27490         for (var i in tlist) {
27491             
27492             var item = tlist[i];
27493             tb.add(item.title + ":&nbsp;");
27494             
27495             
27496             //optname == used so you can configure the options available..
27497             var opts = item.opts ? item.opts : false;
27498             if (item.optname) {
27499                 opts = tbops[item.optname];
27500            
27501             }
27502             
27503             if (opts) {
27504                 // opts == pulldown..
27505                 tb.addField( new Roo.form.ComboBox({
27506                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
27507                         id : 'val',
27508                         fields: ['val', 'display'],
27509                         data : opts  
27510                     }),
27511                     name : '-roo-edit-' + i,
27512                     attrname : i,
27513                     stylename : item.style ? item.style : false,
27514                     displayField: item.displayField ? item.displayField : 'val',
27515                     valueField :  'val',
27516                     typeAhead: false,
27517                     mode: typeof(tbc.stores[i]) != 'undefined'  ? 'remote' : 'local',
27518                     editable : false,
27519                     triggerAction: 'all',
27520                     emptyText:'Select',
27521                     selectOnFocus:true,
27522                     width: item.width ? item.width  : 130,
27523                     listeners : {
27524                         'select': function(c, r, i) {
27525                             if (c.stylename) {
27526                                 tb.selectedNode.style[c.stylename] =  r.get('val');
27527                                 return;
27528                             }
27529                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
27530                         }
27531                     }
27532
27533                 }));
27534                 continue;
27535                     
27536                  
27537                 
27538                 tb.addField( new Roo.form.TextField({
27539                     name: i,
27540                     width: 100,
27541                     //allowBlank:false,
27542                     value: ''
27543                 }));
27544                 continue;
27545             }
27546             tb.addField( new Roo.form.TextField({
27547                 name: '-roo-edit-' + i,
27548                 attrname : i,
27549                 
27550                 width: item.width,
27551                 //allowBlank:true,
27552                 value: '',
27553                 listeners: {
27554                     'change' : function(f, nv, ov) {
27555                         tb.selectedNode.setAttribute(f.attrname, nv);
27556                     }
27557                 }
27558             }));
27559              
27560         }
27561         tb.addFill();
27562         var _this = this;
27563         tb.addButton( {
27564             text: 'Remove Tag',
27565     
27566             listeners : {
27567                 click : function ()
27568                 {
27569                     // remove
27570                     // undo does not work.
27571                      
27572                     var sn = tb.selectedNode;
27573                     
27574                     var pn = sn.parentNode;
27575                     
27576                     var stn =  sn.childNodes[0];
27577                     var en = sn.childNodes[sn.childNodes.length - 1 ];
27578                     while (sn.childNodes.length) {
27579                         var node = sn.childNodes[0];
27580                         sn.removeChild(node);
27581                         //Roo.log(node);
27582                         pn.insertBefore(node, sn);
27583                         
27584                     }
27585                     pn.removeChild(sn);
27586                     var range = editorcore.createRange();
27587         
27588                     range.setStart(stn,0);
27589                     range.setEnd(en,0); //????
27590                     //range.selectNode(sel);
27591                     
27592                     
27593                     var selection = editorcore.getSelection();
27594                     selection.removeAllRanges();
27595                     selection.addRange(range);
27596                     
27597                     
27598                     
27599                     //_this.updateToolbar(null, null, pn);
27600                     _this.updateToolbar(null, null, null);
27601                     _this.footDisp.dom.innerHTML = ''; 
27602                 }
27603             }
27604             
27605                     
27606                 
27607             
27608         });
27609         
27610         
27611         tb.el.on('click', function(e){
27612             e.preventDefault(); // what does this do?
27613         });
27614         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
27615         tb.el.hide();
27616         tb.name = nm;
27617         // dont need to disable them... as they will get hidden
27618         return tb;
27619          
27620         
27621     },
27622     buildFooter : function()
27623     {
27624         
27625         var fel = this.editor.wrap.createChild();
27626         this.footer = new Roo.Toolbar(fel);
27627         // toolbar has scrolly on left / right?
27628         var footDisp= new Roo.Toolbar.Fill();
27629         var _t = this;
27630         this.footer.add(
27631             {
27632                 text : '&lt;',
27633                 xtype: 'Button',
27634                 handler : function() {
27635                     _t.footDisp.scrollTo('left',0,true)
27636                 }
27637             }
27638         );
27639         this.footer.add( footDisp );
27640         this.footer.add( 
27641             {
27642                 text : '&gt;',
27643                 xtype: 'Button',
27644                 handler : function() {
27645                     // no animation..
27646                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
27647                 }
27648             }
27649         );
27650         var fel = Roo.get(footDisp.el);
27651         fel.addClass('x-editor-context');
27652         this.footDispWrap = fel; 
27653         this.footDispWrap.overflow  = 'hidden';
27654         
27655         this.footDisp = fel.createChild();
27656         this.footDispWrap.on('click', this.onContextClick, this)
27657         
27658         
27659     },
27660     onContextClick : function (ev,dom)
27661     {
27662         ev.preventDefault();
27663         var  cn = dom.className;
27664         //Roo.log(cn);
27665         if (!cn.match(/x-ed-loc-/)) {
27666             return;
27667         }
27668         var n = cn.split('-').pop();
27669         var ans = this.footerEls;
27670         var sel = ans[n];
27671         
27672          // pick
27673         var range = this.editorcore.createRange();
27674         
27675         range.selectNodeContents(sel);
27676         //range.selectNode(sel);
27677         
27678         
27679         var selection = this.editorcore.getSelection();
27680         selection.removeAllRanges();
27681         selection.addRange(range);
27682         
27683         
27684         
27685         this.updateToolbar(null, null, sel);
27686         
27687         
27688     }
27689     
27690     
27691     
27692     
27693     
27694 });
27695
27696
27697
27698
27699
27700 /*
27701  * Based on:
27702  * Ext JS Library 1.1.1
27703  * Copyright(c) 2006-2007, Ext JS, LLC.
27704  *
27705  * Originally Released Under LGPL - original licence link has changed is not relivant.
27706  *
27707  * Fork - LGPL
27708  * <script type="text/javascript">
27709  */
27710  
27711 /**
27712  * @class Roo.form.BasicForm
27713  * @extends Roo.util.Observable
27714  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
27715  * @constructor
27716  * @param {String/HTMLElement/Roo.Element} el The form element or its id
27717  * @param {Object} config Configuration options
27718  */
27719 Roo.form.BasicForm = function(el, config){
27720     this.allItems = [];
27721     this.childForms = [];
27722     Roo.apply(this, config);
27723     /*
27724      * The Roo.form.Field items in this form.
27725      * @type MixedCollection
27726      */
27727      
27728      
27729     this.items = new Roo.util.MixedCollection(false, function(o){
27730         return o.id || (o.id = Roo.id());
27731     });
27732     this.addEvents({
27733         /**
27734          * @event beforeaction
27735          * Fires before any action is performed. Return false to cancel the action.
27736          * @param {Form} this
27737          * @param {Action} action The action to be performed
27738          */
27739         beforeaction: true,
27740         /**
27741          * @event actionfailed
27742          * Fires when an action fails.
27743          * @param {Form} this
27744          * @param {Action} action The action that failed
27745          */
27746         actionfailed : true,
27747         /**
27748          * @event actioncomplete
27749          * Fires when an action is completed.
27750          * @param {Form} this
27751          * @param {Action} action The action that completed
27752          */
27753         actioncomplete : true
27754     });
27755     if(el){
27756         this.initEl(el);
27757     }
27758     Roo.form.BasicForm.superclass.constructor.call(this);
27759 };
27760
27761 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
27762     /**
27763      * @cfg {String} method
27764      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
27765      */
27766     /**
27767      * @cfg {DataReader} reader
27768      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
27769      * This is optional as there is built-in support for processing JSON.
27770      */
27771     /**
27772      * @cfg {DataReader} errorReader
27773      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
27774      * This is completely optional as there is built-in support for processing JSON.
27775      */
27776     /**
27777      * @cfg {String} url
27778      * The URL to use for form actions if one isn't supplied in the action options.
27779      */
27780     /**
27781      * @cfg {Boolean} fileUpload
27782      * Set to true if this form is a file upload.
27783      */
27784      
27785     /**
27786      * @cfg {Object} baseParams
27787      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
27788      */
27789      /**
27790      
27791     /**
27792      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
27793      */
27794     timeout: 30,
27795
27796     // private
27797     activeAction : null,
27798
27799     /**
27800      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
27801      * or setValues() data instead of when the form was first created.
27802      */
27803     trackResetOnLoad : false,
27804     
27805     
27806     /**
27807      * childForms - used for multi-tab forms
27808      * @type {Array}
27809      */
27810     childForms : false,
27811     
27812     /**
27813      * allItems - full list of fields.
27814      * @type {Array}
27815      */
27816     allItems : false,
27817     
27818     /**
27819      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
27820      * element by passing it or its id or mask the form itself by passing in true.
27821      * @type Mixed
27822      */
27823     waitMsgTarget : false,
27824
27825     // private
27826     initEl : function(el){
27827         this.el = Roo.get(el);
27828         this.id = this.el.id || Roo.id();
27829         this.el.on('submit', this.onSubmit, this);
27830         this.el.addClass('x-form');
27831     },
27832
27833     // private
27834     onSubmit : function(e){
27835         e.stopEvent();
27836     },
27837
27838     /**
27839      * Returns true if client-side validation on the form is successful.
27840      * @return Boolean
27841      */
27842     isValid : function(){
27843         var valid = true;
27844         this.items.each(function(f){
27845            if(!f.validate()){
27846                valid = false;
27847            }
27848         });
27849         return valid;
27850     },
27851
27852     /**
27853      * Returns true if any fields in this form have changed since their original load.
27854      * @return Boolean
27855      */
27856     isDirty : function(){
27857         var dirty = false;
27858         this.items.each(function(f){
27859            if(f.isDirty()){
27860                dirty = true;
27861                return false;
27862            }
27863         });
27864         return dirty;
27865     },
27866
27867     /**
27868      * Performs a predefined action (submit or load) or custom actions you define on this form.
27869      * @param {String} actionName The name of the action type
27870      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
27871      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
27872      * accept other config options):
27873      * <pre>
27874 Property          Type             Description
27875 ----------------  ---------------  ----------------------------------------------------------------------------------
27876 url               String           The url for the action (defaults to the form's url)
27877 method            String           The form method to use (defaults to the form's method, or POST if not defined)
27878 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
27879 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
27880                                    validate the form on the client (defaults to false)
27881      * </pre>
27882      * @return {BasicForm} this
27883      */
27884     doAction : function(action, options){
27885         if(typeof action == 'string'){
27886             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
27887         }
27888         if(this.fireEvent('beforeaction', this, action) !== false){
27889             this.beforeAction(action);
27890             action.run.defer(100, action);
27891         }
27892         return this;
27893     },
27894
27895     /**
27896      * Shortcut to do a submit action.
27897      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27898      * @return {BasicForm} this
27899      */
27900     submit : function(options){
27901         this.doAction('submit', options);
27902         return this;
27903     },
27904
27905     /**
27906      * Shortcut to do a load action.
27907      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
27908      * @return {BasicForm} this
27909      */
27910     load : function(options){
27911         this.doAction('load', options);
27912         return this;
27913     },
27914
27915     /**
27916      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
27917      * @param {Record} record The record to edit
27918      * @return {BasicForm} this
27919      */
27920     updateRecord : function(record){
27921         record.beginEdit();
27922         var fs = record.fields;
27923         fs.each(function(f){
27924             var field = this.findField(f.name);
27925             if(field){
27926                 record.set(f.name, field.getValue());
27927             }
27928         }, this);
27929         record.endEdit();
27930         return this;
27931     },
27932
27933     /**
27934      * Loads an Roo.data.Record into this form.
27935      * @param {Record} record The record to load
27936      * @return {BasicForm} this
27937      */
27938     loadRecord : function(record){
27939         this.setValues(record.data);
27940         return this;
27941     },
27942
27943     // private
27944     beforeAction : function(action){
27945         var o = action.options;
27946         
27947        
27948         if(this.waitMsgTarget === true){
27949             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
27950         }else if(this.waitMsgTarget){
27951             this.waitMsgTarget = Roo.get(this.waitMsgTarget);
27952             this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
27953         }else {
27954             Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
27955         }
27956          
27957     },
27958
27959     // private
27960     afterAction : function(action, success){
27961         this.activeAction = null;
27962         var o = action.options;
27963         
27964         if(this.waitMsgTarget === true){
27965             this.el.unmask();
27966         }else if(this.waitMsgTarget){
27967             this.waitMsgTarget.unmask();
27968         }else{
27969             Roo.MessageBox.updateProgress(1);
27970             Roo.MessageBox.hide();
27971         }
27972          
27973         if(success){
27974             if(o.reset){
27975                 this.reset();
27976             }
27977             Roo.callback(o.success, o.scope, [this, action]);
27978             this.fireEvent('actioncomplete', this, action);
27979             
27980         }else{
27981             
27982             // failure condition..
27983             // we have a scenario where updates need confirming.
27984             // eg. if a locking scenario exists..
27985             // we look for { errors : { needs_confirm : true }} in the response.
27986             if (
27987                 (typeof(action.result) != 'undefined')  &&
27988                 (typeof(action.result.errors) != 'undefined')  &&
27989                 (typeof(action.result.errors.needs_confirm) != 'undefined')
27990            ){
27991                 var _t = this;
27992                 Roo.MessageBox.confirm(
27993                     "Change requires confirmation",
27994                     action.result.errorMsg,
27995                     function(r) {
27996                         if (r != 'yes') {
27997                             return;
27998                         }
27999                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
28000                     }
28001                     
28002                 );
28003                 
28004                 
28005                 
28006                 return;
28007             }
28008             
28009             Roo.callback(o.failure, o.scope, [this, action]);
28010             // show an error message if no failed handler is set..
28011             if (!this.hasListener('actionfailed')) {
28012                 Roo.MessageBox.alert("Error",
28013                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
28014                         action.result.errorMsg :
28015                         "Saving Failed, please check your entries or try again"
28016                 );
28017             }
28018             
28019             this.fireEvent('actionfailed', this, action);
28020         }
28021         
28022     },
28023
28024     /**
28025      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
28026      * @param {String} id The value to search for
28027      * @return Field
28028      */
28029     findField : function(id){
28030         var field = this.items.get(id);
28031         if(!field){
28032             this.items.each(function(f){
28033                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
28034                     field = f;
28035                     return false;
28036                 }
28037             });
28038         }
28039         return field || null;
28040     },
28041
28042     /**
28043      * Add a secondary form to this one, 
28044      * Used to provide tabbed forms. One form is primary, with hidden values 
28045      * which mirror the elements from the other forms.
28046      * 
28047      * @param {Roo.form.Form} form to add.
28048      * 
28049      */
28050     addForm : function(form)
28051     {
28052        
28053         if (this.childForms.indexOf(form) > -1) {
28054             // already added..
28055             return;
28056         }
28057         this.childForms.push(form);
28058         var n = '';
28059         Roo.each(form.allItems, function (fe) {
28060             
28061             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
28062             if (this.findField(n)) { // already added..
28063                 return;
28064             }
28065             var add = new Roo.form.Hidden({
28066                 name : n
28067             });
28068             add.render(this.el);
28069             
28070             this.add( add );
28071         }, this);
28072         
28073     },
28074     /**
28075      * Mark fields in this form invalid in bulk.
28076      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
28077      * @return {BasicForm} this
28078      */
28079     markInvalid : function(errors){
28080         if(errors instanceof Array){
28081             for(var i = 0, len = errors.length; i < len; i++){
28082                 var fieldError = errors[i];
28083                 var f = this.findField(fieldError.id);
28084                 if(f){
28085                     f.markInvalid(fieldError.msg);
28086                 }
28087             }
28088         }else{
28089             var field, id;
28090             for(id in errors){
28091                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
28092                     field.markInvalid(errors[id]);
28093                 }
28094             }
28095         }
28096         Roo.each(this.childForms || [], function (f) {
28097             f.markInvalid(errors);
28098         });
28099         
28100         return this;
28101     },
28102
28103     /**
28104      * Set values for fields in this form in bulk.
28105      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
28106      * @return {BasicForm} this
28107      */
28108     setValues : function(values){
28109         if(values instanceof Array){ // array of objects
28110             for(var i = 0, len = values.length; i < len; i++){
28111                 var v = values[i];
28112                 var f = this.findField(v.id);
28113                 if(f){
28114                     f.setValue(v.value);
28115                     if(this.trackResetOnLoad){
28116                         f.originalValue = f.getValue();
28117                     }
28118                 }
28119             }
28120         }else{ // object hash
28121             var field, id;
28122             for(id in values){
28123                 if(typeof values[id] != 'function' && (field = this.findField(id))){
28124                     
28125                     if (field.setFromData && 
28126                         field.valueField && 
28127                         field.displayField &&
28128                         // combos' with local stores can 
28129                         // be queried via setValue()
28130                         // to set their value..
28131                         (field.store && !field.store.isLocal)
28132                         ) {
28133                         // it's a combo
28134                         var sd = { };
28135                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
28136                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
28137                         field.setFromData(sd);
28138                         
28139                     } else {
28140                         field.setValue(values[id]);
28141                     }
28142                     
28143                     
28144                     if(this.trackResetOnLoad){
28145                         field.originalValue = field.getValue();
28146                     }
28147                 }
28148             }
28149         }
28150          
28151         Roo.each(this.childForms || [], function (f) {
28152             f.setValues(values);
28153         });
28154                 
28155         return this;
28156     },
28157
28158     /**
28159      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
28160      * they are returned as an array.
28161      * @param {Boolean} asString
28162      * @return {Object}
28163      */
28164     getValues : function(asString){
28165         if (this.childForms) {
28166             // copy values from the child forms
28167             Roo.each(this.childForms, function (f) {
28168                 this.setValues(f.getValues());
28169             }, this);
28170         }
28171         
28172         
28173         
28174         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
28175         if(asString === true){
28176             return fs;
28177         }
28178         return Roo.urlDecode(fs);
28179     },
28180     
28181     /**
28182      * Returns the fields in this form as an object with key/value pairs. 
28183      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
28184      * @return {Object}
28185      */
28186     getFieldValues : function(with_hidden)
28187     {
28188         if (this.childForms) {
28189             // copy values from the child forms
28190             // should this call getFieldValues - probably not as we do not currently copy
28191             // hidden fields when we generate..
28192             Roo.each(this.childForms, function (f) {
28193                 this.setValues(f.getValues());
28194             }, this);
28195         }
28196         
28197         var ret = {};
28198         this.items.each(function(f){
28199             if (!f.getName()) {
28200                 return;
28201             }
28202             var v = f.getValue();
28203             if (f.inputType =='radio') {
28204                 if (typeof(ret[f.getName()]) == 'undefined') {
28205                     ret[f.getName()] = ''; // empty..
28206                 }
28207                 
28208                 if (!f.el.dom.checked) {
28209                     return;
28210                     
28211                 }
28212                 v = f.el.dom.value;
28213                 
28214             }
28215             
28216             // not sure if this supported any more..
28217             if ((typeof(v) == 'object') && f.getRawValue) {
28218                 v = f.getRawValue() ; // dates..
28219             }
28220             // combo boxes where name != hiddenName...
28221             if (f.name != f.getName()) {
28222                 ret[f.name] = f.getRawValue();
28223             }
28224             ret[f.getName()] = v;
28225         });
28226         
28227         return ret;
28228     },
28229
28230     /**
28231      * Clears all invalid messages in this form.
28232      * @return {BasicForm} this
28233      */
28234     clearInvalid : function(){
28235         this.items.each(function(f){
28236            f.clearInvalid();
28237         });
28238         
28239         Roo.each(this.childForms || [], function (f) {
28240             f.clearInvalid();
28241         });
28242         
28243         
28244         return this;
28245     },
28246
28247     /**
28248      * Resets this form.
28249      * @return {BasicForm} this
28250      */
28251     reset : function(){
28252         this.items.each(function(f){
28253             f.reset();
28254         });
28255         
28256         Roo.each(this.childForms || [], function (f) {
28257             f.reset();
28258         });
28259        
28260         
28261         return this;
28262     },
28263
28264     /**
28265      * Add Roo.form components to this form.
28266      * @param {Field} field1
28267      * @param {Field} field2 (optional)
28268      * @param {Field} etc (optional)
28269      * @return {BasicForm} this
28270      */
28271     add : function(){
28272         this.items.addAll(Array.prototype.slice.call(arguments, 0));
28273         return this;
28274     },
28275
28276
28277     /**
28278      * Removes a field from the items collection (does NOT remove its markup).
28279      * @param {Field} field
28280      * @return {BasicForm} this
28281      */
28282     remove : function(field){
28283         this.items.remove(field);
28284         return this;
28285     },
28286
28287     /**
28288      * Looks at the fields in this form, checks them for an id attribute,
28289      * and calls applyTo on the existing dom element with that id.
28290      * @return {BasicForm} this
28291      */
28292     render : function(){
28293         this.items.each(function(f){
28294             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
28295                 f.applyTo(f.id);
28296             }
28297         });
28298         return this;
28299     },
28300
28301     /**
28302      * Calls {@link Ext#apply} for all fields in this form with the passed object.
28303      * @param {Object} values
28304      * @return {BasicForm} this
28305      */
28306     applyToFields : function(o){
28307         this.items.each(function(f){
28308            Roo.apply(f, o);
28309         });
28310         return this;
28311     },
28312
28313     /**
28314      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
28315      * @param {Object} values
28316      * @return {BasicForm} this
28317      */
28318     applyIfToFields : function(o){
28319         this.items.each(function(f){
28320            Roo.applyIf(f, o);
28321         });
28322         return this;
28323     }
28324 });
28325
28326 // back compat
28327 Roo.BasicForm = Roo.form.BasicForm;/*
28328  * Based on:
28329  * Ext JS Library 1.1.1
28330  * Copyright(c) 2006-2007, Ext JS, LLC.
28331  *
28332  * Originally Released Under LGPL - original licence link has changed is not relivant.
28333  *
28334  * Fork - LGPL
28335  * <script type="text/javascript">
28336  */
28337
28338 /**
28339  * @class Roo.form.Form
28340  * @extends Roo.form.BasicForm
28341  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
28342  * @constructor
28343  * @param {Object} config Configuration options
28344  */
28345 Roo.form.Form = function(config){
28346     var xitems =  [];
28347     if (config.items) {
28348         xitems = config.items;
28349         delete config.items;
28350     }
28351    
28352     
28353     Roo.form.Form.superclass.constructor.call(this, null, config);
28354     this.url = this.url || this.action;
28355     if(!this.root){
28356         this.root = new Roo.form.Layout(Roo.applyIf({
28357             id: Roo.id()
28358         }, config));
28359     }
28360     this.active = this.root;
28361     /**
28362      * Array of all the buttons that have been added to this form via {@link addButton}
28363      * @type Array
28364      */
28365     this.buttons = [];
28366     this.allItems = [];
28367     this.addEvents({
28368         /**
28369          * @event clientvalidation
28370          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
28371          * @param {Form} this
28372          * @param {Boolean} valid true if the form has passed client-side validation
28373          */
28374         clientvalidation: true,
28375         /**
28376          * @event rendered
28377          * Fires when the form is rendered
28378          * @param {Roo.form.Form} form
28379          */
28380         rendered : true
28381     });
28382     
28383     if (this.progressUrl) {
28384             // push a hidden field onto the list of fields..
28385             this.addxtype( {
28386                     xns: Roo.form, 
28387                     xtype : 'Hidden', 
28388                     name : 'UPLOAD_IDENTIFIER' 
28389             });
28390         }
28391         
28392     
28393     Roo.each(xitems, this.addxtype, this);
28394     
28395     
28396     
28397 };
28398
28399 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
28400     /**
28401      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
28402      */
28403     /**
28404      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
28405      */
28406     /**
28407      * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
28408      */
28409     buttonAlign:'center',
28410
28411     /**
28412      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
28413      */
28414     minButtonWidth:75,
28415
28416     /**
28417      * @cfg {String} labelAlign Valid values are "left," "top" and "right" (defaults to "left").
28418      * This property cascades to child containers if not set.
28419      */
28420     labelAlign:'left',
28421
28422     /**
28423      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
28424      * fires a looping event with that state. This is required to bind buttons to the valid
28425      * state using the config value formBind:true on the button.
28426      */
28427     monitorValid : false,
28428
28429     /**
28430      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
28431      */
28432     monitorPoll : 200,
28433     
28434     /**
28435      * @cfg {String} progressUrl - Url to return progress data 
28436      */
28437     
28438     progressUrl : false,
28439   
28440     /**
28441      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
28442      * fields are added and the column is closed. If no fields are passed the column remains open
28443      * until end() is called.
28444      * @param {Object} config The config to pass to the column
28445      * @param {Field} field1 (optional)
28446      * @param {Field} field2 (optional)
28447      * @param {Field} etc (optional)
28448      * @return Column The column container object
28449      */
28450     column : function(c){
28451         var col = new Roo.form.Column(c);
28452         this.start(col);
28453         if(arguments.length > 1){ // duplicate code required because of Opera
28454             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28455             this.end();
28456         }
28457         return col;
28458     },
28459
28460     /**
28461      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
28462      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
28463      * until end() is called.
28464      * @param {Object} config The config to pass to the fieldset
28465      * @param {Field} field1 (optional)
28466      * @param {Field} field2 (optional)
28467      * @param {Field} etc (optional)
28468      * @return FieldSet The fieldset container object
28469      */
28470     fieldset : function(c){
28471         var fs = new Roo.form.FieldSet(c);
28472         this.start(fs);
28473         if(arguments.length > 1){ // duplicate code required because of Opera
28474             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28475             this.end();
28476         }
28477         return fs;
28478     },
28479
28480     /**
28481      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
28482      * fields are added and the container is closed. If no fields are passed the container remains open
28483      * until end() is called.
28484      * @param {Object} config The config to pass to the Layout
28485      * @param {Field} field1 (optional)
28486      * @param {Field} field2 (optional)
28487      * @param {Field} etc (optional)
28488      * @return Layout The container object
28489      */
28490     container : function(c){
28491         var l = new Roo.form.Layout(c);
28492         this.start(l);
28493         if(arguments.length > 1){ // duplicate code required because of Opera
28494             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
28495             this.end();
28496         }
28497         return l;
28498     },
28499
28500     /**
28501      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
28502      * @param {Object} container A Roo.form.Layout or subclass of Layout
28503      * @return {Form} this
28504      */
28505     start : function(c){
28506         // cascade label info
28507         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
28508         this.active.stack.push(c);
28509         c.ownerCt = this.active;
28510         this.active = c;
28511         return this;
28512     },
28513
28514     /**
28515      * Closes the current open container
28516      * @return {Form} this
28517      */
28518     end : function(){
28519         if(this.active == this.root){
28520             return this;
28521         }
28522         this.active = this.active.ownerCt;
28523         return this;
28524     },
28525
28526     /**
28527      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
28528      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
28529      * as the label of the field.
28530      * @param {Field} field1
28531      * @param {Field} field2 (optional)
28532      * @param {Field} etc. (optional)
28533      * @return {Form} this
28534      */
28535     add : function(){
28536         this.active.stack.push.apply(this.active.stack, arguments);
28537         this.allItems.push.apply(this.allItems,arguments);
28538         var r = [];
28539         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
28540             if(a[i].isFormField){
28541                 r.push(a[i]);
28542             }
28543         }
28544         if(r.length > 0){
28545             Roo.form.Form.superclass.add.apply(this, r);
28546         }
28547         return this;
28548     },
28549     
28550
28551     
28552     
28553     
28554      /**
28555      * Find any element that has been added to a form, using it's ID or name
28556      * This can include framesets, columns etc. along with regular fields..
28557      * @param {String} id - id or name to find.
28558      
28559      * @return {Element} e - or false if nothing found.
28560      */
28561     findbyId : function(id)
28562     {
28563         var ret = false;
28564         if (!id) {
28565             return ret;
28566         }
28567         Roo.each(this.allItems, function(f){
28568             if (f.id == id || f.name == id ){
28569                 ret = f;
28570                 return false;
28571             }
28572         });
28573         return ret;
28574     },
28575
28576     
28577     
28578     /**
28579      * Render this form into the passed container. This should only be called once!
28580      * @param {String/HTMLElement/Element} container The element this component should be rendered into
28581      * @return {Form} this
28582      */
28583     render : function(ct)
28584     {
28585         
28586         
28587         
28588         ct = Roo.get(ct);
28589         var o = this.autoCreate || {
28590             tag: 'form',
28591             method : this.method || 'POST',
28592             id : this.id || Roo.id()
28593         };
28594         this.initEl(ct.createChild(o));
28595
28596         this.root.render(this.el);
28597         
28598        
28599              
28600         this.items.each(function(f){
28601             f.render('x-form-el-'+f.id);
28602         });
28603
28604         if(this.buttons.length > 0){
28605             // tables are required to maintain order and for correct IE layout
28606             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
28607                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
28608                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
28609             }}, null, true);
28610             var tr = tb.getElementsByTagName('tr')[0];
28611             for(var i = 0, len = this.buttons.length; i < len; i++) {
28612                 var b = this.buttons[i];
28613                 var td = document.createElement('td');
28614                 td.className = 'x-form-btn-td';
28615                 b.render(tr.appendChild(td));
28616             }
28617         }
28618         if(this.monitorValid){ // initialize after render
28619             this.startMonitoring();
28620         }
28621         this.fireEvent('rendered', this);
28622         return this;
28623     },
28624
28625     /**
28626      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
28627      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
28628      * object or a valid Roo.DomHelper element config
28629      * @param {Function} handler The function called when the button is clicked
28630      * @param {Object} scope (optional) The scope of the handler function
28631      * @return {Roo.Button}
28632      */
28633     addButton : function(config, handler, scope){
28634         var bc = {
28635             handler: handler,
28636             scope: scope,
28637             minWidth: this.minButtonWidth,
28638             hideParent:true
28639         };
28640         if(typeof config == "string"){
28641             bc.text = config;
28642         }else{
28643             Roo.apply(bc, config);
28644         }
28645         var btn = new Roo.Button(null, bc);
28646         this.buttons.push(btn);
28647         return btn;
28648     },
28649
28650      /**
28651      * Adds a series of form elements (using the xtype property as the factory method.
28652      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
28653      * @param {Object} config 
28654      */
28655     
28656     addxtype : function()
28657     {
28658         var ar = Array.prototype.slice.call(arguments, 0);
28659         var ret = false;
28660         for(var i = 0; i < ar.length; i++) {
28661             if (!ar[i]) {
28662                 continue; // skip -- if this happends something invalid got sent, we 
28663                 // should ignore it, as basically that interface element will not show up
28664                 // and that should be pretty obvious!!
28665             }
28666             
28667             if (Roo.form[ar[i].xtype]) {
28668                 ar[i].form = this;
28669                 var fe = Roo.factory(ar[i], Roo.form);
28670                 if (!ret) {
28671                     ret = fe;
28672                 }
28673                 fe.form = this;
28674                 if (fe.store) {
28675                     fe.store.form = this;
28676                 }
28677                 if (fe.isLayout) {  
28678                          
28679                     this.start(fe);
28680                     this.allItems.push(fe);
28681                     if (fe.items && fe.addxtype) {
28682                         fe.addxtype.apply(fe, fe.items);
28683                         delete fe.items;
28684                     }
28685                      this.end();
28686                     continue;
28687                 }
28688                 
28689                 
28690                  
28691                 this.add(fe);
28692               //  console.log('adding ' + ar[i].xtype);
28693             }
28694             if (ar[i].xtype == 'Button') {  
28695                 //console.log('adding button');
28696                 //console.log(ar[i]);
28697                 this.addButton(ar[i]);
28698                 this.allItems.push(fe);
28699                 continue;
28700             }
28701             
28702             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
28703                 alert('end is not supported on xtype any more, use items');
28704             //    this.end();
28705             //    //console.log('adding end');
28706             }
28707             
28708         }
28709         return ret;
28710     },
28711     
28712     /**
28713      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
28714      * option "monitorValid"
28715      */
28716     startMonitoring : function(){
28717         if(!this.bound){
28718             this.bound = true;
28719             Roo.TaskMgr.start({
28720                 run : this.bindHandler,
28721                 interval : this.monitorPoll || 200,
28722                 scope: this
28723             });
28724         }
28725     },
28726
28727     /**
28728      * Stops monitoring of the valid state of this form
28729      */
28730     stopMonitoring : function(){
28731         this.bound = false;
28732     },
28733
28734     // private
28735     bindHandler : function(){
28736         if(!this.bound){
28737             return false; // stops binding
28738         }
28739         var valid = true;
28740         this.items.each(function(f){
28741             if(!f.isValid(true)){
28742                 valid = false;
28743                 return false;
28744             }
28745         });
28746         for(var i = 0, len = this.buttons.length; i < len; i++){
28747             var btn = this.buttons[i];
28748             if(btn.formBind === true && btn.disabled === valid){
28749                 btn.setDisabled(!valid);
28750             }
28751         }
28752         this.fireEvent('clientvalidation', this, valid);
28753     }
28754     
28755     
28756     
28757     
28758     
28759     
28760     
28761     
28762 });
28763
28764
28765 // back compat
28766 Roo.Form = Roo.form.Form;
28767 /*
28768  * Based on:
28769  * Ext JS Library 1.1.1
28770  * Copyright(c) 2006-2007, Ext JS, LLC.
28771  *
28772  * Originally Released Under LGPL - original licence link has changed is not relivant.
28773  *
28774  * Fork - LGPL
28775  * <script type="text/javascript">
28776  */
28777
28778 // as we use this in bootstrap.
28779 Roo.namespace('Roo.form');
28780  /**
28781  * @class Roo.form.Action
28782  * Internal Class used to handle form actions
28783  * @constructor
28784  * @param {Roo.form.BasicForm} el The form element or its id
28785  * @param {Object} config Configuration options
28786  */
28787
28788  
28789  
28790 // define the action interface
28791 Roo.form.Action = function(form, options){
28792     this.form = form;
28793     this.options = options || {};
28794 };
28795 /**
28796  * Client Validation Failed
28797  * @const 
28798  */
28799 Roo.form.Action.CLIENT_INVALID = 'client';
28800 /**
28801  * Server Validation Failed
28802  * @const 
28803  */
28804 Roo.form.Action.SERVER_INVALID = 'server';
28805  /**
28806  * Connect to Server Failed
28807  * @const 
28808  */
28809 Roo.form.Action.CONNECT_FAILURE = 'connect';
28810 /**
28811  * Reading Data from Server Failed
28812  * @const 
28813  */
28814 Roo.form.Action.LOAD_FAILURE = 'load';
28815
28816 Roo.form.Action.prototype = {
28817     type : 'default',
28818     failureType : undefined,
28819     response : undefined,
28820     result : undefined,
28821
28822     // interface method
28823     run : function(options){
28824
28825     },
28826
28827     // interface method
28828     success : function(response){
28829
28830     },
28831
28832     // interface method
28833     handleResponse : function(response){
28834
28835     },
28836
28837     // default connection failure
28838     failure : function(response){
28839         
28840         this.response = response;
28841         this.failureType = Roo.form.Action.CONNECT_FAILURE;
28842         this.form.afterAction(this, false);
28843     },
28844
28845     processResponse : function(response){
28846         this.response = response;
28847         if(!response.responseText){
28848             return true;
28849         }
28850         this.result = this.handleResponse(response);
28851         return this.result;
28852     },
28853
28854     // utility functions used internally
28855     getUrl : function(appendParams){
28856         var url = this.options.url || this.form.url || this.form.el.dom.action;
28857         if(appendParams){
28858             var p = this.getParams();
28859             if(p){
28860                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
28861             }
28862         }
28863         return url;
28864     },
28865
28866     getMethod : function(){
28867         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
28868     },
28869
28870     getParams : function(){
28871         var bp = this.form.baseParams;
28872         var p = this.options.params;
28873         if(p){
28874             if(typeof p == "object"){
28875                 p = Roo.urlEncode(Roo.applyIf(p, bp));
28876             }else if(typeof p == 'string' && bp){
28877                 p += '&' + Roo.urlEncode(bp);
28878             }
28879         }else if(bp){
28880             p = Roo.urlEncode(bp);
28881         }
28882         return p;
28883     },
28884
28885     createCallback : function(){
28886         return {
28887             success: this.success,
28888             failure: this.failure,
28889             scope: this,
28890             timeout: (this.form.timeout*1000),
28891             upload: this.form.fileUpload ? this.success : undefined
28892         };
28893     }
28894 };
28895
28896 Roo.form.Action.Submit = function(form, options){
28897     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
28898 };
28899
28900 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
28901     type : 'submit',
28902
28903     haveProgress : false,
28904     uploadComplete : false,
28905     
28906     // uploadProgress indicator.
28907     uploadProgress : function()
28908     {
28909         if (!this.form.progressUrl) {
28910             return;
28911         }
28912         
28913         if (!this.haveProgress) {
28914             Roo.MessageBox.progress("Uploading", "Uploading");
28915         }
28916         if (this.uploadComplete) {
28917            Roo.MessageBox.hide();
28918            return;
28919         }
28920         
28921         this.haveProgress = true;
28922    
28923         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
28924         
28925         var c = new Roo.data.Connection();
28926         c.request({
28927             url : this.form.progressUrl,
28928             params: {
28929                 id : uid
28930             },
28931             method: 'GET',
28932             success : function(req){
28933                //console.log(data);
28934                 var rdata = false;
28935                 var edata;
28936                 try  {
28937                    rdata = Roo.decode(req.responseText)
28938                 } catch (e) {
28939                     Roo.log("Invalid data from server..");
28940                     Roo.log(edata);
28941                     return;
28942                 }
28943                 if (!rdata || !rdata.success) {
28944                     Roo.log(rdata);
28945                     Roo.MessageBox.alert(Roo.encode(rdata));
28946                     return;
28947                 }
28948                 var data = rdata.data;
28949                 
28950                 if (this.uploadComplete) {
28951                    Roo.MessageBox.hide();
28952                    return;
28953                 }
28954                    
28955                 if (data){
28956                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
28957                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
28958                     );
28959                 }
28960                 this.uploadProgress.defer(2000,this);
28961             },
28962        
28963             failure: function(data) {
28964                 Roo.log('progress url failed ');
28965                 Roo.log(data);
28966             },
28967             scope : this
28968         });
28969            
28970     },
28971     
28972     
28973     run : function()
28974     {
28975         // run get Values on the form, so it syncs any secondary forms.
28976         this.form.getValues();
28977         
28978         var o = this.options;
28979         var method = this.getMethod();
28980         var isPost = method == 'POST';
28981         if(o.clientValidation === false || this.form.isValid()){
28982             
28983             if (this.form.progressUrl) {
28984                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
28985                     (new Date() * 1) + '' + Math.random());
28986                     
28987             } 
28988             
28989             
28990             Roo.Ajax.request(Roo.apply(this.createCallback(), {
28991                 form:this.form.el.dom,
28992                 url:this.getUrl(!isPost),
28993                 method: method,
28994                 params:isPost ? this.getParams() : null,
28995                 isUpload: this.form.fileUpload
28996             }));
28997             
28998             this.uploadProgress();
28999
29000         }else if (o.clientValidation !== false){ // client validation failed
29001             this.failureType = Roo.form.Action.CLIENT_INVALID;
29002             this.form.afterAction(this, false);
29003         }
29004     },
29005
29006     success : function(response)
29007     {
29008         this.uploadComplete= true;
29009         if (this.haveProgress) {
29010             Roo.MessageBox.hide();
29011         }
29012         
29013         
29014         var result = this.processResponse(response);
29015         if(result === true || result.success){
29016             this.form.afterAction(this, true);
29017             return;
29018         }
29019         if(result.errors){
29020             this.form.markInvalid(result.errors);
29021             this.failureType = Roo.form.Action.SERVER_INVALID;
29022         }
29023         this.form.afterAction(this, false);
29024     },
29025     failure : function(response)
29026     {
29027         this.uploadComplete= true;
29028         if (this.haveProgress) {
29029             Roo.MessageBox.hide();
29030         }
29031         
29032         this.response = response;
29033         this.failureType = Roo.form.Action.CONNECT_FAILURE;
29034         this.form.afterAction(this, false);
29035     },
29036     
29037     handleResponse : function(response){
29038         if(this.form.errorReader){
29039             var rs = this.form.errorReader.read(response);
29040             var errors = [];
29041             if(rs.records){
29042                 for(var i = 0, len = rs.records.length; i < len; i++) {
29043                     var r = rs.records[i];
29044                     errors[i] = r.data;
29045                 }
29046             }
29047             if(errors.length < 1){
29048                 errors = null;
29049             }
29050             return {
29051                 success : rs.success,
29052                 errors : errors
29053             };
29054         }
29055         var ret = false;
29056         try {
29057             ret = Roo.decode(response.responseText);
29058         } catch (e) {
29059             ret = {
29060                 success: false,
29061                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
29062                 errors : []
29063             };
29064         }
29065         return ret;
29066         
29067     }
29068 });
29069
29070
29071 Roo.form.Action.Load = function(form, options){
29072     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
29073     this.reader = this.form.reader;
29074 };
29075
29076 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
29077     type : 'load',
29078
29079     run : function(){
29080         
29081         Roo.Ajax.request(Roo.apply(
29082                 this.createCallback(), {
29083                     method:this.getMethod(),
29084                     url:this.getUrl(false),
29085                     params:this.getParams()
29086         }));
29087     },
29088
29089     success : function(response){
29090         
29091         var result = this.processResponse(response);
29092         if(result === true || !result.success || !result.data){
29093             this.failureType = Roo.form.Action.LOAD_FAILURE;
29094             this.form.afterAction(this, false);
29095             return;
29096         }
29097         this.form.clearInvalid();
29098         this.form.setValues(result.data);
29099         this.form.afterAction(this, true);
29100     },
29101
29102     handleResponse : function(response){
29103         if(this.form.reader){
29104             var rs = this.form.reader.read(response);
29105             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
29106             return {
29107                 success : rs.success,
29108                 data : data
29109             };
29110         }
29111         return Roo.decode(response.responseText);
29112     }
29113 });
29114
29115 Roo.form.Action.ACTION_TYPES = {
29116     'load' : Roo.form.Action.Load,
29117     'submit' : Roo.form.Action.Submit
29118 };/*
29119  * Based on:
29120  * Ext JS Library 1.1.1
29121  * Copyright(c) 2006-2007, Ext JS, LLC.
29122  *
29123  * Originally Released Under LGPL - original licence link has changed is not relivant.
29124  *
29125  * Fork - LGPL
29126  * <script type="text/javascript">
29127  */
29128  
29129 /**
29130  * @class Roo.form.Layout
29131  * @extends Roo.Component
29132  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
29133  * @constructor
29134  * @param {Object} config Configuration options
29135  */
29136 Roo.form.Layout = function(config){
29137     var xitems = [];
29138     if (config.items) {
29139         xitems = config.items;
29140         delete config.items;
29141     }
29142     Roo.form.Layout.superclass.constructor.call(this, config);
29143     this.stack = [];
29144     Roo.each(xitems, this.addxtype, this);
29145      
29146 };
29147
29148 Roo.extend(Roo.form.Layout, Roo.Component, {
29149     /**
29150      * @cfg {String/Object} autoCreate
29151      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
29152      */
29153     /**
29154      * @cfg {String/Object/Function} style
29155      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
29156      * a function which returns such a specification.
29157      */
29158     /**
29159      * @cfg {String} labelAlign
29160      * Valid values are "left," "top" and "right" (defaults to "left")
29161      */
29162     /**
29163      * @cfg {Number} labelWidth
29164      * Fixed width in pixels of all field labels (defaults to undefined)
29165      */
29166     /**
29167      * @cfg {Boolean} clear
29168      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
29169      */
29170     clear : true,
29171     /**
29172      * @cfg {String} labelSeparator
29173      * The separator to use after field labels (defaults to ':')
29174      */
29175     labelSeparator : ':',
29176     /**
29177      * @cfg {Boolean} hideLabels
29178      * True to suppress the display of field labels in this layout (defaults to false)
29179      */
29180     hideLabels : false,
29181
29182     // private
29183     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
29184     
29185     isLayout : true,
29186     
29187     // private
29188     onRender : function(ct, position){
29189         if(this.el){ // from markup
29190             this.el = Roo.get(this.el);
29191         }else {  // generate
29192             var cfg = this.getAutoCreate();
29193             this.el = ct.createChild(cfg, position);
29194         }
29195         if(this.style){
29196             this.el.applyStyles(this.style);
29197         }
29198         if(this.labelAlign){
29199             this.el.addClass('x-form-label-'+this.labelAlign);
29200         }
29201         if(this.hideLabels){
29202             this.labelStyle = "display:none";
29203             this.elementStyle = "padding-left:0;";
29204         }else{
29205             if(typeof this.labelWidth == 'number'){
29206                 this.labelStyle = "width:"+this.labelWidth+"px;";
29207                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
29208             }
29209             if(this.labelAlign == 'top'){
29210                 this.labelStyle = "width:auto;";
29211                 this.elementStyle = "padding-left:0;";
29212             }
29213         }
29214         var stack = this.stack;
29215         var slen = stack.length;
29216         if(slen > 0){
29217             if(!this.fieldTpl){
29218                 var t = new Roo.Template(
29219                     '<div class="x-form-item {5}">',
29220                         '<label for="{0}" style="{2}">{1}{4}</label>',
29221                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29222                         '</div>',
29223                     '</div><div class="x-form-clear-left"></div>'
29224                 );
29225                 t.disableFormats = true;
29226                 t.compile();
29227                 Roo.form.Layout.prototype.fieldTpl = t;
29228             }
29229             for(var i = 0; i < slen; i++) {
29230                 if(stack[i].isFormField){
29231                     this.renderField(stack[i]);
29232                 }else{
29233                     this.renderComponent(stack[i]);
29234                 }
29235             }
29236         }
29237         if(this.clear){
29238             this.el.createChild({cls:'x-form-clear'});
29239         }
29240     },
29241
29242     // private
29243     renderField : function(f){
29244         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
29245                f.id, //0
29246                f.fieldLabel, //1
29247                f.labelStyle||this.labelStyle||'', //2
29248                this.elementStyle||'', //3
29249                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
29250                f.itemCls||this.itemCls||''  //5
29251        ], true).getPrevSibling());
29252     },
29253
29254     // private
29255     renderComponent : function(c){
29256         c.render(c.isLayout ? this.el : this.el.createChild());    
29257     },
29258     /**
29259      * Adds a object form elements (using the xtype property as the factory method.)
29260      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
29261      * @param {Object} config 
29262      */
29263     addxtype : function(o)
29264     {
29265         // create the lement.
29266         o.form = this.form;
29267         var fe = Roo.factory(o, Roo.form);
29268         this.form.allItems.push(fe);
29269         this.stack.push(fe);
29270         
29271         if (fe.isFormField) {
29272             this.form.items.add(fe);
29273         }
29274          
29275         return fe;
29276     }
29277 });
29278
29279 /**
29280  * @class Roo.form.Column
29281  * @extends Roo.form.Layout
29282  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
29283  * @constructor
29284  * @param {Object} config Configuration options
29285  */
29286 Roo.form.Column = function(config){
29287     Roo.form.Column.superclass.constructor.call(this, config);
29288 };
29289
29290 Roo.extend(Roo.form.Column, Roo.form.Layout, {
29291     /**
29292      * @cfg {Number/String} width
29293      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29294      */
29295     /**
29296      * @cfg {String/Object} autoCreate
29297      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
29298      */
29299
29300     // private
29301     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
29302
29303     // private
29304     onRender : function(ct, position){
29305         Roo.form.Column.superclass.onRender.call(this, ct, position);
29306         if(this.width){
29307             this.el.setWidth(this.width);
29308         }
29309     }
29310 });
29311
29312
29313 /**
29314  * @class Roo.form.Row
29315  * @extends Roo.form.Layout
29316  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
29317  * @constructor
29318  * @param {Object} config Configuration options
29319  */
29320
29321  
29322 Roo.form.Row = function(config){
29323     Roo.form.Row.superclass.constructor.call(this, config);
29324 };
29325  
29326 Roo.extend(Roo.form.Row, Roo.form.Layout, {
29327       /**
29328      * @cfg {Number/String} width
29329      * The fixed width of the column in pixels or CSS value (defaults to "auto")
29330      */
29331     /**
29332      * @cfg {Number/String} height
29333      * The fixed height of the column in pixels or CSS value (defaults to "auto")
29334      */
29335     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
29336     
29337     padWidth : 20,
29338     // private
29339     onRender : function(ct, position){
29340         //console.log('row render');
29341         if(!this.rowTpl){
29342             var t = new Roo.Template(
29343                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
29344                     '<label for="{0}" style="{2}">{1}{4}</label>',
29345                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
29346                     '</div>',
29347                 '</div>'
29348             );
29349             t.disableFormats = true;
29350             t.compile();
29351             Roo.form.Layout.prototype.rowTpl = t;
29352         }
29353         this.fieldTpl = this.rowTpl;
29354         
29355         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
29356         var labelWidth = 100;
29357         
29358         if ((this.labelAlign != 'top')) {
29359             if (typeof this.labelWidth == 'number') {
29360                 labelWidth = this.labelWidth
29361             }
29362             this.padWidth =  20 + labelWidth;
29363             
29364         }
29365         
29366         Roo.form.Column.superclass.onRender.call(this, ct, position);
29367         if(this.width){
29368             this.el.setWidth(this.width);
29369         }
29370         if(this.height){
29371             this.el.setHeight(this.height);
29372         }
29373     },
29374     
29375     // private
29376     renderField : function(f){
29377         f.fieldEl = this.fieldTpl.append(this.el, [
29378                f.id, f.fieldLabel,
29379                f.labelStyle||this.labelStyle||'',
29380                this.elementStyle||'',
29381                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
29382                f.itemCls||this.itemCls||'',
29383                f.width ? f.width + this.padWidth : 160 + this.padWidth
29384        ],true);
29385     }
29386 });
29387  
29388
29389 /**
29390  * @class Roo.form.FieldSet
29391  * @extends Roo.form.Layout
29392  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
29393  * @constructor
29394  * @param {Object} config Configuration options
29395  */
29396 Roo.form.FieldSet = function(config){
29397     Roo.form.FieldSet.superclass.constructor.call(this, config);
29398 };
29399
29400 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
29401     /**
29402      * @cfg {String} legend
29403      * The text to display as the legend for the FieldSet (defaults to '')
29404      */
29405     /**
29406      * @cfg {String/Object} autoCreate
29407      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
29408      */
29409
29410     // private
29411     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
29412
29413     // private
29414     onRender : function(ct, position){
29415         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
29416         if(this.legend){
29417             this.setLegend(this.legend);
29418         }
29419     },
29420
29421     // private
29422     setLegend : function(text){
29423         if(this.rendered){
29424             this.el.child('legend').update(text);
29425         }
29426     }
29427 });/*
29428  * Based on:
29429  * Ext JS Library 1.1.1
29430  * Copyright(c) 2006-2007, Ext JS, LLC.
29431  *
29432  * Originally Released Under LGPL - original licence link has changed is not relivant.
29433  *
29434  * Fork - LGPL
29435  * <script type="text/javascript">
29436  */
29437 /**
29438  * @class Roo.form.VTypes
29439  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
29440  * @singleton
29441  */
29442 Roo.form.VTypes = function(){
29443     // closure these in so they are only created once.
29444     var alpha = /^[a-zA-Z_]+$/;
29445     var alphanum = /^[a-zA-Z0-9_]+$/;
29446     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,4}$/;
29447     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
29448
29449     // All these messages and functions are configurable
29450     return {
29451         /**
29452          * The function used to validate email addresses
29453          * @param {String} value The email address
29454          */
29455         'email' : function(v){
29456             return email.test(v);
29457         },
29458         /**
29459          * The error text to display when the email validation function returns false
29460          * @type String
29461          */
29462         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
29463         /**
29464          * The keystroke filter mask to be applied on email input
29465          * @type RegExp
29466          */
29467         'emailMask' : /[a-z0-9_\.\-@]/i,
29468
29469         /**
29470          * The function used to validate URLs
29471          * @param {String} value The URL
29472          */
29473         'url' : function(v){
29474             return url.test(v);
29475         },
29476         /**
29477          * The error text to display when the url validation function returns false
29478          * @type String
29479          */
29480         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
29481         
29482         /**
29483          * The function used to validate alpha values
29484          * @param {String} value The value
29485          */
29486         'alpha' : function(v){
29487             return alpha.test(v);
29488         },
29489         /**
29490          * The error text to display when the alpha validation function returns false
29491          * @type String
29492          */
29493         'alphaText' : 'This field should only contain letters and _',
29494         /**
29495          * The keystroke filter mask to be applied on alpha input
29496          * @type RegExp
29497          */
29498         'alphaMask' : /[a-z_]/i,
29499
29500         /**
29501          * The function used to validate alphanumeric values
29502          * @param {String} value The value
29503          */
29504         'alphanum' : function(v){
29505             return alphanum.test(v);
29506         },
29507         /**
29508          * The error text to display when the alphanumeric validation function returns false
29509          * @type String
29510          */
29511         'alphanumText' : 'This field should only contain letters, numbers and _',
29512         /**
29513          * The keystroke filter mask to be applied on alphanumeric input
29514          * @type RegExp
29515          */
29516         'alphanumMask' : /[a-z0-9_]/i
29517     };
29518 }();//<script type="text/javascript">
29519
29520 /**
29521  * @class Roo.form.FCKeditor
29522  * @extends Roo.form.TextArea
29523  * Wrapper around the FCKEditor http://www.fckeditor.net
29524  * @constructor
29525  * Creates a new FCKeditor
29526  * @param {Object} config Configuration options
29527  */
29528 Roo.form.FCKeditor = function(config){
29529     Roo.form.FCKeditor.superclass.constructor.call(this, config);
29530     this.addEvents({
29531          /**
29532          * @event editorinit
29533          * Fired when the editor is initialized - you can add extra handlers here..
29534          * @param {FCKeditor} this
29535          * @param {Object} the FCK object.
29536          */
29537         editorinit : true
29538     });
29539     
29540     
29541 };
29542 Roo.form.FCKeditor.editors = { };
29543 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
29544 {
29545     //defaultAutoCreate : {
29546     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
29547     //},
29548     // private
29549     /**
29550      * @cfg {Object} fck options - see fck manual for details.
29551      */
29552     fckconfig : false,
29553     
29554     /**
29555      * @cfg {Object} fck toolbar set (Basic or Default)
29556      */
29557     toolbarSet : 'Basic',
29558     /**
29559      * @cfg {Object} fck BasePath
29560      */ 
29561     basePath : '/fckeditor/',
29562     
29563     
29564     frame : false,
29565     
29566     value : '',
29567     
29568    
29569     onRender : function(ct, position)
29570     {
29571         if(!this.el){
29572             this.defaultAutoCreate = {
29573                 tag: "textarea",
29574                 style:"width:300px;height:60px;",
29575                 autocomplete: "off"
29576             };
29577         }
29578         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
29579         /*
29580         if(this.grow){
29581             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
29582             if(this.preventScrollbars){
29583                 this.el.setStyle("overflow", "hidden");
29584             }
29585             this.el.setHeight(this.growMin);
29586         }
29587         */
29588         //console.log('onrender' + this.getId() );
29589         Roo.form.FCKeditor.editors[this.getId()] = this;
29590          
29591
29592         this.replaceTextarea() ;
29593         
29594     },
29595     
29596     getEditor : function() {
29597         return this.fckEditor;
29598     },
29599     /**
29600      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
29601      * @param {Mixed} value The value to set
29602      */
29603     
29604     
29605     setValue : function(value)
29606     {
29607         //console.log('setValue: ' + value);
29608         
29609         if(typeof(value) == 'undefined') { // not sure why this is happending...
29610             return;
29611         }
29612         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29613         
29614         //if(!this.el || !this.getEditor()) {
29615         //    this.value = value;
29616             //this.setValue.defer(100,this,[value]);    
29617         //    return;
29618         //} 
29619         
29620         if(!this.getEditor()) {
29621             return;
29622         }
29623         
29624         this.getEditor().SetData(value);
29625         
29626         //
29627
29628     },
29629
29630     /**
29631      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
29632      * @return {Mixed} value The field value
29633      */
29634     getValue : function()
29635     {
29636         
29637         if (this.frame && this.frame.dom.style.display == 'none') {
29638             return Roo.form.FCKeditor.superclass.getValue.call(this);
29639         }
29640         
29641         if(!this.el || !this.getEditor()) {
29642            
29643            // this.getValue.defer(100,this); 
29644             return this.value;
29645         }
29646        
29647         
29648         var value=this.getEditor().GetData();
29649         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
29650         return Roo.form.FCKeditor.superclass.getValue.call(this);
29651         
29652
29653     },
29654
29655     /**
29656      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
29657      * @return {Mixed} value The field value
29658      */
29659     getRawValue : function()
29660     {
29661         if (this.frame && this.frame.dom.style.display == 'none') {
29662             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29663         }
29664         
29665         if(!this.el || !this.getEditor()) {
29666             //this.getRawValue.defer(100,this); 
29667             return this.value;
29668             return;
29669         }
29670         
29671         
29672         
29673         var value=this.getEditor().GetData();
29674         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
29675         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
29676          
29677     },
29678     
29679     setSize : function(w,h) {
29680         
29681         
29682         
29683         //if (this.frame && this.frame.dom.style.display == 'none') {
29684         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29685         //    return;
29686         //}
29687         //if(!this.el || !this.getEditor()) {
29688         //    this.setSize.defer(100,this, [w,h]); 
29689         //    return;
29690         //}
29691         
29692         
29693         
29694         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
29695         
29696         this.frame.dom.setAttribute('width', w);
29697         this.frame.dom.setAttribute('height', h);
29698         this.frame.setSize(w,h);
29699         
29700     },
29701     
29702     toggleSourceEdit : function(value) {
29703         
29704       
29705          
29706         this.el.dom.style.display = value ? '' : 'none';
29707         this.frame.dom.style.display = value ?  'none' : '';
29708         
29709     },
29710     
29711     
29712     focus: function(tag)
29713     {
29714         if (this.frame.dom.style.display == 'none') {
29715             return Roo.form.FCKeditor.superclass.focus.call(this);
29716         }
29717         if(!this.el || !this.getEditor()) {
29718             this.focus.defer(100,this, [tag]); 
29719             return;
29720         }
29721         
29722         
29723         
29724         
29725         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
29726         this.getEditor().Focus();
29727         if (tgs.length) {
29728             if (!this.getEditor().Selection.GetSelection()) {
29729                 this.focus.defer(100,this, [tag]); 
29730                 return;
29731             }
29732             
29733             
29734             var r = this.getEditor().EditorDocument.createRange();
29735             r.setStart(tgs[0],0);
29736             r.setEnd(tgs[0],0);
29737             this.getEditor().Selection.GetSelection().removeAllRanges();
29738             this.getEditor().Selection.GetSelection().addRange(r);
29739             this.getEditor().Focus();
29740         }
29741         
29742     },
29743     
29744     
29745     
29746     replaceTextarea : function()
29747     {
29748         if ( document.getElementById( this.getId() + '___Frame' ) )
29749             return ;
29750         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
29751         //{
29752             // We must check the elements firstly using the Id and then the name.
29753         var oTextarea = document.getElementById( this.getId() );
29754         
29755         var colElementsByName = document.getElementsByName( this.getId() ) ;
29756          
29757         oTextarea.style.display = 'none' ;
29758
29759         if ( oTextarea.tabIndex ) {            
29760             this.TabIndex = oTextarea.tabIndex ;
29761         }
29762         
29763         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
29764         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
29765         this.frame = Roo.get(this.getId() + '___Frame')
29766     },
29767     
29768     _getConfigHtml : function()
29769     {
29770         var sConfig = '' ;
29771
29772         for ( var o in this.fckconfig ) {
29773             sConfig += sConfig.length > 0  ? '&amp;' : '';
29774             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
29775         }
29776
29777         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
29778     },
29779     
29780     
29781     _getIFrameHtml : function()
29782     {
29783         var sFile = 'fckeditor.html' ;
29784         /* no idea what this is about..
29785         try
29786         {
29787             if ( (/fcksource=true/i).test( window.top.location.search ) )
29788                 sFile = 'fckeditor.original.html' ;
29789         }
29790         catch (e) { 
29791         */
29792
29793         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
29794         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
29795         
29796         
29797         var html = '<iframe id="' + this.getId() +
29798             '___Frame" src="' + sLink +
29799             '" width="' + this.width +
29800             '" height="' + this.height + '"' +
29801             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
29802             ' frameborder="0" scrolling="no"></iframe>' ;
29803
29804         return html ;
29805     },
29806     
29807     _insertHtmlBefore : function( html, element )
29808     {
29809         if ( element.insertAdjacentHTML )       {
29810             // IE
29811             element.insertAdjacentHTML( 'beforeBegin', html ) ;
29812         } else { // Gecko
29813             var oRange = document.createRange() ;
29814             oRange.setStartBefore( element ) ;
29815             var oFragment = oRange.createContextualFragment( html );
29816             element.parentNode.insertBefore( oFragment, element ) ;
29817         }
29818     }
29819     
29820     
29821   
29822     
29823     
29824     
29825     
29826
29827 });
29828
29829 //Roo.reg('fckeditor', Roo.form.FCKeditor);
29830
29831 function FCKeditor_OnComplete(editorInstance){
29832     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
29833     f.fckEditor = editorInstance;
29834     //console.log("loaded");
29835     f.fireEvent('editorinit', f, editorInstance);
29836
29837   
29838
29839  
29840
29841
29842
29843
29844
29845
29846
29847
29848
29849
29850
29851
29852
29853
29854
29855 //<script type="text/javascript">
29856 /**
29857  * @class Roo.form.GridField
29858  * @extends Roo.form.Field
29859  * Embed a grid (or editable grid into a form)
29860  * STATUS ALPHA
29861  * 
29862  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
29863  * it needs 
29864  * xgrid.store = Roo.data.Store
29865  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
29866  * xgrid.store.reader = Roo.data.JsonReader 
29867  * 
29868  * 
29869  * @constructor
29870  * Creates a new GridField
29871  * @param {Object} config Configuration options
29872  */
29873 Roo.form.GridField = function(config){
29874     Roo.form.GridField.superclass.constructor.call(this, config);
29875      
29876 };
29877
29878 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
29879     /**
29880      * @cfg {Number} width  - used to restrict width of grid..
29881      */
29882     width : 100,
29883     /**
29884      * @cfg {Number} height - used to restrict height of grid..
29885      */
29886     height : 50,
29887      /**
29888      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
29889          * 
29890          *}
29891      */
29892     xgrid : false, 
29893     /**
29894      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
29895      * {tag: "input", type: "checkbox", autocomplete: "off"})
29896      */
29897    // defaultAutoCreate : { tag: 'div' },
29898     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
29899     /**
29900      * @cfg {String} addTitle Text to include for adding a title.
29901      */
29902     addTitle : false,
29903     //
29904     onResize : function(){
29905         Roo.form.Field.superclass.onResize.apply(this, arguments);
29906     },
29907
29908     initEvents : function(){
29909         // Roo.form.Checkbox.superclass.initEvents.call(this);
29910         // has no events...
29911        
29912     },
29913
29914
29915     getResizeEl : function(){
29916         return this.wrap;
29917     },
29918
29919     getPositionEl : function(){
29920         return this.wrap;
29921     },
29922
29923     // private
29924     onRender : function(ct, position){
29925         
29926         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
29927         var style = this.style;
29928         delete this.style;
29929         
29930         Roo.form.GridField.superclass.onRender.call(this, ct, position);
29931         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
29932         this.viewEl = this.wrap.createChild({ tag: 'div' });
29933         if (style) {
29934             this.viewEl.applyStyles(style);
29935         }
29936         if (this.width) {
29937             this.viewEl.setWidth(this.width);
29938         }
29939         if (this.height) {
29940             this.viewEl.setHeight(this.height);
29941         }
29942         //if(this.inputValue !== undefined){
29943         //this.setValue(this.value);
29944         
29945         
29946         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
29947         
29948         
29949         this.grid.render();
29950         this.grid.getDataSource().on('remove', this.refreshValue, this);
29951         this.grid.getDataSource().on('update', this.refreshValue, this);
29952         this.grid.on('afteredit', this.refreshValue, this);
29953  
29954     },
29955      
29956     
29957     /**
29958      * Sets the value of the item. 
29959      * @param {String} either an object  or a string..
29960      */
29961     setValue : function(v){
29962         //this.value = v;
29963         v = v || []; // empty set..
29964         // this does not seem smart - it really only affects memoryproxy grids..
29965         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
29966             var ds = this.grid.getDataSource();
29967             // assumes a json reader..
29968             var data = {}
29969             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
29970             ds.loadData( data);
29971         }
29972         // clear selection so it does not get stale.
29973         if (this.grid.sm) { 
29974             this.grid.sm.clearSelections();
29975         }
29976         
29977         Roo.form.GridField.superclass.setValue.call(this, v);
29978         this.refreshValue();
29979         // should load data in the grid really....
29980     },
29981     
29982     // private
29983     refreshValue: function() {
29984          var val = [];
29985         this.grid.getDataSource().each(function(r) {
29986             val.push(r.data);
29987         });
29988         this.el.dom.value = Roo.encode(val);
29989     }
29990     
29991      
29992     
29993     
29994 });/*
29995  * Based on:
29996  * Ext JS Library 1.1.1
29997  * Copyright(c) 2006-2007, Ext JS, LLC.
29998  *
29999  * Originally Released Under LGPL - original licence link has changed is not relivant.
30000  *
30001  * Fork - LGPL
30002  * <script type="text/javascript">
30003  */
30004 /**
30005  * @class Roo.form.DisplayField
30006  * @extends Roo.form.Field
30007  * A generic Field to display non-editable data.
30008  * @constructor
30009  * Creates a new Display Field item.
30010  * @param {Object} config Configuration options
30011  */
30012 Roo.form.DisplayField = function(config){
30013     Roo.form.DisplayField.superclass.constructor.call(this, config);
30014     
30015 };
30016
30017 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
30018     inputType:      'hidden',
30019     allowBlank:     true,
30020     readOnly:         true,
30021     
30022  
30023     /**
30024      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30025      */
30026     focusClass : undefined,
30027     /**
30028      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30029      */
30030     fieldClass: 'x-form-field',
30031     
30032      /**
30033      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
30034      */
30035     valueRenderer: undefined,
30036     
30037     width: 100,
30038     /**
30039      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30040      * {tag: "input", type: "checkbox", autocomplete: "off"})
30041      */
30042      
30043  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
30044
30045     onResize : function(){
30046         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
30047         
30048     },
30049
30050     initEvents : function(){
30051         // Roo.form.Checkbox.superclass.initEvents.call(this);
30052         // has no events...
30053        
30054     },
30055
30056
30057     getResizeEl : function(){
30058         return this.wrap;
30059     },
30060
30061     getPositionEl : function(){
30062         return this.wrap;
30063     },
30064
30065     // private
30066     onRender : function(ct, position){
30067         
30068         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
30069         //if(this.inputValue !== undefined){
30070         this.wrap = this.el.wrap();
30071         
30072         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
30073         
30074         if (this.bodyStyle) {
30075             this.viewEl.applyStyles(this.bodyStyle);
30076         }
30077         //this.viewEl.setStyle('padding', '2px');
30078         
30079         this.setValue(this.value);
30080         
30081     },
30082 /*
30083     // private
30084     initValue : Roo.emptyFn,
30085
30086   */
30087
30088         // private
30089     onClick : function(){
30090         
30091     },
30092
30093     /**
30094      * Sets the checked state of the checkbox.
30095      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
30096      */
30097     setValue : function(v){
30098         this.value = v;
30099         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
30100         // this might be called before we have a dom element..
30101         if (!this.viewEl) {
30102             return;
30103         }
30104         this.viewEl.dom.innerHTML = html;
30105         Roo.form.DisplayField.superclass.setValue.call(this, v);
30106
30107     }
30108 });/*
30109  * 
30110  * Licence- LGPL
30111  * 
30112  */
30113
30114 /**
30115  * @class Roo.form.DayPicker
30116  * @extends Roo.form.Field
30117  * A Day picker show [M] [T] [W] ....
30118  * @constructor
30119  * Creates a new Day Picker
30120  * @param {Object} config Configuration options
30121  */
30122 Roo.form.DayPicker= function(config){
30123     Roo.form.DayPicker.superclass.constructor.call(this, config);
30124      
30125 };
30126
30127 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
30128     /**
30129      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
30130      */
30131     focusClass : undefined,
30132     /**
30133      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
30134      */
30135     fieldClass: "x-form-field",
30136    
30137     /**
30138      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
30139      * {tag: "input", type: "checkbox", autocomplete: "off"})
30140      */
30141     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
30142     
30143    
30144     actionMode : 'viewEl', 
30145     //
30146     // private
30147  
30148     inputType : 'hidden',
30149     
30150      
30151     inputElement: false, // real input element?
30152     basedOn: false, // ????
30153     
30154     isFormField: true, // not sure where this is needed!!!!
30155
30156     onResize : function(){
30157         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
30158         if(!this.boxLabel){
30159             this.el.alignTo(this.wrap, 'c-c');
30160         }
30161     },
30162
30163     initEvents : function(){
30164         Roo.form.Checkbox.superclass.initEvents.call(this);
30165         this.el.on("click", this.onClick,  this);
30166         this.el.on("change", this.onClick,  this);
30167     },
30168
30169
30170     getResizeEl : function(){
30171         return this.wrap;
30172     },
30173
30174     getPositionEl : function(){
30175         return this.wrap;
30176     },
30177
30178     
30179     // private
30180     onRender : function(ct, position){
30181         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
30182        
30183         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
30184         
30185         var r1 = '<table><tr>';
30186         var r2 = '<tr class="x-form-daypick-icons">';
30187         for (var i=0; i < 7; i++) {
30188             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
30189             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
30190         }
30191         
30192         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
30193         viewEl.select('img').on('click', this.onClick, this);
30194         this.viewEl = viewEl;   
30195         
30196         
30197         // this will not work on Chrome!!!
30198         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
30199         this.el.on('propertychange', this.setFromHidden,  this);  //ie
30200         
30201         
30202           
30203
30204     },
30205
30206     // private
30207     initValue : Roo.emptyFn,
30208
30209     /**
30210      * Returns the checked state of the checkbox.
30211      * @return {Boolean} True if checked, else false
30212      */
30213     getValue : function(){
30214         return this.el.dom.value;
30215         
30216     },
30217
30218         // private
30219     onClick : function(e){ 
30220         //this.setChecked(!this.checked);
30221         Roo.get(e.target).toggleClass('x-menu-item-checked');
30222         this.refreshValue();
30223         //if(this.el.dom.checked != this.checked){
30224         //    this.setValue(this.el.dom.checked);
30225        // }
30226     },
30227     
30228     // private
30229     refreshValue : function()
30230     {
30231         var val = '';
30232         this.viewEl.select('img',true).each(function(e,i,n)  {
30233             val += e.is(".x-menu-item-checked") ? String(n) : '';
30234         });
30235         this.setValue(val, true);
30236     },
30237
30238     /**
30239      * Sets the checked state of the checkbox.
30240      * On is always based on a string comparison between inputValue and the param.
30241      * @param {Boolean/String} value - the value to set 
30242      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
30243      */
30244     setValue : function(v,suppressEvent){
30245         if (!this.el.dom) {
30246             return;
30247         }
30248         var old = this.el.dom.value ;
30249         this.el.dom.value = v;
30250         if (suppressEvent) {
30251             return ;
30252         }
30253          
30254         // update display..
30255         this.viewEl.select('img',true).each(function(e,i,n)  {
30256             
30257             var on = e.is(".x-menu-item-checked");
30258             var newv = v.indexOf(String(n)) > -1;
30259             if (on != newv) {
30260                 e.toggleClass('x-menu-item-checked');
30261             }
30262             
30263         });
30264         
30265         
30266         this.fireEvent('change', this, v, old);
30267         
30268         
30269     },
30270    
30271     // handle setting of hidden value by some other method!!?!?
30272     setFromHidden: function()
30273     {
30274         if(!this.el){
30275             return;
30276         }
30277         //console.log("SET FROM HIDDEN");
30278         //alert('setFrom hidden');
30279         this.setValue(this.el.dom.value);
30280     },
30281     
30282     onDestroy : function()
30283     {
30284         if(this.viewEl){
30285             Roo.get(this.viewEl).remove();
30286         }
30287          
30288         Roo.form.DayPicker.superclass.onDestroy.call(this);
30289     }
30290
30291 });/*
30292  * RooJS Library 1.1.1
30293  * Copyright(c) 2008-2011  Alan Knowles
30294  *
30295  * License - LGPL
30296  */
30297  
30298
30299 /**
30300  * @class Roo.form.ComboCheck
30301  * @extends Roo.form.ComboBox
30302  * A combobox for multiple select items.
30303  *
30304  * FIXME - could do with a reset button..
30305  * 
30306  * @constructor
30307  * Create a new ComboCheck
30308  * @param {Object} config Configuration options
30309  */
30310 Roo.form.ComboCheck = function(config){
30311     Roo.form.ComboCheck.superclass.constructor.call(this, config);
30312     // should verify some data...
30313     // like
30314     // hiddenName = required..
30315     // displayField = required
30316     // valudField == required
30317     var req= [ 'hiddenName', 'displayField', 'valueField' ];
30318     var _t = this;
30319     Roo.each(req, function(e) {
30320         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
30321             throw "Roo.form.ComboCheck : missing value for: " + e;
30322         }
30323     });
30324     
30325     
30326 };
30327
30328 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
30329      
30330      
30331     editable : false,
30332      
30333     selectedClass: 'x-menu-item-checked', 
30334     
30335     // private
30336     onRender : function(ct, position){
30337         var _t = this;
30338         
30339         
30340         
30341         if(!this.tpl){
30342             var cls = 'x-combo-list';
30343
30344             
30345             this.tpl =  new Roo.Template({
30346                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
30347                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
30348                    '<span>{' + this.displayField + '}</span>' +
30349                     '</div>' 
30350                 
30351             });
30352         }
30353  
30354         
30355         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
30356         this.view.singleSelect = false;
30357         this.view.multiSelect = true;
30358         this.view.toggleSelect = true;
30359         this.pageTb.add(new Roo.Toolbar.Fill(), {
30360             
30361             text: 'Done',
30362             handler: function()
30363             {
30364                 _t.collapse();
30365             }
30366         });
30367     },
30368     
30369     onViewOver : function(e, t){
30370         // do nothing...
30371         return;
30372         
30373     },
30374     
30375     onViewClick : function(doFocus,index){
30376         return;
30377         
30378     },
30379     select: function () {
30380         //Roo.log("SELECT CALLED");
30381     },
30382      
30383     selectByValue : function(xv, scrollIntoView){
30384         var ar = this.getValueArray();
30385         var sels = [];
30386         
30387         Roo.each(ar, function(v) {
30388             if(v === undefined || v === null){
30389                 return;
30390             }
30391             var r = this.findRecord(this.valueField, v);
30392             if(r){
30393                 sels.push(this.store.indexOf(r))
30394                 
30395             }
30396         },this);
30397         this.view.select(sels);
30398         return false;
30399     },
30400     
30401     
30402     
30403     onSelect : function(record, index){
30404        // Roo.log("onselect Called");
30405        // this is only called by the clear button now..
30406         this.view.clearSelections();
30407         this.setValue('[]');
30408         if (this.value != this.valueBefore) {
30409             this.fireEvent('change', this, this.value, this.valueBefore);
30410             this.valueBefore = this.value;
30411         }
30412     },
30413     getValueArray : function()
30414     {
30415         var ar = [] ;
30416         
30417         try {
30418             //Roo.log(this.value);
30419             if (typeof(this.value) == 'undefined') {
30420                 return [];
30421             }
30422             var ar = Roo.decode(this.value);
30423             return  ar instanceof Array ? ar : []; //?? valid?
30424             
30425         } catch(e) {
30426             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
30427             return [];
30428         }
30429          
30430     },
30431     expand : function ()
30432     {
30433         
30434         Roo.form.ComboCheck.superclass.expand.call(this);
30435         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
30436         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
30437         
30438
30439     },
30440     
30441     collapse : function(){
30442         Roo.form.ComboCheck.superclass.collapse.call(this);
30443         var sl = this.view.getSelectedIndexes();
30444         var st = this.store;
30445         var nv = [];
30446         var tv = [];
30447         var r;
30448         Roo.each(sl, function(i) {
30449             r = st.getAt(i);
30450             nv.push(r.get(this.valueField));
30451         },this);
30452         this.setValue(Roo.encode(nv));
30453         if (this.value != this.valueBefore) {
30454
30455             this.fireEvent('change', this, this.value, this.valueBefore);
30456             this.valueBefore = this.value;
30457         }
30458         
30459     },
30460     
30461     setValue : function(v){
30462         // Roo.log(v);
30463         this.value = v;
30464         
30465         var vals = this.getValueArray();
30466         var tv = [];
30467         Roo.each(vals, function(k) {
30468             var r = this.findRecord(this.valueField, k);
30469             if(r){
30470                 tv.push(r.data[this.displayField]);
30471             }else if(this.valueNotFoundText !== undefined){
30472                 tv.push( this.valueNotFoundText );
30473             }
30474         },this);
30475        // Roo.log(tv);
30476         
30477         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
30478         this.hiddenField.value = v;
30479         this.value = v;
30480     }
30481     
30482 });/*
30483  * Based on:
30484  * Ext JS Library 1.1.1
30485  * Copyright(c) 2006-2007, Ext JS, LLC.
30486  *
30487  * Originally Released Under LGPL - original licence link has changed is not relivant.
30488  *
30489  * Fork - LGPL
30490  * <script type="text/javascript">
30491  */
30492  
30493 /**
30494  * @class Roo.form.Signature
30495  * @extends Roo.form.Field
30496  * Signature field.  
30497  * @constructor
30498  * 
30499  * @param {Object} config Configuration options
30500  */
30501
30502 Roo.form.Signature = function(config){
30503     Roo.form.Signature.superclass.constructor.call(this, config);
30504     
30505     this.addEvents({// not in used??
30506          /**
30507          * @event confirm
30508          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
30509              * @param {Roo.form.Signature} combo This combo box
30510              */
30511         'confirm' : true,
30512         /**
30513          * @event reset
30514          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
30515              * @param {Roo.form.ComboBox} combo This combo box
30516              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
30517              */
30518         'reset' : true
30519     });
30520 };
30521
30522 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
30523     /**
30524      * @cfg {Object} labels Label to use when rendering a form.
30525      * defaults to 
30526      * labels : { 
30527      *      clear : "Clear",
30528      *      confirm : "Confirm"
30529      *  }
30530      */
30531     labels : { 
30532         clear : "Clear",
30533         confirm : "Confirm"
30534     },
30535     /**
30536      * @cfg {Number} width The signature panel width (defaults to 300)
30537      */
30538     width: 300,
30539     /**
30540      * @cfg {Number} height The signature panel height (defaults to 100)
30541      */
30542     height : 100,
30543     /**
30544      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
30545      */
30546     allowBlank : false,
30547     
30548     //private
30549     // {Object} signPanel The signature SVG panel element (defaults to {})
30550     signPanel : {},
30551     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
30552     isMouseDown : false,
30553     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
30554     isConfirmed : false,
30555     // {String} signatureTmp SVG mapping string (defaults to empty string)
30556     signatureTmp : '',
30557     
30558     
30559     defaultAutoCreate : { // modified by initCompnoent..
30560         tag: "input",
30561         type:"hidden"
30562     },
30563
30564     // private
30565     onRender : function(ct, position){
30566         
30567         Roo.form.Signature.superclass.onRender.call(this, ct, position);
30568         
30569         this.wrap = this.el.wrap({
30570             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
30571         });
30572         
30573         this.createToolbar(this);
30574         this.signPanel = this.wrap.createChild({
30575                 tag: 'div',
30576                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
30577             }, this.el
30578         );
30579             
30580         this.svgID = Roo.id();
30581         this.svgEl = this.signPanel.createChild({
30582               xmlns : 'http://www.w3.org/2000/svg',
30583               tag : 'svg',
30584               id : this.svgID + "-svg",
30585               width: this.width,
30586               height: this.height,
30587               viewBox: '0 0 '+this.width+' '+this.height,
30588               cn : [
30589                 {
30590                     tag: "rect",
30591                     id: this.svgID + "-svg-r",
30592                     width: this.width,
30593                     height: this.height,
30594                     fill: "#ffa"
30595                 },
30596                 {
30597                     tag: "line",
30598                     id: this.svgID + "-svg-l",
30599                     x1: "0", // start
30600                     y1: (this.height*0.8), // start set the line in 80% of height
30601                     x2: this.width, // end
30602                     y2: (this.height*0.8), // end set the line in 80% of height
30603                     'stroke': "#666",
30604                     'stroke-width': "1",
30605                     'stroke-dasharray': "3",
30606                     'shape-rendering': "crispEdges",
30607                     'pointer-events': "none"
30608                 },
30609                 {
30610                     tag: "path",
30611                     id: this.svgID + "-svg-p",
30612                     'stroke': "navy",
30613                     'stroke-width': "3",
30614                     'fill': "none",
30615                     'pointer-events': 'none'
30616                 }
30617               ]
30618         });
30619         this.createSVG();
30620         this.svgBox = this.svgEl.dom.getScreenCTM();
30621     },
30622     createSVG : function(){ 
30623         var svg = this.signPanel;
30624         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
30625         var t = this;
30626
30627         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
30628         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
30629         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
30630         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
30631         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
30632         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
30633         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
30634         
30635     },
30636     isTouchEvent : function(e){
30637         return e.type.match(/^touch/);
30638     },
30639     getCoords : function (e) {
30640         var pt    = this.svgEl.dom.createSVGPoint();
30641         pt.x = e.clientX; 
30642         pt.y = e.clientY;
30643         if (this.isTouchEvent(e)) {
30644             pt.x =  e.targetTouches[0].clientX 
30645             pt.y = e.targetTouches[0].clientY;
30646         }
30647         var a = this.svgEl.dom.getScreenCTM();
30648         var b = a.inverse();
30649         var mx = pt.matrixTransform(b);
30650         return mx.x + ',' + mx.y;
30651     },
30652     //mouse event headler 
30653     down : function (e) {
30654         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
30655         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
30656         
30657         this.isMouseDown = true;
30658         
30659         e.preventDefault();
30660     },
30661     move : function (e) {
30662         if (this.isMouseDown) {
30663             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
30664             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
30665         }
30666         
30667         e.preventDefault();
30668     },
30669     up : function (e) {
30670         this.isMouseDown = false;
30671         var sp = this.signatureTmp.split(' ');
30672         
30673         if(sp.length > 1){
30674             if(!sp[sp.length-2].match(/^L/)){
30675                 sp.pop();
30676                 sp.pop();
30677                 sp.push("");
30678                 this.signatureTmp = sp.join(" ");
30679             }
30680         }
30681         if(this.getValue() != this.signatureTmp){
30682             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30683             this.isConfirmed = false;
30684         }
30685         e.preventDefault();
30686     },
30687     
30688     /**
30689      * Protected method that will not generally be called directly. It
30690      * is called when the editor creates its toolbar. Override this method if you need to
30691      * add custom toolbar buttons.
30692      * @param {HtmlEditor} editor
30693      */
30694     createToolbar : function(editor){
30695          function btn(id, toggle, handler){
30696             var xid = fid + '-'+ id ;
30697             return {
30698                 id : xid,
30699                 cmd : id,
30700                 cls : 'x-btn-icon x-edit-'+id,
30701                 enableToggle:toggle !== false,
30702                 scope: editor, // was editor...
30703                 handler:handler||editor.relayBtnCmd,
30704                 clickEvent:'mousedown',
30705                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
30706                 tabIndex:-1
30707             };
30708         }
30709         
30710         
30711         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
30712         this.tb = tb;
30713         this.tb.add(
30714            {
30715                 cls : ' x-signature-btn x-signature-'+id,
30716                 scope: editor, // was editor...
30717                 handler: this.reset,
30718                 clickEvent:'mousedown',
30719                 text: this.labels.clear
30720             },
30721             {
30722                  xtype : 'Fill',
30723                  xns: Roo.Toolbar
30724             }, 
30725             {
30726                 cls : '  x-signature-btn x-signature-'+id,
30727                 scope: editor, // was editor...
30728                 handler: this.confirmHandler,
30729                 clickEvent:'mousedown',
30730                 text: this.labels.confirm
30731             }
30732         );
30733     
30734     },
30735     //public
30736     /**
30737      * when user is clicked confirm then show this image.....
30738      * 
30739      * @return {String} Image Data URI
30740      */
30741     getImageDataURI : function(){
30742         var svg = this.svgEl.dom.parentNode.innerHTML;
30743         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
30744         return src; 
30745     },
30746     /**
30747      * 
30748      * @return {Boolean} this.isConfirmed
30749      */
30750     getConfirmed : function(){
30751         return this.isConfirmed;
30752     },
30753     /**
30754      * 
30755      * @return {Number} this.width
30756      */
30757     getWidth : function(){
30758         return this.width;
30759     },
30760     /**
30761      * 
30762      * @return {Number} this.height
30763      */
30764     getHeight : function(){
30765         return this.height;
30766     },
30767     // private
30768     getSignature : function(){
30769         return this.signatureTmp;
30770     },
30771     // private
30772     reset : function(){
30773         this.signatureTmp = '';
30774         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30775         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
30776         this.isConfirmed = false;
30777         Roo.form.Signature.superclass.reset.call(this);
30778     },
30779     setSignature : function(s){
30780         this.signatureTmp = s;
30781         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
30782         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
30783         this.setValue(s);
30784         this.isConfirmed = false;
30785         Roo.form.Signature.superclass.reset.call(this);
30786     }, 
30787     test : function(){
30788 //        Roo.log(this.signPanel.dom.contentWindow.up())
30789     },
30790     //private
30791     setConfirmed : function(){
30792         
30793         
30794         
30795 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
30796     },
30797     // private
30798     confirmHandler : function(){
30799         if(!this.getSignature()){
30800             return;
30801         }
30802         
30803         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
30804         this.setValue(this.getSignature());
30805         this.isConfirmed = true;
30806         
30807         this.fireEvent('confirm', this);
30808     },
30809     // private
30810     // Subclasses should provide the validation implementation by overriding this
30811     validateValue : function(value){
30812         if(this.allowBlank){
30813             return true;
30814         }
30815         
30816         if(this.isConfirmed){
30817             return true;
30818         }
30819         return false;
30820     }
30821 });/*
30822  * Based on:
30823  * Ext JS Library 1.1.1
30824  * Copyright(c) 2006-2007, Ext JS, LLC.
30825  *
30826  * Originally Released Under LGPL - original licence link has changed is not relivant.
30827  *
30828  * Fork - LGPL
30829  * <script type="text/javascript">
30830  */
30831  
30832
30833 /**
30834  * @class Roo.form.ComboBox
30835  * @extends Roo.form.TriggerField
30836  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
30837  * @constructor
30838  * Create a new ComboBox.
30839  * @param {Object} config Configuration options
30840  */
30841 Roo.form.Select = function(config){
30842     Roo.form.Select.superclass.constructor.call(this, config);
30843      
30844 };
30845
30846 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
30847     /**
30848      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
30849      */
30850     /**
30851      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
30852      * rendering into an Roo.Editor, defaults to false)
30853      */
30854     /**
30855      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
30856      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
30857      */
30858     /**
30859      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
30860      */
30861     /**
30862      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
30863      * the dropdown list (defaults to undefined, with no header element)
30864      */
30865
30866      /**
30867      * @cfg {String/Roo.Template} tpl The template to use to render the output
30868      */
30869      
30870     // private
30871     defaultAutoCreate : {tag: "select"  },
30872     /**
30873      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
30874      */
30875     listWidth: undefined,
30876     /**
30877      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
30878      * mode = 'remote' or 'text' if mode = 'local')
30879      */
30880     displayField: undefined,
30881     /**
30882      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
30883      * mode = 'remote' or 'value' if mode = 'local'). 
30884      * Note: use of a valueField requires the user make a selection
30885      * in order for a value to be mapped.
30886      */
30887     valueField: undefined,
30888     
30889     
30890     /**
30891      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
30892      * field's data value (defaults to the underlying DOM element's name)
30893      */
30894     hiddenName: undefined,
30895     /**
30896      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
30897      */
30898     listClass: '',
30899     /**
30900      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
30901      */
30902     selectedClass: 'x-combo-selected',
30903     /**
30904      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
30905      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
30906      * which displays a downward arrow icon).
30907      */
30908     triggerClass : 'x-form-arrow-trigger',
30909     /**
30910      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
30911      */
30912     shadow:'sides',
30913     /**
30914      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
30915      * anchor positions (defaults to 'tl-bl')
30916      */
30917     listAlign: 'tl-bl?',
30918     /**
30919      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
30920      */
30921     maxHeight: 300,
30922     /**
30923      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
30924      * query specified by the allQuery config option (defaults to 'query')
30925      */
30926     triggerAction: 'query',
30927     /**
30928      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
30929      * (defaults to 4, does not apply if editable = false)
30930      */
30931     minChars : 4,
30932     /**
30933      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
30934      * delay (typeAheadDelay) if it matches a known value (defaults to false)
30935      */
30936     typeAhead: false,
30937     /**
30938      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
30939      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
30940      */
30941     queryDelay: 500,
30942     /**
30943      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
30944      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
30945      */
30946     pageSize: 0,
30947     /**
30948      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
30949      * when editable = true (defaults to false)
30950      */
30951     selectOnFocus:false,
30952     /**
30953      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
30954      */
30955     queryParam: 'query',
30956     /**
30957      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
30958      * when mode = 'remote' (defaults to 'Loading...')
30959      */
30960     loadingText: 'Loading...',
30961     /**
30962      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
30963      */
30964     resizable: false,
30965     /**
30966      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
30967      */
30968     handleHeight : 8,
30969     /**
30970      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
30971      * traditional select (defaults to true)
30972      */
30973     editable: true,
30974     /**
30975      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
30976      */
30977     allQuery: '',
30978     /**
30979      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
30980      */
30981     mode: 'remote',
30982     /**
30983      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
30984      * listWidth has a higher value)
30985      */
30986     minListWidth : 70,
30987     /**
30988      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
30989      * allow the user to set arbitrary text into the field (defaults to false)
30990      */
30991     forceSelection:false,
30992     /**
30993      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
30994      * if typeAhead = true (defaults to 250)
30995      */
30996     typeAheadDelay : 250,
30997     /**
30998      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
30999      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
31000      */
31001     valueNotFoundText : undefined,
31002     
31003     /**
31004      * @cfg {String} defaultValue The value displayed after loading the store.
31005      */
31006     defaultValue: '',
31007     
31008     /**
31009      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
31010      */
31011     blockFocus : false,
31012     
31013     /**
31014      * @cfg {Boolean} disableClear Disable showing of clear button.
31015      */
31016     disableClear : false,
31017     /**
31018      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
31019      */
31020     alwaysQuery : false,
31021     
31022     //private
31023     addicon : false,
31024     editicon: false,
31025     
31026     // element that contains real text value.. (when hidden is used..)
31027      
31028     // private
31029     onRender : function(ct, position){
31030         Roo.form.Field.prototype.onRender.call(this, ct, position);
31031         
31032         if(this.store){
31033             this.store.on('beforeload', this.onBeforeLoad, this);
31034             this.store.on('load', this.onLoad, this);
31035             this.store.on('loadexception', this.onLoadException, this);
31036             this.store.load({});
31037         }
31038         
31039         
31040         
31041     },
31042
31043     // private
31044     initEvents : function(){
31045         //Roo.form.ComboBox.superclass.initEvents.call(this);
31046  
31047     },
31048
31049     onDestroy : function(){
31050        
31051         if(this.store){
31052             this.store.un('beforeload', this.onBeforeLoad, this);
31053             this.store.un('load', this.onLoad, this);
31054             this.store.un('loadexception', this.onLoadException, this);
31055         }
31056         //Roo.form.ComboBox.superclass.onDestroy.call(this);
31057     },
31058
31059     // private
31060     fireKey : function(e){
31061         if(e.isNavKeyPress() && !this.list.isVisible()){
31062             this.fireEvent("specialkey", this, e);
31063         }
31064     },
31065
31066     // private
31067     onResize: function(w, h){
31068         
31069         return; 
31070     
31071         
31072     },
31073
31074     /**
31075      * Allow or prevent the user from directly editing the field text.  If false is passed,
31076      * the user will only be able to select from the items defined in the dropdown list.  This method
31077      * is the runtime equivalent of setting the 'editable' config option at config time.
31078      * @param {Boolean} value True to allow the user to directly edit the field text
31079      */
31080     setEditable : function(value){
31081          
31082     },
31083
31084     // private
31085     onBeforeLoad : function(){
31086         
31087         Roo.log("Select before load");
31088         return;
31089     
31090         this.innerList.update(this.loadingText ?
31091                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
31092         //this.restrictHeight();
31093         this.selectedIndex = -1;
31094     },
31095
31096     // private
31097     onLoad : function(){
31098
31099     
31100         var dom = this.el.dom;
31101         dom.innerHTML = '';
31102          var od = dom.ownerDocument;
31103          
31104         if (this.emptyText) {
31105             var op = od.createElement('option');
31106             op.setAttribute('value', '');
31107             op.innerHTML = String.format('{0}', this.emptyText);
31108             dom.appendChild(op);
31109         }
31110         if(this.store.getCount() > 0){
31111            
31112             var vf = this.valueField;
31113             var df = this.displayField;
31114             this.store.data.each(function(r) {
31115                 // which colmsn to use... testing - cdoe / title..
31116                 var op = od.createElement('option');
31117                 op.setAttribute('value', r.data[vf]);
31118                 op.innerHTML = String.format('{0}', r.data[df]);
31119                 dom.appendChild(op);
31120             });
31121             if (typeof(this.defaultValue != 'undefined')) {
31122                 this.setValue(this.defaultValue);
31123             }
31124             
31125              
31126         }else{
31127             //this.onEmptyResults();
31128         }
31129         //this.el.focus();
31130     },
31131     // private
31132     onLoadException : function()
31133     {
31134         dom.innerHTML = '';
31135             
31136         Roo.log("Select on load exception");
31137         return;
31138     
31139         this.collapse();
31140         Roo.log(this.store.reader.jsonData);
31141         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
31142             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
31143         }
31144         
31145         
31146     },
31147     // private
31148     onTypeAhead : function(){
31149          
31150     },
31151
31152     // private
31153     onSelect : function(record, index){
31154         Roo.log('on select?');
31155         return;
31156         if(this.fireEvent('beforeselect', this, record, index) !== false){
31157             this.setFromData(index > -1 ? record.data : false);
31158             this.collapse();
31159             this.fireEvent('select', this, record, index);
31160         }
31161     },
31162
31163     /**
31164      * Returns the currently selected field value or empty string if no value is set.
31165      * @return {String} value The selected value
31166      */
31167     getValue : function(){
31168         var dom = this.el.dom;
31169         this.value = dom.options[dom.selectedIndex].value;
31170         return this.value;
31171         
31172     },
31173
31174     /**
31175      * Clears any text/value currently set in the field
31176      */
31177     clearValue : function(){
31178         this.value = '';
31179         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
31180         
31181     },
31182
31183     /**
31184      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
31185      * will be displayed in the field.  If the value does not match the data value of an existing item,
31186      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
31187      * Otherwise the field will be blank (although the value will still be set).
31188      * @param {String} value The value to match
31189      */
31190     setValue : function(v){
31191         var d = this.el.dom;
31192         for (var i =0; i < d.options.length;i++) {
31193             if (v == d.options[i].value) {
31194                 d.selectedIndex = i;
31195                 this.value = v;
31196                 return;
31197             }
31198         }
31199         this.clearValue();
31200     },
31201     /**
31202      * @property {Object} the last set data for the element
31203      */
31204     
31205     lastData : false,
31206     /**
31207      * Sets the value of the field based on a object which is related to the record format for the store.
31208      * @param {Object} value the value to set as. or false on reset?
31209      */
31210     setFromData : function(o){
31211         Roo.log('setfrom data?');
31212          
31213         
31214         
31215     },
31216     // private
31217     reset : function(){
31218         this.clearValue();
31219     },
31220     // private
31221     findRecord : function(prop, value){
31222         
31223         return false;
31224     
31225         var record;
31226         if(this.store.getCount() > 0){
31227             this.store.each(function(r){
31228                 if(r.data[prop] == value){
31229                     record = r;
31230                     return false;
31231                 }
31232                 return true;
31233             });
31234         }
31235         return record;
31236     },
31237     
31238     getName: function()
31239     {
31240         // returns hidden if it's set..
31241         if (!this.rendered) {return ''};
31242         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
31243         
31244     },
31245      
31246
31247     
31248
31249     // private
31250     onEmptyResults : function(){
31251         Roo.log('empty results');
31252         //this.collapse();
31253     },
31254
31255     /**
31256      * Returns true if the dropdown list is expanded, else false.
31257      */
31258     isExpanded : function(){
31259         return false;
31260     },
31261
31262     /**
31263      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
31264      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31265      * @param {String} value The data value of the item to select
31266      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31267      * selected item if it is not currently in view (defaults to true)
31268      * @return {Boolean} True if the value matched an item in the list, else false
31269      */
31270     selectByValue : function(v, scrollIntoView){
31271         Roo.log('select By Value');
31272         return false;
31273     
31274         if(v !== undefined && v !== null){
31275             var r = this.findRecord(this.valueField || this.displayField, v);
31276             if(r){
31277                 this.select(this.store.indexOf(r), scrollIntoView);
31278                 return true;
31279             }
31280         }
31281         return false;
31282     },
31283
31284     /**
31285      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
31286      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
31287      * @param {Number} index The zero-based index of the list item to select
31288      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
31289      * selected item if it is not currently in view (defaults to true)
31290      */
31291     select : function(index, scrollIntoView){
31292         Roo.log('select ');
31293         return  ;
31294         
31295         this.selectedIndex = index;
31296         this.view.select(index);
31297         if(scrollIntoView !== false){
31298             var el = this.view.getNode(index);
31299             if(el){
31300                 this.innerList.scrollChildIntoView(el, false);
31301             }
31302         }
31303     },
31304
31305       
31306
31307     // private
31308     validateBlur : function(){
31309         
31310         return;
31311         
31312     },
31313
31314     // private
31315     initQuery : function(){
31316         this.doQuery(this.getRawValue());
31317     },
31318
31319     // private
31320     doForce : function(){
31321         if(this.el.dom.value.length > 0){
31322             this.el.dom.value =
31323                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
31324              
31325         }
31326     },
31327
31328     /**
31329      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
31330      * query allowing the query action to be canceled if needed.
31331      * @param {String} query The SQL query to execute
31332      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
31333      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
31334      * saved in the current store (defaults to false)
31335      */
31336     doQuery : function(q, forceAll){
31337         
31338         Roo.log('doQuery?');
31339         if(q === undefined || q === null){
31340             q = '';
31341         }
31342         var qe = {
31343             query: q,
31344             forceAll: forceAll,
31345             combo: this,
31346             cancel:false
31347         };
31348         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
31349             return false;
31350         }
31351         q = qe.query;
31352         forceAll = qe.forceAll;
31353         if(forceAll === true || (q.length >= this.minChars)){
31354             if(this.lastQuery != q || this.alwaysQuery){
31355                 this.lastQuery = q;
31356                 if(this.mode == 'local'){
31357                     this.selectedIndex = -1;
31358                     if(forceAll){
31359                         this.store.clearFilter();
31360                     }else{
31361                         this.store.filter(this.displayField, q);
31362                     }
31363                     this.onLoad();
31364                 }else{
31365                     this.store.baseParams[this.queryParam] = q;
31366                     this.store.load({
31367                         params: this.getParams(q)
31368                     });
31369                     this.expand();
31370                 }
31371             }else{
31372                 this.selectedIndex = -1;
31373                 this.onLoad();   
31374             }
31375         }
31376     },
31377
31378     // private
31379     getParams : function(q){
31380         var p = {};
31381         //p[this.queryParam] = q;
31382         if(this.pageSize){
31383             p.start = 0;
31384             p.limit = this.pageSize;
31385         }
31386         return p;
31387     },
31388
31389     /**
31390      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
31391      */
31392     collapse : function(){
31393         
31394     },
31395
31396     // private
31397     collapseIf : function(e){
31398         
31399     },
31400
31401     /**
31402      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
31403      */
31404     expand : function(){
31405         
31406     } ,
31407
31408     // private
31409      
31410
31411     /** 
31412     * @cfg {Boolean} grow 
31413     * @hide 
31414     */
31415     /** 
31416     * @cfg {Number} growMin 
31417     * @hide 
31418     */
31419     /** 
31420     * @cfg {Number} growMax 
31421     * @hide 
31422     */
31423     /**
31424      * @hide
31425      * @method autoSize
31426      */
31427     
31428     setWidth : function()
31429     {
31430         
31431     },
31432     getResizeEl : function(){
31433         return this.el;
31434     }
31435 });//<script type="text/javasscript">
31436  
31437
31438 /**
31439  * @class Roo.DDView
31440  * A DnD enabled version of Roo.View.
31441  * @param {Element/String} container The Element in which to create the View.
31442  * @param {String} tpl The template string used to create the markup for each element of the View
31443  * @param {Object} config The configuration properties. These include all the config options of
31444  * {@link Roo.View} plus some specific to this class.<br>
31445  * <p>
31446  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
31447  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
31448  * <p>
31449  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
31450 .x-view-drag-insert-above {
31451         border-top:1px dotted #3366cc;
31452 }
31453 .x-view-drag-insert-below {
31454         border-bottom:1px dotted #3366cc;
31455 }
31456 </code></pre>
31457  * 
31458  */
31459  
31460 Roo.DDView = function(container, tpl, config) {
31461     Roo.DDView.superclass.constructor.apply(this, arguments);
31462     this.getEl().setStyle("outline", "0px none");
31463     this.getEl().unselectable();
31464     if (this.dragGroup) {
31465                 this.setDraggable(this.dragGroup.split(","));
31466     }
31467     if (this.dropGroup) {
31468                 this.setDroppable(this.dropGroup.split(","));
31469     }
31470     if (this.deletable) {
31471         this.setDeletable();
31472     }
31473     this.isDirtyFlag = false;
31474         this.addEvents({
31475                 "drop" : true
31476         });
31477 };
31478
31479 Roo.extend(Roo.DDView, Roo.View, {
31480 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
31481 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
31482 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
31483 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
31484
31485         isFormField: true,
31486
31487         reset: Roo.emptyFn,
31488         
31489         clearInvalid: Roo.form.Field.prototype.clearInvalid,
31490
31491         validate: function() {
31492                 return true;
31493         },
31494         
31495         destroy: function() {
31496                 this.purgeListeners();
31497                 this.getEl.removeAllListeners();
31498                 this.getEl().remove();
31499                 if (this.dragZone) {
31500                         if (this.dragZone.destroy) {
31501                                 this.dragZone.destroy();
31502                         }
31503                 }
31504                 if (this.dropZone) {
31505                         if (this.dropZone.destroy) {
31506                                 this.dropZone.destroy();
31507                         }
31508                 }
31509         },
31510
31511 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
31512         getName: function() {
31513                 return this.name;
31514         },
31515
31516 /**     Loads the View from a JSON string representing the Records to put into the Store. */
31517         setValue: function(v) {
31518                 if (!this.store) {
31519                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
31520                 }
31521                 var data = {};
31522                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
31523                 this.store.proxy = new Roo.data.MemoryProxy(data);
31524                 this.store.load();
31525         },
31526
31527 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
31528         getValue: function() {
31529                 var result = '(';
31530                 this.store.each(function(rec) {
31531                         result += rec.id + ',';
31532                 });
31533                 return result.substr(0, result.length - 1) + ')';
31534         },
31535         
31536         getIds: function() {
31537                 var i = 0, result = new Array(this.store.getCount());
31538                 this.store.each(function(rec) {
31539                         result[i++] = rec.id;
31540                 });
31541                 return result;
31542         },
31543         
31544         isDirty: function() {
31545                 return this.isDirtyFlag;
31546         },
31547
31548 /**
31549  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
31550  *      whole Element becomes the target, and this causes the drop gesture to append.
31551  */
31552     getTargetFromEvent : function(e) {
31553                 var target = e.getTarget();
31554                 while ((target !== null) && (target.parentNode != this.el.dom)) {
31555                 target = target.parentNode;
31556                 }
31557                 if (!target) {
31558                         target = this.el.dom.lastChild || this.el.dom;
31559                 }
31560                 return target;
31561     },
31562
31563 /**
31564  *      Create the drag data which consists of an object which has the property "ddel" as
31565  *      the drag proxy element. 
31566  */
31567     getDragData : function(e) {
31568         var target = this.findItemFromChild(e.getTarget());
31569                 if(target) {
31570                         this.handleSelection(e);
31571                         var selNodes = this.getSelectedNodes();
31572             var dragData = {
31573                 source: this,
31574                 copy: this.copy || (this.allowCopy && e.ctrlKey),
31575                 nodes: selNodes,
31576                 records: []
31577                         };
31578                         var selectedIndices = this.getSelectedIndexes();
31579                         for (var i = 0; i < selectedIndices.length; i++) {
31580                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
31581                         }
31582                         if (selNodes.length == 1) {
31583                                 dragData.ddel = target.cloneNode(true); // the div element
31584                         } else {
31585                                 var div = document.createElement('div'); // create the multi element drag "ghost"
31586                                 div.className = 'multi-proxy';
31587                                 for (var i = 0, len = selNodes.length; i < len; i++) {
31588                                         div.appendChild(selNodes[i].cloneNode(true));
31589                                 }
31590                                 dragData.ddel = div;
31591                         }
31592             //console.log(dragData)
31593             //console.log(dragData.ddel.innerHTML)
31594                         return dragData;
31595                 }
31596         //console.log('nodragData')
31597                 return false;
31598     },
31599     
31600 /**     Specify to which ddGroup items in this DDView may be dragged. */
31601     setDraggable: function(ddGroup) {
31602         if (ddGroup instanceof Array) {
31603                 Roo.each(ddGroup, this.setDraggable, this);
31604                 return;
31605         }
31606         if (this.dragZone) {
31607                 this.dragZone.addToGroup(ddGroup);
31608         } else {
31609                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
31610                                 containerScroll: true,
31611                                 ddGroup: ddGroup 
31612
31613                         });
31614 //                      Draggability implies selection. DragZone's mousedown selects the element.
31615                         if (!this.multiSelect) { this.singleSelect = true; }
31616
31617 //                      Wire the DragZone's handlers up to methods in *this*
31618                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
31619                 }
31620     },
31621
31622 /**     Specify from which ddGroup this DDView accepts drops. */
31623     setDroppable: function(ddGroup) {
31624         if (ddGroup instanceof Array) {
31625                 Roo.each(ddGroup, this.setDroppable, this);
31626                 return;
31627         }
31628         if (this.dropZone) {
31629                 this.dropZone.addToGroup(ddGroup);
31630         } else {
31631                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
31632                                 containerScroll: true,
31633                                 ddGroup: ddGroup
31634                         });
31635
31636 //                      Wire the DropZone's handlers up to methods in *this*
31637                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
31638                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
31639                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
31640                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
31641                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
31642                 }
31643     },
31644
31645 /**     Decide whether to drop above or below a View node. */
31646     getDropPoint : function(e, n, dd){
31647         if (n == this.el.dom) { return "above"; }
31648                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
31649                 var c = t + (b - t) / 2;
31650                 var y = Roo.lib.Event.getPageY(e);
31651                 if(y <= c) {
31652                         return "above";
31653                 }else{
31654                         return "below";
31655                 }
31656     },
31657
31658     onNodeEnter : function(n, dd, e, data){
31659                 return false;
31660     },
31661     
31662     onNodeOver : function(n, dd, e, data){
31663                 var pt = this.getDropPoint(e, n, dd);
31664                 // set the insert point style on the target node
31665                 var dragElClass = this.dropNotAllowed;
31666                 if (pt) {
31667                         var targetElClass;
31668                         if (pt == "above"){
31669                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
31670                                 targetElClass = "x-view-drag-insert-above";
31671                         } else {
31672                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
31673                                 targetElClass = "x-view-drag-insert-below";
31674                         }
31675                         if (this.lastInsertClass != targetElClass){
31676                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
31677                                 this.lastInsertClass = targetElClass;
31678                         }
31679                 }
31680                 return dragElClass;
31681         },
31682
31683     onNodeOut : function(n, dd, e, data){
31684                 this.removeDropIndicators(n);
31685     },
31686
31687     onNodeDrop : function(n, dd, e, data){
31688         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
31689                 return false;
31690         }
31691         var pt = this.getDropPoint(e, n, dd);
31692                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
31693                 if (pt == "below") { insertAt++; }
31694                 for (var i = 0; i < data.records.length; i++) {
31695                         var r = data.records[i];
31696                         var dup = this.store.getById(r.id);
31697                         if (dup && (dd != this.dragZone)) {
31698                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
31699                         } else {
31700                                 if (data.copy) {
31701                                         this.store.insert(insertAt++, r.copy());
31702                                 } else {
31703                                         data.source.isDirtyFlag = true;
31704                                         r.store.remove(r);
31705                                         this.store.insert(insertAt++, r);
31706                                 }
31707                                 this.isDirtyFlag = true;
31708                         }
31709                 }
31710                 this.dragZone.cachedTarget = null;
31711                 return true;
31712     },
31713
31714     removeDropIndicators : function(n){
31715                 if(n){
31716                         Roo.fly(n).removeClass([
31717                                 "x-view-drag-insert-above",
31718                                 "x-view-drag-insert-below"]);
31719                         this.lastInsertClass = "_noclass";
31720                 }
31721     },
31722
31723 /**
31724  *      Utility method. Add a delete option to the DDView's context menu.
31725  *      @param {String} imageUrl The URL of the "delete" icon image.
31726  */
31727         setDeletable: function(imageUrl) {
31728                 if (!this.singleSelect && !this.multiSelect) {
31729                         this.singleSelect = true;
31730                 }
31731                 var c = this.getContextMenu();
31732                 this.contextMenu.on("itemclick", function(item) {
31733                         switch (item.id) {
31734                                 case "delete":
31735                                         this.remove(this.getSelectedIndexes());
31736                                         break;
31737                         }
31738                 }, this);
31739                 this.contextMenu.add({
31740                         icon: imageUrl,
31741                         id: "delete",
31742                         text: 'Delete'
31743                 });
31744         },
31745         
31746 /**     Return the context menu for this DDView. */
31747         getContextMenu: function() {
31748                 if (!this.contextMenu) {
31749 //                      Create the View's context menu
31750                         this.contextMenu = new Roo.menu.Menu({
31751                                 id: this.id + "-contextmenu"
31752                         });
31753                         this.el.on("contextmenu", this.showContextMenu, this);
31754                 }
31755                 return this.contextMenu;
31756         },
31757         
31758         disableContextMenu: function() {
31759                 if (this.contextMenu) {
31760                         this.el.un("contextmenu", this.showContextMenu, this);
31761                 }
31762         },
31763
31764         showContextMenu: function(e, item) {
31765         item = this.findItemFromChild(e.getTarget());
31766                 if (item) {
31767                         e.stopEvent();
31768                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
31769                         this.contextMenu.showAt(e.getXY());
31770             }
31771     },
31772
31773 /**
31774  *      Remove {@link Roo.data.Record}s at the specified indices.
31775  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
31776  */
31777     remove: function(selectedIndices) {
31778                 selectedIndices = [].concat(selectedIndices);
31779                 for (var i = 0; i < selectedIndices.length; i++) {
31780                         var rec = this.store.getAt(selectedIndices[i]);
31781                         this.store.remove(rec);
31782                 }
31783     },
31784
31785 /**
31786  *      Double click fires the event, but also, if this is draggable, and there is only one other
31787  *      related DropZone, it transfers the selected node.
31788  */
31789     onDblClick : function(e){
31790         var item = this.findItemFromChild(e.getTarget());
31791         if(item){
31792             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
31793                 return false;
31794             }
31795             if (this.dragGroup) {
31796                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
31797                     while (targets.indexOf(this.dropZone) > -1) {
31798                             targets.remove(this.dropZone);
31799                                 }
31800                     if (targets.length == 1) {
31801                                         this.dragZone.cachedTarget = null;
31802                         var el = Roo.get(targets[0].getEl());
31803                         var box = el.getBox(true);
31804                         targets[0].onNodeDrop(el.dom, {
31805                                 target: el.dom,
31806                                 xy: [box.x, box.y + box.height - 1]
31807                         }, null, this.getDragData(e));
31808                     }
31809                 }
31810         }
31811     },
31812     
31813     handleSelection: function(e) {
31814                 this.dragZone.cachedTarget = null;
31815         var item = this.findItemFromChild(e.getTarget());
31816         if (!item) {
31817                 this.clearSelections(true);
31818                 return;
31819         }
31820                 if (item && (this.multiSelect || this.singleSelect)){
31821                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
31822                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
31823                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
31824                                 this.unselect(item);
31825                         } else {
31826                                 this.select(item, this.multiSelect && e.ctrlKey);
31827                                 this.lastSelection = item;
31828                         }
31829                 }
31830     },
31831
31832     onItemClick : function(item, index, e){
31833                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
31834                         return false;
31835                 }
31836                 return true;
31837     },
31838
31839     unselect : function(nodeInfo, suppressEvent){
31840                 var node = this.getNode(nodeInfo);
31841                 if(node && this.isSelected(node)){
31842                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
31843                                 Roo.fly(node).removeClass(this.selectedClass);
31844                                 this.selections.remove(node);
31845                                 if(!suppressEvent){
31846                                         this.fireEvent("selectionchange", this, this.selections);
31847                                 }
31848                         }
31849                 }
31850     }
31851 });
31852 /*
31853  * Based on:
31854  * Ext JS Library 1.1.1
31855  * Copyright(c) 2006-2007, Ext JS, LLC.
31856  *
31857  * Originally Released Under LGPL - original licence link has changed is not relivant.
31858  *
31859  * Fork - LGPL
31860  * <script type="text/javascript">
31861  */
31862  
31863 /**
31864  * @class Roo.LayoutManager
31865  * @extends Roo.util.Observable
31866  * Base class for layout managers.
31867  */
31868 Roo.LayoutManager = function(container, config){
31869     Roo.LayoutManager.superclass.constructor.call(this);
31870     this.el = Roo.get(container);
31871     // ie scrollbar fix
31872     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
31873         document.body.scroll = "no";
31874     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
31875         this.el.position('relative');
31876     }
31877     this.id = this.el.id;
31878     this.el.addClass("x-layout-container");
31879     /** false to disable window resize monitoring @type Boolean */
31880     this.monitorWindowResize = true;
31881     this.regions = {};
31882     this.addEvents({
31883         /**
31884          * @event layout
31885          * Fires when a layout is performed. 
31886          * @param {Roo.LayoutManager} this
31887          */
31888         "layout" : true,
31889         /**
31890          * @event regionresized
31891          * Fires when the user resizes a region. 
31892          * @param {Roo.LayoutRegion} region The resized region
31893          * @param {Number} newSize The new size (width for east/west, height for north/south)
31894          */
31895         "regionresized" : true,
31896         /**
31897          * @event regioncollapsed
31898          * Fires when a region is collapsed. 
31899          * @param {Roo.LayoutRegion} region The collapsed region
31900          */
31901         "regioncollapsed" : true,
31902         /**
31903          * @event regionexpanded
31904          * Fires when a region is expanded.  
31905          * @param {Roo.LayoutRegion} region The expanded region
31906          */
31907         "regionexpanded" : true
31908     });
31909     this.updating = false;
31910     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
31911 };
31912
31913 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
31914     /**
31915      * Returns true if this layout is currently being updated
31916      * @return {Boolean}
31917      */
31918     isUpdating : function(){
31919         return this.updating; 
31920     },
31921     
31922     /**
31923      * Suspend the LayoutManager from doing auto-layouts while
31924      * making multiple add or remove calls
31925      */
31926     beginUpdate : function(){
31927         this.updating = true;    
31928     },
31929     
31930     /**
31931      * Restore auto-layouts and optionally disable the manager from performing a layout
31932      * @param {Boolean} noLayout true to disable a layout update 
31933      */
31934     endUpdate : function(noLayout){
31935         this.updating = false;
31936         if(!noLayout){
31937             this.layout();
31938         }    
31939     },
31940     
31941     layout: function(){
31942         
31943     },
31944     
31945     onRegionResized : function(region, newSize){
31946         this.fireEvent("regionresized", region, newSize);
31947         this.layout();
31948     },
31949     
31950     onRegionCollapsed : function(region){
31951         this.fireEvent("regioncollapsed", region);
31952     },
31953     
31954     onRegionExpanded : function(region){
31955         this.fireEvent("regionexpanded", region);
31956     },
31957         
31958     /**
31959      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
31960      * performs box-model adjustments.
31961      * @return {Object} The size as an object {width: (the width), height: (the height)}
31962      */
31963     getViewSize : function(){
31964         var size;
31965         if(this.el.dom != document.body){
31966             size = this.el.getSize();
31967         }else{
31968             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
31969         }
31970         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
31971         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
31972         return size;
31973     },
31974     
31975     /**
31976      * Returns the Element this layout is bound to.
31977      * @return {Roo.Element}
31978      */
31979     getEl : function(){
31980         return this.el;
31981     },
31982     
31983     /**
31984      * Returns the specified region.
31985      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
31986      * @return {Roo.LayoutRegion}
31987      */
31988     getRegion : function(target){
31989         return this.regions[target.toLowerCase()];
31990     },
31991     
31992     onWindowResize : function(){
31993         if(this.monitorWindowResize){
31994             this.layout();
31995         }
31996     }
31997 });/*
31998  * Based on:
31999  * Ext JS Library 1.1.1
32000  * Copyright(c) 2006-2007, Ext JS, LLC.
32001  *
32002  * Originally Released Under LGPL - original licence link has changed is not relivant.
32003  *
32004  * Fork - LGPL
32005  * <script type="text/javascript">
32006  */
32007 /**
32008  * @class Roo.BorderLayout
32009  * @extends Roo.LayoutManager
32010  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
32011  * please see: <br><br>
32012  * <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>
32013  * <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>
32014  * Example:
32015  <pre><code>
32016  var layout = new Roo.BorderLayout(document.body, {
32017     north: {
32018         initialSize: 25,
32019         titlebar: false
32020     },
32021     west: {
32022         split:true,
32023         initialSize: 200,
32024         minSize: 175,
32025         maxSize: 400,
32026         titlebar: true,
32027         collapsible: true
32028     },
32029     east: {
32030         split:true,
32031         initialSize: 202,
32032         minSize: 175,
32033         maxSize: 400,
32034         titlebar: true,
32035         collapsible: true
32036     },
32037     south: {
32038         split:true,
32039         initialSize: 100,
32040         minSize: 100,
32041         maxSize: 200,
32042         titlebar: true,
32043         collapsible: true
32044     },
32045     center: {
32046         titlebar: true,
32047         autoScroll:true,
32048         resizeTabs: true,
32049         minTabWidth: 50,
32050         preferredTabWidth: 150
32051     }
32052 });
32053
32054 // shorthand
32055 var CP = Roo.ContentPanel;
32056
32057 layout.beginUpdate();
32058 layout.add("north", new CP("north", "North"));
32059 layout.add("south", new CP("south", {title: "South", closable: true}));
32060 layout.add("west", new CP("west", {title: "West"}));
32061 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
32062 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
32063 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
32064 layout.getRegion("center").showPanel("center1");
32065 layout.endUpdate();
32066 </code></pre>
32067
32068 <b>The container the layout is rendered into can be either the body element or any other element.
32069 If it is not the body element, the container needs to either be an absolute positioned element,
32070 or you will need to add "position:relative" to the css of the container.  You will also need to specify
32071 the container size if it is not the body element.</b>
32072
32073 * @constructor
32074 * Create a new BorderLayout
32075 * @param {String/HTMLElement/Element} container The container this layout is bound to
32076 * @param {Object} config Configuration options
32077  */
32078 Roo.BorderLayout = function(container, config){
32079     config = config || {};
32080     Roo.BorderLayout.superclass.constructor.call(this, container, config);
32081     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
32082     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
32083         var target = this.factory.validRegions[i];
32084         if(config[target]){
32085             this.addRegion(target, config[target]);
32086         }
32087     }
32088 };
32089
32090 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
32091     /**
32092      * Creates and adds a new region if it doesn't already exist.
32093      * @param {String} target The target region key (north, south, east, west or center).
32094      * @param {Object} config The regions config object
32095      * @return {BorderLayoutRegion} The new region
32096      */
32097     addRegion : function(target, config){
32098         if(!this.regions[target]){
32099             var r = this.factory.create(target, this, config);
32100             this.bindRegion(target, r);
32101         }
32102         return this.regions[target];
32103     },
32104
32105     // private (kinda)
32106     bindRegion : function(name, r){
32107         this.regions[name] = r;
32108         r.on("visibilitychange", this.layout, this);
32109         r.on("paneladded", this.layout, this);
32110         r.on("panelremoved", this.layout, this);
32111         r.on("invalidated", this.layout, this);
32112         r.on("resized", this.onRegionResized, this);
32113         r.on("collapsed", this.onRegionCollapsed, this);
32114         r.on("expanded", this.onRegionExpanded, this);
32115     },
32116
32117     /**
32118      * Performs a layout update.
32119      */
32120     layout : function(){
32121         if(this.updating) return;
32122         var size = this.getViewSize();
32123         var w = size.width;
32124         var h = size.height;
32125         var centerW = w;
32126         var centerH = h;
32127         var centerY = 0;
32128         var centerX = 0;
32129         //var x = 0, y = 0;
32130
32131         var rs = this.regions;
32132         var north = rs["north"];
32133         var south = rs["south"]; 
32134         var west = rs["west"];
32135         var east = rs["east"];
32136         var center = rs["center"];
32137         //if(this.hideOnLayout){ // not supported anymore
32138             //c.el.setStyle("display", "none");
32139         //}
32140         if(north && north.isVisible()){
32141             var b = north.getBox();
32142             var m = north.getMargins();
32143             b.width = w - (m.left+m.right);
32144             b.x = m.left;
32145             b.y = m.top;
32146             centerY = b.height + b.y + m.bottom;
32147             centerH -= centerY;
32148             north.updateBox(this.safeBox(b));
32149         }
32150         if(south && south.isVisible()){
32151             var b = south.getBox();
32152             var m = south.getMargins();
32153             b.width = w - (m.left+m.right);
32154             b.x = m.left;
32155             var totalHeight = (b.height + m.top + m.bottom);
32156             b.y = h - totalHeight + m.top;
32157             centerH -= totalHeight;
32158             south.updateBox(this.safeBox(b));
32159         }
32160         if(west && west.isVisible()){
32161             var b = west.getBox();
32162             var m = west.getMargins();
32163             b.height = centerH - (m.top+m.bottom);
32164             b.x = m.left;
32165             b.y = centerY + m.top;
32166             var totalWidth = (b.width + m.left + m.right);
32167             centerX += totalWidth;
32168             centerW -= totalWidth;
32169             west.updateBox(this.safeBox(b));
32170         }
32171         if(east && east.isVisible()){
32172             var b = east.getBox();
32173             var m = east.getMargins();
32174             b.height = centerH - (m.top+m.bottom);
32175             var totalWidth = (b.width + m.left + m.right);
32176             b.x = w - totalWidth + m.left;
32177             b.y = centerY + m.top;
32178             centerW -= totalWidth;
32179             east.updateBox(this.safeBox(b));
32180         }
32181         if(center){
32182             var m = center.getMargins();
32183             var centerBox = {
32184                 x: centerX + m.left,
32185                 y: centerY + m.top,
32186                 width: centerW - (m.left+m.right),
32187                 height: centerH - (m.top+m.bottom)
32188             };
32189             //if(this.hideOnLayout){
32190                 //center.el.setStyle("display", "block");
32191             //}
32192             center.updateBox(this.safeBox(centerBox));
32193         }
32194         this.el.repaint();
32195         this.fireEvent("layout", this);
32196     },
32197
32198     // private
32199     safeBox : function(box){
32200         box.width = Math.max(0, box.width);
32201         box.height = Math.max(0, box.height);
32202         return box;
32203     },
32204
32205     /**
32206      * Adds a ContentPanel (or subclass) to this layout.
32207      * @param {String} target The target region key (north, south, east, west or center).
32208      * @param {Roo.ContentPanel} panel The panel to add
32209      * @return {Roo.ContentPanel} The added panel
32210      */
32211     add : function(target, panel){
32212          
32213         target = target.toLowerCase();
32214         return this.regions[target].add(panel);
32215     },
32216
32217     /**
32218      * Remove a ContentPanel (or subclass) to this layout.
32219      * @param {String} target The target region key (north, south, east, west or center).
32220      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
32221      * @return {Roo.ContentPanel} The removed panel
32222      */
32223     remove : function(target, panel){
32224         target = target.toLowerCase();
32225         return this.regions[target].remove(panel);
32226     },
32227
32228     /**
32229      * Searches all regions for a panel with the specified id
32230      * @param {String} panelId
32231      * @return {Roo.ContentPanel} The panel or null if it wasn't found
32232      */
32233     findPanel : function(panelId){
32234         var rs = this.regions;
32235         for(var target in rs){
32236             if(typeof rs[target] != "function"){
32237                 var p = rs[target].getPanel(panelId);
32238                 if(p){
32239                     return p;
32240                 }
32241             }
32242         }
32243         return null;
32244     },
32245
32246     /**
32247      * Searches all regions for a panel with the specified id and activates (shows) it.
32248      * @param {String/ContentPanel} panelId The panels id or the panel itself
32249      * @return {Roo.ContentPanel} The shown panel or null
32250      */
32251     showPanel : function(panelId) {
32252       var rs = this.regions;
32253       for(var target in rs){
32254          var r = rs[target];
32255          if(typeof r != "function"){
32256             if(r.hasPanel(panelId)){
32257                return r.showPanel(panelId);
32258             }
32259          }
32260       }
32261       return null;
32262    },
32263
32264    /**
32265      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
32266      * @param {Roo.state.Provider} provider (optional) An alternate state provider
32267      */
32268     restoreState : function(provider){
32269         if(!provider){
32270             provider = Roo.state.Manager;
32271         }
32272         var sm = new Roo.LayoutStateManager();
32273         sm.init(this, provider);
32274     },
32275
32276     /**
32277      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
32278      * object should contain properties for each region to add ContentPanels to, and each property's value should be
32279      * a valid ContentPanel config object.  Example:
32280      * <pre><code>
32281 // Create the main layout
32282 var layout = new Roo.BorderLayout('main-ct', {
32283     west: {
32284         split:true,
32285         minSize: 175,
32286         titlebar: true
32287     },
32288     center: {
32289         title:'Components'
32290     }
32291 }, 'main-ct');
32292
32293 // Create and add multiple ContentPanels at once via configs
32294 layout.batchAdd({
32295    west: {
32296        id: 'source-files',
32297        autoCreate:true,
32298        title:'Ext Source Files',
32299        autoScroll:true,
32300        fitToFrame:true
32301    },
32302    center : {
32303        el: cview,
32304        autoScroll:true,
32305        fitToFrame:true,
32306        toolbar: tb,
32307        resizeEl:'cbody'
32308    }
32309 });
32310 </code></pre>
32311      * @param {Object} regions An object containing ContentPanel configs by region name
32312      */
32313     batchAdd : function(regions){
32314         this.beginUpdate();
32315         for(var rname in regions){
32316             var lr = this.regions[rname];
32317             if(lr){
32318                 this.addTypedPanels(lr, regions[rname]);
32319             }
32320         }
32321         this.endUpdate();
32322     },
32323
32324     // private
32325     addTypedPanels : function(lr, ps){
32326         if(typeof ps == 'string'){
32327             lr.add(new Roo.ContentPanel(ps));
32328         }
32329         else if(ps instanceof Array){
32330             for(var i =0, len = ps.length; i < len; i++){
32331                 this.addTypedPanels(lr, ps[i]);
32332             }
32333         }
32334         else if(!ps.events){ // raw config?
32335             var el = ps.el;
32336             delete ps.el; // prevent conflict
32337             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
32338         }
32339         else {  // panel object assumed!
32340             lr.add(ps);
32341         }
32342     },
32343     /**
32344      * Adds a xtype elements to the layout.
32345      * <pre><code>
32346
32347 layout.addxtype({
32348        xtype : 'ContentPanel',
32349        region: 'west',
32350        items: [ .... ]
32351    }
32352 );
32353
32354 layout.addxtype({
32355         xtype : 'NestedLayoutPanel',
32356         region: 'west',
32357         layout: {
32358            center: { },
32359            west: { }   
32360         },
32361         items : [ ... list of content panels or nested layout panels.. ]
32362    }
32363 );
32364 </code></pre>
32365      * @param {Object} cfg Xtype definition of item to add.
32366      */
32367     addxtype : function(cfg)
32368     {
32369         // basically accepts a pannel...
32370         // can accept a layout region..!?!?
32371         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
32372         
32373         if (!cfg.xtype.match(/Panel$/)) {
32374             return false;
32375         }
32376         var ret = false;
32377         
32378         if (typeof(cfg.region) == 'undefined') {
32379             Roo.log("Failed to add Panel, region was not set");
32380             Roo.log(cfg);
32381             return false;
32382         }
32383         var region = cfg.region;
32384         delete cfg.region;
32385         
32386           
32387         var xitems = [];
32388         if (cfg.items) {
32389             xitems = cfg.items;
32390             delete cfg.items;
32391         }
32392         var nb = false;
32393         
32394         switch(cfg.xtype) 
32395         {
32396             case 'ContentPanel':  // ContentPanel (el, cfg)
32397             case 'ScrollPanel':  // ContentPanel (el, cfg)
32398             case 'ViewPanel': 
32399                 if(cfg.autoCreate) {
32400                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32401                 } else {
32402                     var el = this.el.createChild();
32403                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
32404                 }
32405                 
32406                 this.add(region, ret);
32407                 break;
32408             
32409             
32410             case 'TreePanel': // our new panel!
32411                 cfg.el = this.el.createChild();
32412                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32413                 this.add(region, ret);
32414                 break;
32415             
32416             case 'NestedLayoutPanel': 
32417                 // create a new Layout (which is  a Border Layout...
32418                 var el = this.el.createChild();
32419                 var clayout = cfg.layout;
32420                 delete cfg.layout;
32421                 clayout.items   = clayout.items  || [];
32422                 // replace this exitems with the clayout ones..
32423                 xitems = clayout.items;
32424                  
32425                 
32426                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
32427                     cfg.background = false;
32428                 }
32429                 var layout = new Roo.BorderLayout(el, clayout);
32430                 
32431                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
32432                 //console.log('adding nested layout panel '  + cfg.toSource());
32433                 this.add(region, ret);
32434                 nb = {}; /// find first...
32435                 break;
32436                 
32437             case 'GridPanel': 
32438             
32439                 // needs grid and region
32440                 
32441                 //var el = this.getRegion(region).el.createChild();
32442                 var el = this.el.createChild();
32443                 // create the grid first...
32444                 
32445                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
32446                 delete cfg.grid;
32447                 if (region == 'center' && this.active ) {
32448                     cfg.background = false;
32449                 }
32450                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
32451                 
32452                 this.add(region, ret);
32453                 if (cfg.background) {
32454                     ret.on('activate', function(gp) {
32455                         if (!gp.grid.rendered) {
32456                             gp.grid.render();
32457                         }
32458                     });
32459                 } else {
32460                     grid.render();
32461                 }
32462                 break;
32463            
32464            
32465            
32466                 
32467                 
32468                 
32469             default:
32470                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
32471                     
32472                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
32473                     this.add(region, ret);
32474                 } else {
32475                 
32476                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
32477                     return null;
32478                 }
32479                 
32480              // GridPanel (grid, cfg)
32481             
32482         }
32483         this.beginUpdate();
32484         // add children..
32485         var region = '';
32486         var abn = {};
32487         Roo.each(xitems, function(i)  {
32488             region = nb && i.region ? i.region : false;
32489             
32490             var add = ret.addxtype(i);
32491            
32492             if (region) {
32493                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
32494                 if (!i.background) {
32495                     abn[region] = nb[region] ;
32496                 }
32497             }
32498             
32499         });
32500         this.endUpdate();
32501
32502         // make the last non-background panel active..
32503         //if (nb) { Roo.log(abn); }
32504         if (nb) {
32505             
32506             for(var r in abn) {
32507                 region = this.getRegion(r);
32508                 if (region) {
32509                     // tried using nb[r], but it does not work..
32510                      
32511                     region.showPanel(abn[r]);
32512                    
32513                 }
32514             }
32515         }
32516         return ret;
32517         
32518     }
32519 });
32520
32521 /**
32522  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
32523  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
32524  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
32525  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
32526  * <pre><code>
32527 // shorthand
32528 var CP = Roo.ContentPanel;
32529
32530 var layout = Roo.BorderLayout.create({
32531     north: {
32532         initialSize: 25,
32533         titlebar: false,
32534         panels: [new CP("north", "North")]
32535     },
32536     west: {
32537         split:true,
32538         initialSize: 200,
32539         minSize: 175,
32540         maxSize: 400,
32541         titlebar: true,
32542         collapsible: true,
32543         panels: [new CP("west", {title: "West"})]
32544     },
32545     east: {
32546         split:true,
32547         initialSize: 202,
32548         minSize: 175,
32549         maxSize: 400,
32550         titlebar: true,
32551         collapsible: true,
32552         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
32553     },
32554     south: {
32555         split:true,
32556         initialSize: 100,
32557         minSize: 100,
32558         maxSize: 200,
32559         titlebar: true,
32560         collapsible: true,
32561         panels: [new CP("south", {title: "South", closable: true})]
32562     },
32563     center: {
32564         titlebar: true,
32565         autoScroll:true,
32566         resizeTabs: true,
32567         minTabWidth: 50,
32568         preferredTabWidth: 150,
32569         panels: [
32570             new CP("center1", {title: "Close Me", closable: true}),
32571             new CP("center2", {title: "Center Panel", closable: false})
32572         ]
32573     }
32574 }, document.body);
32575
32576 layout.getRegion("center").showPanel("center1");
32577 </code></pre>
32578  * @param config
32579  * @param targetEl
32580  */
32581 Roo.BorderLayout.create = function(config, targetEl){
32582     var layout = new Roo.BorderLayout(targetEl || document.body, config);
32583     layout.beginUpdate();
32584     var regions = Roo.BorderLayout.RegionFactory.validRegions;
32585     for(var j = 0, jlen = regions.length; j < jlen; j++){
32586         var lr = regions[j];
32587         if(layout.regions[lr] && config[lr].panels){
32588             var r = layout.regions[lr];
32589             var ps = config[lr].panels;
32590             layout.addTypedPanels(r, ps);
32591         }
32592     }
32593     layout.endUpdate();
32594     return layout;
32595 };
32596
32597 // private
32598 Roo.BorderLayout.RegionFactory = {
32599     // private
32600     validRegions : ["north","south","east","west","center"],
32601
32602     // private
32603     create : function(target, mgr, config){
32604         target = target.toLowerCase();
32605         if(config.lightweight || config.basic){
32606             return new Roo.BasicLayoutRegion(mgr, config, target);
32607         }
32608         switch(target){
32609             case "north":
32610                 return new Roo.NorthLayoutRegion(mgr, config);
32611             case "south":
32612                 return new Roo.SouthLayoutRegion(mgr, config);
32613             case "east":
32614                 return new Roo.EastLayoutRegion(mgr, config);
32615             case "west":
32616                 return new Roo.WestLayoutRegion(mgr, config);
32617             case "center":
32618                 return new Roo.CenterLayoutRegion(mgr, config);
32619         }
32620         throw 'Layout region "'+target+'" not supported.';
32621     }
32622 };/*
32623  * Based on:
32624  * Ext JS Library 1.1.1
32625  * Copyright(c) 2006-2007, Ext JS, LLC.
32626  *
32627  * Originally Released Under LGPL - original licence link has changed is not relivant.
32628  *
32629  * Fork - LGPL
32630  * <script type="text/javascript">
32631  */
32632  
32633 /**
32634  * @class Roo.BasicLayoutRegion
32635  * @extends Roo.util.Observable
32636  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
32637  * and does not have a titlebar, tabs or any other features. All it does is size and position 
32638  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
32639  */
32640 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
32641     this.mgr = mgr;
32642     this.position  = pos;
32643     this.events = {
32644         /**
32645          * @scope Roo.BasicLayoutRegion
32646          */
32647         
32648         /**
32649          * @event beforeremove
32650          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
32651          * @param {Roo.LayoutRegion} this
32652          * @param {Roo.ContentPanel} panel The panel
32653          * @param {Object} e The cancel event object
32654          */
32655         "beforeremove" : true,
32656         /**
32657          * @event invalidated
32658          * Fires when the layout for this region is changed.
32659          * @param {Roo.LayoutRegion} this
32660          */
32661         "invalidated" : true,
32662         /**
32663          * @event visibilitychange
32664          * Fires when this region is shown or hidden 
32665          * @param {Roo.LayoutRegion} this
32666          * @param {Boolean} visibility true or false
32667          */
32668         "visibilitychange" : true,
32669         /**
32670          * @event paneladded
32671          * Fires when a panel is added. 
32672          * @param {Roo.LayoutRegion} this
32673          * @param {Roo.ContentPanel} panel The panel
32674          */
32675         "paneladded" : true,
32676         /**
32677          * @event panelremoved
32678          * Fires when a panel is removed. 
32679          * @param {Roo.LayoutRegion} this
32680          * @param {Roo.ContentPanel} panel The panel
32681          */
32682         "panelremoved" : true,
32683         /**
32684          * @event collapsed
32685          * Fires when this region is collapsed.
32686          * @param {Roo.LayoutRegion} this
32687          */
32688         "collapsed" : true,
32689         /**
32690          * @event expanded
32691          * Fires when this region is expanded.
32692          * @param {Roo.LayoutRegion} this
32693          */
32694         "expanded" : true,
32695         /**
32696          * @event slideshow
32697          * Fires when this region is slid into view.
32698          * @param {Roo.LayoutRegion} this
32699          */
32700         "slideshow" : true,
32701         /**
32702          * @event slidehide
32703          * Fires when this region slides out of view. 
32704          * @param {Roo.LayoutRegion} this
32705          */
32706         "slidehide" : true,
32707         /**
32708          * @event panelactivated
32709          * Fires when a panel is activated. 
32710          * @param {Roo.LayoutRegion} this
32711          * @param {Roo.ContentPanel} panel The activated panel
32712          */
32713         "panelactivated" : true,
32714         /**
32715          * @event resized
32716          * Fires when the user resizes this region. 
32717          * @param {Roo.LayoutRegion} this
32718          * @param {Number} newSize The new size (width for east/west, height for north/south)
32719          */
32720         "resized" : true
32721     };
32722     /** A collection of panels in this region. @type Roo.util.MixedCollection */
32723     this.panels = new Roo.util.MixedCollection();
32724     this.panels.getKey = this.getPanelId.createDelegate(this);
32725     this.box = null;
32726     this.activePanel = null;
32727     // ensure listeners are added...
32728     
32729     if (config.listeners || config.events) {
32730         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
32731             listeners : config.listeners || {},
32732             events : config.events || {}
32733         });
32734     }
32735     
32736     if(skipConfig !== true){
32737         this.applyConfig(config);
32738     }
32739 };
32740
32741 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
32742     getPanelId : function(p){
32743         return p.getId();
32744     },
32745     
32746     applyConfig : function(config){
32747         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
32748         this.config = config;
32749         
32750     },
32751     
32752     /**
32753      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
32754      * the width, for horizontal (north, south) the height.
32755      * @param {Number} newSize The new width or height
32756      */
32757     resizeTo : function(newSize){
32758         var el = this.el ? this.el :
32759                  (this.activePanel ? this.activePanel.getEl() : null);
32760         if(el){
32761             switch(this.position){
32762                 case "east":
32763                 case "west":
32764                     el.setWidth(newSize);
32765                     this.fireEvent("resized", this, newSize);
32766                 break;
32767                 case "north":
32768                 case "south":
32769                     el.setHeight(newSize);
32770                     this.fireEvent("resized", this, newSize);
32771                 break;                
32772             }
32773         }
32774     },
32775     
32776     getBox : function(){
32777         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
32778     },
32779     
32780     getMargins : function(){
32781         return this.margins;
32782     },
32783     
32784     updateBox : function(box){
32785         this.box = box;
32786         var el = this.activePanel.getEl();
32787         el.dom.style.left = box.x + "px";
32788         el.dom.style.top = box.y + "px";
32789         this.activePanel.setSize(box.width, box.height);
32790     },
32791     
32792     /**
32793      * Returns the container element for this region.
32794      * @return {Roo.Element}
32795      */
32796     getEl : function(){
32797         return this.activePanel;
32798     },
32799     
32800     /**
32801      * Returns true if this region is currently visible.
32802      * @return {Boolean}
32803      */
32804     isVisible : function(){
32805         return this.activePanel ? true : false;
32806     },
32807     
32808     setActivePanel : function(panel){
32809         panel = this.getPanel(panel);
32810         if(this.activePanel && this.activePanel != panel){
32811             this.activePanel.setActiveState(false);
32812             this.activePanel.getEl().setLeftTop(-10000,-10000);
32813         }
32814         this.activePanel = panel;
32815         panel.setActiveState(true);
32816         if(this.box){
32817             panel.setSize(this.box.width, this.box.height);
32818         }
32819         this.fireEvent("panelactivated", this, panel);
32820         this.fireEvent("invalidated");
32821     },
32822     
32823     /**
32824      * Show the specified panel.
32825      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
32826      * @return {Roo.ContentPanel} The shown panel or null
32827      */
32828     showPanel : function(panel){
32829         if(panel = this.getPanel(panel)){
32830             this.setActivePanel(panel);
32831         }
32832         return panel;
32833     },
32834     
32835     /**
32836      * Get the active panel for this region.
32837      * @return {Roo.ContentPanel} The active panel or null
32838      */
32839     getActivePanel : function(){
32840         return this.activePanel;
32841     },
32842     
32843     /**
32844      * Add the passed ContentPanel(s)
32845      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
32846      * @return {Roo.ContentPanel} The panel added (if only one was added)
32847      */
32848     add : function(panel){
32849         if(arguments.length > 1){
32850             for(var i = 0, len = arguments.length; i < len; i++) {
32851                 this.add(arguments[i]);
32852             }
32853             return null;
32854         }
32855         if(this.hasPanel(panel)){
32856             this.showPanel(panel);
32857             return panel;
32858         }
32859         var el = panel.getEl();
32860         if(el.dom.parentNode != this.mgr.el.dom){
32861             this.mgr.el.dom.appendChild(el.dom);
32862         }
32863         if(panel.setRegion){
32864             panel.setRegion(this);
32865         }
32866         this.panels.add(panel);
32867         el.setStyle("position", "absolute");
32868         if(!panel.background){
32869             this.setActivePanel(panel);
32870             if(this.config.initialSize && this.panels.getCount()==1){
32871                 this.resizeTo(this.config.initialSize);
32872             }
32873         }
32874         this.fireEvent("paneladded", this, panel);
32875         return panel;
32876     },
32877     
32878     /**
32879      * Returns true if the panel is in this region.
32880      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32881      * @return {Boolean}
32882      */
32883     hasPanel : function(panel){
32884         if(typeof panel == "object"){ // must be panel obj
32885             panel = panel.getId();
32886         }
32887         return this.getPanel(panel) ? true : false;
32888     },
32889     
32890     /**
32891      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
32892      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32893      * @param {Boolean} preservePanel Overrides the config preservePanel option
32894      * @return {Roo.ContentPanel} The panel that was removed
32895      */
32896     remove : function(panel, preservePanel){
32897         panel = this.getPanel(panel);
32898         if(!panel){
32899             return null;
32900         }
32901         var e = {};
32902         this.fireEvent("beforeremove", this, panel, e);
32903         if(e.cancel === true){
32904             return null;
32905         }
32906         var panelId = panel.getId();
32907         this.panels.removeKey(panelId);
32908         return panel;
32909     },
32910     
32911     /**
32912      * Returns the panel specified or null if it's not in this region.
32913      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
32914      * @return {Roo.ContentPanel}
32915      */
32916     getPanel : function(id){
32917         if(typeof id == "object"){ // must be panel obj
32918             return id;
32919         }
32920         return this.panels.get(id);
32921     },
32922     
32923     /**
32924      * Returns this regions position (north/south/east/west/center).
32925      * @return {String} 
32926      */
32927     getPosition: function(){
32928         return this.position;    
32929     }
32930 });/*
32931  * Based on:
32932  * Ext JS Library 1.1.1
32933  * Copyright(c) 2006-2007, Ext JS, LLC.
32934  *
32935  * Originally Released Under LGPL - original licence link has changed is not relivant.
32936  *
32937  * Fork - LGPL
32938  * <script type="text/javascript">
32939  */
32940  
32941 /**
32942  * @class Roo.LayoutRegion
32943  * @extends Roo.BasicLayoutRegion
32944  * This class represents a region in a layout manager.
32945  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
32946  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
32947  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
32948  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
32949  * @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})
32950  * @cfg {String}    tabPosition     "top" or "bottom" (defaults to "bottom")
32951  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
32952  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
32953  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
32954  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
32955  * @cfg {String}    title           The title for the region (overrides panel titles)
32956  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
32957  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
32958  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
32959  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
32960  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
32961  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
32962  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
32963  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
32964  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
32965  * @cfg {Boolean}   showPin         True to show a pin button
32966  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
32967  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
32968  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
32969  * @cfg {Number}    width           For East/West panels
32970  * @cfg {Number}    height          For North/South panels
32971  * @cfg {Boolean}   split           To show the splitter
32972  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
32973  */
32974 Roo.LayoutRegion = function(mgr, config, pos){
32975     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
32976     var dh = Roo.DomHelper;
32977     /** This region's container element 
32978     * @type Roo.Element */
32979     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
32980     /** This region's title element 
32981     * @type Roo.Element */
32982
32983     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
32984         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
32985         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
32986     ]}, true);
32987     this.titleEl.enableDisplayMode();
32988     /** This region's title text element 
32989     * @type HTMLElement */
32990     this.titleTextEl = this.titleEl.dom.firstChild;
32991     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
32992     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
32993     this.closeBtn.enableDisplayMode();
32994     this.closeBtn.on("click", this.closeClicked, this);
32995     this.closeBtn.hide();
32996
32997     this.createBody(config);
32998     this.visible = true;
32999     this.collapsed = false;
33000
33001     if(config.hideWhenEmpty){
33002         this.hide();
33003         this.on("paneladded", this.validateVisibility, this);
33004         this.on("panelremoved", this.validateVisibility, this);
33005     }
33006     this.applyConfig(config);
33007 };
33008
33009 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
33010
33011     createBody : function(){
33012         /** This region's body element 
33013         * @type Roo.Element */
33014         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
33015     },
33016
33017     applyConfig : function(c){
33018         if(c.collapsible && this.position != "center" && !this.collapsedEl){
33019             var dh = Roo.DomHelper;
33020             if(c.titlebar !== false){
33021                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
33022                 this.collapseBtn.on("click", this.collapse, this);
33023                 this.collapseBtn.enableDisplayMode();
33024
33025                 if(c.showPin === true || this.showPin){
33026                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
33027                     this.stickBtn.enableDisplayMode();
33028                     this.stickBtn.on("click", this.expand, this);
33029                     this.stickBtn.hide();
33030                 }
33031             }
33032             /** This region's collapsed element
33033             * @type Roo.Element */
33034             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
33035                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
33036             ]}, true);
33037             if(c.floatable !== false){
33038                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
33039                this.collapsedEl.on("click", this.collapseClick, this);
33040             }
33041
33042             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
33043                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
33044                    id: "message", unselectable: "on", style:{"float":"left"}});
33045                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
33046              }
33047             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
33048             this.expandBtn.on("click", this.expand, this);
33049         }
33050         if(this.collapseBtn){
33051             this.collapseBtn.setVisible(c.collapsible == true);
33052         }
33053         this.cmargins = c.cmargins || this.cmargins ||
33054                          (this.position == "west" || this.position == "east" ?
33055                              {top: 0, left: 2, right:2, bottom: 0} :
33056                              {top: 2, left: 0, right:0, bottom: 2});
33057         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
33058         this.bottomTabs = c.tabPosition != "top";
33059         this.autoScroll = c.autoScroll || false;
33060         if(this.autoScroll){
33061             this.bodyEl.setStyle("overflow", "auto");
33062         }else{
33063             this.bodyEl.setStyle("overflow", "hidden");
33064         }
33065         //if(c.titlebar !== false){
33066             if((!c.titlebar && !c.title) || c.titlebar === false){
33067                 this.titleEl.hide();
33068             }else{
33069                 this.titleEl.show();
33070                 if(c.title){
33071                     this.titleTextEl.innerHTML = c.title;
33072                 }
33073             }
33074         //}
33075         this.duration = c.duration || .30;
33076         this.slideDuration = c.slideDuration || .45;
33077         this.config = c;
33078         if(c.collapsed){
33079             this.collapse(true);
33080         }
33081         if(c.hidden){
33082             this.hide();
33083         }
33084     },
33085     /**
33086      * Returns true if this region is currently visible.
33087      * @return {Boolean}
33088      */
33089     isVisible : function(){
33090         return this.visible;
33091     },
33092
33093     /**
33094      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
33095      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
33096      */
33097     setCollapsedTitle : function(title){
33098         title = title || "&#160;";
33099         if(this.collapsedTitleTextEl){
33100             this.collapsedTitleTextEl.innerHTML = title;
33101         }
33102     },
33103
33104     getBox : function(){
33105         var b;
33106         if(!this.collapsed){
33107             b = this.el.getBox(false, true);
33108         }else{
33109             b = this.collapsedEl.getBox(false, true);
33110         }
33111         return b;
33112     },
33113
33114     getMargins : function(){
33115         return this.collapsed ? this.cmargins : this.margins;
33116     },
33117
33118     highlight : function(){
33119         this.el.addClass("x-layout-panel-dragover");
33120     },
33121
33122     unhighlight : function(){
33123         this.el.removeClass("x-layout-panel-dragover");
33124     },
33125
33126     updateBox : function(box){
33127         this.box = box;
33128         if(!this.collapsed){
33129             this.el.dom.style.left = box.x + "px";
33130             this.el.dom.style.top = box.y + "px";
33131             this.updateBody(box.width, box.height);
33132         }else{
33133             this.collapsedEl.dom.style.left = box.x + "px";
33134             this.collapsedEl.dom.style.top = box.y + "px";
33135             this.collapsedEl.setSize(box.width, box.height);
33136         }
33137         if(this.tabs){
33138             this.tabs.autoSizeTabs();
33139         }
33140     },
33141
33142     updateBody : function(w, h){
33143         if(w !== null){
33144             this.el.setWidth(w);
33145             w -= this.el.getBorderWidth("rl");
33146             if(this.config.adjustments){
33147                 w += this.config.adjustments[0];
33148             }
33149         }
33150         if(h !== null){
33151             this.el.setHeight(h);
33152             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
33153             h -= this.el.getBorderWidth("tb");
33154             if(this.config.adjustments){
33155                 h += this.config.adjustments[1];
33156             }
33157             this.bodyEl.setHeight(h);
33158             if(this.tabs){
33159                 h = this.tabs.syncHeight(h);
33160             }
33161         }
33162         if(this.panelSize){
33163             w = w !== null ? w : this.panelSize.width;
33164             h = h !== null ? h : this.panelSize.height;
33165         }
33166         if(this.activePanel){
33167             var el = this.activePanel.getEl();
33168             w = w !== null ? w : el.getWidth();
33169             h = h !== null ? h : el.getHeight();
33170             this.panelSize = {width: w, height: h};
33171             this.activePanel.setSize(w, h);
33172         }
33173         if(Roo.isIE && this.tabs){
33174             this.tabs.el.repaint();
33175         }
33176     },
33177
33178     /**
33179      * Returns the container element for this region.
33180      * @return {Roo.Element}
33181      */
33182     getEl : function(){
33183         return this.el;
33184     },
33185
33186     /**
33187      * Hides this region.
33188      */
33189     hide : function(){
33190         if(!this.collapsed){
33191             this.el.dom.style.left = "-2000px";
33192             this.el.hide();
33193         }else{
33194             this.collapsedEl.dom.style.left = "-2000px";
33195             this.collapsedEl.hide();
33196         }
33197         this.visible = false;
33198         this.fireEvent("visibilitychange", this, false);
33199     },
33200
33201     /**
33202      * Shows this region if it was previously hidden.
33203      */
33204     show : function(){
33205         if(!this.collapsed){
33206             this.el.show();
33207         }else{
33208             this.collapsedEl.show();
33209         }
33210         this.visible = true;
33211         this.fireEvent("visibilitychange", this, true);
33212     },
33213
33214     closeClicked : function(){
33215         if(this.activePanel){
33216             this.remove(this.activePanel);
33217         }
33218     },
33219
33220     collapseClick : function(e){
33221         if(this.isSlid){
33222            e.stopPropagation();
33223            this.slideIn();
33224         }else{
33225            e.stopPropagation();
33226            this.slideOut();
33227         }
33228     },
33229
33230     /**
33231      * Collapses this region.
33232      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
33233      */
33234     collapse : function(skipAnim){
33235         if(this.collapsed) return;
33236         this.collapsed = true;
33237         if(this.split){
33238             this.split.el.hide();
33239         }
33240         if(this.config.animate && skipAnim !== true){
33241             this.fireEvent("invalidated", this);
33242             this.animateCollapse();
33243         }else{
33244             this.el.setLocation(-20000,-20000);
33245             this.el.hide();
33246             this.collapsedEl.show();
33247             this.fireEvent("collapsed", this);
33248             this.fireEvent("invalidated", this);
33249         }
33250     },
33251
33252     animateCollapse : function(){
33253         // overridden
33254     },
33255
33256     /**
33257      * Expands this region if it was previously collapsed.
33258      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
33259      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
33260      */
33261     expand : function(e, skipAnim){
33262         if(e) e.stopPropagation();
33263         if(!this.collapsed || this.el.hasActiveFx()) return;
33264         if(this.isSlid){
33265             this.afterSlideIn();
33266             skipAnim = true;
33267         }
33268         this.collapsed = false;
33269         if(this.config.animate && skipAnim !== true){
33270             this.animateExpand();
33271         }else{
33272             this.el.show();
33273             if(this.split){
33274                 this.split.el.show();
33275             }
33276             this.collapsedEl.setLocation(-2000,-2000);
33277             this.collapsedEl.hide();
33278             this.fireEvent("invalidated", this);
33279             this.fireEvent("expanded", this);
33280         }
33281     },
33282
33283     animateExpand : function(){
33284         // overridden
33285     },
33286
33287     initTabs : function()
33288     {
33289         this.bodyEl.setStyle("overflow", "hidden");
33290         var ts = new Roo.TabPanel(
33291                 this.bodyEl.dom,
33292                 {
33293                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
33294                     disableTooltips: this.config.disableTabTips,
33295                     toolbar : this.config.toolbar
33296                 }
33297         );
33298         if(this.config.hideTabs){
33299             ts.stripWrap.setDisplayed(false);
33300         }
33301         this.tabs = ts;
33302         ts.resizeTabs = this.config.resizeTabs === true;
33303         ts.minTabWidth = this.config.minTabWidth || 40;
33304         ts.maxTabWidth = this.config.maxTabWidth || 250;
33305         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
33306         ts.monitorResize = false;
33307         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33308         ts.bodyEl.addClass('x-layout-tabs-body');
33309         this.panels.each(this.initPanelAsTab, this);
33310     },
33311
33312     initPanelAsTab : function(panel){
33313         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
33314                     this.config.closeOnTab && panel.isClosable());
33315         if(panel.tabTip !== undefined){
33316             ti.setTooltip(panel.tabTip);
33317         }
33318         ti.on("activate", function(){
33319               this.setActivePanel(panel);
33320         }, this);
33321         if(this.config.closeOnTab){
33322             ti.on("beforeclose", function(t, e){
33323                 e.cancel = true;
33324                 this.remove(panel);
33325             }, this);
33326         }
33327         return ti;
33328     },
33329
33330     updatePanelTitle : function(panel, title){
33331         if(this.activePanel == panel){
33332             this.updateTitle(title);
33333         }
33334         if(this.tabs){
33335             var ti = this.tabs.getTab(panel.getEl().id);
33336             ti.setText(title);
33337             if(panel.tabTip !== undefined){
33338                 ti.setTooltip(panel.tabTip);
33339             }
33340         }
33341     },
33342
33343     updateTitle : function(title){
33344         if(this.titleTextEl && !this.config.title){
33345             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
33346         }
33347     },
33348
33349     setActivePanel : function(panel){
33350         panel = this.getPanel(panel);
33351         if(this.activePanel && this.activePanel != panel){
33352             this.activePanel.setActiveState(false);
33353         }
33354         this.activePanel = panel;
33355         panel.setActiveState(true);
33356         if(this.panelSize){
33357             panel.setSize(this.panelSize.width, this.panelSize.height);
33358         }
33359         if(this.closeBtn){
33360             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
33361         }
33362         this.updateTitle(panel.getTitle());
33363         if(this.tabs){
33364             this.fireEvent("invalidated", this);
33365         }
33366         this.fireEvent("panelactivated", this, panel);
33367     },
33368
33369     /**
33370      * Shows the specified panel.
33371      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
33372      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
33373      */
33374     showPanel : function(panel){
33375         if(panel = this.getPanel(panel)){
33376             if(this.tabs){
33377                 var tab = this.tabs.getTab(panel.getEl().id);
33378                 if(tab.isHidden()){
33379                     this.tabs.unhideTab(tab.id);
33380                 }
33381                 tab.activate();
33382             }else{
33383                 this.setActivePanel(panel);
33384             }
33385         }
33386         return panel;
33387     },
33388
33389     /**
33390      * Get the active panel for this region.
33391      * @return {Roo.ContentPanel} The active panel or null
33392      */
33393     getActivePanel : function(){
33394         return this.activePanel;
33395     },
33396
33397     validateVisibility : function(){
33398         if(this.panels.getCount() < 1){
33399             this.updateTitle("&#160;");
33400             this.closeBtn.hide();
33401             this.hide();
33402         }else{
33403             if(!this.isVisible()){
33404                 this.show();
33405             }
33406         }
33407     },
33408
33409     /**
33410      * Adds the passed ContentPanel(s) to this region.
33411      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
33412      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
33413      */
33414     add : function(panel){
33415         if(arguments.length > 1){
33416             for(var i = 0, len = arguments.length; i < len; i++) {
33417                 this.add(arguments[i]);
33418             }
33419             return null;
33420         }
33421         if(this.hasPanel(panel)){
33422             this.showPanel(panel);
33423             return panel;
33424         }
33425         panel.setRegion(this);
33426         this.panels.add(panel);
33427         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
33428             this.bodyEl.dom.appendChild(panel.getEl().dom);
33429             if(panel.background !== true){
33430                 this.setActivePanel(panel);
33431             }
33432             this.fireEvent("paneladded", this, panel);
33433             return panel;
33434         }
33435         if(!this.tabs){
33436             this.initTabs();
33437         }else{
33438             this.initPanelAsTab(panel);
33439         }
33440         if(panel.background !== true){
33441             this.tabs.activate(panel.getEl().id);
33442         }
33443         this.fireEvent("paneladded", this, panel);
33444         return panel;
33445     },
33446
33447     /**
33448      * Hides the tab for the specified panel.
33449      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33450      */
33451     hidePanel : function(panel){
33452         if(this.tabs && (panel = this.getPanel(panel))){
33453             this.tabs.hideTab(panel.getEl().id);
33454         }
33455     },
33456
33457     /**
33458      * Unhides the tab for a previously hidden panel.
33459      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33460      */
33461     unhidePanel : function(panel){
33462         if(this.tabs && (panel = this.getPanel(panel))){
33463             this.tabs.unhideTab(panel.getEl().id);
33464         }
33465     },
33466
33467     clearPanels : function(){
33468         while(this.panels.getCount() > 0){
33469              this.remove(this.panels.first());
33470         }
33471     },
33472
33473     /**
33474      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
33475      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
33476      * @param {Boolean} preservePanel Overrides the config preservePanel option
33477      * @return {Roo.ContentPanel} The panel that was removed
33478      */
33479     remove : function(panel, preservePanel){
33480         panel = this.getPanel(panel);
33481         if(!panel){
33482             return null;
33483         }
33484         var e = {};
33485         this.fireEvent("beforeremove", this, panel, e);
33486         if(e.cancel === true){
33487             return null;
33488         }
33489         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
33490         var panelId = panel.getId();
33491         this.panels.removeKey(panelId);
33492         if(preservePanel){
33493             document.body.appendChild(panel.getEl().dom);
33494         }
33495         if(this.tabs){
33496             this.tabs.removeTab(panel.getEl().id);
33497         }else if (!preservePanel){
33498             this.bodyEl.dom.removeChild(panel.getEl().dom);
33499         }
33500         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
33501             var p = this.panels.first();
33502             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
33503             tempEl.appendChild(p.getEl().dom);
33504             this.bodyEl.update("");
33505             this.bodyEl.dom.appendChild(p.getEl().dom);
33506             tempEl = null;
33507             this.updateTitle(p.getTitle());
33508             this.tabs = null;
33509             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
33510             this.setActivePanel(p);
33511         }
33512         panel.setRegion(null);
33513         if(this.activePanel == panel){
33514             this.activePanel = null;
33515         }
33516         if(this.config.autoDestroy !== false && preservePanel !== true){
33517             try{panel.destroy();}catch(e){}
33518         }
33519         this.fireEvent("panelremoved", this, panel);
33520         return panel;
33521     },
33522
33523     /**
33524      * Returns the TabPanel component used by this region
33525      * @return {Roo.TabPanel}
33526      */
33527     getTabs : function(){
33528         return this.tabs;
33529     },
33530
33531     createTool : function(parentEl, className){
33532         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
33533             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
33534         btn.addClassOnOver("x-layout-tools-button-over");
33535         return btn;
33536     }
33537 });/*
33538  * Based on:
33539  * Ext JS Library 1.1.1
33540  * Copyright(c) 2006-2007, Ext JS, LLC.
33541  *
33542  * Originally Released Under LGPL - original licence link has changed is not relivant.
33543  *
33544  * Fork - LGPL
33545  * <script type="text/javascript">
33546  */
33547  
33548
33549
33550 /**
33551  * @class Roo.SplitLayoutRegion
33552  * @extends Roo.LayoutRegion
33553  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
33554  */
33555 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
33556     this.cursor = cursor;
33557     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
33558 };
33559
33560 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
33561     splitTip : "Drag to resize.",
33562     collapsibleSplitTip : "Drag to resize. Double click to hide.",
33563     useSplitTips : false,
33564
33565     applyConfig : function(config){
33566         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
33567         if(config.split){
33568             if(!this.split){
33569                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
33570                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
33571                 /** The SplitBar for this region 
33572                 * @type Roo.SplitBar */
33573                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
33574                 this.split.on("moved", this.onSplitMove, this);
33575                 this.split.useShim = config.useShim === true;
33576                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
33577                 if(this.useSplitTips){
33578                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
33579                 }
33580                 if(config.collapsible){
33581                     this.split.el.on("dblclick", this.collapse,  this);
33582                 }
33583             }
33584             if(typeof config.minSize != "undefined"){
33585                 this.split.minSize = config.minSize;
33586             }
33587             if(typeof config.maxSize != "undefined"){
33588                 this.split.maxSize = config.maxSize;
33589             }
33590             if(config.hideWhenEmpty || config.hidden || config.collapsed){
33591                 this.hideSplitter();
33592             }
33593         }
33594     },
33595
33596     getHMaxSize : function(){
33597          var cmax = this.config.maxSize || 10000;
33598          var center = this.mgr.getRegion("center");
33599          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
33600     },
33601
33602     getVMaxSize : function(){
33603          var cmax = this.config.maxSize || 10000;
33604          var center = this.mgr.getRegion("center");
33605          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
33606     },
33607
33608     onSplitMove : function(split, newSize){
33609         this.fireEvent("resized", this, newSize);
33610     },
33611     
33612     /** 
33613      * Returns the {@link Roo.SplitBar} for this region.
33614      * @return {Roo.SplitBar}
33615      */
33616     getSplitBar : function(){
33617         return this.split;
33618     },
33619     
33620     hide : function(){
33621         this.hideSplitter();
33622         Roo.SplitLayoutRegion.superclass.hide.call(this);
33623     },
33624
33625     hideSplitter : function(){
33626         if(this.split){
33627             this.split.el.setLocation(-2000,-2000);
33628             this.split.el.hide();
33629         }
33630     },
33631
33632     show : function(){
33633         if(this.split){
33634             this.split.el.show();
33635         }
33636         Roo.SplitLayoutRegion.superclass.show.call(this);
33637     },
33638     
33639     beforeSlide: function(){
33640         if(Roo.isGecko){// firefox overflow auto bug workaround
33641             this.bodyEl.clip();
33642             if(this.tabs) this.tabs.bodyEl.clip();
33643             if(this.activePanel){
33644                 this.activePanel.getEl().clip();
33645                 
33646                 if(this.activePanel.beforeSlide){
33647                     this.activePanel.beforeSlide();
33648                 }
33649             }
33650         }
33651     },
33652     
33653     afterSlide : function(){
33654         if(Roo.isGecko){// firefox overflow auto bug workaround
33655             this.bodyEl.unclip();
33656             if(this.tabs) this.tabs.bodyEl.unclip();
33657             if(this.activePanel){
33658                 this.activePanel.getEl().unclip();
33659                 if(this.activePanel.afterSlide){
33660                     this.activePanel.afterSlide();
33661                 }
33662             }
33663         }
33664     },
33665
33666     initAutoHide : function(){
33667         if(this.autoHide !== false){
33668             if(!this.autoHideHd){
33669                 var st = new Roo.util.DelayedTask(this.slideIn, this);
33670                 this.autoHideHd = {
33671                     "mouseout": function(e){
33672                         if(!e.within(this.el, true)){
33673                             st.delay(500);
33674                         }
33675                     },
33676                     "mouseover" : function(e){
33677                         st.cancel();
33678                     },
33679                     scope : this
33680                 };
33681             }
33682             this.el.on(this.autoHideHd);
33683         }
33684     },
33685
33686     clearAutoHide : function(){
33687         if(this.autoHide !== false){
33688             this.el.un("mouseout", this.autoHideHd.mouseout);
33689             this.el.un("mouseover", this.autoHideHd.mouseover);
33690         }
33691     },
33692
33693     clearMonitor : function(){
33694         Roo.get(document).un("click", this.slideInIf, this);
33695     },
33696
33697     // these names are backwards but not changed for compat
33698     slideOut : function(){
33699         if(this.isSlid || this.el.hasActiveFx()){
33700             return;
33701         }
33702         this.isSlid = true;
33703         if(this.collapseBtn){
33704             this.collapseBtn.hide();
33705         }
33706         this.closeBtnState = this.closeBtn.getStyle('display');
33707         this.closeBtn.hide();
33708         if(this.stickBtn){
33709             this.stickBtn.show();
33710         }
33711         this.el.show();
33712         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
33713         this.beforeSlide();
33714         this.el.setStyle("z-index", 10001);
33715         this.el.slideIn(this.getSlideAnchor(), {
33716             callback: function(){
33717                 this.afterSlide();
33718                 this.initAutoHide();
33719                 Roo.get(document).on("click", this.slideInIf, this);
33720                 this.fireEvent("slideshow", this);
33721             },
33722             scope: this,
33723             block: true
33724         });
33725     },
33726
33727     afterSlideIn : function(){
33728         this.clearAutoHide();
33729         this.isSlid = false;
33730         this.clearMonitor();
33731         this.el.setStyle("z-index", "");
33732         if(this.collapseBtn){
33733             this.collapseBtn.show();
33734         }
33735         this.closeBtn.setStyle('display', this.closeBtnState);
33736         if(this.stickBtn){
33737             this.stickBtn.hide();
33738         }
33739         this.fireEvent("slidehide", this);
33740     },
33741
33742     slideIn : function(cb){
33743         if(!this.isSlid || this.el.hasActiveFx()){
33744             Roo.callback(cb);
33745             return;
33746         }
33747         this.isSlid = false;
33748         this.beforeSlide();
33749         this.el.slideOut(this.getSlideAnchor(), {
33750             callback: function(){
33751                 this.el.setLeftTop(-10000, -10000);
33752                 this.afterSlide();
33753                 this.afterSlideIn();
33754                 Roo.callback(cb);
33755             },
33756             scope: this,
33757             block: true
33758         });
33759     },
33760     
33761     slideInIf : function(e){
33762         if(!e.within(this.el)){
33763             this.slideIn();
33764         }
33765     },
33766
33767     animateCollapse : function(){
33768         this.beforeSlide();
33769         this.el.setStyle("z-index", 20000);
33770         var anchor = this.getSlideAnchor();
33771         this.el.slideOut(anchor, {
33772             callback : function(){
33773                 this.el.setStyle("z-index", "");
33774                 this.collapsedEl.slideIn(anchor, {duration:.3});
33775                 this.afterSlide();
33776                 this.el.setLocation(-10000,-10000);
33777                 this.el.hide();
33778                 this.fireEvent("collapsed", this);
33779             },
33780             scope: this,
33781             block: true
33782         });
33783     },
33784
33785     animateExpand : function(){
33786         this.beforeSlide();
33787         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
33788         this.el.setStyle("z-index", 20000);
33789         this.collapsedEl.hide({
33790             duration:.1
33791         });
33792         this.el.slideIn(this.getSlideAnchor(), {
33793             callback : function(){
33794                 this.el.setStyle("z-index", "");
33795                 this.afterSlide();
33796                 if(this.split){
33797                     this.split.el.show();
33798                 }
33799                 this.fireEvent("invalidated", this);
33800                 this.fireEvent("expanded", this);
33801             },
33802             scope: this,
33803             block: true
33804         });
33805     },
33806
33807     anchors : {
33808         "west" : "left",
33809         "east" : "right",
33810         "north" : "top",
33811         "south" : "bottom"
33812     },
33813
33814     sanchors : {
33815         "west" : "l",
33816         "east" : "r",
33817         "north" : "t",
33818         "south" : "b"
33819     },
33820
33821     canchors : {
33822         "west" : "tl-tr",
33823         "east" : "tr-tl",
33824         "north" : "tl-bl",
33825         "south" : "bl-tl"
33826     },
33827
33828     getAnchor : function(){
33829         return this.anchors[this.position];
33830     },
33831
33832     getCollapseAnchor : function(){
33833         return this.canchors[this.position];
33834     },
33835
33836     getSlideAnchor : function(){
33837         return this.sanchors[this.position];
33838     },
33839
33840     getAlignAdj : function(){
33841         var cm = this.cmargins;
33842         switch(this.position){
33843             case "west":
33844                 return [0, 0];
33845             break;
33846             case "east":
33847                 return [0, 0];
33848             break;
33849             case "north":
33850                 return [0, 0];
33851             break;
33852             case "south":
33853                 return [0, 0];
33854             break;
33855         }
33856     },
33857
33858     getExpandAdj : function(){
33859         var c = this.collapsedEl, cm = this.cmargins;
33860         switch(this.position){
33861             case "west":
33862                 return [-(cm.right+c.getWidth()+cm.left), 0];
33863             break;
33864             case "east":
33865                 return [cm.right+c.getWidth()+cm.left, 0];
33866             break;
33867             case "north":
33868                 return [0, -(cm.top+cm.bottom+c.getHeight())];
33869             break;
33870             case "south":
33871                 return [0, cm.top+cm.bottom+c.getHeight()];
33872             break;
33873         }
33874     }
33875 });/*
33876  * Based on:
33877  * Ext JS Library 1.1.1
33878  * Copyright(c) 2006-2007, Ext JS, LLC.
33879  *
33880  * Originally Released Under LGPL - original licence link has changed is not relivant.
33881  *
33882  * Fork - LGPL
33883  * <script type="text/javascript">
33884  */
33885 /*
33886  * These classes are private internal classes
33887  */
33888 Roo.CenterLayoutRegion = function(mgr, config){
33889     Roo.LayoutRegion.call(this, mgr, config, "center");
33890     this.visible = true;
33891     this.minWidth = config.minWidth || 20;
33892     this.minHeight = config.minHeight || 20;
33893 };
33894
33895 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
33896     hide : function(){
33897         // center panel can't be hidden
33898     },
33899     
33900     show : function(){
33901         // center panel can't be hidden
33902     },
33903     
33904     getMinWidth: function(){
33905         return this.minWidth;
33906     },
33907     
33908     getMinHeight: function(){
33909         return this.minHeight;
33910     }
33911 });
33912
33913
33914 Roo.NorthLayoutRegion = function(mgr, config){
33915     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
33916     if(this.split){
33917         this.split.placement = Roo.SplitBar.TOP;
33918         this.split.orientation = Roo.SplitBar.VERTICAL;
33919         this.split.el.addClass("x-layout-split-v");
33920     }
33921     var size = config.initialSize || config.height;
33922     if(typeof size != "undefined"){
33923         this.el.setHeight(size);
33924     }
33925 };
33926 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
33927     orientation: Roo.SplitBar.VERTICAL,
33928     getBox : function(){
33929         if(this.collapsed){
33930             return this.collapsedEl.getBox();
33931         }
33932         var box = this.el.getBox();
33933         if(this.split){
33934             box.height += this.split.el.getHeight();
33935         }
33936         return box;
33937     },
33938     
33939     updateBox : function(box){
33940         if(this.split && !this.collapsed){
33941             box.height -= this.split.el.getHeight();
33942             this.split.el.setLeft(box.x);
33943             this.split.el.setTop(box.y+box.height);
33944             this.split.el.setWidth(box.width);
33945         }
33946         if(this.collapsed){
33947             this.updateBody(box.width, null);
33948         }
33949         Roo.LayoutRegion.prototype.updateBox.call(this, box);
33950     }
33951 });
33952
33953 Roo.SouthLayoutRegion = function(mgr, config){
33954     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
33955     if(this.split){
33956         this.split.placement = Roo.SplitBar.BOTTOM;
33957         this.split.orientation = Roo.SplitBar.VERTICAL;
33958         this.split.el.addClass("x-layout-split-v");
33959     }
33960     var size = config.initialSize || config.height;
33961     if(typeof size != "undefined"){
33962         this.el.setHeight(size);
33963     }
33964 };
33965 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
33966     orientation: Roo.SplitBar.VERTICAL,
33967     getBox : function(){
33968         if(this.collapsed){
33969             return this.collapsedEl.getBox();
33970         }
33971         var box = this.el.getBox();
33972         if(this.split){
33973             var sh = this.split.el.getHeight();
33974             box.height += sh;
33975             box.y -= sh;
33976         }
33977         return box;
33978     },
33979     
33980     updateBox : function(box){
33981         if(this.split && !this.collapsed){
33982             var sh = this.split.el.getHeight();
33983             box.height -= sh;
33984             box.y += sh;
33985             this.split.el.setLeft(box.x);
33986             this.split.el.setTop(box.y-sh);
33987             this.split.el.setWidth(box.width);
33988         }
33989         if(this.collapsed){
33990             this.updateBody(box.width, null);
33991         }
33992         Roo.LayoutRegion.prototype.updateBox.call(this, box);
33993     }
33994 });
33995
33996 Roo.EastLayoutRegion = function(mgr, config){
33997     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
33998     if(this.split){
33999         this.split.placement = Roo.SplitBar.RIGHT;
34000         this.split.orientation = Roo.SplitBar.HORIZONTAL;
34001         this.split.el.addClass("x-layout-split-h");
34002     }
34003     var size = config.initialSize || config.width;
34004     if(typeof size != "undefined"){
34005         this.el.setWidth(size);
34006     }
34007 };
34008 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
34009     orientation: Roo.SplitBar.HORIZONTAL,
34010     getBox : function(){
34011         if(this.collapsed){
34012             return this.collapsedEl.getBox();
34013         }
34014         var box = this.el.getBox();
34015         if(this.split){
34016             var sw = this.split.el.getWidth();
34017             box.width += sw;
34018             box.x -= sw;
34019         }
34020         return box;
34021     },
34022
34023     updateBox : function(box){
34024         if(this.split && !this.collapsed){
34025             var sw = this.split.el.getWidth();
34026             box.width -= sw;
34027             this.split.el.setLeft(box.x);
34028             this.split.el.setTop(box.y);
34029             this.split.el.setHeight(box.height);
34030             box.x += sw;
34031         }
34032         if(this.collapsed){
34033             this.updateBody(null, box.height);
34034         }
34035         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34036     }
34037 });
34038
34039 Roo.WestLayoutRegion = function(mgr, config){
34040     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
34041     if(this.split){
34042         this.split.placement = Roo.SplitBar.LEFT;
34043         this.split.orientation = Roo.SplitBar.HORIZONTAL;
34044         this.split.el.addClass("x-layout-split-h");
34045     }
34046     var size = config.initialSize || config.width;
34047     if(typeof size != "undefined"){
34048         this.el.setWidth(size);
34049     }
34050 };
34051 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
34052     orientation: Roo.SplitBar.HORIZONTAL,
34053     getBox : function(){
34054         if(this.collapsed){
34055             return this.collapsedEl.getBox();
34056         }
34057         var box = this.el.getBox();
34058         if(this.split){
34059             box.width += this.split.el.getWidth();
34060         }
34061         return box;
34062     },
34063     
34064     updateBox : function(box){
34065         if(this.split && !this.collapsed){
34066             var sw = this.split.el.getWidth();
34067             box.width -= sw;
34068             this.split.el.setLeft(box.x+box.width);
34069             this.split.el.setTop(box.y);
34070             this.split.el.setHeight(box.height);
34071         }
34072         if(this.collapsed){
34073             this.updateBody(null, box.height);
34074         }
34075         Roo.LayoutRegion.prototype.updateBox.call(this, box);
34076     }
34077 });
34078 /*
34079  * Based on:
34080  * Ext JS Library 1.1.1
34081  * Copyright(c) 2006-2007, Ext JS, LLC.
34082  *
34083  * Originally Released Under LGPL - original licence link has changed is not relivant.
34084  *
34085  * Fork - LGPL
34086  * <script type="text/javascript">
34087  */
34088  
34089  
34090 /*
34091  * Private internal class for reading and applying state
34092  */
34093 Roo.LayoutStateManager = function(layout){
34094      // default empty state
34095      this.state = {
34096         north: {},
34097         south: {},
34098         east: {},
34099         west: {}       
34100     };
34101 };
34102
34103 Roo.LayoutStateManager.prototype = {
34104     init : function(layout, provider){
34105         this.provider = provider;
34106         var state = provider.get(layout.id+"-layout-state");
34107         if(state){
34108             var wasUpdating = layout.isUpdating();
34109             if(!wasUpdating){
34110                 layout.beginUpdate();
34111             }
34112             for(var key in state){
34113                 if(typeof state[key] != "function"){
34114                     var rstate = state[key];
34115                     var r = layout.getRegion(key);
34116                     if(r && rstate){
34117                         if(rstate.size){
34118                             r.resizeTo(rstate.size);
34119                         }
34120                         if(rstate.collapsed == true){
34121                             r.collapse(true);
34122                         }else{
34123                             r.expand(null, true);
34124                         }
34125                     }
34126                 }
34127             }
34128             if(!wasUpdating){
34129                 layout.endUpdate();
34130             }
34131             this.state = state; 
34132         }
34133         this.layout = layout;
34134         layout.on("regionresized", this.onRegionResized, this);
34135         layout.on("regioncollapsed", this.onRegionCollapsed, this);
34136         layout.on("regionexpanded", this.onRegionExpanded, this);
34137     },
34138     
34139     storeState : function(){
34140         this.provider.set(this.layout.id+"-layout-state", this.state);
34141     },
34142     
34143     onRegionResized : function(region, newSize){
34144         this.state[region.getPosition()].size = newSize;
34145         this.storeState();
34146     },
34147     
34148     onRegionCollapsed : function(region){
34149         this.state[region.getPosition()].collapsed = true;
34150         this.storeState();
34151     },
34152     
34153     onRegionExpanded : function(region){
34154         this.state[region.getPosition()].collapsed = false;
34155         this.storeState();
34156     }
34157 };/*
34158  * Based on:
34159  * Ext JS Library 1.1.1
34160  * Copyright(c) 2006-2007, Ext JS, LLC.
34161  *
34162  * Originally Released Under LGPL - original licence link has changed is not relivant.
34163  *
34164  * Fork - LGPL
34165  * <script type="text/javascript">
34166  */
34167 /**
34168  * @class Roo.ContentPanel
34169  * @extends Roo.util.Observable
34170  * A basic ContentPanel element.
34171  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
34172  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
34173  * @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
34174  * @cfg {Boolean}   closable      True if the panel can be closed/removed
34175  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
34176  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
34177  * @cfg {Toolbar}   toolbar       A toolbar for this panel
34178  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
34179  * @cfg {String} title          The title for this panel
34180  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
34181  * @cfg {String} url            Calls {@link #setUrl} with this value
34182  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
34183  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
34184  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
34185  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
34186
34187  * @constructor
34188  * Create a new ContentPanel.
34189  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
34190  * @param {String/Object} config A string to set only the title or a config object
34191  * @param {String} content (optional) Set the HTML content for this panel
34192  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
34193  */
34194 Roo.ContentPanel = function(el, config, content){
34195     
34196      
34197     /*
34198     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
34199         config = el;
34200         el = Roo.id();
34201     }
34202     if (config && config.parentLayout) { 
34203         el = config.parentLayout.el.createChild(); 
34204     }
34205     */
34206     if(el.autoCreate){ // xtype is available if this is called from factory
34207         config = el;
34208         el = Roo.id();
34209     }
34210     this.el = Roo.get(el);
34211     if(!this.el && config && config.autoCreate){
34212         if(typeof config.autoCreate == "object"){
34213             if(!config.autoCreate.id){
34214                 config.autoCreate.id = config.id||el;
34215             }
34216             this.el = Roo.DomHelper.append(document.body,
34217                         config.autoCreate, true);
34218         }else{
34219             this.el = Roo.DomHelper.append(document.body,
34220                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
34221         }
34222     }
34223     this.closable = false;
34224     this.loaded = false;
34225     this.active = false;
34226     if(typeof config == "string"){
34227         this.title = config;
34228     }else{
34229         Roo.apply(this, config);
34230     }
34231     
34232     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
34233         this.wrapEl = this.el.wrap();
34234         this.toolbar.container = this.el.insertSibling(false, 'before');
34235         this.toolbar = new Roo.Toolbar(this.toolbar);
34236     }
34237     
34238     // xtype created footer. - not sure if will work as we normally have to render first..
34239     if (this.footer && !this.footer.el && this.footer.xtype) {
34240         if (!this.wrapEl) {
34241             this.wrapEl = this.el.wrap();
34242         }
34243     
34244         this.footer.container = this.wrapEl.createChild();
34245          
34246         this.footer = Roo.factory(this.footer, Roo);
34247         
34248     }
34249     
34250     if(this.resizeEl){
34251         this.resizeEl = Roo.get(this.resizeEl, true);
34252     }else{
34253         this.resizeEl = this.el;
34254     }
34255     // handle view.xtype
34256     
34257  
34258     
34259     
34260     this.addEvents({
34261         /**
34262          * @event activate
34263          * Fires when this panel is activated. 
34264          * @param {Roo.ContentPanel} this
34265          */
34266         "activate" : true,
34267         /**
34268          * @event deactivate
34269          * Fires when this panel is activated. 
34270          * @param {Roo.ContentPanel} this
34271          */
34272         "deactivate" : true,
34273
34274         /**
34275          * @event resize
34276          * Fires when this panel is resized if fitToFrame is true.
34277          * @param {Roo.ContentPanel} this
34278          * @param {Number} width The width after any component adjustments
34279          * @param {Number} height The height after any component adjustments
34280          */
34281         "resize" : true,
34282         
34283          /**
34284          * @event render
34285          * Fires when this tab is created
34286          * @param {Roo.ContentPanel} this
34287          */
34288         "render" : true
34289         
34290         
34291         
34292     });
34293     
34294
34295     
34296     
34297     if(this.autoScroll){
34298         this.resizeEl.setStyle("overflow", "auto");
34299     } else {
34300         // fix randome scrolling
34301         this.el.on('scroll', function() {
34302             Roo.log('fix random scolling');
34303             this.scrollTo('top',0); 
34304         });
34305     }
34306     content = content || this.content;
34307     if(content){
34308         this.setContent(content);
34309     }
34310     if(config && config.url){
34311         this.setUrl(this.url, this.params, this.loadOnce);
34312     }
34313     
34314     
34315     
34316     Roo.ContentPanel.superclass.constructor.call(this);
34317     
34318     if (this.view && typeof(this.view.xtype) != 'undefined') {
34319         this.view.el = this.el.appendChild(document.createElement("div"));
34320         this.view = Roo.factory(this.view); 
34321         this.view.render  &&  this.view.render(false, '');  
34322     }
34323     
34324     
34325     this.fireEvent('render', this);
34326 };
34327
34328 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
34329     tabTip:'',
34330     setRegion : function(region){
34331         this.region = region;
34332         if(region){
34333            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
34334         }else{
34335            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
34336         } 
34337     },
34338     
34339     /**
34340      * Returns the toolbar for this Panel if one was configured. 
34341      * @return {Roo.Toolbar} 
34342      */
34343     getToolbar : function(){
34344         return this.toolbar;
34345     },
34346     
34347     setActiveState : function(active){
34348         this.active = active;
34349         if(!active){
34350             this.fireEvent("deactivate", this);
34351         }else{
34352             this.fireEvent("activate", this);
34353         }
34354     },
34355     /**
34356      * Updates this panel's element
34357      * @param {String} content The new content
34358      * @param {Boolean} loadScripts (optional) true to look for and process scripts
34359     */
34360     setContent : function(content, loadScripts){
34361         this.el.update(content, loadScripts);
34362     },
34363
34364     ignoreResize : function(w, h){
34365         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
34366             return true;
34367         }else{
34368             this.lastSize = {width: w, height: h};
34369             return false;
34370         }
34371     },
34372     /**
34373      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
34374      * @return {Roo.UpdateManager} The UpdateManager
34375      */
34376     getUpdateManager : function(){
34377         return this.el.getUpdateManager();
34378     },
34379      /**
34380      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
34381      * @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:
34382 <pre><code>
34383 panel.load({
34384     url: "your-url.php",
34385     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
34386     callback: yourFunction,
34387     scope: yourObject, //(optional scope)
34388     discardUrl: false,
34389     nocache: false,
34390     text: "Loading...",
34391     timeout: 30,
34392     scripts: false
34393 });
34394 </code></pre>
34395      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
34396      * 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.
34397      * @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}
34398      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
34399      * @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.
34400      * @return {Roo.ContentPanel} this
34401      */
34402     load : function(){
34403         var um = this.el.getUpdateManager();
34404         um.update.apply(um, arguments);
34405         return this;
34406     },
34407
34408
34409     /**
34410      * 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.
34411      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
34412      * @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)
34413      * @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)
34414      * @return {Roo.UpdateManager} The UpdateManager
34415      */
34416     setUrl : function(url, params, loadOnce){
34417         if(this.refreshDelegate){
34418             this.removeListener("activate", this.refreshDelegate);
34419         }
34420         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
34421         this.on("activate", this.refreshDelegate);
34422         return this.el.getUpdateManager();
34423     },
34424     
34425     _handleRefresh : function(url, params, loadOnce){
34426         if(!loadOnce || !this.loaded){
34427             var updater = this.el.getUpdateManager();
34428             updater.update(url, params, this._setLoaded.createDelegate(this));
34429         }
34430     },
34431     
34432     _setLoaded : function(){
34433         this.loaded = true;
34434     }, 
34435     
34436     /**
34437      * Returns this panel's id
34438      * @return {String} 
34439      */
34440     getId : function(){
34441         return this.el.id;
34442     },
34443     
34444     /** 
34445      * Returns this panel's element - used by regiosn to add.
34446      * @return {Roo.Element} 
34447      */
34448     getEl : function(){
34449         return this.wrapEl || this.el;
34450     },
34451     
34452     adjustForComponents : function(width, height)
34453     {
34454         //Roo.log('adjustForComponents ');
34455         if(this.resizeEl != this.el){
34456             width -= this.el.getFrameWidth('lr');
34457             height -= this.el.getFrameWidth('tb');
34458         }
34459         if(this.toolbar){
34460             var te = this.toolbar.getEl();
34461             height -= te.getHeight();
34462             te.setWidth(width);
34463         }
34464         if(this.footer){
34465             var te = this.footer.getEl();
34466             Roo.log("footer:" + te.getHeight());
34467             
34468             height -= te.getHeight();
34469             te.setWidth(width);
34470         }
34471         
34472         
34473         if(this.adjustments){
34474             width += this.adjustments[0];
34475             height += this.adjustments[1];
34476         }
34477         return {"width": width, "height": height};
34478     },
34479     
34480     setSize : function(width, height){
34481         if(this.fitToFrame && !this.ignoreResize(width, height)){
34482             if(this.fitContainer && this.resizeEl != this.el){
34483                 this.el.setSize(width, height);
34484             }
34485             var size = this.adjustForComponents(width, height);
34486             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
34487             this.fireEvent('resize', this, size.width, size.height);
34488         }
34489     },
34490     
34491     /**
34492      * Returns this panel's title
34493      * @return {String} 
34494      */
34495     getTitle : function(){
34496         return this.title;
34497     },
34498     
34499     /**
34500      * Set this panel's title
34501      * @param {String} title
34502      */
34503     setTitle : function(title){
34504         this.title = title;
34505         if(this.region){
34506             this.region.updatePanelTitle(this, title);
34507         }
34508     },
34509     
34510     /**
34511      * Returns true is this panel was configured to be closable
34512      * @return {Boolean} 
34513      */
34514     isClosable : function(){
34515         return this.closable;
34516     },
34517     
34518     beforeSlide : function(){
34519         this.el.clip();
34520         this.resizeEl.clip();
34521     },
34522     
34523     afterSlide : function(){
34524         this.el.unclip();
34525         this.resizeEl.unclip();
34526     },
34527     
34528     /**
34529      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
34530      *   Will fail silently if the {@link #setUrl} method has not been called.
34531      *   This does not activate the panel, just updates its content.
34532      */
34533     refresh : function(){
34534         if(this.refreshDelegate){
34535            this.loaded = false;
34536            this.refreshDelegate();
34537         }
34538     },
34539     
34540     /**
34541      * Destroys this panel
34542      */
34543     destroy : function(){
34544         this.el.removeAllListeners();
34545         var tempEl = document.createElement("span");
34546         tempEl.appendChild(this.el.dom);
34547         tempEl.innerHTML = "";
34548         this.el.remove();
34549         this.el = null;
34550     },
34551     
34552     /**
34553      * form - if the content panel contains a form - this is a reference to it.
34554      * @type {Roo.form.Form}
34555      */
34556     form : false,
34557     /**
34558      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
34559      *    This contains a reference to it.
34560      * @type {Roo.View}
34561      */
34562     view : false,
34563     
34564       /**
34565      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
34566      * <pre><code>
34567
34568 layout.addxtype({
34569        xtype : 'Form',
34570        items: [ .... ]
34571    }
34572 );
34573
34574 </code></pre>
34575      * @param {Object} cfg Xtype definition of item to add.
34576      */
34577     
34578     addxtype : function(cfg) {
34579         // add form..
34580         if (cfg.xtype.match(/^Form$/)) {
34581             
34582             var el;
34583             //if (this.footer) {
34584             //    el = this.footer.container.insertSibling(false, 'before');
34585             //} else {
34586                 el = this.el.createChild();
34587             //}
34588
34589             this.form = new  Roo.form.Form(cfg);
34590             
34591             
34592             if ( this.form.allItems.length) this.form.render(el.dom);
34593             return this.form;
34594         }
34595         // should only have one of theses..
34596         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
34597             // views.. should not be just added - used named prop 'view''
34598             
34599             cfg.el = this.el.appendChild(document.createElement("div"));
34600             // factory?
34601             
34602             var ret = new Roo.factory(cfg);
34603              
34604              ret.render && ret.render(false, ''); // render blank..
34605             this.view = ret;
34606             return ret;
34607         }
34608         return false;
34609     }
34610 });
34611
34612 /**
34613  * @class Roo.GridPanel
34614  * @extends Roo.ContentPanel
34615  * @constructor
34616  * Create a new GridPanel.
34617  * @param {Roo.grid.Grid} grid The grid for this panel
34618  * @param {String/Object} config A string to set only the panel's title, or a config object
34619  */
34620 Roo.GridPanel = function(grid, config){
34621     
34622   
34623     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
34624         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
34625         
34626     this.wrapper.dom.appendChild(grid.getGridEl().dom);
34627     
34628     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
34629     
34630     if(this.toolbar){
34631         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
34632     }
34633     // xtype created footer. - not sure if will work as we normally have to render first..
34634     if (this.footer && !this.footer.el && this.footer.xtype) {
34635         
34636         this.footer.container = this.grid.getView().getFooterPanel(true);
34637         this.footer.dataSource = this.grid.dataSource;
34638         this.footer = Roo.factory(this.footer, Roo);
34639         
34640     }
34641     
34642     grid.monitorWindowResize = false; // turn off autosizing
34643     grid.autoHeight = false;
34644     grid.autoWidth = false;
34645     this.grid = grid;
34646     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
34647 };
34648
34649 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
34650     getId : function(){
34651         return this.grid.id;
34652     },
34653     
34654     /**
34655      * Returns the grid for this panel
34656      * @return {Roo.grid.Grid} 
34657      */
34658     getGrid : function(){
34659         return this.grid;    
34660     },
34661     
34662     setSize : function(width, height){
34663         if(!this.ignoreResize(width, height)){
34664             var grid = this.grid;
34665             var size = this.adjustForComponents(width, height);
34666             grid.getGridEl().setSize(size.width, size.height);
34667             grid.autoSize();
34668         }
34669     },
34670     
34671     beforeSlide : function(){
34672         this.grid.getView().scroller.clip();
34673     },
34674     
34675     afterSlide : function(){
34676         this.grid.getView().scroller.unclip();
34677     },
34678     
34679     destroy : function(){
34680         this.grid.destroy();
34681         delete this.grid;
34682         Roo.GridPanel.superclass.destroy.call(this); 
34683     }
34684 });
34685
34686
34687 /**
34688  * @class Roo.NestedLayoutPanel
34689  * @extends Roo.ContentPanel
34690  * @constructor
34691  * Create a new NestedLayoutPanel.
34692  * 
34693  * 
34694  * @param {Roo.BorderLayout} layout The layout for this panel
34695  * @param {String/Object} config A string to set only the title or a config object
34696  */
34697 Roo.NestedLayoutPanel = function(layout, config)
34698 {
34699     // construct with only one argument..
34700     /* FIXME - implement nicer consturctors
34701     if (layout.layout) {
34702         config = layout;
34703         layout = config.layout;
34704         delete config.layout;
34705     }
34706     if (layout.xtype && !layout.getEl) {
34707         // then layout needs constructing..
34708         layout = Roo.factory(layout, Roo);
34709     }
34710     */
34711     
34712     
34713     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
34714     
34715     layout.monitorWindowResize = false; // turn off autosizing
34716     this.layout = layout;
34717     this.layout.getEl().addClass("x-layout-nested-layout");
34718     
34719     
34720     
34721     
34722 };
34723
34724 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
34725
34726     setSize : function(width, height){
34727         if(!this.ignoreResize(width, height)){
34728             var size = this.adjustForComponents(width, height);
34729             var el = this.layout.getEl();
34730             el.setSize(size.width, size.height);
34731             var touch = el.dom.offsetWidth;
34732             this.layout.layout();
34733             // ie requires a double layout on the first pass
34734             if(Roo.isIE && !this.initialized){
34735                 this.initialized = true;
34736                 this.layout.layout();
34737             }
34738         }
34739     },
34740     
34741     // activate all subpanels if not currently active..
34742     
34743     setActiveState : function(active){
34744         this.active = active;
34745         if(!active){
34746             this.fireEvent("deactivate", this);
34747             return;
34748         }
34749         
34750         this.fireEvent("activate", this);
34751         // not sure if this should happen before or after..
34752         if (!this.layout) {
34753             return; // should not happen..
34754         }
34755         var reg = false;
34756         for (var r in this.layout.regions) {
34757             reg = this.layout.getRegion(r);
34758             if (reg.getActivePanel()) {
34759                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
34760                 reg.setActivePanel(reg.getActivePanel());
34761                 continue;
34762             }
34763             if (!reg.panels.length) {
34764                 continue;
34765             }
34766             reg.showPanel(reg.getPanel(0));
34767         }
34768         
34769         
34770         
34771         
34772     },
34773     
34774     /**
34775      * Returns the nested BorderLayout for this panel
34776      * @return {Roo.BorderLayout} 
34777      */
34778     getLayout : function(){
34779         return this.layout;
34780     },
34781     
34782      /**
34783      * Adds a xtype elements to the layout of the nested panel
34784      * <pre><code>
34785
34786 panel.addxtype({
34787        xtype : 'ContentPanel',
34788        region: 'west',
34789        items: [ .... ]
34790    }
34791 );
34792
34793 panel.addxtype({
34794         xtype : 'NestedLayoutPanel',
34795         region: 'west',
34796         layout: {
34797            center: { },
34798            west: { }   
34799         },
34800         items : [ ... list of content panels or nested layout panels.. ]
34801    }
34802 );
34803 </code></pre>
34804      * @param {Object} cfg Xtype definition of item to add.
34805      */
34806     addxtype : function(cfg) {
34807         return this.layout.addxtype(cfg);
34808     
34809     }
34810 });
34811
34812 Roo.ScrollPanel = function(el, config, content){
34813     config = config || {};
34814     config.fitToFrame = true;
34815     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
34816     
34817     this.el.dom.style.overflow = "hidden";
34818     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
34819     this.el.removeClass("x-layout-inactive-content");
34820     this.el.on("mousewheel", this.onWheel, this);
34821
34822     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
34823     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
34824     up.unselectable(); down.unselectable();
34825     up.on("click", this.scrollUp, this);
34826     down.on("click", this.scrollDown, this);
34827     up.addClassOnOver("x-scroller-btn-over");
34828     down.addClassOnOver("x-scroller-btn-over");
34829     up.addClassOnClick("x-scroller-btn-click");
34830     down.addClassOnClick("x-scroller-btn-click");
34831     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
34832
34833     this.resizeEl = this.el;
34834     this.el = wrap; this.up = up; this.down = down;
34835 };
34836
34837 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
34838     increment : 100,
34839     wheelIncrement : 5,
34840     scrollUp : function(){
34841         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
34842     },
34843
34844     scrollDown : function(){
34845         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
34846     },
34847
34848     afterScroll : function(){
34849         var el = this.resizeEl;
34850         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
34851         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
34852         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
34853     },
34854
34855     setSize : function(){
34856         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
34857         this.afterScroll();
34858     },
34859
34860     onWheel : function(e){
34861         var d = e.getWheelDelta();
34862         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
34863         this.afterScroll();
34864         e.stopEvent();
34865     },
34866
34867     setContent : function(content, loadScripts){
34868         this.resizeEl.update(content, loadScripts);
34869     }
34870
34871 });
34872
34873
34874
34875
34876
34877
34878
34879
34880
34881 /**
34882  * @class Roo.TreePanel
34883  * @extends Roo.ContentPanel
34884  * @constructor
34885  * Create a new TreePanel. - defaults to fit/scoll contents.
34886  * @param {String/Object} config A string to set only the panel's title, or a config object
34887  * @cfg {Roo.tree.TreePanel} tree The tree TreePanel, with config etc.
34888  */
34889 Roo.TreePanel = function(config){
34890     var el = config.el;
34891     var tree = config.tree;
34892     delete config.tree; 
34893     delete config.el; // hopefull!
34894     
34895     // wrapper for IE7 strict & safari scroll issue
34896     
34897     var treeEl = el.createChild();
34898     config.resizeEl = treeEl;
34899     
34900     
34901     
34902     Roo.TreePanel.superclass.constructor.call(this, el, config);
34903  
34904  
34905     this.tree = new Roo.tree.TreePanel(treeEl , tree);
34906     //console.log(tree);
34907     this.on('activate', function()
34908     {
34909         if (this.tree.rendered) {
34910             return;
34911         }
34912         //console.log('render tree');
34913         this.tree.render();
34914     });
34915     // this should not be needed.. - it's actually the 'el' that resizes?
34916     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
34917     
34918     //this.on('resize',  function (cp, w, h) {
34919     //        this.tree.innerCt.setWidth(w);
34920     //        this.tree.innerCt.setHeight(h);
34921     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
34922     //});
34923
34924         
34925     
34926 };
34927
34928 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
34929     fitToFrame : true,
34930     autoScroll : true
34931 });
34932
34933
34934
34935
34936
34937
34938
34939
34940
34941
34942
34943 /*
34944  * Based on:
34945  * Ext JS Library 1.1.1
34946  * Copyright(c) 2006-2007, Ext JS, LLC.
34947  *
34948  * Originally Released Under LGPL - original licence link has changed is not relivant.
34949  *
34950  * Fork - LGPL
34951  * <script type="text/javascript">
34952  */
34953  
34954
34955 /**
34956  * @class Roo.ReaderLayout
34957  * @extends Roo.BorderLayout
34958  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
34959  * center region containing two nested regions (a top one for a list view and one for item preview below),
34960  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
34961  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
34962  * expedites the setup of the overall layout and regions for this common application style.
34963  * Example:
34964  <pre><code>
34965 var reader = new Roo.ReaderLayout();
34966 var CP = Roo.ContentPanel;  // shortcut for adding
34967
34968 reader.beginUpdate();
34969 reader.add("north", new CP("north", "North"));
34970 reader.add("west", new CP("west", {title: "West"}));
34971 reader.add("east", new CP("east", {title: "East"}));
34972
34973 reader.regions.listView.add(new CP("listView", "List"));
34974 reader.regions.preview.add(new CP("preview", "Preview"));
34975 reader.endUpdate();
34976 </code></pre>
34977 * @constructor
34978 * Create a new ReaderLayout
34979 * @param {Object} config Configuration options
34980 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
34981 * document.body if omitted)
34982 */
34983 Roo.ReaderLayout = function(config, renderTo){
34984     var c = config || {size:{}};
34985     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
34986         north: c.north !== false ? Roo.apply({
34987             split:false,
34988             initialSize: 32,
34989             titlebar: false
34990         }, c.north) : false,
34991         west: c.west !== false ? Roo.apply({
34992             split:true,
34993             initialSize: 200,
34994             minSize: 175,
34995             maxSize: 400,
34996             titlebar: true,
34997             collapsible: true,
34998             animate: true,
34999             margins:{left:5,right:0,bottom:5,top:5},
35000             cmargins:{left:5,right:5,bottom:5,top:5}
35001         }, c.west) : false,
35002         east: c.east !== false ? Roo.apply({
35003             split:true,
35004             initialSize: 200,
35005             minSize: 175,
35006             maxSize: 400,
35007             titlebar: true,
35008             collapsible: true,
35009             animate: true,
35010             margins:{left:0,right:5,bottom:5,top:5},
35011             cmargins:{left:5,right:5,bottom:5,top:5}
35012         }, c.east) : false,
35013         center: Roo.apply({
35014             tabPosition: 'top',
35015             autoScroll:false,
35016             closeOnTab: true,
35017             titlebar:false,
35018             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
35019         }, c.center)
35020     });
35021
35022     this.el.addClass('x-reader');
35023
35024     this.beginUpdate();
35025
35026     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
35027         south: c.preview !== false ? Roo.apply({
35028             split:true,
35029             initialSize: 200,
35030             minSize: 100,
35031             autoScroll:true,
35032             collapsible:true,
35033             titlebar: true,
35034             cmargins:{top:5,left:0, right:0, bottom:0}
35035         }, c.preview) : false,
35036         center: Roo.apply({
35037             autoScroll:false,
35038             titlebar:false,
35039             minHeight:200
35040         }, c.listView)
35041     });
35042     this.add('center', new Roo.NestedLayoutPanel(inner,
35043             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
35044
35045     this.endUpdate();
35046
35047     this.regions.preview = inner.getRegion('south');
35048     this.regions.listView = inner.getRegion('center');
35049 };
35050
35051 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
35052  * Based on:
35053  * Ext JS Library 1.1.1
35054  * Copyright(c) 2006-2007, Ext JS, LLC.
35055  *
35056  * Originally Released Under LGPL - original licence link has changed is not relivant.
35057  *
35058  * Fork - LGPL
35059  * <script type="text/javascript">
35060  */
35061  
35062 /**
35063  * @class Roo.grid.Grid
35064  * @extends Roo.util.Observable
35065  * This class represents the primary interface of a component based grid control.
35066  * <br><br>Usage:<pre><code>
35067  var grid = new Roo.grid.Grid("my-container-id", {
35068      ds: myDataStore,
35069      cm: myColModel,
35070      selModel: mySelectionModel,
35071      autoSizeColumns: true,
35072      monitorWindowResize: false,
35073      trackMouseOver: true
35074  });
35075  // set any options
35076  grid.render();
35077  * </code></pre>
35078  * <b>Common Problems:</b><br/>
35079  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
35080  * element will correct this<br/>
35081  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
35082  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
35083  * are unpredictable.<br/>
35084  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
35085  * grid to calculate dimensions/offsets.<br/>
35086   * @constructor
35087  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
35088  * The container MUST have some type of size defined for the grid to fill. The container will be
35089  * automatically set to position relative if it isn't already.
35090  * @param {Object} config A config object that sets properties on this grid.
35091  */
35092 Roo.grid.Grid = function(container, config){
35093         // initialize the container
35094         this.container = Roo.get(container);
35095         this.container.update("");
35096         this.container.setStyle("overflow", "hidden");
35097     this.container.addClass('x-grid-container');
35098
35099     this.id = this.container.id;
35100
35101     Roo.apply(this, config);
35102     // check and correct shorthanded configs
35103     if(this.ds){
35104         this.dataSource = this.ds;
35105         delete this.ds;
35106     }
35107     if(this.cm){
35108         this.colModel = this.cm;
35109         delete this.cm;
35110     }
35111     if(this.sm){
35112         this.selModel = this.sm;
35113         delete this.sm;
35114     }
35115
35116     if (this.selModel) {
35117         this.selModel = Roo.factory(this.selModel, Roo.grid);
35118         this.sm = this.selModel;
35119         this.sm.xmodule = this.xmodule || false;
35120     }
35121     if (typeof(this.colModel.config) == 'undefined') {
35122         this.colModel = new Roo.grid.ColumnModel(this.colModel);
35123         this.cm = this.colModel;
35124         this.cm.xmodule = this.xmodule || false;
35125     }
35126     if (this.dataSource) {
35127         this.dataSource= Roo.factory(this.dataSource, Roo.data);
35128         this.ds = this.dataSource;
35129         this.ds.xmodule = this.xmodule || false;
35130          
35131     }
35132     
35133     
35134     
35135     if(this.width){
35136         this.container.setWidth(this.width);
35137     }
35138
35139     if(this.height){
35140         this.container.setHeight(this.height);
35141     }
35142     /** @private */
35143         this.addEvents({
35144         // raw events
35145         /**
35146          * @event click
35147          * The raw click event for the entire grid.
35148          * @param {Roo.EventObject} e
35149          */
35150         "click" : true,
35151         /**
35152          * @event dblclick
35153          * The raw dblclick event for the entire grid.
35154          * @param {Roo.EventObject} e
35155          */
35156         "dblclick" : true,
35157         /**
35158          * @event contextmenu
35159          * The raw contextmenu event for the entire grid.
35160          * @param {Roo.EventObject} e
35161          */
35162         "contextmenu" : true,
35163         /**
35164          * @event mousedown
35165          * The raw mousedown event for the entire grid.
35166          * @param {Roo.EventObject} e
35167          */
35168         "mousedown" : true,
35169         /**
35170          * @event mouseup
35171          * The raw mouseup event for the entire grid.
35172          * @param {Roo.EventObject} e
35173          */
35174         "mouseup" : true,
35175         /**
35176          * @event mouseover
35177          * The raw mouseover event for the entire grid.
35178          * @param {Roo.EventObject} e
35179          */
35180         "mouseover" : true,
35181         /**
35182          * @event mouseout
35183          * The raw mouseout event for the entire grid.
35184          * @param {Roo.EventObject} e
35185          */
35186         "mouseout" : true,
35187         /**
35188          * @event keypress
35189          * The raw keypress event for the entire grid.
35190          * @param {Roo.EventObject} e
35191          */
35192         "keypress" : true,
35193         /**
35194          * @event keydown
35195          * The raw keydown event for the entire grid.
35196          * @param {Roo.EventObject} e
35197          */
35198         "keydown" : true,
35199
35200         // custom events
35201
35202         /**
35203          * @event cellclick
35204          * Fires when a cell is clicked
35205          * @param {Grid} this
35206          * @param {Number} rowIndex
35207          * @param {Number} columnIndex
35208          * @param {Roo.EventObject} e
35209          */
35210         "cellclick" : true,
35211         /**
35212          * @event celldblclick
35213          * Fires when a cell is double clicked
35214          * @param {Grid} this
35215          * @param {Number} rowIndex
35216          * @param {Number} columnIndex
35217          * @param {Roo.EventObject} e
35218          */
35219         "celldblclick" : true,
35220         /**
35221          * @event rowclick
35222          * Fires when a row is clicked
35223          * @param {Grid} this
35224          * @param {Number} rowIndex
35225          * @param {Roo.EventObject} e
35226          */
35227         "rowclick" : true,
35228         /**
35229          * @event rowdblclick
35230          * Fires when a row is double clicked
35231          * @param {Grid} this
35232          * @param {Number} rowIndex
35233          * @param {Roo.EventObject} e
35234          */
35235         "rowdblclick" : true,
35236         /**
35237          * @event headerclick
35238          * Fires when a header is clicked
35239          * @param {Grid} this
35240          * @param {Number} columnIndex
35241          * @param {Roo.EventObject} e
35242          */
35243         "headerclick" : true,
35244         /**
35245          * @event headerdblclick
35246          * Fires when a header cell is double clicked
35247          * @param {Grid} this
35248          * @param {Number} columnIndex
35249          * @param {Roo.EventObject} e
35250          */
35251         "headerdblclick" : true,
35252         /**
35253          * @event rowcontextmenu
35254          * Fires when a row is right clicked
35255          * @param {Grid} this
35256          * @param {Number} rowIndex
35257          * @param {Roo.EventObject} e
35258          */
35259         "rowcontextmenu" : true,
35260         /**
35261          * @event cellcontextmenu
35262          * Fires when a cell is right clicked
35263          * @param {Grid} this
35264          * @param {Number} rowIndex
35265          * @param {Number} cellIndex
35266          * @param {Roo.EventObject} e
35267          */
35268          "cellcontextmenu" : true,
35269         /**
35270          * @event headercontextmenu
35271          * Fires when a header is right clicked
35272          * @param {Grid} this
35273          * @param {Number} columnIndex
35274          * @param {Roo.EventObject} e
35275          */
35276         "headercontextmenu" : true,
35277         /**
35278          * @event bodyscroll
35279          * Fires when the body element is scrolled
35280          * @param {Number} scrollLeft
35281          * @param {Number} scrollTop
35282          */
35283         "bodyscroll" : true,
35284         /**
35285          * @event columnresize
35286          * Fires when the user resizes a column
35287          * @param {Number} columnIndex
35288          * @param {Number} newSize
35289          */
35290         "columnresize" : true,
35291         /**
35292          * @event columnmove
35293          * Fires when the user moves a column
35294          * @param {Number} oldIndex
35295          * @param {Number} newIndex
35296          */
35297         "columnmove" : true,
35298         /**
35299          * @event startdrag
35300          * Fires when row(s) start being dragged
35301          * @param {Grid} this
35302          * @param {Roo.GridDD} dd The drag drop object
35303          * @param {event} e The raw browser event
35304          */
35305         "startdrag" : true,
35306         /**
35307          * @event enddrag
35308          * Fires when a drag operation is complete
35309          * @param {Grid} this
35310          * @param {Roo.GridDD} dd The drag drop object
35311          * @param {event} e The raw browser event
35312          */
35313         "enddrag" : true,
35314         /**
35315          * @event dragdrop
35316          * Fires when dragged row(s) are dropped on a valid DD target
35317          * @param {Grid} this
35318          * @param {Roo.GridDD} dd The drag drop object
35319          * @param {String} targetId The target drag drop object
35320          * @param {event} e The raw browser event
35321          */
35322         "dragdrop" : true,
35323         /**
35324          * @event dragover
35325          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
35326          * @param {Grid} this
35327          * @param {Roo.GridDD} dd The drag drop object
35328          * @param {String} targetId The target drag drop object
35329          * @param {event} e The raw browser event
35330          */
35331         "dragover" : true,
35332         /**
35333          * @event dragenter
35334          *  Fires when the dragged row(s) first cross another DD target while being dragged
35335          * @param {Grid} this
35336          * @param {Roo.GridDD} dd The drag drop object
35337          * @param {String} targetId The target drag drop object
35338          * @param {event} e The raw browser event
35339          */
35340         "dragenter" : true,
35341         /**
35342          * @event dragout
35343          * Fires when the dragged row(s) leave another DD target while being dragged
35344          * @param {Grid} this
35345          * @param {Roo.GridDD} dd The drag drop object
35346          * @param {String} targetId The target drag drop object
35347          * @param {event} e The raw browser event
35348          */
35349         "dragout" : true,
35350         /**
35351          * @event rowclass
35352          * Fires when a row is rendered, so you can change add a style to it.
35353          * @param {GridView} gridview   The grid view
35354          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
35355          */
35356         'rowclass' : true,
35357
35358         /**
35359          * @event render
35360          * Fires when the grid is rendered
35361          * @param {Grid} grid
35362          */
35363         'render' : true
35364     });
35365
35366     Roo.grid.Grid.superclass.constructor.call(this);
35367 };
35368 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
35369     
35370     /**
35371      * @cfg {String} ddGroup - drag drop group.
35372      */
35373
35374     /**
35375      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
35376      */
35377     minColumnWidth : 25,
35378
35379     /**
35380      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
35381      * <b>on initial render.</b> It is more efficient to explicitly size the columns
35382      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
35383      */
35384     autoSizeColumns : false,
35385
35386     /**
35387      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
35388      */
35389     autoSizeHeaders : true,
35390
35391     /**
35392      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
35393      */
35394     monitorWindowResize : true,
35395
35396     /**
35397      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
35398      * rows measured to get a columns size. Default is 0 (all rows).
35399      */
35400     maxRowsToMeasure : 0,
35401
35402     /**
35403      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
35404      */
35405     trackMouseOver : true,
35406
35407     /**
35408     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
35409     */
35410     
35411     /**
35412     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
35413     */
35414     enableDragDrop : false,
35415     
35416     /**
35417     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
35418     */
35419     enableColumnMove : true,
35420     
35421     /**
35422     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
35423     */
35424     enableColumnHide : true,
35425     
35426     /**
35427     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
35428     */
35429     enableRowHeightSync : false,
35430     
35431     /**
35432     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
35433     */
35434     stripeRows : true,
35435     
35436     /**
35437     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
35438     */
35439     autoHeight : false,
35440
35441     /**
35442      * @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.
35443      */
35444     autoExpandColumn : false,
35445
35446     /**
35447     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
35448     * Default is 50.
35449     */
35450     autoExpandMin : 50,
35451
35452     /**
35453     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
35454     */
35455     autoExpandMax : 1000,
35456
35457     /**
35458     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
35459     */
35460     view : null,
35461
35462     /**
35463     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
35464     */
35465     loadMask : false,
35466     /**
35467     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
35468     */
35469     dropTarget: false,
35470     
35471    
35472     
35473     // private
35474     rendered : false,
35475
35476     /**
35477     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
35478     * of a fixed width. Default is false.
35479     */
35480     /**
35481     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
35482     */
35483     /**
35484      * Called once after all setup has been completed and the grid is ready to be rendered.
35485      * @return {Roo.grid.Grid} this
35486      */
35487     render : function()
35488     {
35489         var c = this.container;
35490         // try to detect autoHeight/width mode
35491         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
35492             this.autoHeight = true;
35493         }
35494         var view = this.getView();
35495         view.init(this);
35496
35497         c.on("click", this.onClick, this);
35498         c.on("dblclick", this.onDblClick, this);
35499         c.on("contextmenu", this.onContextMenu, this);
35500         c.on("keydown", this.onKeyDown, this);
35501         if (Roo.isTouch) {
35502             c.on("touchstart", this.onTouchStart, this);
35503         }
35504
35505         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
35506
35507         this.getSelectionModel().init(this);
35508
35509         view.render();
35510
35511         if(this.loadMask){
35512             this.loadMask = new Roo.LoadMask(this.container,
35513                     Roo.apply({store:this.dataSource}, this.loadMask));
35514         }
35515         
35516         
35517         if (this.toolbar && this.toolbar.xtype) {
35518             this.toolbar.container = this.getView().getHeaderPanel(true);
35519             this.toolbar = new Roo.Toolbar(this.toolbar);
35520         }
35521         if (this.footer && this.footer.xtype) {
35522             this.footer.dataSource = this.getDataSource();
35523             this.footer.container = this.getView().getFooterPanel(true);
35524             this.footer = Roo.factory(this.footer, Roo);
35525         }
35526         if (this.dropTarget && this.dropTarget.xtype) {
35527             delete this.dropTarget.xtype;
35528             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
35529         }
35530         
35531         
35532         this.rendered = true;
35533         this.fireEvent('render', this);
35534         return this;
35535     },
35536
35537         /**
35538          * Reconfigures the grid to use a different Store and Column Model.
35539          * The View will be bound to the new objects and refreshed.
35540          * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
35541          * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
35542          */
35543     reconfigure : function(dataSource, colModel){
35544         if(this.loadMask){
35545             this.loadMask.destroy();
35546             this.loadMask = new Roo.LoadMask(this.container,
35547                     Roo.apply({store:dataSource}, this.loadMask));
35548         }
35549         this.view.bind(dataSource, colModel);
35550         this.dataSource = dataSource;
35551         this.colModel = colModel;
35552         this.view.refresh(true);
35553     },
35554
35555     // private
35556     onKeyDown : function(e){
35557         this.fireEvent("keydown", e);
35558     },
35559
35560     /**
35561      * Destroy this grid.
35562      * @param {Boolean} removeEl True to remove the element
35563      */
35564     destroy : function(removeEl, keepListeners){
35565         if(this.loadMask){
35566             this.loadMask.destroy();
35567         }
35568         var c = this.container;
35569         c.removeAllListeners();
35570         this.view.destroy();
35571         this.colModel.purgeListeners();
35572         if(!keepListeners){
35573             this.purgeListeners();
35574         }
35575         c.update("");
35576         if(removeEl === true){
35577             c.remove();
35578         }
35579     },
35580
35581     // private
35582     processEvent : function(name, e){
35583         // does this fire select???
35584         Roo.log('grid:processEvent '  + name);
35585         
35586         if (name != 'touchstart' ) {
35587             this.fireEvent(name, e);    
35588         }
35589         
35590         var t = e.getTarget();
35591         var v = this.view;
35592         var header = v.findHeaderIndex(t);
35593         if(header !== false){
35594             var ename = name == 'touchstart' ? 'click' : name;
35595              
35596             this.fireEvent("header" + ename, this, header, e);
35597         }else{
35598             var row = v.findRowIndex(t);
35599             var cell = v.findCellIndex(t);
35600             if (name == 'touchstart') {
35601                 // first touch is always a click.
35602                 // hopefull this happens after selection is updated.?
35603                 name = false;
35604                 
35605                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
35606                     var cs = this.selModel.getSelectedCell();
35607                     if (row == cs[0] && cell == cs[1]){
35608                         name = 'dblclick';
35609                     }
35610                 }
35611                 if (typeof(this.selModel.getSelections) != 'undefined') {
35612                     var cs = this.selModel.getSelections();
35613                     var ds = this.dataSource;
35614                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
35615                         name = 'dblclick';
35616                     }
35617                 }
35618                 if (!name) {
35619                     return;
35620                 }
35621             }
35622             
35623             
35624             if(row !== false){
35625                 this.fireEvent("row" + name, this, row, e);
35626                 if(cell !== false){
35627                     this.fireEvent("cell" + name, this, row, cell, e);
35628                 }
35629             }
35630         }
35631     },
35632
35633     // private
35634     onClick : function(e){
35635         this.processEvent("click", e);
35636     },
35637    // private
35638     onTouchStart : function(e){
35639         this.processEvent("touchstart", e);
35640     },
35641
35642     // private
35643     onContextMenu : function(e, t){
35644         this.processEvent("contextmenu", e);
35645     },
35646
35647     // private
35648     onDblClick : function(e){
35649         this.processEvent("dblclick", e);
35650     },
35651
35652     // private
35653     walkCells : function(row, col, step, fn, scope){
35654         var cm = this.colModel, clen = cm.getColumnCount();
35655         var ds = this.dataSource, rlen = ds.getCount(), first = true;
35656         if(step < 0){
35657             if(col < 0){
35658                 row--;
35659                 first = false;
35660             }
35661             while(row >= 0){
35662                 if(!first){
35663                     col = clen-1;
35664                 }
35665                 first = false;
35666                 while(col >= 0){
35667                     if(fn.call(scope || this, row, col, cm) === true){
35668                         return [row, col];
35669                     }
35670                     col--;
35671                 }
35672                 row--;
35673             }
35674         } else {
35675             if(col >= clen){
35676                 row++;
35677                 first = false;
35678             }
35679             while(row < rlen){
35680                 if(!first){
35681                     col = 0;
35682                 }
35683                 first = false;
35684                 while(col < clen){
35685                     if(fn.call(scope || this, row, col, cm) === true){
35686                         return [row, col];
35687                     }
35688                     col++;
35689                 }
35690                 row++;
35691             }
35692         }
35693         return null;
35694     },
35695
35696     // private
35697     getSelections : function(){
35698         return this.selModel.getSelections();
35699     },
35700
35701     /**
35702      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
35703      * but if manual update is required this method will initiate it.
35704      */
35705     autoSize : function(){
35706         if(this.rendered){
35707             this.view.layout();
35708             if(this.view.adjustForScroll){
35709                 this.view.adjustForScroll();
35710             }
35711         }
35712     },
35713
35714     /**
35715      * Returns the grid's underlying element.
35716      * @return {Element} The element
35717      */
35718     getGridEl : function(){
35719         return this.container;
35720     },
35721
35722     // private for compatibility, overridden by editor grid
35723     stopEditing : function(){},
35724
35725     /**
35726      * Returns the grid's SelectionModel.
35727      * @return {SelectionModel}
35728      */
35729     getSelectionModel : function(){
35730         if(!this.selModel){
35731             this.selModel = new Roo.grid.RowSelectionModel();
35732         }
35733         return this.selModel;
35734     },
35735
35736     /**
35737      * Returns the grid's DataSource.
35738      * @return {DataSource}
35739      */
35740     getDataSource : function(){
35741         return this.dataSource;
35742     },
35743
35744     /**
35745      * Returns the grid's ColumnModel.
35746      * @return {ColumnModel}
35747      */
35748     getColumnModel : function(){
35749         return this.colModel;
35750     },
35751
35752     /**
35753      * Returns the grid's GridView object.
35754      * @return {GridView}
35755      */
35756     getView : function(){
35757         if(!this.view){
35758             this.view = new Roo.grid.GridView(this.viewConfig);
35759         }
35760         return this.view;
35761     },
35762     /**
35763      * Called to get grid's drag proxy text, by default returns this.ddText.
35764      * @return {String}
35765      */
35766     getDragDropText : function(){
35767         var count = this.selModel.getCount();
35768         return String.format(this.ddText, count, count == 1 ? '' : 's');
35769     }
35770 });
35771 /**
35772  * Configures the text is the drag proxy (defaults to "%0 selected row(s)").
35773  * %0 is replaced with the number of selected rows.
35774  * @type String
35775  */
35776 Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";/*
35777  * Based on:
35778  * Ext JS Library 1.1.1
35779  * Copyright(c) 2006-2007, Ext JS, LLC.
35780  *
35781  * Originally Released Under LGPL - original licence link has changed is not relivant.
35782  *
35783  * Fork - LGPL
35784  * <script type="text/javascript">
35785  */
35786  
35787 Roo.grid.AbstractGridView = function(){
35788         this.grid = null;
35789         
35790         this.events = {
35791             "beforerowremoved" : true,
35792             "beforerowsinserted" : true,
35793             "beforerefresh" : true,
35794             "rowremoved" : true,
35795             "rowsinserted" : true,
35796             "rowupdated" : true,
35797             "refresh" : true
35798         };
35799     Roo.grid.AbstractGridView.superclass.constructor.call(this);
35800 };
35801
35802 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
35803     rowClass : "x-grid-row",
35804     cellClass : "x-grid-cell",
35805     tdClass : "x-grid-td",
35806     hdClass : "x-grid-hd",
35807     splitClass : "x-grid-hd-split",
35808     
35809     init: function(grid){
35810         this.grid = grid;
35811                 var cid = this.grid.getGridEl().id;
35812         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
35813         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
35814         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
35815         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
35816         },
35817         
35818     getColumnRenderers : function(){
35819         var renderers = [];
35820         var cm = this.grid.colModel;
35821         var colCount = cm.getColumnCount();
35822         for(var i = 0; i < colCount; i++){
35823             renderers[i] = cm.getRenderer(i);
35824         }
35825         return renderers;
35826     },
35827     
35828     getColumnIds : function(){
35829         var ids = [];
35830         var cm = this.grid.colModel;
35831         var colCount = cm.getColumnCount();
35832         for(var i = 0; i < colCount; i++){
35833             ids[i] = cm.getColumnId(i);
35834         }
35835         return ids;
35836     },
35837     
35838     getDataIndexes : function(){
35839         if(!this.indexMap){
35840             this.indexMap = this.buildIndexMap();
35841         }
35842         return this.indexMap.colToData;
35843     },
35844     
35845     getColumnIndexByDataIndex : function(dataIndex){
35846         if(!this.indexMap){
35847             this.indexMap = this.buildIndexMap();
35848         }
35849         return this.indexMap.dataToCol[dataIndex];
35850     },
35851     
35852     /**
35853      * Set a css style for a column dynamically. 
35854      * @param {Number} colIndex The index of the column
35855      * @param {String} name The css property name
35856      * @param {String} value The css value
35857      */
35858     setCSSStyle : function(colIndex, name, value){
35859         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
35860         Roo.util.CSS.updateRule(selector, name, value);
35861     },
35862     
35863     generateRules : function(cm){
35864         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
35865         Roo.util.CSS.removeStyleSheet(rulesId);
35866         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
35867             var cid = cm.getColumnId(i);
35868             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
35869                          this.tdSelector, cid, " {\n}\n",
35870                          this.hdSelector, cid, " {\n}\n",
35871                          this.splitSelector, cid, " {\n}\n");
35872         }
35873         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
35874     }
35875 });/*
35876  * Based on:
35877  * Ext JS Library 1.1.1
35878  * Copyright(c) 2006-2007, Ext JS, LLC.
35879  *
35880  * Originally Released Under LGPL - original licence link has changed is not relivant.
35881  *
35882  * Fork - LGPL
35883  * <script type="text/javascript">
35884  */
35885
35886 // private
35887 // This is a support class used internally by the Grid components
35888 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
35889     this.grid = grid;
35890     this.view = grid.getView();
35891     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
35892     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
35893     if(hd2){
35894         this.setHandleElId(Roo.id(hd));
35895         this.setOuterHandleElId(Roo.id(hd2));
35896     }
35897     this.scroll = false;
35898 };
35899 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
35900     maxDragWidth: 120,
35901     getDragData : function(e){
35902         var t = Roo.lib.Event.getTarget(e);
35903         var h = this.view.findHeaderCell(t);
35904         if(h){
35905             return {ddel: h.firstChild, header:h};
35906         }
35907         return false;
35908     },
35909
35910     onInitDrag : function(e){
35911         this.view.headersDisabled = true;
35912         var clone = this.dragData.ddel.cloneNode(true);
35913         clone.id = Roo.id();
35914         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
35915         this.proxy.update(clone);
35916         return true;
35917     },
35918
35919     afterValidDrop : function(){
35920         var v = this.view;
35921         setTimeout(function(){
35922             v.headersDisabled = false;
35923         }, 50);
35924     },
35925
35926     afterInvalidDrop : function(){
35927         var v = this.view;
35928         setTimeout(function(){
35929             v.headersDisabled = false;
35930         }, 50);
35931     }
35932 });
35933 /*
35934  * Based on:
35935  * Ext JS Library 1.1.1
35936  * Copyright(c) 2006-2007, Ext JS, LLC.
35937  *
35938  * Originally Released Under LGPL - original licence link has changed is not relivant.
35939  *
35940  * Fork - LGPL
35941  * <script type="text/javascript">
35942  */
35943 // private
35944 // This is a support class used internally by the Grid components
35945 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
35946     this.grid = grid;
35947     this.view = grid.getView();
35948     // split the proxies so they don't interfere with mouse events
35949     this.proxyTop = Roo.DomHelper.append(document.body, {
35950         cls:"col-move-top", html:"&#160;"
35951     }, true);
35952     this.proxyBottom = Roo.DomHelper.append(document.body, {
35953         cls:"col-move-bottom", html:"&#160;"
35954     }, true);
35955     this.proxyTop.hide = this.proxyBottom.hide = function(){
35956         this.setLeftTop(-100,-100);
35957         this.setStyle("visibility", "hidden");
35958     };
35959     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
35960     // temporarily disabled
35961     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
35962     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
35963 };
35964 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
35965     proxyOffsets : [-4, -9],
35966     fly: Roo.Element.fly,
35967
35968     getTargetFromEvent : function(e){
35969         var t = Roo.lib.Event.getTarget(e);
35970         var cindex = this.view.findCellIndex(t);
35971         if(cindex !== false){
35972             return this.view.getHeaderCell(cindex);
35973         }
35974         return null;
35975     },
35976
35977     nextVisible : function(h){
35978         var v = this.view, cm = this.grid.colModel;
35979         h = h.nextSibling;
35980         while(h){
35981             if(!cm.isHidden(v.getCellIndex(h))){
35982                 return h;
35983             }
35984             h = h.nextSibling;
35985         }
35986         return null;
35987     },
35988
35989     prevVisible : function(h){
35990         var v = this.view, cm = this.grid.colModel;
35991         h = h.prevSibling;
35992         while(h){
35993             if(!cm.isHidden(v.getCellIndex(h))){
35994                 return h;
35995             }
35996             h = h.prevSibling;
35997         }
35998         return null;
35999     },
36000
36001     positionIndicator : function(h, n, e){
36002         var x = Roo.lib.Event.getPageX(e);
36003         var r = Roo.lib.Dom.getRegion(n.firstChild);
36004         var px, pt, py = r.top + this.proxyOffsets[1];
36005         if((r.right - x) <= (r.right-r.left)/2){
36006             px = r.right+this.view.borderWidth;
36007             pt = "after";
36008         }else{
36009             px = r.left;
36010             pt = "before";
36011         }
36012         var oldIndex = this.view.getCellIndex(h);
36013         var newIndex = this.view.getCellIndex(n);
36014
36015         if(this.grid.colModel.isFixed(newIndex)){
36016             return false;
36017         }
36018
36019         var locked = this.grid.colModel.isLocked(newIndex);
36020
36021         if(pt == "after"){
36022             newIndex++;
36023         }
36024         if(oldIndex < newIndex){
36025             newIndex--;
36026         }
36027         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
36028             return false;
36029         }
36030         px +=  this.proxyOffsets[0];
36031         this.proxyTop.setLeftTop(px, py);
36032         this.proxyTop.show();
36033         if(!this.bottomOffset){
36034             this.bottomOffset = this.view.mainHd.getHeight();
36035         }
36036         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
36037         this.proxyBottom.show();
36038         return pt;
36039     },
36040
36041     onNodeEnter : function(n, dd, e, data){
36042         if(data.header != n){
36043             this.positionIndicator(data.header, n, e);
36044         }
36045     },
36046
36047     onNodeOver : function(n, dd, e, data){
36048         var result = false;
36049         if(data.header != n){
36050             result = this.positionIndicator(data.header, n, e);
36051         }
36052         if(!result){
36053             this.proxyTop.hide();
36054             this.proxyBottom.hide();
36055         }
36056         return result ? this.dropAllowed : this.dropNotAllowed;
36057     },
36058
36059     onNodeOut : function(n, dd, e, data){
36060         this.proxyTop.hide();
36061         this.proxyBottom.hide();
36062     },
36063
36064     onNodeDrop : function(n, dd, e, data){
36065         var h = data.header;
36066         if(h != n){
36067             var cm = this.grid.colModel;
36068             var x = Roo.lib.Event.getPageX(e);
36069             var r = Roo.lib.Dom.getRegion(n.firstChild);
36070             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
36071             var oldIndex = this.view.getCellIndex(h);
36072             var newIndex = this.view.getCellIndex(n);
36073             var locked = cm.isLocked(newIndex);
36074             if(pt == "after"){
36075                 newIndex++;
36076             }
36077             if(oldIndex < newIndex){
36078                 newIndex--;
36079             }
36080             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
36081                 return false;
36082             }
36083             cm.setLocked(oldIndex, locked, true);
36084             cm.moveColumn(oldIndex, newIndex);
36085             this.grid.fireEvent("columnmove", oldIndex, newIndex);
36086             return true;
36087         }
36088         return false;
36089     }
36090 });
36091 /*
36092  * Based on:
36093  * Ext JS Library 1.1.1
36094  * Copyright(c) 2006-2007, Ext JS, LLC.
36095  *
36096  * Originally Released Under LGPL - original licence link has changed is not relivant.
36097  *
36098  * Fork - LGPL
36099  * <script type="text/javascript">
36100  */
36101   
36102 /**
36103  * @class Roo.grid.GridView
36104  * @extends Roo.util.Observable
36105  *
36106  * @constructor
36107  * @param {Object} config
36108  */
36109 Roo.grid.GridView = function(config){
36110     Roo.grid.GridView.superclass.constructor.call(this);
36111     this.el = null;
36112
36113     Roo.apply(this, config);
36114 };
36115
36116 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
36117
36118     unselectable :  'unselectable="on"',
36119     unselectableCls :  'x-unselectable',
36120     
36121     
36122     rowClass : "x-grid-row",
36123
36124     cellClass : "x-grid-col",
36125
36126     tdClass : "x-grid-td",
36127
36128     hdClass : "x-grid-hd",
36129
36130     splitClass : "x-grid-split",
36131
36132     sortClasses : ["sort-asc", "sort-desc"],
36133
36134     enableMoveAnim : false,
36135
36136     hlColor: "C3DAF9",
36137
36138     dh : Roo.DomHelper,
36139
36140     fly : Roo.Element.fly,
36141
36142     css : Roo.util.CSS,
36143
36144     borderWidth: 1,
36145
36146     splitOffset: 3,
36147
36148     scrollIncrement : 22,
36149
36150     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
36151
36152     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
36153
36154     bind : function(ds, cm){
36155         if(this.ds){
36156             this.ds.un("load", this.onLoad, this);
36157             this.ds.un("datachanged", this.onDataChange, this);
36158             this.ds.un("add", this.onAdd, this);
36159             this.ds.un("remove", this.onRemove, this);
36160             this.ds.un("update", this.onUpdate, this);
36161             this.ds.un("clear", this.onClear, this);
36162         }
36163         if(ds){
36164             ds.on("load", this.onLoad, this);
36165             ds.on("datachanged", this.onDataChange, this);
36166             ds.on("add", this.onAdd, this);
36167             ds.on("remove", this.onRemove, this);
36168             ds.on("update", this.onUpdate, this);
36169             ds.on("clear", this.onClear, this);
36170         }
36171         this.ds = ds;
36172
36173         if(this.cm){
36174             this.cm.un("widthchange", this.onColWidthChange, this);
36175             this.cm.un("headerchange", this.onHeaderChange, this);
36176             this.cm.un("hiddenchange", this.onHiddenChange, this);
36177             this.cm.un("columnmoved", this.onColumnMove, this);
36178             this.cm.un("columnlockchange", this.onColumnLock, this);
36179         }
36180         if(cm){
36181             this.generateRules(cm);
36182             cm.on("widthchange", this.onColWidthChange, this);
36183             cm.on("headerchange", this.onHeaderChange, this);
36184             cm.on("hiddenchange", this.onHiddenChange, this);
36185             cm.on("columnmoved", this.onColumnMove, this);
36186             cm.on("columnlockchange", this.onColumnLock, this);
36187         }
36188         this.cm = cm;
36189     },
36190
36191     init: function(grid){
36192         Roo.grid.GridView.superclass.init.call(this, grid);
36193
36194         this.bind(grid.dataSource, grid.colModel);
36195
36196         grid.on("headerclick", this.handleHeaderClick, this);
36197
36198         if(grid.trackMouseOver){
36199             grid.on("mouseover", this.onRowOver, this);
36200             grid.on("mouseout", this.onRowOut, this);
36201         }
36202         grid.cancelTextSelection = function(){};
36203         this.gridId = grid.id;
36204
36205         var tpls = this.templates || {};
36206
36207         if(!tpls.master){
36208             tpls.master = new Roo.Template(
36209                '<div class="x-grid" hidefocus="true">',
36210                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
36211                   '<div class="x-grid-topbar"></div>',
36212                   '<div class="x-grid-scroller"><div></div></div>',
36213                   '<div class="x-grid-locked">',
36214                       '<div class="x-grid-header">{lockedHeader}</div>',
36215                       '<div class="x-grid-body">{lockedBody}</div>',
36216                   "</div>",
36217                   '<div class="x-grid-viewport">',
36218                       '<div class="x-grid-header">{header}</div>',
36219                       '<div class="x-grid-body">{body}</div>',
36220                   "</div>",
36221                   '<div class="x-grid-bottombar"></div>',
36222                  
36223                   '<div class="x-grid-resize-proxy">&#160;</div>',
36224                "</div>"
36225             );
36226             tpls.master.disableformats = true;
36227         }
36228
36229         if(!tpls.header){
36230             tpls.header = new Roo.Template(
36231                '<table border="0" cellspacing="0" cellpadding="0">',
36232                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
36233                "</table>{splits}"
36234             );
36235             tpls.header.disableformats = true;
36236         }
36237         tpls.header.compile();
36238
36239         if(!tpls.hcell){
36240             tpls.hcell = new Roo.Template(
36241                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
36242                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
36243                 "</div></td>"
36244              );
36245              tpls.hcell.disableFormats = true;
36246         }
36247         tpls.hcell.compile();
36248
36249         if(!tpls.hsplit){
36250             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
36251                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
36252             tpls.hsplit.disableFormats = true;
36253         }
36254         tpls.hsplit.compile();
36255
36256         if(!tpls.body){
36257             tpls.body = new Roo.Template(
36258                '<table border="0" cellspacing="0" cellpadding="0">',
36259                "<tbody>{rows}</tbody>",
36260                "</table>"
36261             );
36262             tpls.body.disableFormats = true;
36263         }
36264         tpls.body.compile();
36265
36266         if(!tpls.row){
36267             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
36268             tpls.row.disableFormats = true;
36269         }
36270         tpls.row.compile();
36271
36272         if(!tpls.cell){
36273             tpls.cell = new Roo.Template(
36274                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
36275                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
36276                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
36277                 "</td>"
36278             );
36279             tpls.cell.disableFormats = true;
36280         }
36281         tpls.cell.compile();
36282
36283         this.templates = tpls;
36284     },
36285
36286     // remap these for backwards compat
36287     onColWidthChange : function(){
36288         this.updateColumns.apply(this, arguments);
36289     },
36290     onHeaderChange : function(){
36291         this.updateHeaders.apply(this, arguments);
36292     }, 
36293     onHiddenChange : function(){
36294         this.handleHiddenChange.apply(this, arguments);
36295     },
36296     onColumnMove : function(){
36297         this.handleColumnMove.apply(this, arguments);
36298     },
36299     onColumnLock : function(){
36300         this.handleLockChange.apply(this, arguments);
36301     },
36302
36303     onDataChange : function(){
36304         this.refresh();
36305         this.updateHeaderSortState();
36306     },
36307
36308     onClear : function(){
36309         this.refresh();
36310     },
36311
36312     onUpdate : function(ds, record){
36313         this.refreshRow(record);
36314     },
36315
36316     refreshRow : function(record){
36317         var ds = this.ds, index;
36318         if(typeof record == 'number'){
36319             index = record;
36320             record = ds.getAt(index);
36321         }else{
36322             index = ds.indexOf(record);
36323         }
36324         this.insertRows(ds, index, index, true);
36325         this.onRemove(ds, record, index+1, true);
36326         this.syncRowHeights(index, index);
36327         this.layout();
36328         this.fireEvent("rowupdated", this, index, record);
36329     },
36330
36331     onAdd : function(ds, records, index){
36332         this.insertRows(ds, index, index + (records.length-1));
36333     },
36334
36335     onRemove : function(ds, record, index, isUpdate){
36336         if(isUpdate !== true){
36337             this.fireEvent("beforerowremoved", this, index, record);
36338         }
36339         var bt = this.getBodyTable(), lt = this.getLockedTable();
36340         if(bt.rows[index]){
36341             bt.firstChild.removeChild(bt.rows[index]);
36342         }
36343         if(lt.rows[index]){
36344             lt.firstChild.removeChild(lt.rows[index]);
36345         }
36346         if(isUpdate !== true){
36347             this.stripeRows(index);
36348             this.syncRowHeights(index, index);
36349             this.layout();
36350             this.fireEvent("rowremoved", this, index, record);
36351         }
36352     },
36353
36354     onLoad : function(){
36355         this.scrollToTop();
36356     },
36357
36358     /**
36359      * Scrolls the grid to the top
36360      */
36361     scrollToTop : function(){
36362         if(this.scroller){
36363             this.scroller.dom.scrollTop = 0;
36364             this.syncScroll();
36365         }
36366     },
36367
36368     /**
36369      * Gets a panel in the header of the grid that can be used for toolbars etc.
36370      * After modifying the contents of this panel a call to grid.autoSize() may be
36371      * required to register any changes in size.
36372      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
36373      * @return Roo.Element
36374      */
36375     getHeaderPanel : function(doShow){
36376         if(doShow){
36377             this.headerPanel.show();
36378         }
36379         return this.headerPanel;
36380     },
36381
36382     /**
36383      * Gets a panel in the footer of the grid that can be used for toolbars etc.
36384      * After modifying the contents of this panel a call to grid.autoSize() may be
36385      * required to register any changes in size.
36386      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
36387      * @return Roo.Element
36388      */
36389     getFooterPanel : function(doShow){
36390         if(doShow){
36391             this.footerPanel.show();
36392         }
36393         return this.footerPanel;
36394     },
36395
36396     initElements : function(){
36397         var E = Roo.Element;
36398         var el = this.grid.getGridEl().dom.firstChild;
36399         var cs = el.childNodes;
36400
36401         this.el = new E(el);
36402         
36403          this.focusEl = new E(el.firstChild);
36404         this.focusEl.swallowEvent("click", true);
36405         
36406         this.headerPanel = new E(cs[1]);
36407         this.headerPanel.enableDisplayMode("block");
36408
36409         this.scroller = new E(cs[2]);
36410         this.scrollSizer = new E(this.scroller.dom.firstChild);
36411
36412         this.lockedWrap = new E(cs[3]);
36413         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
36414         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
36415
36416         this.mainWrap = new E(cs[4]);
36417         this.mainHd = new E(this.mainWrap.dom.firstChild);
36418         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
36419
36420         this.footerPanel = new E(cs[5]);
36421         this.footerPanel.enableDisplayMode("block");
36422
36423         this.resizeProxy = new E(cs[6]);
36424
36425         this.headerSelector = String.format(
36426            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
36427            this.lockedHd.id, this.mainHd.id
36428         );
36429
36430         this.splitterSelector = String.format(
36431            '#{0} div.x-grid-split, #{1} div.x-grid-split',
36432            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
36433         );
36434     },
36435     idToCssName : function(s)
36436     {
36437         return s.replace(/[^a-z0-9]+/ig, '-');
36438     },
36439
36440     getHeaderCell : function(index){
36441         return Roo.DomQuery.select(this.headerSelector)[index];
36442     },
36443
36444     getHeaderCellMeasure : function(index){
36445         return this.getHeaderCell(index).firstChild;
36446     },
36447
36448     getHeaderCellText : function(index){
36449         return this.getHeaderCell(index).firstChild.firstChild;
36450     },
36451
36452     getLockedTable : function(){
36453         return this.lockedBody.dom.firstChild;
36454     },
36455
36456     getBodyTable : function(){
36457         return this.mainBody.dom.firstChild;
36458     },
36459
36460     getLockedRow : function(index){
36461         return this.getLockedTable().rows[index];
36462     },
36463
36464     getRow : function(index){
36465         return this.getBodyTable().rows[index];
36466     },
36467
36468     getRowComposite : function(index){
36469         if(!this.rowEl){
36470             this.rowEl = new Roo.CompositeElementLite();
36471         }
36472         var els = [], lrow, mrow;
36473         if(lrow = this.getLockedRow(index)){
36474             els.push(lrow);
36475         }
36476         if(mrow = this.getRow(index)){
36477             els.push(mrow);
36478         }
36479         this.rowEl.elements = els;
36480         return this.rowEl;
36481     },
36482     /**
36483      * Gets the 'td' of the cell
36484      * 
36485      * @param {Integer} rowIndex row to select
36486      * @param {Integer} colIndex column to select
36487      * 
36488      * @return {Object} 
36489      */
36490     getCell : function(rowIndex, colIndex){
36491         var locked = this.cm.getLockedCount();
36492         var source;
36493         if(colIndex < locked){
36494             source = this.lockedBody.dom.firstChild;
36495         }else{
36496             source = this.mainBody.dom.firstChild;
36497             colIndex -= locked;
36498         }
36499         return source.rows[rowIndex].childNodes[colIndex];
36500     },
36501
36502     getCellText : function(rowIndex, colIndex){
36503         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
36504     },
36505
36506     getCellBox : function(cell){
36507         var b = this.fly(cell).getBox();
36508         if(Roo.isOpera){ // opera fails to report the Y
36509             b.y = cell.offsetTop + this.mainBody.getY();
36510         }
36511         return b;
36512     },
36513
36514     getCellIndex : function(cell){
36515         var id = String(cell.className).match(this.cellRE);
36516         if(id){
36517             return parseInt(id[1], 10);
36518         }
36519         return 0;
36520     },
36521
36522     findHeaderIndex : function(n){
36523         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36524         return r ? this.getCellIndex(r) : false;
36525     },
36526
36527     findHeaderCell : function(n){
36528         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
36529         return r ? r : false;
36530     },
36531
36532     findRowIndex : function(n){
36533         if(!n){
36534             return false;
36535         }
36536         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
36537         return r ? r.rowIndex : false;
36538     },
36539
36540     findCellIndex : function(node){
36541         var stop = this.el.dom;
36542         while(node && node != stop){
36543             if(this.findRE.test(node.className)){
36544                 return this.getCellIndex(node);
36545             }
36546             node = node.parentNode;
36547         }
36548         return false;
36549     },
36550
36551     getColumnId : function(index){
36552         return this.cm.getColumnId(index);
36553     },
36554
36555     getSplitters : function()
36556     {
36557         if(this.splitterSelector){
36558            return Roo.DomQuery.select(this.splitterSelector);
36559         }else{
36560             return null;
36561       }
36562     },
36563
36564     getSplitter : function(index){
36565         return this.getSplitters()[index];
36566     },
36567
36568     onRowOver : function(e, t){
36569         var row;
36570         if((row = this.findRowIndex(t)) !== false){
36571             this.getRowComposite(row).addClass("x-grid-row-over");
36572         }
36573     },
36574
36575     onRowOut : function(e, t){
36576         var row;
36577         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
36578             this.getRowComposite(row).removeClass("x-grid-row-over");
36579         }
36580     },
36581
36582     renderHeaders : function(){
36583         var cm = this.cm;
36584         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
36585         var cb = [], lb = [], sb = [], lsb = [], p = {};
36586         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36587             p.cellId = "x-grid-hd-0-" + i;
36588             p.splitId = "x-grid-csplit-0-" + i;
36589             p.id = cm.getColumnId(i);
36590             p.title = cm.getColumnTooltip(i) || "";
36591             p.value = cm.getColumnHeader(i) || "";
36592             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
36593             if(!cm.isLocked(i)){
36594                 cb[cb.length] = ct.apply(p);
36595                 sb[sb.length] = st.apply(p);
36596             }else{
36597                 lb[lb.length] = ct.apply(p);
36598                 lsb[lsb.length] = st.apply(p);
36599             }
36600         }
36601         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
36602                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
36603     },
36604
36605     updateHeaders : function(){
36606         var html = this.renderHeaders();
36607         this.lockedHd.update(html[0]);
36608         this.mainHd.update(html[1]);
36609     },
36610
36611     /**
36612      * Focuses the specified row.
36613      * @param {Number} row The row index
36614      */
36615     focusRow : function(row)
36616     {
36617         //Roo.log('GridView.focusRow');
36618         var x = this.scroller.dom.scrollLeft;
36619         this.focusCell(row, 0, false);
36620         this.scroller.dom.scrollLeft = x;
36621     },
36622
36623     /**
36624      * Focuses the specified cell.
36625      * @param {Number} row The row index
36626      * @param {Number} col The column index
36627      * @param {Boolean} hscroll false to disable horizontal scrolling
36628      */
36629     focusCell : function(row, col, hscroll)
36630     {
36631         //Roo.log('GridView.focusCell');
36632         var el = this.ensureVisible(row, col, hscroll);
36633         this.focusEl.alignTo(el, "tl-tl");
36634         if(Roo.isGecko){
36635             this.focusEl.focus();
36636         }else{
36637             this.focusEl.focus.defer(1, this.focusEl);
36638         }
36639     },
36640
36641     /**
36642      * Scrolls the specified cell into view
36643      * @param {Number} row The row index
36644      * @param {Number} col The column index
36645      * @param {Boolean} hscroll false to disable horizontal scrolling
36646      */
36647     ensureVisible : function(row, col, hscroll)
36648     {
36649         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
36650         //return null; //disable for testing.
36651         if(typeof row != "number"){
36652             row = row.rowIndex;
36653         }
36654         if(row < 0 && row >= this.ds.getCount()){
36655             return  null;
36656         }
36657         col = (col !== undefined ? col : 0);
36658         var cm = this.grid.colModel;
36659         while(cm.isHidden(col)){
36660             col++;
36661         }
36662
36663         var el = this.getCell(row, col);
36664         if(!el){
36665             return null;
36666         }
36667         var c = this.scroller.dom;
36668
36669         var ctop = parseInt(el.offsetTop, 10);
36670         var cleft = parseInt(el.offsetLeft, 10);
36671         var cbot = ctop + el.offsetHeight;
36672         var cright = cleft + el.offsetWidth;
36673         
36674         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
36675         var stop = parseInt(c.scrollTop, 10);
36676         var sleft = parseInt(c.scrollLeft, 10);
36677         var sbot = stop + ch;
36678         var sright = sleft + c.clientWidth;
36679         /*
36680         Roo.log('GridView.ensureVisible:' +
36681                 ' ctop:' + ctop +
36682                 ' c.clientHeight:' + c.clientHeight +
36683                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
36684                 ' stop:' + stop +
36685                 ' cbot:' + cbot +
36686                 ' sbot:' + sbot +
36687                 ' ch:' + ch  
36688                 );
36689         */
36690         if(ctop < stop){
36691              c.scrollTop = ctop;
36692             //Roo.log("set scrolltop to ctop DISABLE?");
36693         }else if(cbot > sbot){
36694             //Roo.log("set scrolltop to cbot-ch");
36695             c.scrollTop = cbot-ch;
36696         }
36697         
36698         if(hscroll !== false){
36699             if(cleft < sleft){
36700                 c.scrollLeft = cleft;
36701             }else if(cright > sright){
36702                 c.scrollLeft = cright-c.clientWidth;
36703             }
36704         }
36705          
36706         return el;
36707     },
36708
36709     updateColumns : function(){
36710         this.grid.stopEditing();
36711         var cm = this.grid.colModel, colIds = this.getColumnIds();
36712         //var totalWidth = cm.getTotalWidth();
36713         var pos = 0;
36714         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36715             //if(cm.isHidden(i)) continue;
36716             var w = cm.getColumnWidth(i);
36717             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36718             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
36719         }
36720         this.updateSplitters();
36721     },
36722
36723     generateRules : function(cm){
36724         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
36725         Roo.util.CSS.removeStyleSheet(rulesId);
36726         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36727             var cid = cm.getColumnId(i);
36728             var align = '';
36729             if(cm.config[i].align){
36730                 align = 'text-align:'+cm.config[i].align+';';
36731             }
36732             var hidden = '';
36733             if(cm.isHidden(i)){
36734                 hidden = 'display:none;';
36735             }
36736             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
36737             ruleBuf.push(
36738                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
36739                     this.hdSelector, cid, " {\n", align, width, "}\n",
36740                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
36741                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
36742         }
36743         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
36744     },
36745
36746     updateSplitters : function(){
36747         var cm = this.cm, s = this.getSplitters();
36748         if(s){ // splitters not created yet
36749             var pos = 0, locked = true;
36750             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
36751                 if(cm.isHidden(i)) continue;
36752                 var w = cm.getColumnWidth(i); // make sure it's a number
36753                 if(!cm.isLocked(i) && locked){
36754                     pos = 0;
36755                     locked = false;
36756                 }
36757                 pos += w;
36758                 s[i].style.left = (pos-this.splitOffset) + "px";
36759             }
36760         }
36761     },
36762
36763     handleHiddenChange : function(colModel, colIndex, hidden){
36764         if(hidden){
36765             this.hideColumn(colIndex);
36766         }else{
36767             this.unhideColumn(colIndex);
36768         }
36769     },
36770
36771     hideColumn : function(colIndex){
36772         var cid = this.getColumnId(colIndex);
36773         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
36774         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
36775         if(Roo.isSafari){
36776             this.updateHeaders();
36777         }
36778         this.updateSplitters();
36779         this.layout();
36780     },
36781
36782     unhideColumn : function(colIndex){
36783         var cid = this.getColumnId(colIndex);
36784         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
36785         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
36786
36787         if(Roo.isSafari){
36788             this.updateHeaders();
36789         }
36790         this.updateSplitters();
36791         this.layout();
36792     },
36793
36794     insertRows : function(dm, firstRow, lastRow, isUpdate){
36795         if(firstRow == 0 && lastRow == dm.getCount()-1){
36796             this.refresh();
36797         }else{
36798             if(!isUpdate){
36799                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
36800             }
36801             var s = this.getScrollState();
36802             var markup = this.renderRows(firstRow, lastRow);
36803             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
36804             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
36805             this.restoreScroll(s);
36806             if(!isUpdate){
36807                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
36808                 this.syncRowHeights(firstRow, lastRow);
36809                 this.stripeRows(firstRow);
36810                 this.layout();
36811             }
36812         }
36813     },
36814
36815     bufferRows : function(markup, target, index){
36816         var before = null, trows = target.rows, tbody = target.tBodies[0];
36817         if(index < trows.length){
36818             before = trows[index];
36819         }
36820         var b = document.createElement("div");
36821         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
36822         var rows = b.firstChild.rows;
36823         for(var i = 0, len = rows.length; i < len; i++){
36824             if(before){
36825                 tbody.insertBefore(rows[0], before);
36826             }else{
36827                 tbody.appendChild(rows[0]);
36828             }
36829         }
36830         b.innerHTML = "";
36831         b = null;
36832     },
36833
36834     deleteRows : function(dm, firstRow, lastRow){
36835         if(dm.getRowCount()<1){
36836             this.fireEvent("beforerefresh", this);
36837             this.mainBody.update("");
36838             this.lockedBody.update("");
36839             this.fireEvent("refresh", this);
36840         }else{
36841             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
36842             var bt = this.getBodyTable();
36843             var tbody = bt.firstChild;
36844             var rows = bt.rows;
36845             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
36846                 tbody.removeChild(rows[firstRow]);
36847             }
36848             this.stripeRows(firstRow);
36849             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
36850         }
36851     },
36852
36853     updateRows : function(dataSource, firstRow, lastRow){
36854         var s = this.getScrollState();
36855         this.refresh();
36856         this.restoreScroll(s);
36857     },
36858
36859     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
36860         if(!noRefresh){
36861            this.refresh();
36862         }
36863         this.updateHeaderSortState();
36864     },
36865
36866     getScrollState : function(){
36867         
36868         var sb = this.scroller.dom;
36869         return {left: sb.scrollLeft, top: sb.scrollTop};
36870     },
36871
36872     stripeRows : function(startRow){
36873         if(!this.grid.stripeRows || this.ds.getCount() < 1){
36874             return;
36875         }
36876         startRow = startRow || 0;
36877         var rows = this.getBodyTable().rows;
36878         var lrows = this.getLockedTable().rows;
36879         var cls = ' x-grid-row-alt ';
36880         for(var i = startRow, len = rows.length; i < len; i++){
36881             var row = rows[i], lrow = lrows[i];
36882             var isAlt = ((i+1) % 2 == 0);
36883             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
36884             if(isAlt == hasAlt){
36885                 continue;
36886             }
36887             if(isAlt){
36888                 row.className += " x-grid-row-alt";
36889             }else{
36890                 row.className = row.className.replace("x-grid-row-alt", "");
36891             }
36892             if(lrow){
36893                 lrow.className = row.className;
36894             }
36895         }
36896     },
36897
36898     restoreScroll : function(state){
36899         //Roo.log('GridView.restoreScroll');
36900         var sb = this.scroller.dom;
36901         sb.scrollLeft = state.left;
36902         sb.scrollTop = state.top;
36903         this.syncScroll();
36904     },
36905
36906     syncScroll : function(){
36907         //Roo.log('GridView.syncScroll');
36908         var sb = this.scroller.dom;
36909         var sh = this.mainHd.dom;
36910         var bs = this.mainBody.dom;
36911         var lv = this.lockedBody.dom;
36912         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
36913         lv.scrollTop = bs.scrollTop = sb.scrollTop;
36914     },
36915
36916     handleScroll : function(e){
36917         this.syncScroll();
36918         var sb = this.scroller.dom;
36919         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
36920         e.stopEvent();
36921     },
36922
36923     handleWheel : function(e){
36924         var d = e.getWheelDelta();
36925         this.scroller.dom.scrollTop -= d*22;
36926         // set this here to prevent jumpy scrolling on large tables
36927         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
36928         e.stopEvent();
36929     },
36930
36931     renderRows : function(startRow, endRow){
36932         // pull in all the crap needed to render rows
36933         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
36934         var colCount = cm.getColumnCount();
36935
36936         if(ds.getCount() < 1){
36937             return ["", ""];
36938         }
36939
36940         // build a map for all the columns
36941         var cs = [];
36942         for(var i = 0; i < colCount; i++){
36943             var name = cm.getDataIndex(i);
36944             cs[i] = {
36945                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
36946                 renderer : cm.getRenderer(i),
36947                 id : cm.getColumnId(i),
36948                 locked : cm.isLocked(i)
36949             };
36950         }
36951
36952         startRow = startRow || 0;
36953         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
36954
36955         // records to render
36956         var rs = ds.getRange(startRow, endRow);
36957
36958         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
36959     },
36960
36961     // As much as I hate to duplicate code, this was branched because FireFox really hates
36962     // [].join("") on strings. The performance difference was substantial enough to
36963     // branch this function
36964     doRender : Roo.isGecko ?
36965             function(cs, rs, ds, startRow, colCount, stripe){
36966                 var ts = this.templates, ct = ts.cell, rt = ts.row;
36967                 // buffers
36968                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
36969                 
36970                 var hasListener = this.grid.hasListener('rowclass');
36971                 var rowcfg = {};
36972                 for(var j = 0, len = rs.length; j < len; j++){
36973                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
36974                     for(var i = 0; i < colCount; i++){
36975                         c = cs[i];
36976                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
36977                         p.id = c.id;
36978                         p.css = p.attr = "";
36979                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
36980                         if(p.value == undefined || p.value === "") p.value = "&#160;";
36981                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
36982                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
36983                         }
36984                         var markup = ct.apply(p);
36985                         if(!c.locked){
36986                             cb+= markup;
36987                         }else{
36988                             lcb+= markup;
36989                         }
36990                     }
36991                     var alt = [];
36992                     if(stripe && ((rowIndex+1) % 2 == 0)){
36993                         alt.push("x-grid-row-alt")
36994                     }
36995                     if(r.dirty){
36996                         alt.push(  " x-grid-dirty-row");
36997                     }
36998                     rp.cells = lcb;
36999                     if(this.getRowClass){
37000                         alt.push(this.getRowClass(r, rowIndex));
37001                     }
37002                     if (hasListener) {
37003                         rowcfg = {
37004                              
37005                             record: r,
37006                             rowIndex : rowIndex,
37007                             rowClass : ''
37008                         }
37009                         this.grid.fireEvent('rowclass', this, rowcfg);
37010                         alt.push(rowcfg.rowClass);
37011                     }
37012                     rp.alt = alt.join(" ");
37013                     lbuf+= rt.apply(rp);
37014                     rp.cells = cb;
37015                     buf+=  rt.apply(rp);
37016                 }
37017                 return [lbuf, buf];
37018             } :
37019             function(cs, rs, ds, startRow, colCount, stripe){
37020                 var ts = this.templates, ct = ts.cell, rt = ts.row;
37021                 // buffers
37022                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
37023                 var hasListener = this.grid.hasListener('rowclass');
37024  
37025                 var rowcfg = {};
37026                 for(var j = 0, len = rs.length; j < len; j++){
37027                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
37028                     for(var i = 0; i < colCount; i++){
37029                         c = cs[i];
37030                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
37031                         p.id = c.id;
37032                         p.css = p.attr = "";
37033                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
37034                         if(p.value == undefined || p.value === "") p.value = "&#160;";
37035                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
37036                             p.css += p.css ? ' x-grid-dirty-cell' : 'x-grid-dirty-cell';
37037                         }
37038                         
37039                         var markup = ct.apply(p);
37040                         if(!c.locked){
37041                             cb[cb.length] = markup;
37042                         }else{
37043                             lcb[lcb.length] = markup;
37044                         }
37045                     }
37046                     var alt = [];
37047                     if(stripe && ((rowIndex+1) % 2 == 0)){
37048                         alt.push( "x-grid-row-alt");
37049                     }
37050                     if(r.dirty){
37051                         alt.push(" x-grid-dirty-row");
37052                     }
37053                     rp.cells = lcb;
37054                     if(this.getRowClass){
37055                         alt.push( this.getRowClass(r, rowIndex));
37056                     }
37057                     if (hasListener) {
37058                         rowcfg = {
37059                              
37060                             record: r,
37061                             rowIndex : rowIndex,
37062                             rowClass : ''
37063                         }
37064                         this.grid.fireEvent('rowclass', this, rowcfg);
37065                         alt.push(rowcfg.rowClass);
37066                     }
37067                     rp.alt = alt.join(" ");
37068                     rp.cells = lcb.join("");
37069                     lbuf[lbuf.length] = rt.apply(rp);
37070                     rp.cells = cb.join("");
37071                     buf[buf.length] =  rt.apply(rp);
37072                 }
37073                 return [lbuf.join(""), buf.join("")];
37074             },
37075
37076     renderBody : function(){
37077         var markup = this.renderRows();
37078         var bt = this.templates.body;
37079         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
37080     },
37081
37082     /**
37083      * Refreshes the grid
37084      * @param {Boolean} headersToo
37085      */
37086     refresh : function(headersToo){
37087         this.fireEvent("beforerefresh", this);
37088         this.grid.stopEditing();
37089         var result = this.renderBody();
37090         this.lockedBody.update(result[0]);
37091         this.mainBody.update(result[1]);
37092         if(headersToo === true){
37093             this.updateHeaders();
37094             this.updateColumns();
37095             this.updateSplitters();
37096             this.updateHeaderSortState();
37097         }
37098         this.syncRowHeights();
37099         this.layout();
37100         this.fireEvent("refresh", this);
37101     },
37102
37103     handleColumnMove : function(cm, oldIndex, newIndex){
37104         this.indexMap = null;
37105         var s = this.getScrollState();
37106         this.refresh(true);
37107         this.restoreScroll(s);
37108         this.afterMove(newIndex);
37109     },
37110
37111     afterMove : function(colIndex){
37112         if(this.enableMoveAnim && Roo.enableFx){
37113             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
37114         }
37115         // if multisort - fix sortOrder, and reload..
37116         if (this.grid.dataSource.multiSort) {
37117             // the we can call sort again..
37118             var dm = this.grid.dataSource;
37119             var cm = this.grid.colModel;
37120             var so = [];
37121             for(var i = 0; i < cm.config.length; i++ ) {
37122                 
37123                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
37124                     continue; // dont' bother, it's not in sort list or being set.
37125                 }
37126                 
37127                 so.push(cm.config[i].dataIndex);
37128             };
37129             dm.sortOrder = so;
37130             dm.load(dm.lastOptions);
37131             
37132             
37133         }
37134         
37135     },
37136
37137     updateCell : function(dm, rowIndex, dataIndex){
37138         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
37139         if(typeof colIndex == "undefined"){ // not present in grid
37140             return;
37141         }
37142         var cm = this.grid.colModel;
37143         var cell = this.getCell(rowIndex, colIndex);
37144         var cellText = this.getCellText(rowIndex, colIndex);
37145
37146         var p = {
37147             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
37148             id : cm.getColumnId(colIndex),
37149             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
37150         };
37151         var renderer = cm.getRenderer(colIndex);
37152         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
37153         if(typeof val == "undefined" || val === "") val = "&#160;";
37154         cellText.innerHTML = val;
37155         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
37156         this.syncRowHeights(rowIndex, rowIndex);
37157     },
37158
37159     calcColumnWidth : function(colIndex, maxRowsToMeasure){
37160         var maxWidth = 0;
37161         if(this.grid.autoSizeHeaders){
37162             var h = this.getHeaderCellMeasure(colIndex);
37163             maxWidth = Math.max(maxWidth, h.scrollWidth);
37164         }
37165         var tb, index;
37166         if(this.cm.isLocked(colIndex)){
37167             tb = this.getLockedTable();
37168             index = colIndex;
37169         }else{
37170             tb = this.getBodyTable();
37171             index = colIndex - this.cm.getLockedCount();
37172         }
37173         if(tb && tb.rows){
37174             var rows = tb.rows;
37175             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
37176             for(var i = 0; i < stopIndex; i++){
37177                 var cell = rows[i].childNodes[index].firstChild;
37178                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
37179             }
37180         }
37181         return maxWidth + /*margin for error in IE*/ 5;
37182     },
37183     /**
37184      * Autofit a column to its content.
37185      * @param {Number} colIndex
37186      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
37187      */
37188      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
37189          if(this.cm.isHidden(colIndex)){
37190              return; // can't calc a hidden column
37191          }
37192         if(forceMinSize){
37193             var cid = this.cm.getColumnId(colIndex);
37194             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
37195            if(this.grid.autoSizeHeaders){
37196                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
37197            }
37198         }
37199         var newWidth = this.calcColumnWidth(colIndex);
37200         this.cm.setColumnWidth(colIndex,
37201             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
37202         if(!suppressEvent){
37203             this.grid.fireEvent("columnresize", colIndex, newWidth);
37204         }
37205     },
37206
37207     /**
37208      * Autofits all columns to their content and then expands to fit any extra space in the grid
37209      */
37210      autoSizeColumns : function(){
37211         var cm = this.grid.colModel;
37212         var colCount = cm.getColumnCount();
37213         for(var i = 0; i < colCount; i++){
37214             this.autoSizeColumn(i, true, true);
37215         }
37216         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
37217             this.fitColumns();
37218         }else{
37219             this.updateColumns();
37220             this.layout();
37221         }
37222     },
37223
37224     /**
37225      * Autofits all columns to the grid's width proportionate with their current size
37226      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
37227      */
37228     fitColumns : function(reserveScrollSpace){
37229         var cm = this.grid.colModel;
37230         var colCount = cm.getColumnCount();
37231         var cols = [];
37232         var width = 0;
37233         var i, w;
37234         for (i = 0; i < colCount; i++){
37235             if(!cm.isHidden(i) && !cm.isFixed(i)){
37236                 w = cm.getColumnWidth(i);
37237                 cols.push(i);
37238                 cols.push(w);
37239                 width += w;
37240             }
37241         }
37242         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
37243         if(reserveScrollSpace){
37244             avail -= 17;
37245         }
37246         var frac = (avail - cm.getTotalWidth())/width;
37247         while (cols.length){
37248             w = cols.pop();
37249             i = cols.pop();
37250             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
37251         }
37252         this.updateColumns();
37253         this.layout();
37254     },
37255
37256     onRowSelect : function(rowIndex){
37257         var row = this.getRowComposite(rowIndex);
37258         row.addClass("x-grid-row-selected");
37259     },
37260
37261     onRowDeselect : function(rowIndex){
37262         var row = this.getRowComposite(rowIndex);
37263         row.removeClass("x-grid-row-selected");
37264     },
37265
37266     onCellSelect : function(row, col){
37267         var cell = this.getCell(row, col);
37268         if(cell){
37269             Roo.fly(cell).addClass("x-grid-cell-selected");
37270         }
37271     },
37272
37273     onCellDeselect : function(row, col){
37274         var cell = this.getCell(row, col);
37275         if(cell){
37276             Roo.fly(cell).removeClass("x-grid-cell-selected");
37277         }
37278     },
37279
37280     updateHeaderSortState : function(){
37281         
37282         // sort state can be single { field: xxx, direction : yyy}
37283         // or   { xxx=>ASC , yyy : DESC ..... }
37284         
37285         var mstate = {};
37286         if (!this.ds.multiSort) { 
37287             var state = this.ds.getSortState();
37288             if(!state){
37289                 return;
37290             }
37291             mstate[state.field] = state.direction;
37292             // FIXME... - this is not used here.. but might be elsewhere..
37293             this.sortState = state;
37294             
37295         } else {
37296             mstate = this.ds.sortToggle;
37297         }
37298         //remove existing sort classes..
37299         
37300         var sc = this.sortClasses;
37301         var hds = this.el.select(this.headerSelector).removeClass(sc);
37302         
37303         for(var f in mstate) {
37304         
37305             var sortColumn = this.cm.findColumnIndex(f);
37306             
37307             if(sortColumn != -1){
37308                 var sortDir = mstate[f];        
37309                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
37310             }
37311         }
37312         
37313          
37314         
37315     },
37316
37317
37318     handleHeaderClick : function(g, index,e){
37319         
37320         Roo.log("header click");
37321         
37322         if (Roo.isTouch) {
37323             // touch events on header are handled by context
37324             this.handleHdCtx(g,index,e);
37325             return;
37326         }
37327         
37328         
37329         if(this.headersDisabled){
37330             return;
37331         }
37332         var dm = g.dataSource, cm = g.colModel;
37333         if(!cm.isSortable(index)){
37334             return;
37335         }
37336         g.stopEditing();
37337         
37338         if (dm.multiSort) {
37339             // update the sortOrder
37340             var so = [];
37341             for(var i = 0; i < cm.config.length; i++ ) {
37342                 
37343                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
37344                     continue; // dont' bother, it's not in sort list or being set.
37345                 }
37346                 
37347                 so.push(cm.config[i].dataIndex);
37348             };
37349             dm.sortOrder = so;
37350         }
37351         
37352         
37353         dm.sort(cm.getDataIndex(index));
37354     },
37355
37356
37357     destroy : function(){
37358         if(this.colMenu){
37359             this.colMenu.removeAll();
37360             Roo.menu.MenuMgr.unregister(this.colMenu);
37361             this.colMenu.getEl().remove();
37362             delete this.colMenu;
37363         }
37364         if(this.hmenu){
37365             this.hmenu.removeAll();
37366             Roo.menu.MenuMgr.unregister(this.hmenu);
37367             this.hmenu.getEl().remove();
37368             delete this.hmenu;
37369         }
37370         if(this.grid.enableColumnMove){
37371             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37372             if(dds){
37373                 for(var dd in dds){
37374                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
37375                         var elid = dds[dd].dragElId;
37376                         dds[dd].unreg();
37377                         Roo.get(elid).remove();
37378                     } else if(dds[dd].config.isTarget){
37379                         dds[dd].proxyTop.remove();
37380                         dds[dd].proxyBottom.remove();
37381                         dds[dd].unreg();
37382                     }
37383                     if(Roo.dd.DDM.locationCache[dd]){
37384                         delete Roo.dd.DDM.locationCache[dd];
37385                     }
37386                 }
37387                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
37388             }
37389         }
37390         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
37391         this.bind(null, null);
37392         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
37393     },
37394
37395     handleLockChange : function(){
37396         this.refresh(true);
37397     },
37398
37399     onDenyColumnLock : function(){
37400
37401     },
37402
37403     onDenyColumnHide : function(){
37404
37405     },
37406
37407     handleHdMenuClick : function(item){
37408         var index = this.hdCtxIndex;
37409         var cm = this.cm, ds = this.ds;
37410         switch(item.id){
37411             case "asc":
37412                 ds.sort(cm.getDataIndex(index), "ASC");
37413                 break;
37414             case "desc":
37415                 ds.sort(cm.getDataIndex(index), "DESC");
37416                 break;
37417             case "lock":
37418                 var lc = cm.getLockedCount();
37419                 if(cm.getColumnCount(true) <= lc+1){
37420                     this.onDenyColumnLock();
37421                     return;
37422                 }
37423                 if(lc != index){
37424                     cm.setLocked(index, true, true);
37425                     cm.moveColumn(index, lc);
37426                     this.grid.fireEvent("columnmove", index, lc);
37427                 }else{
37428                     cm.setLocked(index, true);
37429                 }
37430             break;
37431             case "unlock":
37432                 var lc = cm.getLockedCount();
37433                 if((lc-1) != index){
37434                     cm.setLocked(index, false, true);
37435                     cm.moveColumn(index, lc-1);
37436                     this.grid.fireEvent("columnmove", index, lc-1);
37437                 }else{
37438                     cm.setLocked(index, false);
37439                 }
37440             break;
37441             case 'wider': // used to expand cols on touch..
37442             case 'narrow':
37443                 var cw = cm.getColumnWidth(index);
37444                 cw += (item.id == 'wider' ? 1 : -1) * 50;
37445                 cw = Math.max(0, cw);
37446                 cw = Math.min(cw,4000);
37447                 cm.setColumnWidth(index, cw);
37448                 break;
37449                 
37450             default:
37451                 index = cm.getIndexById(item.id.substr(4));
37452                 if(index != -1){
37453                     if(item.checked && cm.getColumnCount(true) <= 1){
37454                         this.onDenyColumnHide();
37455                         return false;
37456                     }
37457                     cm.setHidden(index, item.checked);
37458                 }
37459         }
37460         return true;
37461     },
37462
37463     beforeColMenuShow : function(){
37464         var cm = this.cm,  colCount = cm.getColumnCount();
37465         this.colMenu.removeAll();
37466         for(var i = 0; i < colCount; i++){
37467             this.colMenu.add(new Roo.menu.CheckItem({
37468                 id: "col-"+cm.getColumnId(i),
37469                 text: cm.getColumnHeader(i),
37470                 checked: !cm.isHidden(i),
37471                 hideOnClick:false
37472             }));
37473         }
37474     },
37475
37476     handleHdCtx : function(g, index, e){
37477         e.stopEvent();
37478         var hd = this.getHeaderCell(index);
37479         this.hdCtxIndex = index;
37480         var ms = this.hmenu.items, cm = this.cm;
37481         ms.get("asc").setDisabled(!cm.isSortable(index));
37482         ms.get("desc").setDisabled(!cm.isSortable(index));
37483         if(this.grid.enableColLock !== false){
37484             ms.get("lock").setDisabled(cm.isLocked(index));
37485             ms.get("unlock").setDisabled(!cm.isLocked(index));
37486         }
37487         this.hmenu.show(hd, "tl-bl");
37488     },
37489
37490     handleHdOver : function(e){
37491         var hd = this.findHeaderCell(e.getTarget());
37492         if(hd && !this.headersDisabled){
37493             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
37494                this.fly(hd).addClass("x-grid-hd-over");
37495             }
37496         }
37497     },
37498
37499     handleHdOut : function(e){
37500         var hd = this.findHeaderCell(e.getTarget());
37501         if(hd){
37502             this.fly(hd).removeClass("x-grid-hd-over");
37503         }
37504     },
37505
37506     handleSplitDblClick : function(e, t){
37507         var i = this.getCellIndex(t);
37508         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
37509             this.autoSizeColumn(i, true);
37510             this.layout();
37511         }
37512     },
37513
37514     render : function(){
37515
37516         var cm = this.cm;
37517         var colCount = cm.getColumnCount();
37518
37519         if(this.grid.monitorWindowResize === true){
37520             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
37521         }
37522         var header = this.renderHeaders();
37523         var body = this.templates.body.apply({rows:""});
37524         var html = this.templates.master.apply({
37525             lockedBody: body,
37526             body: body,
37527             lockedHeader: header[0],
37528             header: header[1]
37529         });
37530
37531         //this.updateColumns();
37532
37533         this.grid.getGridEl().dom.innerHTML = html;
37534
37535         this.initElements();
37536         
37537         // a kludge to fix the random scolling effect in webkit
37538         this.el.on("scroll", function() {
37539             this.el.dom.scrollTop=0; // hopefully not recursive..
37540         },this);
37541
37542         this.scroller.on("scroll", this.handleScroll, this);
37543         this.lockedBody.on("mousewheel", this.handleWheel, this);
37544         this.mainBody.on("mousewheel", this.handleWheel, this);
37545
37546         this.mainHd.on("mouseover", this.handleHdOver, this);
37547         this.mainHd.on("mouseout", this.handleHdOut, this);
37548         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
37549                 {delegate: "."+this.splitClass});
37550
37551         this.lockedHd.on("mouseover", this.handleHdOver, this);
37552         this.lockedHd.on("mouseout", this.handleHdOut, this);
37553         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
37554                 {delegate: "."+this.splitClass});
37555
37556         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
37557             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37558         }
37559
37560         this.updateSplitters();
37561
37562         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
37563             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37564             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
37565         }
37566
37567         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
37568             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
37569             this.hmenu.add(
37570                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
37571                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
37572             );
37573             if(this.grid.enableColLock !== false){
37574                 this.hmenu.add('-',
37575                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
37576                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
37577                 );
37578             }
37579             if (Roo.isTouch) {
37580                  this.hmenu.add('-',
37581                     {id:"wider", text: this.columnsWiderText},
37582                     {id:"narrow", text: this.columnsNarrowText }
37583                 );
37584                 
37585                  
37586             }
37587             
37588             if(this.grid.enableColumnHide !== false){
37589
37590                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
37591                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
37592                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
37593
37594                 this.hmenu.add('-',
37595                     {id:"columns", text: this.columnsText, menu: this.colMenu}
37596                 );
37597             }
37598             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
37599
37600             this.grid.on("headercontextmenu", this.handleHdCtx, this);
37601         }
37602
37603         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
37604             this.dd = new Roo.grid.GridDragZone(this.grid, {
37605                 ddGroup : this.grid.ddGroup || 'GridDD'
37606             });
37607             
37608         }
37609
37610         /*
37611         for(var i = 0; i < colCount; i++){
37612             if(cm.isHidden(i)){
37613                 this.hideColumn(i);
37614             }
37615             if(cm.config[i].align){
37616                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
37617                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
37618             }
37619         }*/
37620         
37621         this.updateHeaderSortState();
37622
37623         this.beforeInitialResize();
37624         this.layout(true);
37625
37626         // two part rendering gives faster view to the user
37627         this.renderPhase2.defer(1, this);
37628     },
37629
37630     renderPhase2 : function(){
37631         // render the rows now
37632         this.refresh();
37633         if(this.grid.autoSizeColumns){
37634             this.autoSizeColumns();
37635         }
37636     },
37637
37638     beforeInitialResize : function(){
37639
37640     },
37641
37642     onColumnSplitterMoved : function(i, w){
37643         this.userResized = true;
37644         var cm = this.grid.colModel;
37645         cm.setColumnWidth(i, w, true);
37646         var cid = cm.getColumnId(i);
37647         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37648         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
37649         this.updateSplitters();
37650         this.layout();
37651         this.grid.fireEvent("columnresize", i, w);
37652     },
37653
37654     syncRowHeights : function(startIndex, endIndex){
37655         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
37656             startIndex = startIndex || 0;
37657             var mrows = this.getBodyTable().rows;
37658             var lrows = this.getLockedTable().rows;
37659             var len = mrows.length-1;
37660             endIndex = Math.min(endIndex || len, len);
37661             for(var i = startIndex; i <= endIndex; i++){
37662                 var m = mrows[i], l = lrows[i];
37663                 var h = Math.max(m.offsetHeight, l.offsetHeight);
37664                 m.style.height = l.style.height = h + "px";
37665             }
37666         }
37667     },
37668
37669     layout : function(initialRender, is2ndPass){
37670         var g = this.grid;
37671         var auto = g.autoHeight;
37672         var scrollOffset = 16;
37673         var c = g.getGridEl(), cm = this.cm,
37674                 expandCol = g.autoExpandColumn,
37675                 gv = this;
37676         //c.beginMeasure();
37677
37678         if(!c.dom.offsetWidth){ // display:none?
37679             if(initialRender){
37680                 this.lockedWrap.show();
37681                 this.mainWrap.show();
37682             }
37683             return;
37684         }
37685
37686         var hasLock = this.cm.isLocked(0);
37687
37688         var tbh = this.headerPanel.getHeight();
37689         var bbh = this.footerPanel.getHeight();
37690
37691         if(auto){
37692             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
37693             var newHeight = ch + c.getBorderWidth("tb");
37694             if(g.maxHeight){
37695                 newHeight = Math.min(g.maxHeight, newHeight);
37696             }
37697             c.setHeight(newHeight);
37698         }
37699
37700         if(g.autoWidth){
37701             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
37702         }
37703
37704         var s = this.scroller;
37705
37706         var csize = c.getSize(true);
37707
37708         this.el.setSize(csize.width, csize.height);
37709
37710         this.headerPanel.setWidth(csize.width);
37711         this.footerPanel.setWidth(csize.width);
37712
37713         var hdHeight = this.mainHd.getHeight();
37714         var vw = csize.width;
37715         var vh = csize.height - (tbh + bbh);
37716
37717         s.setSize(vw, vh);
37718
37719         var bt = this.getBodyTable();
37720         var ltWidth = hasLock ?
37721                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
37722
37723         var scrollHeight = bt.offsetHeight;
37724         var scrollWidth = ltWidth + bt.offsetWidth;
37725         var vscroll = false, hscroll = false;
37726
37727         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
37728
37729         var lw = this.lockedWrap, mw = this.mainWrap;
37730         var lb = this.lockedBody, mb = this.mainBody;
37731
37732         setTimeout(function(){
37733             var t = s.dom.offsetTop;
37734             var w = s.dom.clientWidth,
37735                 h = s.dom.clientHeight;
37736
37737             lw.setTop(t);
37738             lw.setSize(ltWidth, h);
37739
37740             mw.setLeftTop(ltWidth, t);
37741             mw.setSize(w-ltWidth, h);
37742
37743             lb.setHeight(h-hdHeight);
37744             mb.setHeight(h-hdHeight);
37745
37746             if(is2ndPass !== true && !gv.userResized && expandCol){
37747                 // high speed resize without full column calculation
37748                 
37749                 var ci = cm.getIndexById(expandCol);
37750                 if (ci < 0) {
37751                     ci = cm.findColumnIndex(expandCol);
37752                 }
37753                 ci = Math.max(0, ci); // make sure it's got at least the first col.
37754                 var expandId = cm.getColumnId(ci);
37755                 var  tw = cm.getTotalWidth(false);
37756                 var currentWidth = cm.getColumnWidth(ci);
37757                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
37758                 if(currentWidth != cw){
37759                     cm.setColumnWidth(ci, cw, true);
37760                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
37761                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
37762                     gv.updateSplitters();
37763                     gv.layout(false, true);
37764                 }
37765             }
37766
37767             if(initialRender){
37768                 lw.show();
37769                 mw.show();
37770             }
37771             //c.endMeasure();
37772         }, 10);
37773     },
37774
37775     onWindowResize : function(){
37776         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
37777             return;
37778         }
37779         this.layout();
37780     },
37781
37782     appendFooter : function(parentEl){
37783         return null;
37784     },
37785
37786     sortAscText : "Sort Ascending",
37787     sortDescText : "Sort Descending",
37788     lockText : "Lock Column",
37789     unlockText : "Unlock Column",
37790     columnsText : "Columns",
37791  
37792     columnsWiderText : "Wider",
37793     columnsNarrowText : "Thinner"
37794 });
37795
37796
37797 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
37798     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
37799     this.proxy.el.addClass('x-grid3-col-dd');
37800 };
37801
37802 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
37803     handleMouseDown : function(e){
37804
37805     },
37806
37807     callHandleMouseDown : function(e){
37808         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
37809     }
37810 });
37811 /*
37812  * Based on:
37813  * Ext JS Library 1.1.1
37814  * Copyright(c) 2006-2007, Ext JS, LLC.
37815  *
37816  * Originally Released Under LGPL - original licence link has changed is not relivant.
37817  *
37818  * Fork - LGPL
37819  * <script type="text/javascript">
37820  */
37821  
37822 // private
37823 // This is a support class used internally by the Grid components
37824 Roo.grid.SplitDragZone = function(grid, hd, hd2){
37825     this.grid = grid;
37826     this.view = grid.getView();
37827     this.proxy = this.view.resizeProxy;
37828     Roo.grid.SplitDragZone.superclass.constructor.call(this, hd,
37829         "gridSplitters" + this.grid.getGridEl().id, {
37830         dragElId : Roo.id(this.proxy.dom), resizeFrame:false
37831     });
37832     this.setHandleElId(Roo.id(hd));
37833     this.setOuterHandleElId(Roo.id(hd2));
37834     this.scroll = false;
37835 };
37836 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
37837     fly: Roo.Element.fly,
37838
37839     b4StartDrag : function(x, y){
37840         this.view.headersDisabled = true;
37841         this.proxy.setHeight(this.view.mainWrap.getHeight());
37842         var w = this.cm.getColumnWidth(this.cellIndex);
37843         var minw = Math.max(w-this.grid.minColumnWidth, 0);
37844         this.resetConstraints();
37845         this.setXConstraint(minw, 1000);
37846         this.setYConstraint(0, 0);
37847         this.minX = x - minw;
37848         this.maxX = x + 1000;
37849         this.startPos = x;
37850         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
37851     },
37852
37853
37854     handleMouseDown : function(e){
37855         ev = Roo.EventObject.setEvent(e);
37856         var t = this.fly(ev.getTarget());
37857         if(t.hasClass("x-grid-split")){
37858             this.cellIndex = this.view.getCellIndex(t.dom);
37859             this.split = t.dom;
37860             this.cm = this.grid.colModel;
37861             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
37862                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
37863             }
37864         }
37865     },
37866
37867     endDrag : function(e){
37868         this.view.headersDisabled = false;
37869         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
37870         var diff = endX - this.startPos;
37871         this.view.onColumnSplitterMoved(this.cellIndex, this.cm.getColumnWidth(this.cellIndex)+diff);
37872     },
37873
37874     autoOffset : function(){
37875         this.setDelta(0,0);
37876     }
37877 });/*
37878  * Based on:
37879  * Ext JS Library 1.1.1
37880  * Copyright(c) 2006-2007, Ext JS, LLC.
37881  *
37882  * Originally Released Under LGPL - original licence link has changed is not relivant.
37883  *
37884  * Fork - LGPL
37885  * <script type="text/javascript">
37886  */
37887  
37888 // private
37889 // This is a support class used internally by the Grid components
37890 Roo.grid.GridDragZone = function(grid, config){
37891     this.view = grid.getView();
37892     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
37893     if(this.view.lockedBody){
37894         this.setHandleElId(Roo.id(this.view.mainBody.dom));
37895         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
37896     }
37897     this.scroll = false;
37898     this.grid = grid;
37899     this.ddel = document.createElement('div');
37900     this.ddel.className = 'x-grid-dd-wrap';
37901 };
37902
37903 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
37904     ddGroup : "GridDD",
37905
37906     getDragData : function(e){
37907         var t = Roo.lib.Event.getTarget(e);
37908         var rowIndex = this.view.findRowIndex(t);
37909         var sm = this.grid.selModel;
37910             
37911         //Roo.log(rowIndex);
37912         
37913         if (sm.getSelectedCell) {
37914             // cell selection..
37915             if (!sm.getSelectedCell()) {
37916                 return false;
37917             }
37918             if (rowIndex != sm.getSelectedCell()[0]) {
37919                 return false;
37920             }
37921         
37922         }
37923         
37924         if(rowIndex !== false){
37925             
37926             // if editorgrid.. 
37927             
37928             
37929             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
37930                
37931             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
37932               //  
37933             //}
37934             if (e.hasModifier()){
37935                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
37936             }
37937             
37938             Roo.log("getDragData");
37939             
37940             return {
37941                 grid: this.grid,
37942                 ddel: this.ddel,
37943                 rowIndex: rowIndex,
37944                 selections:sm.getSelections ? sm.getSelections() : (
37945                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : []
37946                 )
37947             };
37948         }
37949         return false;
37950     },
37951
37952     onInitDrag : function(e){
37953         var data = this.dragData;
37954         this.ddel.innerHTML = this.grid.getDragDropText();
37955         this.proxy.update(this.ddel);
37956         // fire start drag?
37957     },
37958
37959     afterRepair : function(){
37960         this.dragging = false;
37961     },
37962
37963     getRepairXY : function(e, data){
37964         return false;
37965     },
37966
37967     onEndDrag : function(data, e){
37968         // fire end drag?
37969     },
37970
37971     onValidDrop : function(dd, e, id){
37972         // fire drag drop?
37973         this.hideProxy();
37974     },
37975
37976     beforeInvalidDrop : function(e, id){
37977
37978     }
37979 });/*
37980  * Based on:
37981  * Ext JS Library 1.1.1
37982  * Copyright(c) 2006-2007, Ext JS, LLC.
37983  *
37984  * Originally Released Under LGPL - original licence link has changed is not relivant.
37985  *
37986  * Fork - LGPL
37987  * <script type="text/javascript">
37988  */
37989  
37990
37991 /**
37992  * @class Roo.grid.ColumnModel
37993  * @extends Roo.util.Observable
37994  * This is the default implementation of a ColumnModel used by the Grid. It defines
37995  * the columns in the grid.
37996  * <br>Usage:<br>
37997  <pre><code>
37998  var colModel = new Roo.grid.ColumnModel([
37999         {header: "Ticker", width: 60, sortable: true, locked: true},
38000         {header: "Company Name", width: 150, sortable: true},
38001         {header: "Market Cap.", width: 100, sortable: true},
38002         {header: "$ Sales", width: 100, sortable: true, renderer: money},
38003         {header: "Employees", width: 100, sortable: true, resizable: false}
38004  ]);
38005  </code></pre>
38006  * <p>
38007  
38008  * The config options listed for this class are options which may appear in each
38009  * individual column definition.
38010  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
38011  * @constructor
38012  * @param {Object} config An Array of column config objects. See this class's
38013  * config objects for details.
38014 */
38015 Roo.grid.ColumnModel = function(config){
38016         /**
38017      * The config passed into the constructor
38018      */
38019     this.config = config;
38020     this.lookup = {};
38021
38022     // if no id, create one
38023     // if the column does not have a dataIndex mapping,
38024     // map it to the order it is in the config
38025     for(var i = 0, len = config.length; i < len; i++){
38026         var c = config[i];
38027         if(typeof c.dataIndex == "undefined"){
38028             c.dataIndex = i;
38029         }
38030         if(typeof c.renderer == "string"){
38031             c.renderer = Roo.util.Format[c.renderer];
38032         }
38033         if(typeof c.id == "undefined"){
38034             c.id = Roo.id();
38035         }
38036         if(c.editor && c.editor.xtype){
38037             c.editor  = Roo.factory(c.editor, Roo.grid);
38038         }
38039         if(c.editor && c.editor.isFormField){
38040             c.editor = new Roo.grid.GridEditor(c.editor);
38041         }
38042         this.lookup[c.id] = c;
38043     }
38044
38045     /**
38046      * The width of columns which have no width specified (defaults to 100)
38047      * @type Number
38048      */
38049     this.defaultWidth = 100;
38050
38051     /**
38052      * Default sortable of columns which have no sortable specified (defaults to false)
38053      * @type Boolean
38054      */
38055     this.defaultSortable = false;
38056
38057     this.addEvents({
38058         /**
38059              * @event widthchange
38060              * Fires when the width of a column changes.
38061              * @param {ColumnModel} this
38062              * @param {Number} columnIndex The column index
38063              * @param {Number} newWidth The new width
38064              */
38065             "widthchange": true,
38066         /**
38067              * @event headerchange
38068              * Fires when the text of a header changes.
38069              * @param {ColumnModel} this
38070              * @param {Number} columnIndex The column index
38071              * @param {Number} newText The new header text
38072              */
38073             "headerchange": true,
38074         /**
38075              * @event hiddenchange
38076              * Fires when a column is hidden or "unhidden".
38077              * @param {ColumnModel} this
38078              * @param {Number} columnIndex The column index
38079              * @param {Boolean} hidden true if hidden, false otherwise
38080              */
38081             "hiddenchange": true,
38082             /**
38083          * @event columnmoved
38084          * Fires when a column is moved.
38085          * @param {ColumnModel} this
38086          * @param {Number} oldIndex
38087          * @param {Number} newIndex
38088          */
38089         "columnmoved" : true,
38090         /**
38091          * @event columlockchange
38092          * Fires when a column's locked state is changed
38093          * @param {ColumnModel} this
38094          * @param {Number} colIndex
38095          * @param {Boolean} locked true if locked
38096          */
38097         "columnlockchange" : true
38098     });
38099     Roo.grid.ColumnModel.superclass.constructor.call(this);
38100 };
38101 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
38102     /**
38103      * @cfg {String} header The header text to display in the Grid view.
38104      */
38105     /**
38106      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
38107      * {@link Roo.data.Record} definition from which to draw the column's value. If not
38108      * specified, the column's index is used as an index into the Record's data Array.
38109      */
38110     /**
38111      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
38112      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
38113      */
38114     /**
38115      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
38116      * Defaults to the value of the {@link #defaultSortable} property.
38117      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
38118      */
38119     /**
38120      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
38121      */
38122     /**
38123      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
38124      */
38125     /**
38126      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
38127      */
38128     /**
38129      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
38130      */
38131     /**
38132      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
38133      * given the cell's data value. See {@link #setRenderer}. If not specified, the
38134      * default renderer uses the raw data value.
38135      */
38136        /**
38137      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
38138      */
38139     /**
38140      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
38141      */
38142
38143     /**
38144      * Returns the id of the column at the specified index.
38145      * @param {Number} index The column index
38146      * @return {String} the id
38147      */
38148     getColumnId : function(index){
38149         return this.config[index].id;
38150     },
38151
38152     /**
38153      * Returns the column for a specified id.
38154      * @param {String} id The column id
38155      * @return {Object} the column
38156      */
38157     getColumnById : function(id){
38158         return this.lookup[id];
38159     },
38160
38161     
38162     /**
38163      * Returns the column for a specified dataIndex.
38164      * @param {String} dataIndex The column dataIndex
38165      * @return {Object|Boolean} the column or false if not found
38166      */
38167     getColumnByDataIndex: function(dataIndex){
38168         var index = this.findColumnIndex(dataIndex);
38169         return index > -1 ? this.config[index] : false;
38170     },
38171     
38172     /**
38173      * Returns the index for a specified column id.
38174      * @param {String} id The column id
38175      * @return {Number} the index, or -1 if not found
38176      */
38177     getIndexById : function(id){
38178         for(var i = 0, len = this.config.length; i < len; i++){
38179             if(this.config[i].id == id){
38180                 return i;
38181             }
38182         }
38183         return -1;
38184     },
38185     
38186     /**
38187      * Returns the index for a specified column dataIndex.
38188      * @param {String} dataIndex The column dataIndex
38189      * @return {Number} the index, or -1 if not found
38190      */
38191     
38192     findColumnIndex : function(dataIndex){
38193         for(var i = 0, len = this.config.length; i < len; i++){
38194             if(this.config[i].dataIndex == dataIndex){
38195                 return i;
38196             }
38197         }
38198         return -1;
38199     },
38200     
38201     
38202     moveColumn : function(oldIndex, newIndex){
38203         var c = this.config[oldIndex];
38204         this.config.splice(oldIndex, 1);
38205         this.config.splice(newIndex, 0, c);
38206         this.dataMap = null;
38207         this.fireEvent("columnmoved", this, oldIndex, newIndex);
38208     },
38209
38210     isLocked : function(colIndex){
38211         return this.config[colIndex].locked === true;
38212     },
38213
38214     setLocked : function(colIndex, value, suppressEvent){
38215         if(this.isLocked(colIndex) == value){
38216             return;
38217         }
38218         this.config[colIndex].locked = value;
38219         if(!suppressEvent){
38220             this.fireEvent("columnlockchange", this, colIndex, value);
38221         }
38222     },
38223
38224     getTotalLockedWidth : function(){
38225         var totalWidth = 0;
38226         for(var i = 0; i < this.config.length; i++){
38227             if(this.isLocked(i) && !this.isHidden(i)){
38228                 this.totalWidth += this.getColumnWidth(i);
38229             }
38230         }
38231         return totalWidth;
38232     },
38233
38234     getLockedCount : function(){
38235         for(var i = 0, len = this.config.length; i < len; i++){
38236             if(!this.isLocked(i)){
38237                 return i;
38238             }
38239         }
38240     },
38241
38242     /**
38243      * Returns the number of columns.
38244      * @return {Number}
38245      */
38246     getColumnCount : function(visibleOnly){
38247         if(visibleOnly === true){
38248             var c = 0;
38249             for(var i = 0, len = this.config.length; i < len; i++){
38250                 if(!this.isHidden(i)){
38251                     c++;
38252                 }
38253             }
38254             return c;
38255         }
38256         return this.config.length;
38257     },
38258
38259     /**
38260      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
38261      * @param {Function} fn
38262      * @param {Object} scope (optional)
38263      * @return {Array} result
38264      */
38265     getColumnsBy : function(fn, scope){
38266         var r = [];
38267         for(var i = 0, len = this.config.length; i < len; i++){
38268             var c = this.config[i];
38269             if(fn.call(scope||this, c, i) === true){
38270                 r[r.length] = c;
38271             }
38272         }
38273         return r;
38274     },
38275
38276     /**
38277      * Returns true if the specified column is sortable.
38278      * @param {Number} col The column index
38279      * @return {Boolean}
38280      */
38281     isSortable : function(col){
38282         if(typeof this.config[col].sortable == "undefined"){
38283             return this.defaultSortable;
38284         }
38285         return this.config[col].sortable;
38286     },
38287
38288     /**
38289      * Returns the rendering (formatting) function defined for the column.
38290      * @param {Number} col The column index.
38291      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
38292      */
38293     getRenderer : function(col){
38294         if(!this.config[col].renderer){
38295             return Roo.grid.ColumnModel.defaultRenderer;
38296         }
38297         return this.config[col].renderer;
38298     },
38299
38300     /**
38301      * Sets the rendering (formatting) function for a column.
38302      * @param {Number} col The column index
38303      * @param {Function} fn The function to use to process the cell's raw data
38304      * to return HTML markup for the grid view. The render function is called with
38305      * the following parameters:<ul>
38306      * <li>Data value.</li>
38307      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
38308      * <li>css A CSS style string to apply to the table cell.</li>
38309      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
38310      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
38311      * <li>Row index</li>
38312      * <li>Column index</li>
38313      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
38314      */
38315     setRenderer : function(col, fn){
38316         this.config[col].renderer = fn;
38317     },
38318
38319     /**
38320      * Returns the width for the specified column.
38321      * @param {Number} col The column index
38322      * @return {Number}
38323      */
38324     getColumnWidth : function(col){
38325         return this.config[col].width * 1 || this.defaultWidth;
38326     },
38327
38328     /**
38329      * Sets the width for a column.
38330      * @param {Number} col The column index
38331      * @param {Number} width The new width
38332      */
38333     setColumnWidth : function(col, width, suppressEvent){
38334         this.config[col].width = width;
38335         this.totalWidth = null;
38336         if(!suppressEvent){
38337              this.fireEvent("widthchange", this, col, width);
38338         }
38339     },
38340
38341     /**
38342      * Returns the total width of all columns.
38343      * @param {Boolean} includeHidden True to include hidden column widths
38344      * @return {Number}
38345      */
38346     getTotalWidth : function(includeHidden){
38347         if(!this.totalWidth){
38348             this.totalWidth = 0;
38349             for(var i = 0, len = this.config.length; i < len; i++){
38350                 if(includeHidden || !this.isHidden(i)){
38351                     this.totalWidth += this.getColumnWidth(i);
38352                 }
38353             }
38354         }
38355         return this.totalWidth;
38356     },
38357
38358     /**
38359      * Returns the header for the specified column.
38360      * @param {Number} col The column index
38361      * @return {String}
38362      */
38363     getColumnHeader : function(col){
38364         return this.config[col].header;
38365     },
38366
38367     /**
38368      * Sets the header for a column.
38369      * @param {Number} col The column index
38370      * @param {String} header The new header
38371      */
38372     setColumnHeader : function(col, header){
38373         this.config[col].header = header;
38374         this.fireEvent("headerchange", this, col, header);
38375     },
38376
38377     /**
38378      * Returns the tooltip for the specified column.
38379      * @param {Number} col The column index
38380      * @return {String}
38381      */
38382     getColumnTooltip : function(col){
38383             return this.config[col].tooltip;
38384     },
38385     /**
38386      * Sets the tooltip for a column.
38387      * @param {Number} col The column index
38388      * @param {String} tooltip The new tooltip
38389      */
38390     setColumnTooltip : function(col, tooltip){
38391             this.config[col].tooltip = tooltip;
38392     },
38393
38394     /**
38395      * Returns the dataIndex for the specified column.
38396      * @param {Number} col The column index
38397      * @return {Number}
38398      */
38399     getDataIndex : function(col){
38400         return this.config[col].dataIndex;
38401     },
38402
38403     /**
38404      * Sets the dataIndex for a column.
38405      * @param {Number} col The column index
38406      * @param {Number} dataIndex The new dataIndex
38407      */
38408     setDataIndex : function(col, dataIndex){
38409         this.config[col].dataIndex = dataIndex;
38410     },
38411
38412     
38413     
38414     /**
38415      * Returns true if the cell is editable.
38416      * @param {Number} colIndex The column index
38417      * @param {Number} rowIndex The row index
38418      * @return {Boolean}
38419      */
38420     isCellEditable : function(colIndex, rowIndex){
38421         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
38422     },
38423
38424     /**
38425      * Returns the editor defined for the cell/column.
38426      * return false or null to disable editing.
38427      * @param {Number} colIndex The column index
38428      * @param {Number} rowIndex The row index
38429      * @return {Object}
38430      */
38431     getCellEditor : function(colIndex, rowIndex){
38432         return this.config[colIndex].editor;
38433     },
38434
38435     /**
38436      * Sets if a column is editable.
38437      * @param {Number} col The column index
38438      * @param {Boolean} editable True if the column is editable
38439      */
38440     setEditable : function(col, editable){
38441         this.config[col].editable = editable;
38442     },
38443
38444
38445     /**
38446      * Returns true if the column is hidden.
38447      * @param {Number} colIndex The column index
38448      * @return {Boolean}
38449      */
38450     isHidden : function(colIndex){
38451         return this.config[colIndex].hidden;
38452     },
38453
38454
38455     /**
38456      * Returns true if the column width cannot be changed
38457      */
38458     isFixed : function(colIndex){
38459         return this.config[colIndex].fixed;
38460     },
38461
38462     /**
38463      * Returns true if the column can be resized
38464      * @return {Boolean}
38465      */
38466     isResizable : function(colIndex){
38467         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
38468     },
38469     /**
38470      * Sets if a column is hidden.
38471      * @param {Number} colIndex The column index
38472      * @param {Boolean} hidden True if the column is hidden
38473      */
38474     setHidden : function(colIndex, hidden){
38475         this.config[colIndex].hidden = hidden;
38476         this.totalWidth = null;
38477         this.fireEvent("hiddenchange", this, colIndex, hidden);
38478     },
38479
38480     /**
38481      * Sets the editor for a column.
38482      * @param {Number} col The column index
38483      * @param {Object} editor The editor object
38484      */
38485     setEditor : function(col, editor){
38486         this.config[col].editor = editor;
38487     }
38488 });
38489
38490 Roo.grid.ColumnModel.defaultRenderer = function(value){
38491         if(typeof value == "string" && value.length < 1){
38492             return "&#160;";
38493         }
38494         return value;
38495 };
38496
38497 // Alias for backwards compatibility
38498 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
38499 /*
38500  * Based on:
38501  * Ext JS Library 1.1.1
38502  * Copyright(c) 2006-2007, Ext JS, LLC.
38503  *
38504  * Originally Released Under LGPL - original licence link has changed is not relivant.
38505  *
38506  * Fork - LGPL
38507  * <script type="text/javascript">
38508  */
38509
38510 /**
38511  * @class Roo.grid.AbstractSelectionModel
38512  * @extends Roo.util.Observable
38513  * Abstract base class for grid SelectionModels.  It provides the interface that should be
38514  * implemented by descendant classes.  This class should not be directly instantiated.
38515  * @constructor
38516  */
38517 Roo.grid.AbstractSelectionModel = function(){
38518     this.locked = false;
38519     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
38520 };
38521
38522 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
38523     /** @ignore Called by the grid automatically. Do not call directly. */
38524     init : function(grid){
38525         this.grid = grid;
38526         this.initEvents();
38527     },
38528
38529     /**
38530      * Locks the selections.
38531      */
38532     lock : function(){
38533         this.locked = true;
38534     },
38535
38536     /**
38537      * Unlocks the selections.
38538      */
38539     unlock : function(){
38540         this.locked = false;
38541     },
38542
38543     /**
38544      * Returns true if the selections are locked.
38545      * @return {Boolean}
38546      */
38547     isLocked : function(){
38548         return this.locked;
38549     }
38550 });/*
38551  * Based on:
38552  * Ext JS Library 1.1.1
38553  * Copyright(c) 2006-2007, Ext JS, LLC.
38554  *
38555  * Originally Released Under LGPL - original licence link has changed is not relivant.
38556  *
38557  * Fork - LGPL
38558  * <script type="text/javascript">
38559  */
38560 /**
38561  * @extends Roo.grid.AbstractSelectionModel
38562  * @class Roo.grid.RowSelectionModel
38563  * The default SelectionModel used by {@link Roo.grid.Grid}.
38564  * It supports multiple selections and keyboard selection/navigation. 
38565  * @constructor
38566  * @param {Object} config
38567  */
38568 Roo.grid.RowSelectionModel = function(config){
38569     Roo.apply(this, config);
38570     this.selections = new Roo.util.MixedCollection(false, function(o){
38571         return o.id;
38572     });
38573
38574     this.last = false;
38575     this.lastActive = false;
38576
38577     this.addEvents({
38578         /**
38579              * @event selectionchange
38580              * Fires when the selection changes
38581              * @param {SelectionModel} this
38582              */
38583             "selectionchange" : true,
38584         /**
38585              * @event afterselectionchange
38586              * Fires after the selection changes (eg. by key press or clicking)
38587              * @param {SelectionModel} this
38588              */
38589             "afterselectionchange" : true,
38590         /**
38591              * @event beforerowselect
38592              * Fires when a row is selected being selected, return false to cancel.
38593              * @param {SelectionModel} this
38594              * @param {Number} rowIndex The selected index
38595              * @param {Boolean} keepExisting False if other selections will be cleared
38596              */
38597             "beforerowselect" : true,
38598         /**
38599              * @event rowselect
38600              * Fires when a row is selected.
38601              * @param {SelectionModel} this
38602              * @param {Number} rowIndex The selected index
38603              * @param {Roo.data.Record} r The record
38604              */
38605             "rowselect" : true,
38606         /**
38607              * @event rowdeselect
38608              * Fires when a row is deselected.
38609              * @param {SelectionModel} this
38610              * @param {Number} rowIndex The selected index
38611              */
38612         "rowdeselect" : true
38613     });
38614     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
38615     this.locked = false;
38616 };
38617
38618 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
38619     /**
38620      * @cfg {Boolean} singleSelect
38621      * True to allow selection of only one row at a time (defaults to false)
38622      */
38623     singleSelect : false,
38624
38625     // private
38626     initEvents : function(){
38627
38628         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
38629             this.grid.on("mousedown", this.handleMouseDown, this);
38630         }else{ // allow click to work like normal
38631             this.grid.on("rowclick", this.handleDragableRowClick, this);
38632         }
38633
38634         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
38635             "up" : function(e){
38636                 if(!e.shiftKey){
38637                     this.selectPrevious(e.shiftKey);
38638                 }else if(this.last !== false && this.lastActive !== false){
38639                     var last = this.last;
38640                     this.selectRange(this.last,  this.lastActive-1);
38641                     this.grid.getView().focusRow(this.lastActive);
38642                     if(last !== false){
38643                         this.last = last;
38644                     }
38645                 }else{
38646                     this.selectFirstRow();
38647                 }
38648                 this.fireEvent("afterselectionchange", this);
38649             },
38650             "down" : function(e){
38651                 if(!e.shiftKey){
38652                     this.selectNext(e.shiftKey);
38653                 }else if(this.last !== false && this.lastActive !== false){
38654                     var last = this.last;
38655                     this.selectRange(this.last,  this.lastActive+1);
38656                     this.grid.getView().focusRow(this.lastActive);
38657                     if(last !== false){
38658                         this.last = last;
38659                     }
38660                 }else{
38661                     this.selectFirstRow();
38662                 }
38663                 this.fireEvent("afterselectionchange", this);
38664             },
38665             scope: this
38666         });
38667
38668         var view = this.grid.view;
38669         view.on("refresh", this.onRefresh, this);
38670         view.on("rowupdated", this.onRowUpdated, this);
38671         view.on("rowremoved", this.onRemove, this);
38672     },
38673
38674     // private
38675     onRefresh : function(){
38676         var ds = this.grid.dataSource, i, v = this.grid.view;
38677         var s = this.selections;
38678         s.each(function(r){
38679             if((i = ds.indexOfId(r.id)) != -1){
38680                 v.onRowSelect(i);
38681             }else{
38682                 s.remove(r);
38683             }
38684         });
38685     },
38686
38687     // private
38688     onRemove : function(v, index, r){
38689         this.selections.remove(r);
38690     },
38691
38692     // private
38693     onRowUpdated : function(v, index, r){
38694         if(this.isSelected(r)){
38695             v.onRowSelect(index);
38696         }
38697     },
38698
38699     /**
38700      * Select records.
38701      * @param {Array} records The records to select
38702      * @param {Boolean} keepExisting (optional) True to keep existing selections
38703      */
38704     selectRecords : function(records, keepExisting){
38705         if(!keepExisting){
38706             this.clearSelections();
38707         }
38708         var ds = this.grid.dataSource;
38709         for(var i = 0, len = records.length; i < len; i++){
38710             this.selectRow(ds.indexOf(records[i]), true);
38711         }
38712     },
38713
38714     /**
38715      * Gets the number of selected rows.
38716      * @return {Number}
38717      */
38718     getCount : function(){
38719         return this.selections.length;
38720     },
38721
38722     /**
38723      * Selects the first row in the grid.
38724      */
38725     selectFirstRow : function(){
38726         this.selectRow(0);
38727     },
38728
38729     /**
38730      * Select the last row.
38731      * @param {Boolean} keepExisting (optional) True to keep existing selections
38732      */
38733     selectLastRow : function(keepExisting){
38734         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
38735     },
38736
38737     /**
38738      * Selects the row immediately following the last selected row.
38739      * @param {Boolean} keepExisting (optional) True to keep existing selections
38740      */
38741     selectNext : function(keepExisting){
38742         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
38743             this.selectRow(this.last+1, keepExisting);
38744             this.grid.getView().focusRow(this.last);
38745         }
38746     },
38747
38748     /**
38749      * Selects the row that precedes the last selected row.
38750      * @param {Boolean} keepExisting (optional) True to keep existing selections
38751      */
38752     selectPrevious : function(keepExisting){
38753         if(this.last){
38754             this.selectRow(this.last-1, keepExisting);
38755             this.grid.getView().focusRow(this.last);
38756         }
38757     },
38758
38759     /**
38760      * Returns the selected records
38761      * @return {Array} Array of selected records
38762      */
38763     getSelections : function(){
38764         return [].concat(this.selections.items);
38765     },
38766
38767     /**
38768      * Returns the first selected record.
38769      * @return {Record}
38770      */
38771     getSelected : function(){
38772         return this.selections.itemAt(0);
38773     },
38774
38775
38776     /**
38777      * Clears all selections.
38778      */
38779     clearSelections : function(fast){
38780         if(this.locked) return;
38781         if(fast !== true){
38782             var ds = this.grid.dataSource;
38783             var s = this.selections;
38784             s.each(function(r){
38785                 this.deselectRow(ds.indexOfId(r.id));
38786             }, this);
38787             s.clear();
38788         }else{
38789             this.selections.clear();
38790         }
38791         this.last = false;
38792     },
38793
38794
38795     /**
38796      * Selects all rows.
38797      */
38798     selectAll : function(){
38799         if(this.locked) return;
38800         this.selections.clear();
38801         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
38802             this.selectRow(i, true);
38803         }
38804     },
38805
38806     /**
38807      * Returns True if there is a selection.
38808      * @return {Boolean}
38809      */
38810     hasSelection : function(){
38811         return this.selections.length > 0;
38812     },
38813
38814     /**
38815      * Returns True if the specified row is selected.
38816      * @param {Number/Record} record The record or index of the record to check
38817      * @return {Boolean}
38818      */
38819     isSelected : function(index){
38820         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
38821         return (r && this.selections.key(r.id) ? true : false);
38822     },
38823
38824     /**
38825      * Returns True if the specified record id is selected.
38826      * @param {String} id The id of record to check
38827      * @return {Boolean}
38828      */
38829     isIdSelected : function(id){
38830         return (this.selections.key(id) ? true : false);
38831     },
38832
38833     // private
38834     handleMouseDown : function(e, t){
38835         var view = this.grid.getView(), rowIndex;
38836         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
38837             return;
38838         };
38839         if(e.shiftKey && this.last !== false){
38840             var last = this.last;
38841             this.selectRange(last, rowIndex, e.ctrlKey);
38842             this.last = last; // reset the last
38843             view.focusRow(rowIndex);
38844         }else{
38845             var isSelected = this.isSelected(rowIndex);
38846             if(e.button !== 0 && isSelected){
38847                 view.focusRow(rowIndex);
38848             }else if(e.ctrlKey && isSelected){
38849                 this.deselectRow(rowIndex);
38850             }else if(!isSelected){
38851                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
38852                 view.focusRow(rowIndex);
38853             }
38854         }
38855         this.fireEvent("afterselectionchange", this);
38856     },
38857     // private
38858     handleDragableRowClick :  function(grid, rowIndex, e) 
38859     {
38860         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
38861             this.selectRow(rowIndex, false);
38862             grid.view.focusRow(rowIndex);
38863              this.fireEvent("afterselectionchange", this);
38864         }
38865     },
38866     
38867     /**
38868      * Selects multiple rows.
38869      * @param {Array} rows Array of the indexes of the row to select
38870      * @param {Boolean} keepExisting (optional) True to keep existing selections
38871      */
38872     selectRows : function(rows, keepExisting){
38873         if(!keepExisting){
38874             this.clearSelections();
38875         }
38876         for(var i = 0, len = rows.length; i < len; i++){
38877             this.selectRow(rows[i], true);
38878         }
38879     },
38880
38881     /**
38882      * Selects a range of rows. All rows in between startRow and endRow are also selected.
38883      * @param {Number} startRow The index of the first row in the range
38884      * @param {Number} endRow The index of the last row in the range
38885      * @param {Boolean} keepExisting (optional) True to retain existing selections
38886      */
38887     selectRange : function(startRow, endRow, keepExisting){
38888         if(this.locked) return;
38889         if(!keepExisting){
38890             this.clearSelections();
38891         }
38892         if(startRow <= endRow){
38893             for(var i = startRow; i <= endRow; i++){
38894                 this.selectRow(i, true);
38895             }
38896         }else{
38897             for(var i = startRow; i >= endRow; i--){
38898                 this.selectRow(i, true);
38899             }
38900         }
38901     },
38902
38903     /**
38904      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
38905      * @param {Number} startRow The index of the first row in the range
38906      * @param {Number} endRow The index of the last row in the range
38907      */
38908     deselectRange : function(startRow, endRow, preventViewNotify){
38909         if(this.locked) return;
38910         for(var i = startRow; i <= endRow; i++){
38911             this.deselectRow(i, preventViewNotify);
38912         }
38913     },
38914
38915     /**
38916      * Selects a row.
38917      * @param {Number} row The index of the row to select
38918      * @param {Boolean} keepExisting (optional) True to keep existing selections
38919      */
38920     selectRow : function(index, keepExisting, preventViewNotify){
38921         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) return;
38922         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
38923             if(!keepExisting || this.singleSelect){
38924                 this.clearSelections();
38925             }
38926             var r = this.grid.dataSource.getAt(index);
38927             this.selections.add(r);
38928             this.last = this.lastActive = index;
38929             if(!preventViewNotify){
38930                 this.grid.getView().onRowSelect(index);
38931             }
38932             this.fireEvent("rowselect", this, index, r);
38933             this.fireEvent("selectionchange", this);
38934         }
38935     },
38936
38937     /**
38938      * Deselects a row.
38939      * @param {Number} row The index of the row to deselect
38940      */
38941     deselectRow : function(index, preventViewNotify){
38942         if(this.locked) return;
38943         if(this.last == index){
38944             this.last = false;
38945         }
38946         if(this.lastActive == index){
38947             this.lastActive = false;
38948         }
38949         var r = this.grid.dataSource.getAt(index);
38950         this.selections.remove(r);
38951         if(!preventViewNotify){
38952             this.grid.getView().onRowDeselect(index);
38953         }
38954         this.fireEvent("rowdeselect", this, index);
38955         this.fireEvent("selectionchange", this);
38956     },
38957
38958     // private
38959     restoreLast : function(){
38960         if(this._last){
38961             this.last = this._last;
38962         }
38963     },
38964
38965     // private
38966     acceptsNav : function(row, col, cm){
38967         return !cm.isHidden(col) && cm.isCellEditable(col, row);
38968     },
38969
38970     // private
38971     onEditorKey : function(field, e){
38972         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
38973         if(k == e.TAB){
38974             e.stopEvent();
38975             ed.completeEdit();
38976             if(e.shiftKey){
38977                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
38978             }else{
38979                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
38980             }
38981         }else if(k == e.ENTER && !e.ctrlKey){
38982             e.stopEvent();
38983             ed.completeEdit();
38984             if(e.shiftKey){
38985                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
38986             }else{
38987                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
38988             }
38989         }else if(k == e.ESC){
38990             ed.cancelEdit();
38991         }
38992         if(newCell){
38993             g.startEditing(newCell[0], newCell[1]);
38994         }
38995     }
38996 });/*
38997  * Based on:
38998  * Ext JS Library 1.1.1
38999  * Copyright(c) 2006-2007, Ext JS, LLC.
39000  *
39001  * Originally Released Under LGPL - original licence link has changed is not relivant.
39002  *
39003  * Fork - LGPL
39004  * <script type="text/javascript">
39005  */
39006 /**
39007  * @class Roo.grid.CellSelectionModel
39008  * @extends Roo.grid.AbstractSelectionModel
39009  * This class provides the basic implementation for cell selection in a grid.
39010  * @constructor
39011  * @param {Object} config The object containing the configuration of this model.
39012  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
39013  */
39014 Roo.grid.CellSelectionModel = function(config){
39015     Roo.apply(this, config);
39016
39017     this.selection = null;
39018
39019     this.addEvents({
39020         /**
39021              * @event beforerowselect
39022              * Fires before a cell is selected.
39023              * @param {SelectionModel} this
39024              * @param {Number} rowIndex The selected row index
39025              * @param {Number} colIndex The selected cell index
39026              */
39027             "beforecellselect" : true,
39028         /**
39029              * @event cellselect
39030              * Fires when a cell is selected.
39031              * @param {SelectionModel} this
39032              * @param {Number} rowIndex The selected row index
39033              * @param {Number} colIndex The selected cell index
39034              */
39035             "cellselect" : true,
39036         /**
39037              * @event selectionchange
39038              * Fires when the active selection changes.
39039              * @param {SelectionModel} this
39040              * @param {Object} selection null for no selection or an object (o) with two properties
39041                 <ul>
39042                 <li>o.record: the record object for the row the selection is in</li>
39043                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
39044                 </ul>
39045              */
39046             "selectionchange" : true,
39047         /**
39048              * @event tabend
39049              * Fires when the tab (or enter) was pressed on the last editable cell
39050              * You can use this to trigger add new row.
39051              * @param {SelectionModel} this
39052              */
39053             "tabend" : true,
39054          /**
39055              * @event beforeeditnext
39056              * Fires before the next editable sell is made active
39057              * You can use this to skip to another cell or fire the tabend
39058              *    if you set cell to false
39059              * @param {Object} eventdata object : { cell : [ row, col ] } 
39060              */
39061             "beforeeditnext" : true
39062     });
39063     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
39064 };
39065
39066 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
39067     
39068     enter_is_tab: false,
39069
39070     /** @ignore */
39071     initEvents : function(){
39072         this.grid.on("mousedown", this.handleMouseDown, this);
39073         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
39074         var view = this.grid.view;
39075         view.on("refresh", this.onViewChange, this);
39076         view.on("rowupdated", this.onRowUpdated, this);
39077         view.on("beforerowremoved", this.clearSelections, this);
39078         view.on("beforerowsinserted", this.clearSelections, this);
39079         if(this.grid.isEditor){
39080             this.grid.on("beforeedit", this.beforeEdit,  this);
39081         }
39082     },
39083
39084         //private
39085     beforeEdit : function(e){
39086         this.select(e.row, e.column, false, true, e.record);
39087     },
39088
39089         //private
39090     onRowUpdated : function(v, index, r){
39091         if(this.selection && this.selection.record == r){
39092             v.onCellSelect(index, this.selection.cell[1]);
39093         }
39094     },
39095
39096         //private
39097     onViewChange : function(){
39098         this.clearSelections(true);
39099     },
39100
39101         /**
39102          * Returns the currently selected cell,.
39103          * @return {Array} The selected cell (row, column) or null if none selected.
39104          */
39105     getSelectedCell : function(){
39106         return this.selection ? this.selection.cell : null;
39107     },
39108
39109     /**
39110      * Clears all selections.
39111      * @param {Boolean} true to prevent the gridview from being notified about the change.
39112      */
39113     clearSelections : function(preventNotify){
39114         var s = this.selection;
39115         if(s){
39116             if(preventNotify !== true){
39117                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
39118             }
39119             this.selection = null;
39120             this.fireEvent("selectionchange", this, null);
39121         }
39122     },
39123
39124     /**
39125      * Returns true if there is a selection.
39126      * @return {Boolean}
39127      */
39128     hasSelection : function(){
39129         return this.selection ? true : false;
39130     },
39131
39132     /** @ignore */
39133     handleMouseDown : function(e, t){
39134         var v = this.grid.getView();
39135         if(this.isLocked()){
39136             return;
39137         };
39138         var row = v.findRowIndex(t);
39139         var cell = v.findCellIndex(t);
39140         if(row !== false && cell !== false){
39141             this.select(row, cell);
39142         }
39143     },
39144
39145     /**
39146      * Selects a cell.
39147      * @param {Number} rowIndex
39148      * @param {Number} collIndex
39149      */
39150     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
39151         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
39152             this.clearSelections();
39153             r = r || this.grid.dataSource.getAt(rowIndex);
39154             this.selection = {
39155                 record : r,
39156                 cell : [rowIndex, colIndex]
39157             };
39158             if(!preventViewNotify){
39159                 var v = this.grid.getView();
39160                 v.onCellSelect(rowIndex, colIndex);
39161                 if(preventFocus !== true){
39162                     v.focusCell(rowIndex, colIndex);
39163                 }
39164             }
39165             this.fireEvent("cellselect", this, rowIndex, colIndex);
39166             this.fireEvent("selectionchange", this, this.selection);
39167         }
39168     },
39169
39170         //private
39171     isSelectable : function(rowIndex, colIndex, cm){
39172         return !cm.isHidden(colIndex);
39173     },
39174
39175     /** @ignore */
39176     handleKeyDown : function(e){
39177         //Roo.log('Cell Sel Model handleKeyDown');
39178         if(!e.isNavKeyPress()){
39179             return;
39180         }
39181         var g = this.grid, s = this.selection;
39182         if(!s){
39183             e.stopEvent();
39184             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
39185             if(cell){
39186                 this.select(cell[0], cell[1]);
39187             }
39188             return;
39189         }
39190         var sm = this;
39191         var walk = function(row, col, step){
39192             return g.walkCells(row, col, step, sm.isSelectable,  sm);
39193         };
39194         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
39195         var newCell;
39196
39197       
39198
39199         switch(k){
39200             case e.TAB:
39201                 // handled by onEditorKey
39202                 if (g.isEditor && g.editing) {
39203                     return;
39204                 }
39205                 if(e.shiftKey) {
39206                     newCell = walk(r, c-1, -1);
39207                 } else {
39208                     newCell = walk(r, c+1, 1);
39209                 }
39210                 break;
39211             
39212             case e.DOWN:
39213                newCell = walk(r+1, c, 1);
39214                 break;
39215             
39216             case e.UP:
39217                 newCell = walk(r-1, c, -1);
39218                 break;
39219             
39220             case e.RIGHT:
39221                 newCell = walk(r, c+1, 1);
39222                 break;
39223             
39224             case e.LEFT:
39225                 newCell = walk(r, c-1, -1);
39226                 break;
39227             
39228             case e.ENTER:
39229                 
39230                 if(g.isEditor && !g.editing){
39231                    g.startEditing(r, c);
39232                    e.stopEvent();
39233                    return;
39234                 }
39235                 
39236                 
39237              break;
39238         };
39239         if(newCell){
39240             this.select(newCell[0], newCell[1]);
39241             e.stopEvent();
39242             
39243         }
39244     },
39245
39246     acceptsNav : function(row, col, cm){
39247         return !cm.isHidden(col) && cm.isCellEditable(col, row);
39248     },
39249     /**
39250      * Selects a cell.
39251      * @param {Number} field (not used) - as it's normally used as a listener
39252      * @param {Number} e - event - fake it by using
39253      *
39254      * var e = Roo.EventObjectImpl.prototype;
39255      * e.keyCode = e.TAB
39256      *
39257      * 
39258      */
39259     onEditorKey : function(field, e){
39260         
39261         var k = e.getKey(),
39262             newCell,
39263             g = this.grid,
39264             ed = g.activeEditor,
39265             forward = false;
39266         ///Roo.log('onEditorKey' + k);
39267         
39268         
39269         if (this.enter_is_tab && k == e.ENTER) {
39270             k = e.TAB;
39271         }
39272         
39273         if(k == e.TAB){
39274             if(e.shiftKey){
39275                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
39276             }else{
39277                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39278                 forward = true;
39279             }
39280             
39281             e.stopEvent();
39282             
39283         } else if(k == e.ENTER &&  !e.ctrlKey){
39284             ed.completeEdit();
39285             e.stopEvent();
39286             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
39287         
39288                 } else if(k == e.ESC){
39289             ed.cancelEdit();
39290         }
39291                 
39292         if (newCell) {
39293             var ecall = { cell : newCell, forward : forward };
39294             this.fireEvent('beforeeditnext', ecall );
39295             newCell = ecall.cell;
39296                         forward = ecall.forward;
39297         }
39298                 
39299         if(newCell){
39300             //Roo.log('next cell after edit');
39301             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
39302         } else if (forward) {
39303             // tabbed past last
39304             this.fireEvent.defer(100, this, ['tabend',this]);
39305         }
39306     }
39307 });/*
39308  * Based on:
39309  * Ext JS Library 1.1.1
39310  * Copyright(c) 2006-2007, Ext JS, LLC.
39311  *
39312  * Originally Released Under LGPL - original licence link has changed is not relivant.
39313  *
39314  * Fork - LGPL
39315  * <script type="text/javascript">
39316  */
39317  
39318 /**
39319  * @class Roo.grid.EditorGrid
39320  * @extends Roo.grid.Grid
39321  * Class for creating and editable grid.
39322  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
39323  * The container MUST have some type of size defined for the grid to fill. The container will be 
39324  * automatically set to position relative if it isn't already.
39325  * @param {Object} dataSource The data model to bind to
39326  * @param {Object} colModel The column model with info about this grid's columns
39327  */
39328 Roo.grid.EditorGrid = function(container, config){
39329     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
39330     this.getGridEl().addClass("xedit-grid");
39331
39332     if(!this.selModel){
39333         this.selModel = new Roo.grid.CellSelectionModel();
39334     }
39335
39336     this.activeEditor = null;
39337
39338         this.addEvents({
39339             /**
39340              * @event beforeedit
39341              * Fires before cell editing is triggered. The edit event object has the following properties <br />
39342              * <ul style="padding:5px;padding-left:16px;">
39343              * <li>grid - This grid</li>
39344              * <li>record - The record being edited</li>
39345              * <li>field - The field name being edited</li>
39346              * <li>value - The value for the field being edited.</li>
39347              * <li>row - The grid row index</li>
39348              * <li>column - The grid column index</li>
39349              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39350              * </ul>
39351              * @param {Object} e An edit event (see above for description)
39352              */
39353             "beforeedit" : true,
39354             /**
39355              * @event afteredit
39356              * Fires after a cell is edited. <br />
39357              * <ul style="padding:5px;padding-left:16px;">
39358              * <li>grid - This grid</li>
39359              * <li>record - The record being edited</li>
39360              * <li>field - The field name being edited</li>
39361              * <li>value - The value being set</li>
39362              * <li>originalValue - The original value for the field, before the edit.</li>
39363              * <li>row - The grid row index</li>
39364              * <li>column - The grid column index</li>
39365              * </ul>
39366              * @param {Object} e An edit event (see above for description)
39367              */
39368             "afteredit" : true,
39369             /**
39370              * @event validateedit
39371              * Fires after a cell is edited, but before the value is set in the record. 
39372          * You can use this to modify the value being set in the field, Return false
39373              * to cancel the change. The edit event object has the following properties <br />
39374              * <ul style="padding:5px;padding-left:16px;">
39375          * <li>editor - This editor</li>
39376              * <li>grid - This grid</li>
39377              * <li>record - The record being edited</li>
39378              * <li>field - The field name being edited</li>
39379              * <li>value - The value being set</li>
39380              * <li>originalValue - The original value for the field, before the edit.</li>
39381              * <li>row - The grid row index</li>
39382              * <li>column - The grid column index</li>
39383              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
39384              * </ul>
39385              * @param {Object} e An edit event (see above for description)
39386              */
39387             "validateedit" : true
39388         });
39389     this.on("bodyscroll", this.stopEditing,  this);
39390     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
39391 };
39392
39393 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
39394     /**
39395      * @cfg {Number} clicksToEdit
39396      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
39397      */
39398     clicksToEdit: 2,
39399
39400     // private
39401     isEditor : true,
39402     // private
39403     trackMouseOver: false, // causes very odd FF errors
39404
39405     onCellDblClick : function(g, row, col){
39406         this.startEditing(row, col);
39407     },
39408
39409     onEditComplete : function(ed, value, startValue){
39410         this.editing = false;
39411         this.activeEditor = null;
39412         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
39413         var r = ed.record;
39414         var field = this.colModel.getDataIndex(ed.col);
39415         var e = {
39416             grid: this,
39417             record: r,
39418             field: field,
39419             originalValue: startValue,
39420             value: value,
39421             row: ed.row,
39422             column: ed.col,
39423             cancel:false,
39424             editor: ed
39425         };
39426         var cell = Roo.get(this.view.getCell(ed.row,ed.col))
39427         cell.show();
39428           
39429         if(String(value) !== String(startValue)){
39430             
39431             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
39432                 r.set(field, e.value);
39433                 // if we are dealing with a combo box..
39434                 // then we also set the 'name' colum to be the displayField
39435                 if (ed.field.displayField && ed.field.name) {
39436                     r.set(ed.field.name, ed.field.el.dom.value);
39437                 }
39438                 
39439                 delete e.cancel; //?? why!!!
39440                 this.fireEvent("afteredit", e);
39441             }
39442         } else {
39443             this.fireEvent("afteredit", e); // always fire it!
39444         }
39445         this.view.focusCell(ed.row, ed.col);
39446     },
39447
39448     /**
39449      * Starts editing the specified for the specified row/column
39450      * @param {Number} rowIndex
39451      * @param {Number} colIndex
39452      */
39453     startEditing : function(row, col){
39454         this.stopEditing();
39455         if(this.colModel.isCellEditable(col, row)){
39456             this.view.ensureVisible(row, col, true);
39457           
39458             var r = this.dataSource.getAt(row);
39459             var field = this.colModel.getDataIndex(col);
39460             var cell = Roo.get(this.view.getCell(row,col));
39461             var e = {
39462                 grid: this,
39463                 record: r,
39464                 field: field,
39465                 value: r.data[field],
39466                 row: row,
39467                 column: col,
39468                 cancel:false 
39469             };
39470             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
39471                 this.editing = true;
39472                 var ed = this.colModel.getCellEditor(col, row);
39473                 
39474                 if (!ed) {
39475                     return;
39476                 }
39477                 if(!ed.rendered){
39478                     ed.render(ed.parentEl || document.body);
39479                 }
39480                 ed.field.reset();
39481                
39482                 cell.hide();
39483                 
39484                 (function(){ // complex but required for focus issues in safari, ie and opera
39485                     ed.row = row;
39486                     ed.col = col;
39487                     ed.record = r;
39488                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
39489                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
39490                     this.activeEditor = ed;
39491                     var v = r.data[field];
39492                     ed.startEdit(this.view.getCell(row, col), v);
39493                     // combo's with 'displayField and name set
39494                     if (ed.field.displayField && ed.field.name) {
39495                         ed.field.el.dom.value = r.data[ed.field.name];
39496                     }
39497                     
39498                     
39499                 }).defer(50, this);
39500             }
39501         }
39502     },
39503         
39504     /**
39505      * Stops any active editing
39506      */
39507     stopEditing : function(){
39508         if(this.activeEditor){
39509             this.activeEditor.completeEdit();
39510         }
39511         this.activeEditor = null;
39512     },
39513         
39514          /**
39515      * Called to get grid's drag proxy text, by default returns this.ddText.
39516      * @return {String}
39517      */
39518     getDragDropText : function(){
39519         var count = this.selModel.getSelectedCell() ? 1 : 0;
39520         return String.format(this.ddText, count, count == 1 ? '' : 's');
39521     }
39522         
39523 });/*
39524  * Based on:
39525  * Ext JS Library 1.1.1
39526  * Copyright(c) 2006-2007, Ext JS, LLC.
39527  *
39528  * Originally Released Under LGPL - original licence link has changed is not relivant.
39529  *
39530  * Fork - LGPL
39531  * <script type="text/javascript">
39532  */
39533
39534 // private - not really -- you end up using it !
39535 // This is a support class used internally by the Grid components
39536
39537 /**
39538  * @class Roo.grid.GridEditor
39539  * @extends Roo.Editor
39540  * Class for creating and editable grid elements.
39541  * @param {Object} config any settings (must include field)
39542  */
39543 Roo.grid.GridEditor = function(field, config){
39544     if (!config && field.field) {
39545         config = field;
39546         field = Roo.factory(config.field, Roo.form);
39547     }
39548     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
39549     field.monitorTab = false;
39550 };
39551
39552 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
39553     
39554     /**
39555      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
39556      */
39557     
39558     alignment: "tl-tl",
39559     autoSize: "width",
39560     hideEl : false,
39561     cls: "x-small-editor x-grid-editor",
39562     shim:false,
39563     shadow:"frame"
39564 });/*
39565  * Based on:
39566  * Ext JS Library 1.1.1
39567  * Copyright(c) 2006-2007, Ext JS, LLC.
39568  *
39569  * Originally Released Under LGPL - original licence link has changed is not relivant.
39570  *
39571  * Fork - LGPL
39572  * <script type="text/javascript">
39573  */
39574   
39575
39576   
39577 Roo.grid.PropertyRecord = Roo.data.Record.create([
39578     {name:'name',type:'string'},  'value'
39579 ]);
39580
39581
39582 Roo.grid.PropertyStore = function(grid, source){
39583     this.grid = grid;
39584     this.store = new Roo.data.Store({
39585         recordType : Roo.grid.PropertyRecord
39586     });
39587     this.store.on('update', this.onUpdate,  this);
39588     if(source){
39589         this.setSource(source);
39590     }
39591     Roo.grid.PropertyStore.superclass.constructor.call(this);
39592 };
39593
39594
39595
39596 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
39597     setSource : function(o){
39598         this.source = o;
39599         this.store.removeAll();
39600         var data = [];
39601         for(var k in o){
39602             if(this.isEditableValue(o[k])){
39603                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
39604             }
39605         }
39606         this.store.loadRecords({records: data}, {}, true);
39607     },
39608
39609     onUpdate : function(ds, record, type){
39610         if(type == Roo.data.Record.EDIT){
39611             var v = record.data['value'];
39612             var oldValue = record.modified['value'];
39613             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
39614                 this.source[record.id] = v;
39615                 record.commit();
39616                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
39617             }else{
39618                 record.reject();
39619             }
39620         }
39621     },
39622
39623     getProperty : function(row){
39624        return this.store.getAt(row);
39625     },
39626
39627     isEditableValue: function(val){
39628         if(val && val instanceof Date){
39629             return true;
39630         }else if(typeof val == 'object' || typeof val == 'function'){
39631             return false;
39632         }
39633         return true;
39634     },
39635
39636     setValue : function(prop, value){
39637         this.source[prop] = value;
39638         this.store.getById(prop).set('value', value);
39639     },
39640
39641     getSource : function(){
39642         return this.source;
39643     }
39644 });
39645
39646 Roo.grid.PropertyColumnModel = function(grid, store){
39647     this.grid = grid;
39648     var g = Roo.grid;
39649     g.PropertyColumnModel.superclass.constructor.call(this, [
39650         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
39651         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
39652     ]);
39653     this.store = store;
39654     this.bselect = Roo.DomHelper.append(document.body, {
39655         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
39656             {tag: 'option', value: 'true', html: 'true'},
39657             {tag: 'option', value: 'false', html: 'false'}
39658         ]
39659     });
39660     Roo.id(this.bselect);
39661     var f = Roo.form;
39662     this.editors = {
39663         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
39664         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
39665         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
39666         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
39667         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
39668     };
39669     this.renderCellDelegate = this.renderCell.createDelegate(this);
39670     this.renderPropDelegate = this.renderProp.createDelegate(this);
39671 };
39672
39673 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
39674     
39675     
39676     nameText : 'Name',
39677     valueText : 'Value',
39678     
39679     dateFormat : 'm/j/Y',
39680     
39681     
39682     renderDate : function(dateVal){
39683         return dateVal.dateFormat(this.dateFormat);
39684     },
39685
39686     renderBool : function(bVal){
39687         return bVal ? 'true' : 'false';
39688     },
39689
39690     isCellEditable : function(colIndex, rowIndex){
39691         return colIndex == 1;
39692     },
39693
39694     getRenderer : function(col){
39695         return col == 1 ?
39696             this.renderCellDelegate : this.renderPropDelegate;
39697     },
39698
39699     renderProp : function(v){
39700         return this.getPropertyName(v);
39701     },
39702
39703     renderCell : function(val){
39704         var rv = val;
39705         if(val instanceof Date){
39706             rv = this.renderDate(val);
39707         }else if(typeof val == 'boolean'){
39708             rv = this.renderBool(val);
39709         }
39710         return Roo.util.Format.htmlEncode(rv);
39711     },
39712
39713     getPropertyName : function(name){
39714         var pn = this.grid.propertyNames;
39715         return pn && pn[name] ? pn[name] : name;
39716     },
39717
39718     getCellEditor : function(colIndex, rowIndex){
39719         var p = this.store.getProperty(rowIndex);
39720         var n = p.data['name'], val = p.data['value'];
39721         
39722         if(typeof(this.grid.customEditors[n]) == 'string'){
39723             return this.editors[this.grid.customEditors[n]];
39724         }
39725         if(typeof(this.grid.customEditors[n]) != 'undefined'){
39726             return this.grid.customEditors[n];
39727         }
39728         if(val instanceof Date){
39729             return this.editors['date'];
39730         }else if(typeof val == 'number'){
39731             return this.editors['number'];
39732         }else if(typeof val == 'boolean'){
39733             return this.editors['boolean'];
39734         }else{
39735             return this.editors['string'];
39736         }
39737     }
39738 });
39739
39740 /**
39741  * @class Roo.grid.PropertyGrid
39742  * @extends Roo.grid.EditorGrid
39743  * This class represents the  interface of a component based property grid control.
39744  * <br><br>Usage:<pre><code>
39745  var grid = new Roo.grid.PropertyGrid("my-container-id", {
39746       
39747  });
39748  // set any options
39749  grid.render();
39750  * </code></pre>
39751   
39752  * @constructor
39753  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
39754  * The container MUST have some type of size defined for the grid to fill. The container will be
39755  * automatically set to position relative if it isn't already.
39756  * @param {Object} config A config object that sets properties on this grid.
39757  */
39758 Roo.grid.PropertyGrid = function(container, config){
39759     config = config || {};
39760     var store = new Roo.grid.PropertyStore(this);
39761     this.store = store;
39762     var cm = new Roo.grid.PropertyColumnModel(this, store);
39763     store.store.sort('name', 'ASC');
39764     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
39765         ds: store.store,
39766         cm: cm,
39767         enableColLock:false,
39768         enableColumnMove:false,
39769         stripeRows:false,
39770         trackMouseOver: false,
39771         clicksToEdit:1
39772     }, config));
39773     this.getGridEl().addClass('x-props-grid');
39774     this.lastEditRow = null;
39775     this.on('columnresize', this.onColumnResize, this);
39776     this.addEvents({
39777          /**
39778              * @event beforepropertychange
39779              * Fires before a property changes (return false to stop?)
39780              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
39781              * @param {String} id Record Id
39782              * @param {String} newval New Value
39783          * @param {String} oldval Old Value
39784              */
39785         "beforepropertychange": true,
39786         /**
39787              * @event propertychange
39788              * Fires after a property changes
39789              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
39790              * @param {String} id Record Id
39791              * @param {String} newval New Value
39792          * @param {String} oldval Old Value
39793              */
39794         "propertychange": true
39795     });
39796     this.customEditors = this.customEditors || {};
39797 };
39798 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
39799     
39800      /**
39801      * @cfg {Object} customEditors map of colnames=> custom editors.
39802      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
39803      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
39804      * false disables editing of the field.
39805          */
39806     
39807       /**
39808      * @cfg {Object} propertyNames map of property Names to their displayed value
39809          */
39810     
39811     render : function(){
39812         Roo.grid.PropertyGrid.superclass.render.call(this);
39813         this.autoSize.defer(100, this);
39814     },
39815
39816     autoSize : function(){
39817         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
39818         if(this.view){
39819             this.view.fitColumns();
39820         }
39821     },
39822
39823     onColumnResize : function(){
39824         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
39825         this.autoSize();
39826     },
39827     /**
39828      * Sets the data for the Grid
39829      * accepts a Key => Value object of all the elements avaiable.
39830      * @param {Object} data  to appear in grid.
39831      */
39832     setSource : function(source){
39833         this.store.setSource(source);
39834         //this.autoSize();
39835     },
39836     /**
39837      * Gets all the data from the grid.
39838      * @return {Object} data  data stored in grid
39839      */
39840     getSource : function(){
39841         return this.store.getSource();
39842     }
39843 });/*
39844   
39845  * Licence LGPL
39846  
39847  */
39848  
39849 /**
39850  * @class Roo.grid.Calendar
39851  * @extends Roo.util.Grid
39852  * This class extends the Grid to provide a calendar widget
39853  * <br><br>Usage:<pre><code>
39854  var grid = new Roo.grid.Calendar("my-container-id", {
39855      ds: myDataStore,
39856      cm: myColModel,
39857      selModel: mySelectionModel,
39858      autoSizeColumns: true,
39859      monitorWindowResize: false,
39860      trackMouseOver: true
39861      eventstore : real data store..
39862  });
39863  // set any options
39864  grid.render();
39865   
39866   * @constructor
39867  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
39868  * The container MUST have some type of size defined for the grid to fill. The container will be
39869  * automatically set to position relative if it isn't already.
39870  * @param {Object} config A config object that sets properties on this grid.
39871  */
39872 Roo.grid.Calendar = function(container, config){
39873         // initialize the container
39874         this.container = Roo.get(container);
39875         this.container.update("");
39876         this.container.setStyle("overflow", "hidden");
39877     this.container.addClass('x-grid-container');
39878
39879     this.id = this.container.id;
39880
39881     Roo.apply(this, config);
39882     // check and correct shorthanded configs
39883     
39884     var rows = [];
39885     var d =1;
39886     for (var r = 0;r < 6;r++) {
39887         
39888         rows[r]=[];
39889         for (var c =0;c < 7;c++) {
39890             rows[r][c]= '';
39891         }
39892     }
39893     if (this.eventStore) {
39894         this.eventStore= Roo.factory(this.eventStore, Roo.data);
39895         this.eventStore.on('load',this.onLoad, this);
39896         this.eventStore.on('beforeload',this.clearEvents, this);
39897          
39898     }
39899     
39900     this.dataSource = new Roo.data.Store({
39901             proxy: new Roo.data.MemoryProxy(rows),
39902             reader: new Roo.data.ArrayReader({}, [
39903                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
39904     });
39905
39906     this.dataSource.load();
39907     this.ds = this.dataSource;
39908     this.ds.xmodule = this.xmodule || false;
39909     
39910     
39911     var cellRender = function(v,x,r)
39912     {
39913         return String.format(
39914             '<div class="fc-day  fc-widget-content"><div>' +
39915                 '<div class="fc-event-container"></div>' +
39916                 '<div class="fc-day-number">{0}</div>'+
39917                 
39918                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
39919             '</div></div>', v);
39920     
39921     }
39922     
39923     
39924     this.colModel = new Roo.grid.ColumnModel( [
39925         {
39926             xtype: 'ColumnModel',
39927             xns: Roo.grid,
39928             dataIndex : 'weekday0',
39929             header : 'Sunday',
39930             renderer : cellRender
39931         },
39932         {
39933             xtype: 'ColumnModel',
39934             xns: Roo.grid,
39935             dataIndex : 'weekday1',
39936             header : 'Monday',
39937             renderer : cellRender
39938         },
39939         {
39940             xtype: 'ColumnModel',
39941             xns: Roo.grid,
39942             dataIndex : 'weekday2',
39943             header : 'Tuesday',
39944             renderer : cellRender
39945         },
39946         {
39947             xtype: 'ColumnModel',
39948             xns: Roo.grid,
39949             dataIndex : 'weekday3',
39950             header : 'Wednesday',
39951             renderer : cellRender
39952         },
39953         {
39954             xtype: 'ColumnModel',
39955             xns: Roo.grid,
39956             dataIndex : 'weekday4',
39957             header : 'Thursday',
39958             renderer : cellRender
39959         },
39960         {
39961             xtype: 'ColumnModel',
39962             xns: Roo.grid,
39963             dataIndex : 'weekday5',
39964             header : 'Friday',
39965             renderer : cellRender
39966         },
39967         {
39968             xtype: 'ColumnModel',
39969             xns: Roo.grid,
39970             dataIndex : 'weekday6',
39971             header : 'Saturday',
39972             renderer : cellRender
39973         }
39974     ]);
39975     this.cm = this.colModel;
39976     this.cm.xmodule = this.xmodule || false;
39977  
39978         
39979           
39980     //this.selModel = new Roo.grid.CellSelectionModel();
39981     //this.sm = this.selModel;
39982     //this.selModel.init(this);
39983     
39984     
39985     if(this.width){
39986         this.container.setWidth(this.width);
39987     }
39988
39989     if(this.height){
39990         this.container.setHeight(this.height);
39991     }
39992     /** @private */
39993         this.addEvents({
39994         // raw events
39995         /**
39996          * @event click
39997          * The raw click event for the entire grid.
39998          * @param {Roo.EventObject} e
39999          */
40000         "click" : true,
40001         /**
40002          * @event dblclick
40003          * The raw dblclick event for the entire grid.
40004          * @param {Roo.EventObject} e
40005          */
40006         "dblclick" : true,
40007         /**
40008          * @event contextmenu
40009          * The raw contextmenu event for the entire grid.
40010          * @param {Roo.EventObject} e
40011          */
40012         "contextmenu" : true,
40013         /**
40014          * @event mousedown
40015          * The raw mousedown event for the entire grid.
40016          * @param {Roo.EventObject} e
40017          */
40018         "mousedown" : true,
40019         /**
40020          * @event mouseup
40021          * The raw mouseup event for the entire grid.
40022          * @param {Roo.EventObject} e
40023          */
40024         "mouseup" : true,
40025         /**
40026          * @event mouseover
40027          * The raw mouseover event for the entire grid.
40028          * @param {Roo.EventObject} e
40029          */
40030         "mouseover" : true,
40031         /**
40032          * @event mouseout
40033          * The raw mouseout event for the entire grid.
40034          * @param {Roo.EventObject} e
40035          */
40036         "mouseout" : true,
40037         /**
40038          * @event keypress
40039          * The raw keypress event for the entire grid.
40040          * @param {Roo.EventObject} e
40041          */
40042         "keypress" : true,
40043         /**
40044          * @event keydown
40045          * The raw keydown event for the entire grid.
40046          * @param {Roo.EventObject} e
40047          */
40048         "keydown" : true,
40049
40050         // custom events
40051
40052         /**
40053          * @event cellclick
40054          * Fires when a cell is clicked
40055          * @param {Grid} this
40056          * @param {Number} rowIndex
40057          * @param {Number} columnIndex
40058          * @param {Roo.EventObject} e
40059          */
40060         "cellclick" : true,
40061         /**
40062          * @event celldblclick
40063          * Fires when a cell is double clicked
40064          * @param {Grid} this
40065          * @param {Number} rowIndex
40066          * @param {Number} columnIndex
40067          * @param {Roo.EventObject} e
40068          */
40069         "celldblclick" : true,
40070         /**
40071          * @event rowclick
40072          * Fires when a row is clicked
40073          * @param {Grid} this
40074          * @param {Number} rowIndex
40075          * @param {Roo.EventObject} e
40076          */
40077         "rowclick" : true,
40078         /**
40079          * @event rowdblclick
40080          * Fires when a row is double clicked
40081          * @param {Grid} this
40082          * @param {Number} rowIndex
40083          * @param {Roo.EventObject} e
40084          */
40085         "rowdblclick" : true,
40086         /**
40087          * @event headerclick
40088          * Fires when a header is clicked
40089          * @param {Grid} this
40090          * @param {Number} columnIndex
40091          * @param {Roo.EventObject} e
40092          */
40093         "headerclick" : true,
40094         /**
40095          * @event headerdblclick
40096          * Fires when a header cell is double clicked
40097          * @param {Grid} this
40098          * @param {Number} columnIndex
40099          * @param {Roo.EventObject} e
40100          */
40101         "headerdblclick" : true,
40102         /**
40103          * @event rowcontextmenu
40104          * Fires when a row is right clicked
40105          * @param {Grid} this
40106          * @param {Number} rowIndex
40107          * @param {Roo.EventObject} e
40108          */
40109         "rowcontextmenu" : true,
40110         /**
40111          * @event cellcontextmenu
40112          * Fires when a cell is right clicked
40113          * @param {Grid} this
40114          * @param {Number} rowIndex
40115          * @param {Number} cellIndex
40116          * @param {Roo.EventObject} e
40117          */
40118          "cellcontextmenu" : true,
40119         /**
40120          * @event headercontextmenu
40121          * Fires when a header is right clicked
40122          * @param {Grid} this
40123          * @param {Number} columnIndex
40124          * @param {Roo.EventObject} e
40125          */
40126         "headercontextmenu" : true,
40127         /**
40128          * @event bodyscroll
40129          * Fires when the body element is scrolled
40130          * @param {Number} scrollLeft
40131          * @param {Number} scrollTop
40132          */
40133         "bodyscroll" : true,
40134         /**
40135          * @event columnresize
40136          * Fires when the user resizes a column
40137          * @param {Number} columnIndex
40138          * @param {Number} newSize
40139          */
40140         "columnresize" : true,
40141         /**
40142          * @event columnmove
40143          * Fires when the user moves a column
40144          * @param {Number} oldIndex
40145          * @param {Number} newIndex
40146          */
40147         "columnmove" : true,
40148         /**
40149          * @event startdrag
40150          * Fires when row(s) start being dragged
40151          * @param {Grid} this
40152          * @param {Roo.GridDD} dd The drag drop object
40153          * @param {event} e The raw browser event
40154          */
40155         "startdrag" : true,
40156         /**
40157          * @event enddrag
40158          * Fires when a drag operation is complete
40159          * @param {Grid} this
40160          * @param {Roo.GridDD} dd The drag drop object
40161          * @param {event} e The raw browser event
40162          */
40163         "enddrag" : true,
40164         /**
40165          * @event dragdrop
40166          * Fires when dragged row(s) are dropped on a valid DD target
40167          * @param {Grid} this
40168          * @param {Roo.GridDD} dd The drag drop object
40169          * @param {String} targetId The target drag drop object
40170          * @param {event} e The raw browser event
40171          */
40172         "dragdrop" : true,
40173         /**
40174          * @event dragover
40175          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
40176          * @param {Grid} this
40177          * @param {Roo.GridDD} dd The drag drop object
40178          * @param {String} targetId The target drag drop object
40179          * @param {event} e The raw browser event
40180          */
40181         "dragover" : true,
40182         /**
40183          * @event dragenter
40184          *  Fires when the dragged row(s) first cross another DD target while being dragged
40185          * @param {Grid} this
40186          * @param {Roo.GridDD} dd The drag drop object
40187          * @param {String} targetId The target drag drop object
40188          * @param {event} e The raw browser event
40189          */
40190         "dragenter" : true,
40191         /**
40192          * @event dragout
40193          * Fires when the dragged row(s) leave another DD target while being dragged
40194          * @param {Grid} this
40195          * @param {Roo.GridDD} dd The drag drop object
40196          * @param {String} targetId The target drag drop object
40197          * @param {event} e The raw browser event
40198          */
40199         "dragout" : true,
40200         /**
40201          * @event rowclass
40202          * Fires when a row is rendered, so you can change add a style to it.
40203          * @param {GridView} gridview   The grid view
40204          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
40205          */
40206         'rowclass' : true,
40207
40208         /**
40209          * @event render
40210          * Fires when the grid is rendered
40211          * @param {Grid} grid
40212          */
40213         'render' : true,
40214             /**
40215              * @event select
40216              * Fires when a date is selected
40217              * @param {DatePicker} this
40218              * @param {Date} date The selected date
40219              */
40220         'select': true,
40221         /**
40222              * @event monthchange
40223              * Fires when the displayed month changes 
40224              * @param {DatePicker} this
40225              * @param {Date} date The selected month
40226              */
40227         'monthchange': true,
40228         /**
40229              * @event evententer
40230              * Fires when mouse over an event
40231              * @param {Calendar} this
40232              * @param {event} Event
40233              */
40234         'evententer': true,
40235         /**
40236              * @event eventleave
40237              * Fires when the mouse leaves an
40238              * @param {Calendar} this
40239              * @param {event}
40240              */
40241         'eventleave': true,
40242         /**
40243              * @event eventclick
40244              * Fires when the mouse click an
40245              * @param {Calendar} this
40246              * @param {event}
40247              */
40248         'eventclick': true,
40249         /**
40250              * @event eventrender
40251              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
40252              * @param {Calendar} this
40253              * @param {data} data to be modified
40254              */
40255         'eventrender': true
40256         
40257     });
40258
40259     Roo.grid.Grid.superclass.constructor.call(this);
40260     this.on('render', function() {
40261         this.view.el.addClass('x-grid-cal'); 
40262         
40263         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
40264
40265     },this);
40266     
40267     if (!Roo.grid.Calendar.style) {
40268         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
40269             
40270             
40271             '.x-grid-cal .x-grid-col' :  {
40272                 height: 'auto !important',
40273                 'vertical-align': 'top'
40274             },
40275             '.x-grid-cal  .fc-event-hori' : {
40276                 height: '14px'
40277             }
40278              
40279             
40280         }, Roo.id());
40281     }
40282
40283     
40284     
40285 };
40286 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
40287     /**
40288      * @cfg {Store} eventStore The store that loads events.
40289      */
40290     eventStore : 25,
40291
40292      
40293     activeDate : false,
40294     startDay : 0,
40295     autoWidth : true,
40296     monitorWindowResize : false,
40297
40298     
40299     resizeColumns : function() {
40300         var col = (this.view.el.getWidth() / 7) - 3;
40301         // loop through cols, and setWidth
40302         for(var i =0 ; i < 7 ; i++){
40303             this.cm.setColumnWidth(i, col);
40304         }
40305     },
40306      setDate :function(date) {
40307         
40308         Roo.log('setDate?');
40309         
40310         this.resizeColumns();
40311         var vd = this.activeDate;
40312         this.activeDate = date;
40313 //        if(vd && this.el){
40314 //            var t = date.getTime();
40315 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
40316 //                Roo.log('using add remove');
40317 //                
40318 //                this.fireEvent('monthchange', this, date);
40319 //                
40320 //                this.cells.removeClass("fc-state-highlight");
40321 //                this.cells.each(function(c){
40322 //                   if(c.dateValue == t){
40323 //                       c.addClass("fc-state-highlight");
40324 //                       setTimeout(function(){
40325 //                            try{c.dom.firstChild.focus();}catch(e){}
40326 //                       }, 50);
40327 //                       return false;
40328 //                   }
40329 //                   return true;
40330 //                });
40331 //                return;
40332 //            }
40333 //        }
40334         
40335         var days = date.getDaysInMonth();
40336         
40337         var firstOfMonth = date.getFirstDateOfMonth();
40338         var startingPos = firstOfMonth.getDay()-this.startDay;
40339         
40340         if(startingPos < this.startDay){
40341             startingPos += 7;
40342         }
40343         
40344         var pm = date.add(Date.MONTH, -1);
40345         var prevStart = pm.getDaysInMonth()-startingPos;
40346 //        
40347         
40348         
40349         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40350         
40351         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
40352         //this.cells.addClassOnOver('fc-state-hover');
40353         
40354         var cells = this.cells.elements;
40355         var textEls = this.textNodes;
40356         
40357         //Roo.each(cells, function(cell){
40358         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
40359         //});
40360         
40361         days += startingPos;
40362
40363         // convert everything to numbers so it's fast
40364         var day = 86400000;
40365         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
40366         //Roo.log(d);
40367         //Roo.log(pm);
40368         //Roo.log(prevStart);
40369         
40370         var today = new Date().clearTime().getTime();
40371         var sel = date.clearTime().getTime();
40372         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
40373         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
40374         var ddMatch = this.disabledDatesRE;
40375         var ddText = this.disabledDatesText;
40376         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
40377         var ddaysText = this.disabledDaysText;
40378         var format = this.format;
40379         
40380         var setCellClass = function(cal, cell){
40381             
40382             //Roo.log('set Cell Class');
40383             cell.title = "";
40384             var t = d.getTime();
40385             
40386             //Roo.log(d);
40387             
40388             
40389             cell.dateValue = t;
40390             if(t == today){
40391                 cell.className += " fc-today";
40392                 cell.className += " fc-state-highlight";
40393                 cell.title = cal.todayText;
40394             }
40395             if(t == sel){
40396                 // disable highlight in other month..
40397                 cell.className += " fc-state-highlight";
40398                 
40399             }
40400             // disabling
40401             if(t < min) {
40402                 //cell.className = " fc-state-disabled";
40403                 cell.title = cal.minText;
40404                 return;
40405             }
40406             if(t > max) {
40407                 //cell.className = " fc-state-disabled";
40408                 cell.title = cal.maxText;
40409                 return;
40410             }
40411             if(ddays){
40412                 if(ddays.indexOf(d.getDay()) != -1){
40413                     // cell.title = ddaysText;
40414                    // cell.className = " fc-state-disabled";
40415                 }
40416             }
40417             if(ddMatch && format){
40418                 var fvalue = d.dateFormat(format);
40419                 if(ddMatch.test(fvalue)){
40420                     cell.title = ddText.replace("%0", fvalue);
40421                    cell.className = " fc-state-disabled";
40422                 }
40423             }
40424             
40425             if (!cell.initialClassName) {
40426                 cell.initialClassName = cell.dom.className;
40427             }
40428             
40429             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
40430         };
40431
40432         var i = 0;
40433         
40434         for(; i < startingPos; i++) {
40435             cells[i].dayName =  (++prevStart);
40436             Roo.log(textEls[i]);
40437             d.setDate(d.getDate()+1);
40438             
40439             //cells[i].className = "fc-past fc-other-month";
40440             setCellClass(this, cells[i]);
40441         }
40442         
40443         var intDay = 0;
40444         
40445         for(; i < days; i++){
40446             intDay = i - startingPos + 1;
40447             cells[i].dayName =  (intDay);
40448             d.setDate(d.getDate()+1);
40449             
40450             cells[i].className = ''; // "x-date-active";
40451             setCellClass(this, cells[i]);
40452         }
40453         var extraDays = 0;
40454         
40455         for(; i < 42; i++) {
40456             //textEls[i].innerHTML = (++extraDays);
40457             
40458             d.setDate(d.getDate()+1);
40459             cells[i].dayName = (++extraDays);
40460             cells[i].className = "fc-future fc-other-month";
40461             setCellClass(this, cells[i]);
40462         }
40463         
40464         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
40465         
40466         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
40467         
40468         // this will cause all the cells to mis
40469         var rows= [];
40470         var i =0;
40471         for (var r = 0;r < 6;r++) {
40472             for (var c =0;c < 7;c++) {
40473                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
40474             }    
40475         }
40476         
40477         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
40478         for(i=0;i<cells.length;i++) {
40479             
40480             this.cells.elements[i].dayName = cells[i].dayName ;
40481             this.cells.elements[i].className = cells[i].className;
40482             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
40483             this.cells.elements[i].title = cells[i].title ;
40484             this.cells.elements[i].dateValue = cells[i].dateValue ;
40485         }
40486         
40487         
40488         
40489         
40490         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
40491         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
40492         
40493         ////if(totalRows != 6){
40494             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
40495            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
40496        // }
40497         
40498         this.fireEvent('monthchange', this, date);
40499         
40500         
40501     },
40502  /**
40503      * Returns the grid's SelectionModel.
40504      * @return {SelectionModel}
40505      */
40506     getSelectionModel : function(){
40507         if(!this.selModel){
40508             this.selModel = new Roo.grid.CellSelectionModel();
40509         }
40510         return this.selModel;
40511     },
40512
40513     load: function() {
40514         this.eventStore.load()
40515         
40516         
40517         
40518     },
40519     
40520     findCell : function(dt) {
40521         dt = dt.clearTime().getTime();
40522         var ret = false;
40523         this.cells.each(function(c){
40524             //Roo.log("check " +c.dateValue + '?=' + dt);
40525             if(c.dateValue == dt){
40526                 ret = c;
40527                 return false;
40528             }
40529             return true;
40530         });
40531         
40532         return ret;
40533     },
40534     
40535     findCells : function(rec) {
40536         var s = rec.data.start_dt.clone().clearTime().getTime();
40537        // Roo.log(s);
40538         var e= rec.data.end_dt.clone().clearTime().getTime();
40539        // Roo.log(e);
40540         var ret = [];
40541         this.cells.each(function(c){
40542              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
40543             
40544             if(c.dateValue > e){
40545                 return ;
40546             }
40547             if(c.dateValue < s){
40548                 return ;
40549             }
40550             ret.push(c);
40551         });
40552         
40553         return ret;    
40554     },
40555     
40556     findBestRow: function(cells)
40557     {
40558         var ret = 0;
40559         
40560         for (var i =0 ; i < cells.length;i++) {
40561             ret  = Math.max(cells[i].rows || 0,ret);
40562         }
40563         return ret;
40564         
40565     },
40566     
40567     
40568     addItem : function(rec)
40569     {
40570         // look for vertical location slot in
40571         var cells = this.findCells(rec);
40572         
40573         rec.row = this.findBestRow(cells);
40574         
40575         // work out the location.
40576         
40577         var crow = false;
40578         var rows = [];
40579         for(var i =0; i < cells.length; i++) {
40580             if (!crow) {
40581                 crow = {
40582                     start : cells[i],
40583                     end :  cells[i]
40584                 };
40585                 continue;
40586             }
40587             if (crow.start.getY() == cells[i].getY()) {
40588                 // on same row.
40589                 crow.end = cells[i];
40590                 continue;
40591             }
40592             // different row.
40593             rows.push(crow);
40594             crow = {
40595                 start: cells[i],
40596                 end : cells[i]
40597             };
40598             
40599         }
40600         
40601         rows.push(crow);
40602         rec.els = [];
40603         rec.rows = rows;
40604         rec.cells = cells;
40605         for (var i = 0; i < cells.length;i++) {
40606             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
40607             
40608         }
40609         
40610         
40611     },
40612     
40613     clearEvents: function() {
40614         
40615         if (!this.eventStore.getCount()) {
40616             return;
40617         }
40618         // reset number of rows in cells.
40619         Roo.each(this.cells.elements, function(c){
40620             c.rows = 0;
40621         });
40622         
40623         this.eventStore.each(function(e) {
40624             this.clearEvent(e);
40625         },this);
40626         
40627     },
40628     
40629     clearEvent : function(ev)
40630     {
40631         if (ev.els) {
40632             Roo.each(ev.els, function(el) {
40633                 el.un('mouseenter' ,this.onEventEnter, this);
40634                 el.un('mouseleave' ,this.onEventLeave, this);
40635                 el.remove();
40636             },this);
40637             ev.els = [];
40638         }
40639     },
40640     
40641     
40642     renderEvent : function(ev,ctr) {
40643         if (!ctr) {
40644              ctr = this.view.el.select('.fc-event-container',true).first();
40645         }
40646         
40647          
40648         this.clearEvent(ev);
40649             //code
40650        
40651         
40652         
40653         ev.els = [];
40654         var cells = ev.cells;
40655         var rows = ev.rows;
40656         this.fireEvent('eventrender', this, ev);
40657         
40658         for(var i =0; i < rows.length; i++) {
40659             
40660             cls = '';
40661             if (i == 0) {
40662                 cls += ' fc-event-start';
40663             }
40664             if ((i+1) == rows.length) {
40665                 cls += ' fc-event-end';
40666             }
40667             
40668             //Roo.log(ev.data);
40669             // how many rows should it span..
40670             var cg = this.eventTmpl.append(ctr,Roo.apply({
40671                 fccls : cls
40672                 
40673             }, ev.data) , true);
40674             
40675             
40676             cg.on('mouseenter' ,this.onEventEnter, this, ev);
40677             cg.on('mouseleave' ,this.onEventLeave, this, ev);
40678             cg.on('click', this.onEventClick, this, ev);
40679             
40680             ev.els.push(cg);
40681             
40682             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
40683             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
40684             //Roo.log(cg);
40685              
40686             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
40687             cg.setWidth(ebox.right - sbox.x -2);
40688         }
40689     },
40690     
40691     renderEvents: function()
40692     {   
40693         // first make sure there is enough space..
40694         
40695         if (!this.eventTmpl) {
40696             this.eventTmpl = new Roo.Template(
40697                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
40698                     '<div class="fc-event-inner">' +
40699                         '<span class="fc-event-time">{time}</span>' +
40700                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
40701                     '</div>' +
40702                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
40703                 '</div>'
40704             );
40705                 
40706         }
40707                
40708         
40709         
40710         this.cells.each(function(c) {
40711             //Roo.log(c.select('.fc-day-content div',true).first());
40712             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
40713         });
40714         
40715         var ctr = this.view.el.select('.fc-event-container',true).first();
40716         
40717         var cls;
40718         this.eventStore.each(function(ev){
40719             
40720             this.renderEvent(ev);
40721              
40722              
40723         }, this);
40724         this.view.layout();
40725         
40726     },
40727     
40728     onEventEnter: function (e, el,event,d) {
40729         this.fireEvent('evententer', this, el, event);
40730     },
40731     
40732     onEventLeave: function (e, el,event,d) {
40733         this.fireEvent('eventleave', this, el, event);
40734     },
40735     
40736     onEventClick: function (e, el,event,d) {
40737         this.fireEvent('eventclick', this, el, event);
40738     },
40739     
40740     onMonthChange: function () {
40741         this.store.load();
40742     },
40743     
40744     onLoad: function () {
40745         
40746         //Roo.log('calendar onload');
40747 //         
40748         if(this.eventStore.getCount() > 0){
40749             
40750            
40751             
40752             this.eventStore.each(function(d){
40753                 
40754                 
40755                 // FIXME..
40756                 var add =   d.data;
40757                 if (typeof(add.end_dt) == 'undefined')  {
40758                     Roo.log("Missing End time in calendar data: ");
40759                     Roo.log(d);
40760                     return;
40761                 }
40762                 if (typeof(add.start_dt) == 'undefined')  {
40763                     Roo.log("Missing Start time in calendar data: ");
40764                     Roo.log(d);
40765                     return;
40766                 }
40767                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
40768                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
40769                 add.id = add.id || d.id;
40770                 add.title = add.title || '??';
40771                 
40772                 this.addItem(d);
40773                 
40774              
40775             },this);
40776         }
40777         
40778         this.renderEvents();
40779     }
40780     
40781
40782 });
40783 /*
40784  grid : {
40785                 xtype: 'Grid',
40786                 xns: Roo.grid,
40787                 listeners : {
40788                     render : function ()
40789                     {
40790                         _this.grid = this;
40791                         
40792                         if (!this.view.el.hasClass('course-timesheet')) {
40793                             this.view.el.addClass('course-timesheet');
40794                         }
40795                         if (this.tsStyle) {
40796                             this.ds.load({});
40797                             return; 
40798                         }
40799                         Roo.log('width');
40800                         Roo.log(_this.grid.view.el.getWidth());
40801                         
40802                         
40803                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
40804                             '.course-timesheet .x-grid-row' : {
40805                                 height: '80px'
40806                             },
40807                             '.x-grid-row td' : {
40808                                 'vertical-align' : 0
40809                             },
40810                             '.course-edit-link' : {
40811                                 'color' : 'blue',
40812                                 'text-overflow' : 'ellipsis',
40813                                 'overflow' : 'hidden',
40814                                 'white-space' : 'nowrap',
40815                                 'cursor' : 'pointer'
40816                             },
40817                             '.sub-link' : {
40818                                 'color' : 'green'
40819                             },
40820                             '.de-act-sup-link' : {
40821                                 'color' : 'purple',
40822                                 'text-decoration' : 'line-through'
40823                             },
40824                             '.de-act-link' : {
40825                                 'color' : 'red',
40826                                 'text-decoration' : 'line-through'
40827                             },
40828                             '.course-timesheet .course-highlight' : {
40829                                 'border-top-style': 'dashed !important',
40830                                 'border-bottom-bottom': 'dashed !important'
40831                             },
40832                             '.course-timesheet .course-item' : {
40833                                 'font-family'   : 'tahoma, arial, helvetica',
40834                                 'font-size'     : '11px',
40835                                 'overflow'      : 'hidden',
40836                                 'padding-left'  : '10px',
40837                                 'padding-right' : '10px',
40838                                 'padding-top' : '10px' 
40839                             }
40840                             
40841                         }, Roo.id());
40842                                 this.ds.load({});
40843                     }
40844                 },
40845                 autoWidth : true,
40846                 monitorWindowResize : false,
40847                 cellrenderer : function(v,x,r)
40848                 {
40849                     return v;
40850                 },
40851                 sm : {
40852                     xtype: 'CellSelectionModel',
40853                     xns: Roo.grid
40854                 },
40855                 dataSource : {
40856                     xtype: 'Store',
40857                     xns: Roo.data,
40858                     listeners : {
40859                         beforeload : function (_self, options)
40860                         {
40861                             options.params = options.params || {};
40862                             options.params._month = _this.monthField.getValue();
40863                             options.params.limit = 9999;
40864                             options.params['sort'] = 'when_dt';    
40865                             options.params['dir'] = 'ASC';    
40866                             this.proxy.loadResponse = this.loadResponse;
40867                             Roo.log("load?");
40868                             //this.addColumns();
40869                         },
40870                         load : function (_self, records, options)
40871                         {
40872                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
40873                                 // if you click on the translation.. you can edit it...
40874                                 var el = Roo.get(this);
40875                                 var id = el.dom.getAttribute('data-id');
40876                                 var d = el.dom.getAttribute('data-date');
40877                                 var t = el.dom.getAttribute('data-time');
40878                                 //var id = this.child('span').dom.textContent;
40879                                 
40880                                 //Roo.log(this);
40881                                 Pman.Dialog.CourseCalendar.show({
40882                                     id : id,
40883                                     when_d : d,
40884                                     when_t : t,
40885                                     productitem_active : id ? 1 : 0
40886                                 }, function() {
40887                                     _this.grid.ds.load({});
40888                                 });
40889                            
40890                            });
40891                            
40892                            _this.panel.fireEvent('resize', [ '', '' ]);
40893                         }
40894                     },
40895                     loadResponse : function(o, success, response){
40896                             // this is overridden on before load..
40897                             
40898                             Roo.log("our code?");       
40899                             //Roo.log(success);
40900                             //Roo.log(response)
40901                             delete this.activeRequest;
40902                             if(!success){
40903                                 this.fireEvent("loadexception", this, o, response);
40904                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
40905                                 return;
40906                             }
40907                             var result;
40908                             try {
40909                                 result = o.reader.read(response);
40910                             }catch(e){
40911                                 Roo.log("load exception?");
40912                                 this.fireEvent("loadexception", this, o, response, e);
40913                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
40914                                 return;
40915                             }
40916                             Roo.log("ready...");        
40917                             // loop through result.records;
40918                             // and set this.tdate[date] = [] << array of records..
40919                             _this.tdata  = {};
40920                             Roo.each(result.records, function(r){
40921                                 //Roo.log(r.data);
40922                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
40923                                     _this.tdata[r.data.when_dt.format('j')] = [];
40924                                 }
40925                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
40926                             });
40927                             
40928                             //Roo.log(_this.tdata);
40929                             
40930                             result.records = [];
40931                             result.totalRecords = 6;
40932                     
40933                             // let's generate some duumy records for the rows.
40934                             //var st = _this.dateField.getValue();
40935                             
40936                             // work out monday..
40937                             //st = st.add(Date.DAY, -1 * st.format('w'));
40938                             
40939                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
40940                             
40941                             var firstOfMonth = date.getFirstDayOfMonth();
40942                             var days = date.getDaysInMonth();
40943                             var d = 1;
40944                             var firstAdded = false;
40945                             for (var i = 0; i < result.totalRecords ; i++) {
40946                                 //var d= st.add(Date.DAY, i);
40947                                 var row = {};
40948                                 var added = 0;
40949                                 for(var w = 0 ; w < 7 ; w++){
40950                                     if(!firstAdded && firstOfMonth != w){
40951                                         continue;
40952                                     }
40953                                     if(d > days){
40954                                         continue;
40955                                     }
40956                                     firstAdded = true;
40957                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
40958                                     row['weekday'+w] = String.format(
40959                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
40960                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
40961                                                     d,
40962                                                     date.format('Y-m-')+dd
40963                                                 );
40964                                     added++;
40965                                     if(typeof(_this.tdata[d]) != 'undefined'){
40966                                         Roo.each(_this.tdata[d], function(r){
40967                                             var is_sub = '';
40968                                             var deactive = '';
40969                                             var id = r.id;
40970                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
40971                                             if(r.parent_id*1>0){
40972                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
40973                                                 id = r.parent_id;
40974                                             }
40975                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
40976                                                 deactive = 'de-act-link';
40977                                             }
40978                                             
40979                                             row['weekday'+w] += String.format(
40980                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
40981                                                     id, //0
40982                                                     r.product_id_name, //1
40983                                                     r.when_dt.format('h:ia'), //2
40984                                                     is_sub, //3
40985                                                     deactive, //4
40986                                                     desc // 5
40987                                             );
40988                                         });
40989                                     }
40990                                     d++;
40991                                 }
40992                                 
40993                                 // only do this if something added..
40994                                 if(added > 0){ 
40995                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
40996                                 }
40997                                 
40998                                 
40999                                 // push it twice. (second one with an hour..
41000                                 
41001                             }
41002                             //Roo.log(result);
41003                             this.fireEvent("load", this, o, o.request.arg);
41004                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
41005                         },
41006                     sortInfo : {field: 'when_dt', direction : 'ASC' },
41007                     proxy : {
41008                         xtype: 'HttpProxy',
41009                         xns: Roo.data,
41010                         method : 'GET',
41011                         url : baseURL + '/Roo/Shop_course.php'
41012                     },
41013                     reader : {
41014                         xtype: 'JsonReader',
41015                         xns: Roo.data,
41016                         id : 'id',
41017                         fields : [
41018                             {
41019                                 'name': 'id',
41020                                 'type': 'int'
41021                             },
41022                             {
41023                                 'name': 'when_dt',
41024                                 'type': 'string'
41025                             },
41026                             {
41027                                 'name': 'end_dt',
41028                                 'type': 'string'
41029                             },
41030                             {
41031                                 'name': 'parent_id',
41032                                 'type': 'int'
41033                             },
41034                             {
41035                                 'name': 'product_id',
41036                                 'type': 'int'
41037                             },
41038                             {
41039                                 'name': 'productitem_id',
41040                                 'type': 'int'
41041                             },
41042                             {
41043                                 'name': 'guid',
41044                                 'type': 'int'
41045                             }
41046                         ]
41047                     }
41048                 },
41049                 toolbar : {
41050                     xtype: 'Toolbar',
41051                     xns: Roo,
41052                     items : [
41053                         {
41054                             xtype: 'Button',
41055                             xns: Roo.Toolbar,
41056                             listeners : {
41057                                 click : function (_self, e)
41058                                 {
41059                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41060                                     sd.setMonth(sd.getMonth()-1);
41061                                     _this.monthField.setValue(sd.format('Y-m-d'));
41062                                     _this.grid.ds.load({});
41063                                 }
41064                             },
41065                             text : "Back"
41066                         },
41067                         {
41068                             xtype: 'Separator',
41069                             xns: Roo.Toolbar
41070                         },
41071                         {
41072                             xtype: 'MonthField',
41073                             xns: Roo.form,
41074                             listeners : {
41075                                 render : function (_self)
41076                                 {
41077                                     _this.monthField = _self;
41078                                    // _this.monthField.set  today
41079                                 },
41080                                 select : function (combo, date)
41081                                 {
41082                                     _this.grid.ds.load({});
41083                                 }
41084                             },
41085                             value : (function() { return new Date(); })()
41086                         },
41087                         {
41088                             xtype: 'Separator',
41089                             xns: Roo.Toolbar
41090                         },
41091                         {
41092                             xtype: 'TextItem',
41093                             xns: Roo.Toolbar,
41094                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
41095                         },
41096                         {
41097                             xtype: 'Fill',
41098                             xns: Roo.Toolbar
41099                         },
41100                         {
41101                             xtype: 'Button',
41102                             xns: Roo.Toolbar,
41103                             listeners : {
41104                                 click : function (_self, e)
41105                                 {
41106                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
41107                                     sd.setMonth(sd.getMonth()+1);
41108                                     _this.monthField.setValue(sd.format('Y-m-d'));
41109                                     _this.grid.ds.load({});
41110                                 }
41111                             },
41112                             text : "Next"
41113                         }
41114                     ]
41115                 },
41116                  
41117             }
41118         };
41119         
41120         *//*
41121  * Based on:
41122  * Ext JS Library 1.1.1
41123  * Copyright(c) 2006-2007, Ext JS, LLC.
41124  *
41125  * Originally Released Under LGPL - original licence link has changed is not relivant.
41126  *
41127  * Fork - LGPL
41128  * <script type="text/javascript">
41129  */
41130  
41131 /**
41132  * @class Roo.LoadMask
41133  * A simple utility class for generically masking elements while loading data.  If the element being masked has
41134  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
41135  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
41136  * element's UpdateManager load indicator and will be destroyed after the initial load.
41137  * @constructor
41138  * Create a new LoadMask
41139  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
41140  * @param {Object} config The config object
41141  */
41142 Roo.LoadMask = function(el, config){
41143     this.el = Roo.get(el);
41144     Roo.apply(this, config);
41145     if(this.store){
41146         this.store.on('beforeload', this.onBeforeLoad, this);
41147         this.store.on('load', this.onLoad, this);
41148         this.store.on('loadexception', this.onLoadException, this);
41149         this.removeMask = false;
41150     }else{
41151         var um = this.el.getUpdateManager();
41152         um.showLoadIndicator = false; // disable the default indicator
41153         um.on('beforeupdate', this.onBeforeLoad, this);
41154         um.on('update', this.onLoad, this);
41155         um.on('failure', this.onLoad, this);
41156         this.removeMask = true;
41157     }
41158 };
41159
41160 Roo.LoadMask.prototype = {
41161     /**
41162      * @cfg {Boolean} removeMask
41163      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
41164      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
41165      */
41166     /**
41167      * @cfg {String} msg
41168      * The text to display in a centered loading message box (defaults to 'Loading...')
41169      */
41170     msg : 'Loading...',
41171     /**
41172      * @cfg {String} msgCls
41173      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
41174      */
41175     msgCls : 'x-mask-loading',
41176
41177     /**
41178      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
41179      * @type Boolean
41180      */
41181     disabled: false,
41182
41183     /**
41184      * Disables the mask to prevent it from being displayed
41185      */
41186     disable : function(){
41187        this.disabled = true;
41188     },
41189
41190     /**
41191      * Enables the mask so that it can be displayed
41192      */
41193     enable : function(){
41194         this.disabled = false;
41195     },
41196     
41197     onLoadException : function()
41198     {
41199         Roo.log(arguments);
41200         
41201         if (typeof(arguments[3]) != 'undefined') {
41202             Roo.MessageBox.alert("Error loading",arguments[3]);
41203         } 
41204         /*
41205         try {
41206             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
41207                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
41208             }   
41209         } catch(e) {
41210             
41211         }
41212         */
41213     
41214         
41215         
41216         this.el.unmask(this.removeMask);
41217     },
41218     // private
41219     onLoad : function()
41220     {
41221         this.el.unmask(this.removeMask);
41222     },
41223
41224     // private
41225     onBeforeLoad : function(){
41226         if(!this.disabled){
41227             this.el.mask(this.msg, this.msgCls);
41228         }
41229     },
41230
41231     // private
41232     destroy : function(){
41233         if(this.store){
41234             this.store.un('beforeload', this.onBeforeLoad, this);
41235             this.store.un('load', this.onLoad, this);
41236             this.store.un('loadexception', this.onLoadException, this);
41237         }else{
41238             var um = this.el.getUpdateManager();
41239             um.un('beforeupdate', this.onBeforeLoad, this);
41240             um.un('update', this.onLoad, this);
41241             um.un('failure', this.onLoad, this);
41242         }
41243     }
41244 };/*
41245  * Based on:
41246  * Ext JS Library 1.1.1
41247  * Copyright(c) 2006-2007, Ext JS, LLC.
41248  *
41249  * Originally Released Under LGPL - original licence link has changed is not relivant.
41250  *
41251  * Fork - LGPL
41252  * <script type="text/javascript">
41253  */
41254
41255
41256 /**
41257  * @class Roo.XTemplate
41258  * @extends Roo.Template
41259  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
41260 <pre><code>
41261 var t = new Roo.XTemplate(
41262         '&lt;select name="{name}"&gt;',
41263                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
41264         '&lt;/select&gt;'
41265 );
41266  
41267 // then append, applying the master template values
41268  </code></pre>
41269  *
41270  * Supported features:
41271  *
41272  *  Tags:
41273
41274 <pre><code>
41275       {a_variable} - output encoded.
41276       {a_variable.format:("Y-m-d")} - call a method on the variable
41277       {a_variable:raw} - unencoded output
41278       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
41279       {a_variable:this.method_on_template(...)} - call a method on the template object.
41280  
41281 </code></pre>
41282  *  The tpl tag:
41283 <pre><code>
41284         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
41285         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
41286         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
41287         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
41288   
41289         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
41290         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
41291 </code></pre>
41292  *      
41293  */
41294 Roo.XTemplate = function()
41295 {
41296     Roo.XTemplate.superclass.constructor.apply(this, arguments);
41297     if (this.html) {
41298         this.compile();
41299     }
41300 };
41301
41302
41303 Roo.extend(Roo.XTemplate, Roo.Template, {
41304
41305     /**
41306      * The various sub templates
41307      */
41308     tpls : false,
41309     /**
41310      *
41311      * basic tag replacing syntax
41312      * WORD:WORD()
41313      *
41314      * // you can fake an object call by doing this
41315      *  x.t:(test,tesT) 
41316      * 
41317      */
41318     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
41319
41320     /**
41321      * compile the template
41322      *
41323      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
41324      *
41325      */
41326     compile: function()
41327     {
41328         var s = this.html;
41329      
41330         s = ['<tpl>', s, '</tpl>'].join('');
41331     
41332         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
41333             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
41334             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
41335             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
41336             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
41337             m,
41338             id     = 0,
41339             tpls   = [];
41340     
41341         while(true == !!(m = s.match(re))){
41342             var forMatch   = m[0].match(nameRe),
41343                 ifMatch   = m[0].match(ifRe),
41344                 execMatch   = m[0].match(execRe),
41345                 namedMatch   = m[0].match(namedRe),
41346                 
41347                 exp  = null, 
41348                 fn   = null,
41349                 exec = null,
41350                 name = forMatch && forMatch[1] ? forMatch[1] : '';
41351                 
41352             if (ifMatch) {
41353                 // if - puts fn into test..
41354                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
41355                 if(exp){
41356                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
41357                 }
41358             }
41359             
41360             if (execMatch) {
41361                 // exec - calls a function... returns empty if true is  returned.
41362                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
41363                 if(exp){
41364                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
41365                 }
41366             }
41367             
41368             
41369             if (name) {
41370                 // for = 
41371                 switch(name){
41372                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
41373                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
41374                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
41375                 }
41376             }
41377             var uid = namedMatch ? namedMatch[1] : id;
41378             
41379             
41380             tpls.push({
41381                 id:     namedMatch ? namedMatch[1] : id,
41382                 target: name,
41383                 exec:   exec,
41384                 test:   fn,
41385                 body:   m[1] || ''
41386             });
41387             if (namedMatch) {
41388                 s = s.replace(m[0], '');
41389             } else { 
41390                 s = s.replace(m[0], '{xtpl'+ id + '}');
41391             }
41392             ++id;
41393         }
41394         this.tpls = [];
41395         for(var i = tpls.length-1; i >= 0; --i){
41396             this.compileTpl(tpls[i]);
41397             this.tpls[tpls[i].id] = tpls[i];
41398         }
41399         this.master = tpls[tpls.length-1];
41400         return this;
41401     },
41402     /**
41403      * same as applyTemplate, except it's done to one of the subTemplates
41404      * when using named templates, you can do:
41405      *
41406      * var str = pl.applySubTemplate('your-name', values);
41407      *
41408      * 
41409      * @param {Number} id of the template
41410      * @param {Object} values to apply to template
41411      * @param {Object} parent (normaly the instance of this object)
41412      */
41413     applySubTemplate : function(id, values, parent)
41414     {
41415         
41416         
41417         var t = this.tpls[id];
41418         
41419         
41420         try { 
41421             if(t.test && !t.test.call(this, values, parent)){
41422                 return '';
41423             }
41424         } catch(e) {
41425             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
41426             Roo.log(e.toString());
41427             Roo.log(t.test);
41428             return ''
41429         }
41430         try { 
41431             
41432             if(t.exec && t.exec.call(this, values, parent)){
41433                 return '';
41434             }
41435         } catch(e) {
41436             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
41437             Roo.log(e.toString());
41438             Roo.log(t.exec);
41439             return ''
41440         }
41441         try {
41442             var vs = t.target ? t.target.call(this, values, parent) : values;
41443             parent = t.target ? values : parent;
41444             if(t.target && vs instanceof Array){
41445                 var buf = [];
41446                 for(var i = 0, len = vs.length; i < len; i++){
41447                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
41448                 }
41449                 return buf.join('');
41450             }
41451             return t.compiled.call(this, vs, parent);
41452         } catch (e) {
41453             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
41454             Roo.log(e.toString());
41455             Roo.log(t.compiled);
41456             return '';
41457         }
41458     },
41459
41460     compileTpl : function(tpl)
41461     {
41462         var fm = Roo.util.Format;
41463         var useF = this.disableFormats !== true;
41464         var sep = Roo.isGecko ? "+" : ",";
41465         var undef = function(str) {
41466             Roo.log("Property not found :"  + str);
41467             return '';
41468         };
41469         
41470         var fn = function(m, name, format, args)
41471         {
41472             //Roo.log(arguments);
41473             args = args ? args.replace(/\\'/g,"'") : args;
41474             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
41475             if (typeof(format) == 'undefined') {
41476                 format= 'htmlEncode';
41477             }
41478             if (format == 'raw' ) {
41479                 format = false;
41480             }
41481             
41482             if(name.substr(0, 4) == 'xtpl'){
41483                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
41484             }
41485             
41486             // build an array of options to determine if value is undefined..
41487             
41488             // basically get 'xxxx.yyyy' then do
41489             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
41490             //    (function () { Roo.log("Property not found"); return ''; })() :
41491             //    ......
41492             
41493             var udef_ar = [];
41494             var lookfor = '';
41495             Roo.each(name.split('.'), function(st) {
41496                 lookfor += (lookfor.length ? '.': '') + st;
41497                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
41498             });
41499             
41500             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
41501             
41502             
41503             if(format && useF){
41504                 
41505                 args = args ? ',' + args : "";
41506                  
41507                 if(format.substr(0, 5) != "this."){
41508                     format = "fm." + format + '(';
41509                 }else{
41510                     format = 'this.call("'+ format.substr(5) + '", ';
41511                     args = ", values";
41512                 }
41513                 
41514                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
41515             }
41516              
41517             if (args.length) {
41518                 // called with xxyx.yuu:(test,test)
41519                 // change to ()
41520                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
41521             }
41522             // raw.. - :raw modifier..
41523             return "'"+ sep + udef_st  + name + ")"+sep+"'";
41524             
41525         };
41526         var body;
41527         // branched to use + in gecko and [].join() in others
41528         if(Roo.isGecko){
41529             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
41530                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
41531                     "';};};";
41532         }else{
41533             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
41534             body.push(tpl.body.replace(/(\r\n|\n)/g,
41535                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
41536             body.push("'].join('');};};");
41537             body = body.join('');
41538         }
41539         
41540         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
41541        
41542         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
41543         eval(body);
41544         
41545         return this;
41546     },
41547
41548     applyTemplate : function(values){
41549         return this.master.compiled.call(this, values, {});
41550         //var s = this.subs;
41551     },
41552
41553     apply : function(){
41554         return this.applyTemplate.apply(this, arguments);
41555     }
41556
41557  });
41558
41559 Roo.XTemplate.from = function(el){
41560     el = Roo.getDom(el);
41561     return new Roo.XTemplate(el.value || el.innerHTML);
41562 };